forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#43319 - SimonSapin:cargoup, r=alexcrichton
Update Cargo to ffab51954ec32d55631c37a8730bb24915fc090b rust-lang/cargo#4123 added the `[patch]` section of the manifest
- Loading branch information
Showing
3 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Submodule cargo
updated
27 files
+57 −0 | Cargo.lock | |
+1 −0 | Cargo.toml | |
+1 −0 | src/bin/cargo.rs | |
+12 −0 | src/cargo/core/dependency.rs | |
+12 −0 | src/cargo/core/manifest.rs | |
+164 −39 | src/cargo/core/registry.rs | |
+51 −15 | src/cargo/core/resolver/encode.rs | |
+17 −0 | src/cargo/core/resolver/mod.rs | |
+15 −0 | src/cargo/core/workspace.rs | |
+1 −0 | src/cargo/lib.rs | |
+12 −5 | src/cargo/ops/cargo_rustc/context.rs | |
+9 −0 | src/cargo/ops/lockfile.rs | |
+5 −2 | src/cargo/ops/registry.rs | |
+37 −16 | src/cargo/ops/resolve.rs | |
+166 −34 | src/cargo/sources/path.rs | |
+3 −0 | src/cargo/util/errors.rs | |
+39 −12 | src/cargo/util/toml/mod.rs | |
+56 −37 | src/cargo/util/toml/targets.rs | |
+38 −4 | src/doc/manifest.md | |
+203 −91 | src/doc/specifying-dependencies.md | |
+1 −1 | src/etc/_cargo | |
+31 −0 | tests/bench.rs | |
+4 −4 | tests/build.rs | |
+10 −2 | tests/cargotest/support/mod.rs | |
+114 −3 | tests/package.rs | |
+744 −0 | tests/patch.rs | |
+92 −43 | tests/rustflags.rs |
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