advent_of_code/2023/day7/rust/Cargo.toml

19 lines
312 B
TOML

[package]
name = "rust"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
libmath = "0.2.1"
regex = "1.10.2"
[[bin]]
name = "part_one"
path = "src/part_one.rs"
[[bin]]
name = "part_two"
path = "src/part_two.rs"