diff --git a/futures-channel/Cargo.toml b/futures-channel/Cargo.toml index dbdc0b765b..6120f65fdf 100644 --- a/futures-channel/Cargo.toml +++ b/futures-channel/Cargo.toml @@ -28,8 +28,8 @@ futures-core = { path = "../futures-core", version = "0.3.8", default-features = futures-sink = { path = "../futures-sink", version = "0.3.8", default-features = false, optional = true } [dev-dependencies] -futures = { path = "../futures", version = "0.3.8", default-features = true } -futures-test = { path = "../futures-test", version = "0.3.8", default-features = true } +futures = { path = "../futures", default-features = true } +futures-test = { path = "../futures-test", default-features = true } [package.metadata.docs.rs] all-features = true diff --git a/futures-core/Cargo.toml b/futures-core/Cargo.toml index 530c557f57..c0288a5d94 100644 --- a/futures-core/Cargo.toml +++ b/futures-core/Cargo.toml @@ -25,7 +25,7 @@ cfg-target-has-atomic = [] [dependencies] [dev-dependencies] -futures = { path = "../futures", version = "0.3.8" } +futures = { path = "../futures" } [package.metadata.docs.rs] all-features = true diff --git a/futures-executor/Cargo.toml b/futures-executor/Cargo.toml index 1767b5a26e..c704612fdb 100644 --- a/futures-executor/Cargo.toml +++ b/futures-executor/Cargo.toml @@ -23,7 +23,7 @@ futures-util = { path = "../futures-util", version = "0.3.8", default-features = num_cpus = { version = "1.8.0", optional = true } [dev-dependencies] -futures = { path = "../futures", version = "0.3.8" } +futures = { path = "../futures" } [package.metadata.docs.rs] all-features = true diff --git a/futures-task/Cargo.toml b/futures-task/Cargo.toml index 4a8da101e9..b9d4f0511f 100644 --- a/futures-task/Cargo.toml +++ b/futures-task/Cargo.toml @@ -26,7 +26,7 @@ cfg-target-has-atomic = [] once_cell = { version = "1.3.1", default-features = false, features = ["std"], optional = true } [dev-dependencies] -futures = { path = "../futures", version = "0.3.8" } +futures = { path = "../futures" } [package.metadata.docs.rs] all-features = true diff --git a/futures-test/Cargo.toml b/futures-test/Cargo.toml index 5ec7f36520..fe58b96fcb 100644 --- a/futures-test/Cargo.toml +++ b/futures-test/Cargo.toml @@ -23,7 +23,7 @@ once_cell = { version = "1.3.1", default-features = false, features = ["std"], o pin-project = "1.0.1" [dev-dependencies] -futures = { version = "0.3.8", path = "../futures", default-features = false, features = ["std", "executor"] } +futures = { path = "../futures", default-features = false, features = ["std", "executor"] } [features] default = ["std"] diff --git a/futures-util/Cargo.toml b/futures-util/Cargo.toml index b4c7532d4f..3673ec979e 100644 --- a/futures-util/Cargo.toml +++ b/futures-util/Cargo.toml @@ -49,8 +49,8 @@ pin-utils = "0.1.0" pin-project-lite = "0.2" [dev-dependencies] -futures = { path = "../futures", version = "0.3.8", features = ["async-await", "thread-pool"] } -futures-test = { path = "../futures-test", version = "0.3.8" } +futures = { path = "../futures", features = ["async-await", "thread-pool"] } +futures-test = { path = "../futures-test" } tokio = "0.1.11" [package.metadata.docs.rs] diff --git a/futures/Cargo.toml b/futures/Cargo.toml index d12c425ae8..69cd4bef54 100644 --- a/futures/Cargo.toml +++ b/futures/Cargo.toml @@ -26,8 +26,8 @@ futures-util = { path = "../futures-util", version = "0.3.8", default-features = [dev-dependencies] pin-utils = "0.1.0" -futures-executor = { path = "../futures-executor", version = "0.3.8", features = ["thread-pool"] } -futures-test = { path = "../futures-test", version = "0.3.8" } +futures-executor = { path = "../futures-executor", features = ["thread-pool"] } +futures-test = { path = "../futures-test" } tokio = "0.1.11" assert_matches = "1.3.0" pin-project = "1.0.1"