adventofcode2023/day12/Cargo.toml
2023-12-13 20:43:04 +01:00

18 lines
279 B
TOML

[package]
name = "day12"
version = "0.1.0"
edition = "2021"
default-run = "dp"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[[bin]]
name = "old"
path= "src/main.rs"
[[bin]]
name = "dp"
path= "src/main_dp.rs"