forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
9 commits in 9286a1beba5b28b115bad67de2ae91fb1c61eb0b..a3dfea71ca0c888a88111086898aa833c291d497 2022-11-04 06:41:49 +0000 to 2022-11-11 03:50:47 +0000 - fix: return non UTF-8 error message (rust-lang/cargo#11321) - Extract `two_kinds_of_msg_format_err` message to de-duplicate it (rust-lang/cargo#11358) - Propagate change of artifact bin dep to its parent fingerprint (rust-lang/cargo#11353) - Fix not a hyperlink warnings (rust-lang/cargo#11357) - Fix wait-for-publish with sparse registry (rust-lang/cargo#11356) - Add `rm` alias to configuration docs (rust-lang/cargo#11351) - Add `registries.crates-io.protocol` docs (rust-lang/cargo#11350) - test(features2): test to prevent regressing of optional host deps of dep (rust-lang/cargo#11342) - Bump to 0.68.0, update changelog (rust-lang/cargo#11340)
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 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
Submodule cargo
updated
14 files
+122 −1 | CHANGELOG.md | |
+1 −1 | Cargo.toml | |
+1 −0 | crates/cargo-test-support/src/registry.rs | |
+2 −2 | crates/cargo-util/src/process_builder.rs | |
+18 −14 | src/cargo/core/compiler/fingerprint.rs | |
+19 −6 | src/cargo/ops/cargo_new.rs | |
+1 −0 | src/cargo/sources/registry/http_remote.rs | |
+7 −6 | src/cargo/util/command_prelude.rs | |
+3 −2 | src/doc/src/reference/config.md | |
+11 −4 | src/doc/src/reference/unstable.md | |
+66 −0 | tests/testsuite/artifact_dep.rs | |
+71 −0 | tests/testsuite/features2.rs | |
+20 −0 | tests/testsuite/new.rs | |
+11 −6 | tests/testsuite/publish.rs |