aoc2015/Cargo.toml

21 lines
482 B
TOML
Raw Normal View History

2022-11-28 22:42:47 +01:00
[package]
name = "aoc"
version = "0.1.0"
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]
dotenv = "0.15.0"
2022-12-03 20:19:38 +01:00
hashbrown = "0.13.1"
2022-11-29 22:40:52 +01:00
hex-literal = "0.3.4"
2022-11-28 22:42:47 +01:00
itertools = "0.10.5"
2022-11-30 00:16:13 +01:00
lazy_static = "1.4.0"
2022-12-04 23:16:22 +01:00
md-5 = "0.10.5"
2022-11-28 22:42:47 +01:00
pico-args = "0.5.0"
2022-12-03 20:10:45 +01:00
regex = "1.7.0"
2022-11-28 22:42:47 +01:00
reqwest = { version = "0.11.13", features = ["blocking"] }
serde_json = "1.0.89"