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-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"
|