18 lines
371 B
TOML
18 lines
371 B
TOML
[package]
|
|
name = "day-1_calorie_counting"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "calorie_counting_lib"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "calorie_counting"
|
|
path = "src/bin.rs"
|
|
|
|
[dependencies]
|
|
tracing = "0.1"
|
|
tracing-subscriber = {version = "0.3.16", features = ["env-filter"]}
|
|
common = {path = "../common/"}
|
|
clap = {version = "4.0.22", features = ["derive"]} |