Skip to content

Commit

Permalink
Auto merge of #8920 - ehuss:publish-dev-dependencies, r=Eh2406
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
bors committed Nov 30, 2020
2 parents 980c163 + 0b5c065 commit d481788
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ features = [
]

[dev-dependencies]
cargo-test-macro = { path = "crates/cargo-test-macro", version = "0.1.0" }
cargo-test-support = { path = "crates/cargo-test-support", version = "0.1.0" }
cargo-test-macro = { path = "crates/cargo-test-macro" }
cargo-test-support = { path = "crates/cargo-test-support" }

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

0 comments on commit d481788

Please sign in to comment.