adventofcode2023/day12/Cargo.toml

18 lines
279 B
TOML
Raw Permalink Normal View History

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