advent_of_code/2023/day13/rust/Cargo.toml

18 lines
294 B
TOML
Raw Permalink Normal View History

[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]
regex = "1.10.2"
[[bin]]
name = "part_one"
path = "src/part_one.rs"
[[bin]]
name = "part_two"
path = "src/part_two.rs"