Unverified Commit b51cb337 authored by Vasili Novikov's avatar Vasili Novikov
Browse files

Adapt to changed libraries

parent d7a3a554
Showing with 4 additions and 2 deletions
+4 -2
......@@ -1571,7 +1571,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5ca08accbcb46f11fd8d2d1c6158c348b7888009a1f39260bcad66f6a454250"
dependencies = [
"autocfg",
"num_cpus",
"pin-project-lite",
"slab",
"tokio-macros",
]
......
......@@ -28,7 +28,7 @@ serde = { version = "1.0.117", features = ["derive"] }
serde_json = "1.0.59"
sha2 = "0.9.1"
structopt = { version = "0.3.20", features = ["color"] }
tokio = { version = "0.3.3", features = ["macros"] }
tokio = { version = "0.3.3", features = ["macros", "rt", "rt-multi-thread"] }
warp = { version = "0.2.5", default-features = false, features = ["tls"] }
[dev-dependencies]
......
......@@ -12,7 +12,7 @@ use crate::command_line_interface;
use crate::command_line_interface::CLIOptions;
use crate::internal_api;
use crate::warp_endpoints;
use bytes::Bytes;
use warp::hyper::body::Bytes;
use log::error;
use log::info;
use log::warn;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment