aoc-template/Cargo.toml

20 lines
456 B
TOML
Raw Normal View History

2022-11-28 19:06:17 +01:00
[package]
name = "aoc"
2022-11-30 21:56:14 +01:00
version = "0.2.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"
hashbrown = "0.13.1"
hex-literal = "0.3.4"
2022-11-28 21:59:48 +01:00
itertools = "0.10.5"
lazy_static = "1.4.0"
2022-11-28 19:06:17 +01:00
pico-args = "0.5.0"
regex = "1.7.0"
2022-11-28 21:59:26 +01:00
reqwest = { version = "0.11.13", features = ["blocking"] }