forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
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 rust-lang#99107 - weihanglo:update-cargo, r=ehuss
Update cargo 7 commits in c0bbd42ce5e83fe2a93e817c3f9b955492d3130a..b1dd22e668af5279e13a071ad4b17435bd6bfa4c 2022-07-03 13:41:11 +0000 to 2022-07-09 14:48:50 +0000 - Mention `[patch]` config in "Overriding Dependencies" (rust-lang/cargo#10836) - Update terminal-width flag. (rust-lang/cargo#10833) - Refactor check_yanked to avoid some duplication (rust-lang/cargo#10835) - Fix publishing to crates.io with -Z sparse-registry (rust-lang/cargo#10831) - Make `is_yanked` return `Poll<>` (rust-lang/cargo#10830) - Fix corrupted git checkout recovery. (rust-lang/cargo#10829) - add a cache for discovered workspace roots (rust-lang/cargo#10776)
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule cargo
updated
19 files
+2 −2 | src/cargo/core/compiler/mod.rs | |
+3 −3 | src/cargo/core/source/mod.rs | |
+71 −52 | src/cargo/core/workspace.rs | |
+6 −20 | src/cargo/ops/cargo_install.rs | |
+40 −11 | src/cargo/ops/cargo_package.rs | |
+14 −2 | src/cargo/ops/common_for_install_and_uninstall.rs | |
+1 −1 | src/cargo/ops/mod.rs | |
+7 −4 | src/cargo/ops/registry.rs | |
+2 −2 | src/cargo/sources/directory.rs | |
+2 −2 | src/cargo/sources/git/source.rs | |
+10 −32 | src/cargo/sources/git/utils.rs | |
+2 −2 | src/cargo/sources/path.rs | |
+2 −8 | src/cargo/sources/registry/mod.rs | |
+1 −1 | src/cargo/sources/replaced.rs | |
+4 −1 | src/cargo/util/config/mod.rs | |
+48 −24 | src/cargo/util/toml/mod.rs | |
+6 −0 | src/doc/src/reference/overriding-dependencies.md | |
+1 −1 | tests/testsuite/build.rs | |
+62 −0 | tests/testsuite/git.rs |