advent_of_code_2023/cli/Cargo.toml
Anthony Cicchetti 6f57e947b1 day two part one
2023-12-05 16:15:58 -05:00

15 lines
353 B
TOML

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