Skip to content

Commit d481788

Browse files
committed
Auto merge of #8920 - ehuss:publish-dev-dependencies, r=Eh2406
Remove version from dev-dependencies to make it easier to publish. Since #7333, released in 1.40, Cargo will strip dev-dependencies that don't have a version. These two crates aren't published to crates.io, and thus they have to be commented out each time a release is made. This change avoids that step.
2 parents 980c163 + 0b5c065 commit d481788

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ features = [
103103
]
104104

105105
[dev-dependencies]
106-
cargo-test-macro = { path = "crates/cargo-test-macro", version = "0.1.0" }
107-
cargo-test-support = { path = "crates/cargo-test-support", version = "0.1.0" }
106+
cargo-test-macro = { path = "crates/cargo-test-macro" }
107+
cargo-test-support = { path = "crates/cargo-test-support" }
108108

109109
[build-dependencies]
110110
flate2 = { version = "1.0.3", default-features = false, features = ["zlib"] }

0 commit comments

Comments
 (0)