Commit 6e50a22
committed
Auto merge of rust-lang#74923 - ehuss:update-cargo, r=Mark-Simulacrum
Update cargo
14 commits in aa6872140ab0fa10f641ab0b981d5330d419e927..974eb438da8ced6e3becda2bbf63d9b643eacdeb
2020-07-23 13:46:27 +0000 to 2020-07-29 16:15:05 +0000
- Fix O0 build scripts by default without `[profile.release]` (rust-lang/cargo#8560)
- Emphasize git dependency version locking behavior. (rust-lang/cargo#8561)
- Update lock file encodings on changes (rust-lang/cargo#8554)
- Fix sporadic lto test failures. (rust-lang/cargo#8559)
- build-std: Fix libraries paths following upstream (rust-lang/cargo#8558)
- Flag git http errors as maybe spurious (rust-lang/cargo#8553)
- Display builtin aliases with `cargo --list` (rust-lang/cargo#8542)
- Check manifest for requiring nonexistent features (rust-lang/cargo#7950)
- Clarify test name filter usage (rust-lang/cargo#8552)
- Revert Cargo Book changes for default edition (rust-lang/cargo#8551)
- Prepare for not defaulting to master branch for git deps (rust-lang/cargo#8522)
- Include `+` for crates.io feature requirements in the Cargo Book section on features (rust-lang/cargo#8547)
- Update termcolor and fwdansi versions (rust-lang/cargo#8540)
- Cargo book nitpick in Manifest section (rust-lang/cargo#8543)3 files changed
+8
-19
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1121 | 1121 | | |
1122 | 1122 | | |
1123 | 1123 | | |
1124 | | - | |
| 1124 | + | |
1125 | 1125 | | |
1126 | | - | |
| 1126 | + | |
1127 | 1127 | | |
1128 | 1128 | | |
1129 | 1129 | | |
| |||
4548 | 4548 | | |
4549 | 4549 | | |
4550 | 4550 | | |
4551 | | - | |
| 4551 | + | |
4552 | 4552 | | |
4553 | | - | |
| 4553 | + | |
4554 | 4554 | | |
4555 | | - | |
| 4555 | + | |
4556 | 4556 | | |
4557 | 4557 | | |
4558 | 4558 | | |
| |||
5180 | 5180 | | |
5181 | 5181 | | |
5182 | 5182 | | |
5183 | | - | |
| 5183 | + | |
5184 | 5184 | | |
5185 | | - | |
| 5185 | + | |
5186 | 5186 | | |
5187 | 5187 | | |
5188 | 5188 | | |
| |||
5193 | 5193 | | |
5194 | 5194 | | |
5195 | 5195 | | |
5196 | | - | |
5197 | | - | |
5198 | | - | |
5199 | | - | |
5200 | | - | |
5201 | | - | |
5202 | | - | |
5203 | | - | |
5204 | | - | |
5205 | | - | |
5206 | 5196 | | |
5207 | 5197 | | |
5208 | 5198 | | |
| |||
- Cargo.toml+2-2
- src/bin/cargo/main.rs+28-6
- src/cargo/core/compiler/standard_lib.rs+6-6
- src/cargo/core/dependency.rs+10-2
- src/cargo/core/profiles.rs+23-11
- src/cargo/core/registry.rs+7-8
- src/cargo/core/resolver/context.rs+7-10
- src/cargo/core/resolver/dep_cache.rs+54-9
- src/cargo/core/resolver/encode.rs+93-39
- src/cargo/core/resolver/mod.rs+4-3
- src/cargo/core/resolver/resolve.rs+25-50
- src/cargo/core/source/source_id.rs+100-61
- src/cargo/ops/cargo_compile.rs+72-1
- src/cargo/ops/cargo_generate_lockfile.rs+4-4
- src/cargo/ops/cargo_package.rs+2-2
- src/cargo/ops/lockfile.rs+30-15
- src/cargo/ops/resolve.rs+2-2
- src/cargo/sources/git/source.rs+6-4
- src/cargo/sources/git/utils.rs+160-12
- src/cargo/sources/registry/remote.rs+1-1
- src/cargo/util/network.rs+4-1
- src/doc/man/cargo-test.adoc+8-2
- src/doc/man/generated/cargo-test.html+13-2
- src/doc/src/reference/features.md+1-1
- src/doc/src/reference/profiles.md+18
- src/doc/src/reference/specifying-dependencies.md+5-2
- src/etc/man/cargo-test.1+23-4
- tests/testsuite/bench.rs+3
- tests/testsuite/build.rs+35
- tests/testsuite/cargo_command.rs+11
- tests/testsuite/features.rs+51-8
- tests/testsuite/git.rs+196-9
- tests/testsuite/lockfile_compat.rs+142-16
- tests/testsuite/lto.rs+4-2
- tests/testsuite/mock-std/Cargo.toml+5-5
- tests/testsuite/mock-std/library/alloc/Cargo.toml-3
- tests/testsuite/mock-std/library/alloc/src/lib.rs
- tests/testsuite/mock-std/library/compiler_builtins/Cargo.toml-3
- tests/testsuite/mock-std/library/compiler_builtins/src/lib.rs
- tests/testsuite/mock-std/library/core/Cargo.toml-3
- tests/testsuite/mock-std/library/core/src/lib.rs
- tests/testsuite/mock-std/library/panic_unwind/Cargo.toml-3
- tests/testsuite/mock-std/library/panic_unwind/src/lib.rs
- tests/testsuite/mock-std/library/proc_macro/Cargo.toml-3
- tests/testsuite/mock-std/library/proc_macro/src/lib.rs
- tests/testsuite/mock-std/library/rustc-std-workspace-alloc/Cargo.toml+1-1
- tests/testsuite/mock-std/library/rustc-std-workspace-alloc/lib.rs
- tests/testsuite/mock-std/library/rustc-std-workspace-core/Cargo.toml+1-1
- tests/testsuite/mock-std/library/rustc-std-workspace-core/lib.rs
- tests/testsuite/mock-std/library/rustc-std-workspace-std/Cargo.toml+1-1
- tests/testsuite/mock-std/library/rustc-std-workspace-std/lib.rs
- tests/testsuite/mock-std/library/std/Cargo.toml-3
- tests/testsuite/mock-std/library/std/src/lib.rs
- tests/testsuite/mock-std/library/test/Cargo.toml+4-7
- tests/testsuite/mock-std/library/test/src/lib.rs
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
178 | 178 | | |
179 | 179 | | |
180 | 180 | | |
181 | | - | |
182 | 181 | | |
183 | 182 | | |
184 | 183 | | |
| |||
0 commit comments