aoc/Cargo.toml

19 lines
347 B
TOML
Raw Normal View History

2022-12-01 09:43:50 +00:00
[package]
name = "aoc-2022"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["aoc_proc"]
2022-12-01 09:43:50 +00:00
[dependencies]
color-eyre = "0.6.2"
aoc_proc = { path = "aoc_proc" }
ureq = "2.5.0"
time = "0.3.17"
2022-12-03 12:07:13 +00:00
regex = "1.7.0"
2022-12-12 12:51:33 +00:00
petgraph = "0.6.2"
2022-12-13 09:34:37 +00:00
peg = "0.8.1"