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#97403 - arlosi:update-cargo, r=ehuss
Update cargo 10 commits in a4c1cd0eb6b18082a7e693f5a665548fe1534be4..39ad1039d9e3e1746177bf5d134af4c164f95528 2022-05-20 00:55:25 +0000 to 2022-05-25 00:50:02 +0000 * doc: discuss build script instruction order (rust-lang/cargo#10600) * Require http-registry URLs to end with a '/' (rust-lang/cargo#10698) * No printing executable names when running tests and benchmarks with json message format (rust-lang/cargo#10691) * Restore proper error for crate not in local reg (rust-lang/cargo#10683) * Update libcurl (rust-lang/cargo#10696) * Fixed small typos (rust-lang/cargo#10693) * fix bugs with `workspace` key and `update_toml` (rust-lang/cargo#10685) * Bump to 0.64.0, update changelog (rust-lang/cargo#10687) * List C compiler as a build dependency in README (rust-lang/cargo#10678) * Add unstable `rustc-check-cfg` build script output (rust-lang/cargo#10539) r? `@ehuss`
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 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
24 files
+92 −2 | CHANGELOG.md | |
+3 −3 | Cargo.toml | |
+1 −0 | README.md | |
+8 −0 | src/cargo/core/compiler/context/mod.rs | |
+24 −0 | src/cargo/core/compiler/custom_build.rs | |
+33 −31 | src/cargo/core/compiler/mod.rs | |
+11 −4 | src/cargo/core/features.rs | |
+3 −0 | src/cargo/ops/cargo_add/dependency.rs | |
+8 −2 | src/cargo/ops/cargo_test.rs | |
+19 −9 | src/cargo/sources/registry/http_remote.rs | |
+11 −2 | src/cargo/sources/registry/local.rs | |
+1 −4 | src/cargo/sources/registry/mod.rs | |
+18 −1 | src/cargo/util/config/target.rs | |
+5 −4 | src/doc/src/faq.md | |
+9 −0 | src/doc/src/reference/build-scripts.md | |
+3 −3 | src/doc/src/reference/config.md | |
+1 −1 | src/doc/src/reference/semver.md | |
+24 −0 | src/doc/src/reference/unstable.md | |
+33 −0 | tests/testsuite/bench.rs | |
+4 −1 | tests/testsuite/build_script.rs | |
+171 −0 | tests/testsuite/check_cfg.rs | |
+38 −0 | tests/testsuite/local_registry.rs | |
+11 −2 | tests/testsuite/registry.rs | |
+16 −0 | tests/testsuite/test.rs |