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
|
|
|
|
|
2022-12-01 14:51:24 +00:00
|
|
|
[workspace]
|
|
|
|
members = ["aoc_proc"]
|
|
|
|
|
2022-12-18 21:28:47 +00:00
|
|
|
[profile.release]
|
|
|
|
opt-level = 3
|
|
|
|
|
2022-12-01 09:43:50 +00:00
|
|
|
[dependencies]
|
|
|
|
color-eyre = "0.6.2"
|
2022-12-01 14:51:24 +00:00
|
|
|
aoc_proc = { path = "aoc_proc" }
|
|
|
|
ureq = "2.5.0"
|
2022-12-01 20:23:11 +00:00
|
|
|
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"
|
2022-12-18 21:28:47 +00:00
|
|
|
lru-cache = "0.1.2"
|