-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (31 loc) · 892 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "aoc-cli"
version = "0.1.0"
edition = "2021"
authors = ["TheSuperGamer20578"]
description = "A CLI for running Advent of Code solutions."
license = "GPL-3"
[[bin]]
name = "aoc"
path = "src/main.rs"
[dependencies]
anyhow = { version = "1.0.75", features = ["backtrace"] }
chrono = { version = "0.4.31", features = ["serde"] }
clap = { version = "4.4.8", features = ["derive"] }
confy = { version = "0.5.1", features = ["ron_conf"], default-features = false }
glob = "0.3.1"
pyo3 = "0.20.0"
reqwest = "0.11.22"
serde = { version = "1.0.193", features = ["derive"] }
tokio = { version = "1.34.0", features = ["full"] }
lazy_static = { version = "1.4.0", features = [] }
futures = "0.3.29"
console = "0.15.7"
dialoguer = "0.11.0"
indicatif = "0.17.7"
clap-verbosity-flag = "2.1.0"
tracing = "0.1.40"
tracing-log = "0.2.0"
crossbeam = "0.8.2"
scraper = "0.18.1"
tera = "1.19.1"