Add bytes and futures dependency

This commit is contained in:
Valentin Brandl 2019-04-16 21:35:28 +02:00
parent 991634b5b1
commit 23c86fac54
No known key found for this signature in database
GPG Key ID: 30D341DD34118D7D
2 changed files with 6 additions and 2 deletions

2
Cargo.lock generated
View File

@ -677,6 +677,8 @@ version = "0.1.0"
dependencies = [ dependencies = [
"actix-web 1.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)", "actix-web 1.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",
"badge 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "badge 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
"futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
"git2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "git2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
"openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
"pretty_env_logger 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "pretty_env_logger 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -6,8 +6,10 @@ edition = "2018"
[dependencies] [dependencies]
actix-web = "1.0.0-alpha.4" actix-web = "1.0.0-alpha.4"
git2 = "0.8.0"
badge = "0.2.0" badge = "0.2.0"
bytes = "0.4.12"
futures = "0.1.25"
git2 = "0.8.0"
openssl-probe = "0.1.2" openssl-probe = "0.1.2"
structopt = "0.2.15"
pretty_env_logger = "0.3.0" pretty_env_logger = "0.3.0"
structopt = "0.2.15"