This commit is contained in:
nora 2022-05-14 15:02:52 +02:00
parent 3d83579417
commit bf1809e025
6 changed files with 1436 additions and 3 deletions

View file

@ -6,7 +6,13 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "3.1.18"
clap = { version = "3.1.18", features = ["derive"] }
color-eyre = "0.6.1"
indexmap = { version = "1.8.1", features = ["serde"] }
reqwest = { version = "0.11.10", features = ["blocking", "rustls-tls", "json"] }
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.81"
tracing = "0.1.34"
tracing-forest = { version = "0.1.4", features = ["env-filter"] }
tracing-subscriber = { version = "0.3.11", features = ["env-filter"] }
tracing-tree = "0.2.0"