22 lines
402 B
TOML
22 lines
402 B
TOML
[package]
|
|
name = "day-1_calorie_counting"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
debug = 1
|
|
|
|
[lib]
|
|
name = "calorie_counting_lib"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "calorie_counting_bin"
|
|
path = "src/bin.rs"
|
|
|
|
[dependencies]
|
|
clap = {version = "4.0.22", features = ["derive"]}
|
|
tracing = "0.1"
|
|
tracing-subscriber = {version = "0.3.16", features = ["env-filter"]} |