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-11-29 22:40:52 +01:00
|
|
|
hex-literal = "0.3.4"
|
2022-11-28 22:42:47 +01:00
|
|
|
itertools = "0.10.5"
|
|
|
|
pico-args = "0.5.0"
|
|
|
|
reqwest = { version = "0.11.13", features = ["blocking"] }
|
2022-11-29 22:40:52 +01:00
|
|
|
rust-crypto = "0.2.36"
|