24 lines
514 B
TOML
24 lines
514 B
TOML
[package]
|
|
name = "day-3_rucksack_reorganization"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
name = "rucksack_reorganization_lib"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "rucksack_reorganization"
|
|
path = "src/bin.rs"
|
|
|
|
|
|
[dependencies]
|
|
common = {path = "../common/"}
|
|
|
|
clap = {version = "4.0.22", features = ["derive"]}
|
|
tracing = "0.1"
|
|
tracing-subscriber = {version = "0.3.16", features = ["env-filter"]}
|
|
|
|
itertools = "0.10.5" |