forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
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#75723 - ehuss:update-cargo, r=ehuss
Update cargo 5 commits in ab32ee88dade1b50c77347599e82ca2de3fb8a51..51b66125ba97d2906f461b3f4e0408f206299bb6 2020-08-10 17:44:43 +0000 to 2020-08-19 20:22:52 +0000 - Add chapters on dependency resolution and SemVer compatibility. (rust-lang/cargo#8609) - Renames SourceId::into_url -> SourceId::as_url (rust-lang/cargo#8611) - Fix bug with PathAndArg config values (rust-lang/cargo#8629) - Show full error context on `cargo run` error. (rust-lang/cargo#8627) - Fix typo in SIGQUIT description (rust-lang/cargo#8615)
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule cargo
updated
21 files
+2 −0 | .github/workflows/main.yml | |
+24 −21 | src/bin/cargo/commands/run.rs | |
+1 −0 | src/cargo/core/compiler/compilation.rs | |
+1 −1 | src/cargo/core/package_id.rs | |
+1 −1 | src/cargo/core/resolver/encode.rs | |
+5 −5 | src/cargo/core/source/source_id.rs | |
+3 −11 | src/cargo/ops/cargo_run.rs | |
+11 −6 | src/cargo/util/config/de.rs | |
+23 −1 | src/cargo/util/config/mod.rs | |
+2 −2 | src/cargo/util/config/path.rs | |
+1 −1 | src/cargo/util/errors.rs | |
+6 −0 | src/doc/README.md | |
+10 −0 | src/doc/semver-check/Cargo.toml | |
+217 −0 | src/doc/semver-check/src/main.rs | |
+2 −0 | src/doc/src/SUMMARY.md | |
+2 −0 | src/doc/src/reference/index.md | |
+8 −0 | src/doc/src/reference/manifest.md | |
+421 −0 | src/doc/src/reference/resolver.md | |
+1,321 −0 | src/doc/src/reference/semver.md | |
+10 −2 | tests/internal.rs | |
+42 −3 | tests/testsuite/tool_paths.rs |