diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-07-23 13:20:08 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-23 13:20:08 -0400 |
commit | c2507d95f5a196791bca83630198c064a1fb460a (patch) | |
tree | c1bfc67446f4ae06f43b6977a95225cc58d648e2 /cli | |
parent | 218be6a269644a95bdef7fc678b5618d5d7ce9a7 (diff) |
Align cargo dependency features (#6860)
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 58afdf019..c47b292bb 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -32,7 +32,7 @@ byteorder = "1.3.4" clap = "2.33.1" dissimilar = "1.0.2" dlopen = "0.1.8" -futures = { version = "0.3.5", features = ["compat", "io-compat"] } +futures = "0.3.5" http = "0.2.1" idna = "0.2.0" indexmap = "1.4.0" @@ -59,7 +59,7 @@ utime = "0.3.0" webpki = "0.21.3" webpki-roots = "0.19.0" walkdir = "2.3.1" -warp = "0.2.3" +warp = { version = "0.2.3", features = ["tls"] } semver-parser = "0.9.0" uuid = { version = "0.8.1", features = ["v4"] } |