12 lines
315 B
TOML
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"}
|