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#40778 - alexcrichton:update-cargo, r=alexcr…
…ichton Update cargo submodule I'm not really sure what we want the cadence here to be. We'll at the very least update the Cargo submodule right before all releases, but otherwise I figured we could just do it whenever needed or otherwise weekly (or something like that). In any case, I don't have a super strong particular reason to do this, it's just been a week or so since the release!
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule cargo
updated
16 files
+14 −14 | .travis.yml | |
+8 −3 | src/bin/metadata.rs | |
+1 −1 | src/bin/test.rs | |
+10 −5 | src/cargo/core/resolver/mod.rs | |
+51 −10 | src/cargo/core/workspace.rs | |
+2 −2 | src/cargo/ops/cargo_rustc/compilation.rs | |
+1 −0 | src/cargo/ops/cargo_rustc/mod.rs | |
+18 −17 | src/cargo/ops/cargo_test.rs | |
+29 −1 | src/cargo/util/errors.rs | |
+1 −1 | src/cargo/util/mod.rs | |
+9 −2 | src/cargo/util/toml.rs | |
+6 −1 | src/doc/manifest.md | |
+17 −2 | tests/metadata.rs | |
+93 −0 | tests/overrides.rs | |
+89 −2 | tests/test.rs | |
+114 −0 | tests/workspaces.rs |