2022-11-28 19:06:17 +01:00
|
|
|
[package]
|
|
|
|
name = "aoc"
|
2022-12-15 14:40:53 +01:00
|
|
|
version = "20.0.0"
|
2022-11-28 19:06:17 +01:00
|
|
|
edition = "2021"
|
|
|
|
authors = ["Matej Janežič <janezic.mj@gmail.com>"]
|
|
|
|
default-run = "aoc"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-11-28 21:59:26 +01:00
|
|
|
# framework
|
|
|
|
dotenv = "0.15.0"
|
2022-11-28 23:59:53 +01:00
|
|
|
hashbrown = "0.13.1"
|
2022-11-30 21:54:32 +01:00
|
|
|
hex-literal = "0.3.4"
|
2022-11-28 21:59:48 +01:00
|
|
|
itertools = "0.10.5"
|
2022-11-30 21:54:32 +01:00
|
|
|
lazy_static = "1.4.0"
|
2022-11-28 19:06:17 +01:00
|
|
|
pico-args = "0.5.0"
|
2022-11-28 23:59:53 +01:00
|
|
|
regex = "1.7.0"
|
2022-11-28 21:59:26 +01:00
|
|
|
reqwest = { version = "0.11.13", features = ["blocking"] }
|