Still a WIP: need to use async reqwest to respect the global context of usage (reqwest::blocking is using async inside so it does not really sync whatever)

This commit is contained in:
VC
2021-04-18 17:00:44 +00:00
parent 8bcf078ad9
commit 2e052ebf6a
6 changed files with 316 additions and 255 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "scootaloo"
version = "0.2.1"
version = "0.3.2"
authors = ["VC <veretcle+framagit@mateu.be>"]
edition = "2018"
@@ -8,18 +8,12 @@ edition = "2018"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
toml = "^0.5"
clap = "^2.33"
tokio = { version = "1", features = ["rt-multi-thread"]}
tokio-compat-02 = "0.2"
egg-mode = "^0.15"
egg-mode = { git = "https://github.com/egg-mode-rs/egg-mode", rev = "6b81073eba9c3b123ca0e80bdb5ef61d1758f131" }
elefren = "^0.22"
reqwest = { version="^0.11", features = ["blocking"] }
tokio = { version = "1", features = ["full"]}
reqwest = "^0.11"
htmlescape = "^0.3"
log = "^0.4"
simple_logger = "^1.11"