Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
slim down feature list of futures dependency
  • Loading branch information
dwrensha committed May 24, 2020
1 parent 4f61516 commit f7f0bc0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
11 changes: 10 additions & 1 deletion capnp-futures/Cargo.toml
Expand Up @@ -13,7 +13,16 @@ keywords = ["async"]

[dependencies]
capnp = { version = "0.13.0-alpha", path = "../capnp" }
futures = "0.3.0"

[dependencies.futures]
version = "0.3.0"
default-features = false
features = ["std", "executor"]

[dev-dependencies.futures]
version = "0.3.0"
default-features = false
features = ["executor"]

[dev-dependencies]
capnp = { version = "0.13.0-alpha", path = "../capnp", features = ["quickcheck"] }
Expand Down
6 changes: 5 additions & 1 deletion capnp-rpc/Cargo.toml
Expand Up @@ -18,7 +18,11 @@ readme = "README.md"
name = "capnp_rpc"
path = "src/lib.rs"

[dependencies.futures]
version = "0.3.0"
default-features = false
features = ["std"]

[dependencies]
futures = "0.3.0"
capnp-futures = { version = "0.13.0-alpha", path = "../capnp-futures" }
capnp = {version = "0.13.0-alpha", path = "../capnp"}

0 comments on commit f7f0bc0

Please sign in to comment.