Merge pull request #8 from messense/tokio-1

Upgrade to Tokio 1.x
This commit is contained in:
Mohamed Daahir 2021-01-28 17:28:37 +00:00 committed by GitHub
commit 7d3c647ac0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 266 additions and 341 deletions

601
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -18,14 +18,14 @@ jsonxf = "1.0"
indicatif = "0.15.0"
lazy_static = "1.4.0"
regex = "1"
reqwest = { version = "0.10", default-features = false, features = ["rustls-tls", "stream", "json", "gzip", "brotli"] }
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "stream", "json", "gzip", "brotli", "multipart"] }
rpassword = "5.0.0"
serde = "1.0"
serde_json = "1.0"
serde_urlencoded = "0.7"
structopt = "0.3"
tokio = { version = "0.2", features = ["full"] }
tokio-util = {version = "0.3", features= ["codec"]}
tokio = { version = "1.0", features = ["full"] }
tokio-util = {version = "0.6", features= ["codec"]}
[dependencies.syntect]
version = "4.4"