-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 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 |