Skip to content

Commit

Permalink
Align cargo dependency features (denoland#6860)
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Jul 23, 2020
1 parent 218be6a commit c2507d9
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 56 deletions.
72 changes: 21 additions & 51 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions cli/Cargo.toml
Expand Up @@ -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"
Expand All @@ -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"] }

Expand Down
4 changes: 2 additions & 2 deletions core/Cargo.toml
Expand Up @@ -15,12 +15,12 @@ path = "lib.rs"

[dependencies]
downcast-rs = "1.1.1"
futures = { version = "0.3.5", features = ["thread-pool", "compat"] }
futures = "0.3.5"
lazy_static = "1.4.0"
libc = "0.2.71"
log = "0.4.8"
rusty_v8 = "0.7.0"
serde_json = "1.0.55"
serde_json = { version = "1.0.55", features = [ "preserve_order" ] }
smallvec = "1.4.0"
url = "2.1.1"

Expand Down
2 changes: 1 addition & 1 deletion test_util/Cargo.toml
Expand Up @@ -11,7 +11,7 @@ path = "src/test_server.rs"

[dependencies]
tokio = { version = "0.2.22", features = ["full"] }
futures = { version = "0.3.5", features = ["compat", "io-compat"] }
futures = "0.3.5"
bytes = "0.5.5"
lazy_static = "1.4.0"
os_pipe = "0.9.2"
Expand Down

0 comments on commit c2507d9

Please sign in to comment.