adventofcode2023/day20/Cargo.toml

19 lines
303 B
TOML
Raw Permalink Normal View History

2023-12-20 13:10:58 -06:00
[package]
name = "day20"
version = "0.1.0"
edition = "2021"
default-run = "sane"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
num = "0.4.1"
[[bin]]
name = "oop"
path= "src/main_oop.rs"
[[bin]]
name = "sane"
path= "src/main_sane.rs"