-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
23 files
+8 −2 | Cargo.lock | |
+1 −1 | Cargo.toml | |
+114 −0 | crates/cargo-util-schemas/src/manifest/mod.rs | |
+1 −2 | crates/cargo-util/src/paths.rs | |
+8 −0 | src/cargo/core/dependency.rs | |
+3 −11 | src/cargo/core/features.rs | |
+73 −23 | src/cargo/core/registry.rs | |
+0 −1 | src/cargo/core/workspace.rs | |
+3 −2 | src/cargo/ops/cargo_package.rs | |
+18 −21 | src/cargo/sources/path.rs | |
+15 −3 | src/cargo/sources/registry/mod.rs | |
+13 −0 | src/cargo/util/semver_ext.rs | |
+1,792 −1,630 | src/cargo/util/toml/mod.rs | |
+276 −193 | src/cargo/util/toml/targets.rs | |
+2 −0 | src/doc/man/cargo-update.md | |
+4 −0 | src/doc/man/generated_txt/cargo-update.txt | |
+2 −1 | src/doc/src/commands/cargo-update.md | |
+1 −1 | src/doc/src/reference/unstable.md | |
+2 −0 | src/etc/man/cargo-update.1 | |
+15 −17 | tests/testsuite/cargo/z_help/stdout.term.svg | |
+106 −0 | tests/testsuite/metadata.rs | |
+42 −11 | tests/testsuite/package.rs | |
+62 −5 | tests/testsuite/precise_pre_release.rs |