-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #11194 - cassaundra:cargo-remove-gc, r=epage
Clean profile, patch, and replace in cargo remove ### What does this PR try to resolve? This PR is part of the continued work on cargo remove (#11099, see deferred work). After a successful removal of a dependency, clean up the profile, patch, and replace sections to remove all references to it. **Note** the GC process was expanded to clean up not just references to the dependencies just removed, but also references of all dependencies. This was because there's not an easy way to determine which dependencies correspond to the given TOML keys, without either 1) figuring that out before the removal (therefore having to predict the behavior), or 2) returning that information from the remove function (somewhat unorthodox for an op). ### How should we review and test this PR? Verify that the implementation makes sense and that the tests are sufficient.
- Loading branch information
Showing
22 changed files
with
463 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
use cargo_test_support::basic_manifest; | ||
use cargo_test_support::compare::assert_ui; | ||
use cargo_test_support::curr_dir; | ||
use cargo_test_support::git; | ||
use cargo_test_support::project; | ||
use cargo_test_support::CargoCommand; | ||
|
||
use crate::cargo_remove::init_registry; | ||
|
||
#[cargo_test] | ||
fn case() { | ||
init_registry(); | ||
|
||
let git_project1 = git::new("bar1", |project| { | ||
project | ||
.file("Cargo.toml", &basic_manifest("bar", "0.1.0")) | ||
.file("src/lib.rs", "") | ||
}) | ||
.url(); | ||
|
||
let git_project2 = git::new("bar2", |project| { | ||
project | ||
.file("Cargo.toml", &basic_manifest("bar", "0.1.0")) | ||
.file("src/lib.rs", "") | ||
}) | ||
.url(); | ||
|
||
let in_project = project() | ||
.file( | ||
"Cargo.toml", | ||
&format!( | ||
"[workspace]\n\ | ||
members = [ \"my-member\" ]\n\ | ||
\n\ | ||
[package]\n\ | ||
name = \"my-project\"\n\ | ||
version = \"0.1.0\"\n\ | ||
\n\ | ||
[dependencies]\n\ | ||
bar = {{ git = \"{git_project1}\" }}\n\ | ||
\n\ | ||
[patch.\"{git_project1}\"]\n\ | ||
bar = {{ git = \"{git_project2}\" }}\n\ | ||
\n\ | ||
[patch.crates-io]\n\ | ||
bar = {{ git = \"{git_project2}\" }}\n", | ||
), | ||
) | ||
.file("src/lib.rs", "") | ||
.file( | ||
"my-member/Cargo.toml", | ||
"[package]\n\ | ||
name = \"my-member\"\n\ | ||
version = \"0.1.0\"\n\ | ||
\n\ | ||
[dependencies]\n\ | ||
bar = \"0.1.0\"\n", | ||
) | ||
.file("my-member/src/lib.rs", "") | ||
.build(); | ||
|
||
snapbox::cmd::Command::cargo_ui() | ||
.arg("remove") | ||
.args(["bar"]) | ||
.current_dir(&in_project.root()) | ||
.assert() | ||
.success() | ||
.stdout_matches_path(curr_dir!().join("stdout.log")) | ||
.stderr_matches_path(curr_dir!().join("stderr.log")); | ||
|
||
assert_ui().subset_matches(curr_dir!().join("out"), &in_project.root()); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[workspace] | ||
members = [ "my-member" ] | ||
|
||
[package] | ||
name = "my-project" | ||
version = "0.1.0" | ||
|
||
[patch.crates-io] | ||
bar = { git = "[ROOTURL]/bar2" } |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Removing bar from dependencies | ||
Updating git repository `[ROOTURL]/bar2` | ||
Updating `dummy-registry` index |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
[package] | ||
name = "cargo-remove-test-fixture" | ||
version = "0.1.0" | ||
|
||
[[bin]] | ||
name = "main" | ||
path = "src/main.rs" | ||
|
||
[build-dependencies] | ||
semver = "0.1.0" | ||
|
||
[dependencies] | ||
docopt = "0.6" | ||
rustc-serialize = "0.4" | ||
semver = "0.1" | ||
toml = "0.1" | ||
clippy = "0.4" | ||
|
||
[dev-dependencies] | ||
regex = "0.1.1" | ||
serde = "1.0.90" | ||
toml = "0.2.3" | ||
docopt = "0.6" | ||
|
||
[features] | ||
std = ["serde/std", "semver/std"] | ||
|
||
[profile.dev.package.docopt] | ||
opt-level = 3 | ||
|
||
[profile.dev.package."toml@0.1.0"] | ||
opt-level = 3 | ||
|
||
[profile.release.package.toml] | ||
opt-level = 1 | ||
overflow-checks = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
Oops, something went wrong.