advent_of_code_2022/cli/Cargo.toml

13 lines
346 B
TOML

[package]
name = "cli"
version = "0.0.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.0", features = ["derive"] }
day_01 = { path = "../day_01"}
day_02 = { path = "../day_02"}
day_03 = { path = "../day_03"}
common = { path = "../common"}