14 lines
308 B
TOML
14 lines
308 B
TOML
[package]
|
|
name = "advent_of_code_2023"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
solutions_advent_of_code_2023 = { path = "../solutions" }
|
|
|
|
derive_more = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
clap = { version = "4.5.15", features = ["derive"] }
|
|
env_logger = "0.11.5"
|
|
log = "0.4.22"
|