Skip to content

Commit

Permalink
Update cargo
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Mar 19, 2022
1 parent 9b701e7 commit 5b4f920
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1502,9 +1502,9 @@ dependencies = [

[[package]]
name = "git2"
version = "0.14.1"
version = "0.14.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e7d3b96ec1fcaa8431cf04a4f1ef5caafe58d5cf7bcc31f09c1626adddb0ffe"
checksum = "3826a6e0e2215d7a41c2bfc7c9244123969273f3476b939a226aac0ab56e9e3c"
dependencies = [
"bitflags",
"libc",
Expand Down Expand Up @@ -1974,9 +1974,9 @@ dependencies = [

[[package]]
name = "libgit2-sys"
version = "0.13.1+1.4.2"
version = "0.13.2+1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43e598aa7a4faedf1ea1b4608f582b06f0f40211eec551b7ef36019ae3f62def"
checksum = "3a42de9a51a5c12e00fc0e4ca6bc2ea43582fc6418488e8f615e905d886f258b"
dependencies = [
"cc",
"libc",
Expand Down
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 43 files
+11 −0 CONTRIBUTING.md
+2 −2 Cargo.toml
+6 −3 README.md
+1 −1 crates/cargo-test-support/Cargo.toml
+7 −2 crates/resolver-tests/src/lib.rs
+1 −2 src/bin/cargo/commands/vendor.rs
+30 −9 src/cargo/core/compiler/future_incompat.rs
+3 −9 src/cargo/core/compiler/unit_dependencies.rs
+12 −0 src/cargo/core/profiles.rs
+146 −74 src/cargo/core/registry.rs
+56 −20 src/cargo/core/resolver/dep_cache.rs
+23 −7 src/cargo/core/resolver/errors.rs
+17 −10 src/cargo/core/resolver/features.rs
+11 −2 src/cargo/core/resolver/mod.rs
+44 −17 src/cargo/core/source/mod.rs
+1 −1 src/cargo/ops/cargo_package.rs
+9 −3 src/cargo/ops/common_for_install_and_uninstall.rs
+82 −56 src/cargo/ops/registry.rs
+8 −7 src/cargo/ops/registry/auth.rs
+1 −3 src/cargo/ops/resolve.rs
+26 −5 src/cargo/sources/directory.rs
+26 −14 src/cargo/sources/git/source.rs
+33 −14 src/cargo/sources/path.rs
+160 −117 src/cargo/sources/registry/index.rs
+31 −14 src/cargo/sources/registry/local.rs
+71 −67 src/cargo/sources/registry/mod.rs
+99 −32 src/cargo/sources/registry/remote.rs
+27 −11 src/cargo/sources/replaced.rs
+15 −0 src/cargo/util/network.rs
+46 −0 src/cargo/util/toml/mod.rs
+3 −0 src/cargo/util/toml/targets.rs
+4 −0 src/cargo/util/vcs.rs
+13 −0 src/doc/contrib/src/process/working-on-cargo.md
+2 −2 src/doc/man/cargo-vendor.md
+3 −2 src/doc/man/generated_txt/cargo-vendor.txt
+2 −2 src/doc/src/commands/cargo-vendor.md
+2 −2 src/etc/man/cargo-vendor.1
+188 −0 tests/testsuite/artifact_dep.rs
+229 −0 tests/testsuite/build.rs
+40 −0 tests/testsuite/features.rs
+25 −0 tests/testsuite/proc_macro.rs
+2 −1 tests/testsuite/search.rs
+66 −0 tests/testsuite/vendor.rs

0 comments on commit 5b4f920

Please sign in to comment.