Skip to content

Commit

Permalink
Remove version from path dev-dependencies to make it easier to publish (
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Jan 7, 2021
1 parent 73aaf4a commit 62e0328
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions futures-channel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion futures-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion futures-executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion futures-task/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion futures-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
4 changes: 2 additions & 2 deletions futures-util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions futures/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 62e0328

Please sign in to comment.