Skip to content

Commit

Permalink
fix(rust): Don't update dev-dependencies lacking a version key (#1095)
Browse files Browse the repository at this point in the history
  • Loading branch information
fasterthanlime authored Dec 20, 2021
1 parent d339026 commit dc1bad9
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 377 deletions.
2 changes: 2 additions & 0 deletions __snapshots__/cargo-toml.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ normal-dep = "1.2.3"
[dev-dependencies]
dev-dep = { version = "1.2.3" }
dev-dep-2 = { path = "../dev-dep-2" }
[build-dependencies]
# this is using a private registry
Expand Down Expand Up @@ -44,6 +45,7 @@ normal-dep = "1.2.3"
[dev-dependencies]
dev-dep = { version = "1.2.3" }
dev-dep-2 = { path = "../dev-dep-2" }
[build-dependencies]
# this is using a private registry
Expand Down
4 changes: 2 additions & 2 deletions __snapshots__/rust.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ name = "crate2"
version = "0.4.321"
[dependencies]
crate1 = { version = "0.123.5", path = "../crate2" }
crate1 = { version = "0.123.5", path = "../crate1" }
filename: Cargo.lock
Expand Down Expand Up @@ -183,7 +183,7 @@ name = "crate2"
version = "0.4.321"
[dependencies]
crate1 = { version = "0.123.5", path = "../crate2" }
crate1 = { version = "0.123.5", path = "../crate1" }
`
Expand Down
Loading

0 comments on commit dc1bad9

Please sign in to comment.