advent_of_code_2022/cli/Cargo.toml
2022-12-03 16:29:23 -05:00

12 lines
315 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"}
common = { path = "../common"}