Skip to content

Commit

Permalink
Update cargo
Browse files Browse the repository at this point in the history
9 commits in 3cdf1ab25dc4fe56f890e8c7330d53a23ad905d3..b8f30cb23c4e5f20854a4f683325782b7cff9837
2022-10-07 17:34:03 +0000 to 2022-10-10 19:16:06 +0000

- Add more doc comments for three modules (rust-lang/cargo#11207)
- docs: fix (rust-lang/cargo#11208)
- Add completions for `cargo remove` (rust-lang/cargo#11204)
- Config file loaded via CLI takes priority over env vars (rust-lang/cargo#11077)
- Use `#[default]` when possible (rust-lang/cargo#11197)
- Implement RFC 3289: source replacement ambiguity (rust-lang/cargo#10907)
- Use correct version of cargo in test (rust-lang/cargo#11193)
- Check empty input for login (rust-lang/cargo#11145)
- Add retry support to sparse registries (rust-lang/cargo#11069)
  • Loading branch information
weihanglo committed Oct 11, 2022
1 parent db0597f commit 1ff4f52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 51 files
+11 −0 crates/cargo-test-support/src/lib.rs
+30 −17 crates/cargo-test-support/src/registry.rs
+5 −1 src/bin/cargo/commands/add.rs
+2 −6 src/cargo/core/compiler/fingerprint.rs
+1 −1 src/cargo/core/compiler/rustdoc.rs
+15 −6 src/cargo/core/compiler/unit_dependencies.rs
+5 −4 src/cargo/core/package.rs
+1 −1 src/cargo/core/package_id.rs
+14 −22 src/cargo/core/resolver/resolve.rs
+22 −4 src/cargo/core/source/source_id.rs
+60 −16 src/cargo/ops/cargo_compile.rs
+71 −92 src/cargo/ops/registry.rs
+1 −1 src/cargo/ops/tree/format/mod.rs
+2 −2 src/cargo/ops/vendor.rs
+25 −11 src/cargo/sources/config.rs
+71 −58 src/cargo/sources/registry/http_remote.rs
+1 −1 src/cargo/sources/registry/mod.rs
+1 −12 src/cargo/util/command_prelude.rs
+7 −1 src/cargo/util/config/de.rs
+74 −39 src/cargo/util/config/mod.rs
+13 −9 src/cargo/util/config/value.rs
+11 −4 src/cargo/util/errors.rs
+12 −0 src/cargo/util/mod.rs
+11 −6 src/cargo/util/network.rs
+6 −0 src/cargo/util/profile.rs
+1 −1 src/doc/src/guide/tests.md
+1 −1 src/doc/src/reference/config.md
+8 −0 src/doc/src/reference/source-replacement.md
+11 −0 src/etc/_cargo
+2 −0 src/etc/cargo.bashcomp.sh
+11 −32 tests/testsuite/alt_registry.rs
+3 −4 tests/testsuite/artifact_dep.rs
+5 −1 tests/testsuite/bad_config.rs
+3 −2 tests/testsuite/cargo_features.rs
+1 −4 tests/testsuite/cargo_remove/offline/mod.rs
+69 −1 tests/testsuite/config_cli.rs
+28 −0 tests/testsuite/config_include.rs
+10 −5 tests/testsuite/credential_process.rs
+4 −3 tests/testsuite/cross_publish.rs
+7 −6 tests/testsuite/features_namespaced.rs
+22 −14 tests/testsuite/inheritable_workspace_fields.rs
+33 −0 tests/testsuite/login.rs
+8 −5 tests/testsuite/logout.rs
+1 −0 tests/testsuite/main.rs
+11 −8 tests/testsuite/owner.rs
+125 −101 tests/testsuite/publish.rs
+81 −13 tests/testsuite/registry.rs
+9 −4 tests/testsuite/search.rs
+243 −0 tests/testsuite/source_replacement.rs
+4 −3 tests/testsuite/weak_dep_features.rs
+17 −14 tests/testsuite/yank.rs

0 comments on commit 1ff4f52

Please sign in to comment.