Skip to content

Commit 62e0328

Browse files
authored
Remove version from path dev-dependencies to make it easier to publish (#2305)
1 parent 73aaf4a commit 62e0328

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

futures-channel/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ futures-core = { path = "../futures-core", version = "0.3.8", default-features =
2828
futures-sink = { path = "../futures-sink", version = "0.3.8", default-features = false, optional = true }
2929

3030
[dev-dependencies]
31-
futures = { path = "../futures", version = "0.3.8", default-features = true }
32-
futures-test = { path = "../futures-test", version = "0.3.8", default-features = true }
31+
futures = { path = "../futures", default-features = true }
32+
futures-test = { path = "../futures-test", default-features = true }
3333

3434
[package.metadata.docs.rs]
3535
all-features = true

futures-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ cfg-target-has-atomic = []
2525
[dependencies]
2626

2727
[dev-dependencies]
28-
futures = { path = "../futures", version = "0.3.8" }
28+
futures = { path = "../futures" }
2929

3030
[package.metadata.docs.rs]
3131
all-features = true

futures-executor/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ futures-util = { path = "../futures-util", version = "0.3.8", default-features =
2323
num_cpus = { version = "1.8.0", optional = true }
2424

2525
[dev-dependencies]
26-
futures = { path = "../futures", version = "0.3.8" }
26+
futures = { path = "../futures" }
2727

2828
[package.metadata.docs.rs]
2929
all-features = true

futures-task/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ cfg-target-has-atomic = []
2626
once_cell = { version = "1.3.1", default-features = false, features = ["std"], optional = true }
2727

2828
[dev-dependencies]
29-
futures = { path = "../futures", version = "0.3.8" }
29+
futures = { path = "../futures" }
3030

3131
[package.metadata.docs.rs]
3232
all-features = true

futures-test/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ once_cell = { version = "1.3.1", default-features = false, features = ["std"], o
2323
pin-project = "1.0.1"
2424

2525
[dev-dependencies]
26-
futures = { version = "0.3.8", path = "../futures", default-features = false, features = ["std", "executor"] }
26+
futures = { path = "../futures", default-features = false, features = ["std", "executor"] }
2727

2828
[features]
2929
default = ["std"]

futures-util/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ pin-utils = "0.1.0"
4949
pin-project-lite = "0.2"
5050

5151
[dev-dependencies]
52-
futures = { path = "../futures", version = "0.3.8", features = ["async-await", "thread-pool"] }
53-
futures-test = { path = "../futures-test", version = "0.3.8" }
52+
futures = { path = "../futures", features = ["async-await", "thread-pool"] }
53+
futures-test = { path = "../futures-test" }
5454
tokio = "0.1.11"
5555

5656
[package.metadata.docs.rs]

futures/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ futures-util = { path = "../futures-util", version = "0.3.8", default-features =
2626

2727
[dev-dependencies]
2828
pin-utils = "0.1.0"
29-
futures-executor = { path = "../futures-executor", version = "0.3.8", features = ["thread-pool"] }
30-
futures-test = { path = "../futures-test", version = "0.3.8" }
29+
futures-executor = { path = "../futures-executor", features = ["thread-pool"] }
30+
futures-test = { path = "../futures-test" }
3131
tokio = "0.1.11"
3232
assert_matches = "1.3.0"
3333
pin-project = "1.0.1"

0 commit comments

Comments
 (0)