add downloader

This commit is contained in:
ThetaDev 2022-08-02 15:09:40 +02:00
parent f706d875f6
commit 4600edc81f
4 changed files with 242 additions and 4 deletions

View file

@ -13,15 +13,16 @@ anyhow = "1.0"
thiserror = "1.0.31"
url = "2.2.2"
log = "0.4.17"
reqwest = {version = "0.11.11", features = ["json", "gzip", "brotli"]}
tokio = {version = "1.20.0", features = ["macros"]}
reqwest = {version = "0.11.11", features = ["json", "gzip", "brotli", "stream"]}
tokio = {version = "1.20.0", features = ["macros", "fs", "process"]}
serde_json = "1.0.82"
serde = { version = "1.0", features = ["derive"] }
serde_with = {version = "2.0.0", features = ["json"] }
rand = "0.8.5"
async-trait = "0.1.56"
chrono = {version = "0.4.19", features = ["serde"]}
trie = "0.2.1"
futures = "0.3.21"
indicatif = "0.17.0"
[dev-dependencies]
env_logger = "0.9.0"