advent_of_code_2023/cli/Cargo.toml
Anthony Cicchetti bf60586c80 Day 01
2023-12-01 14:00:45 -05:00

14 lines
319 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_01" }
thiserror = { workspace = true }