From 73088892f36cda084ec48c2a89a914c28e885ee4 Mon Sep 17 00:00:00 2001 From: Kasper Juul Hermansen Date: Sun, 16 Apr 2023 18:33:51 +0000 Subject: [PATCH] Update Rust crate git2 to 0.17.1 --- Cargo.lock | 8 ++++---- crates/octopush_core/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5c8b9a6..2ebbf88 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -482,9 +482,9 @@ checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d" [[package]] name = "git2" -version = "0.17.0" +version = "0.17.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89511277159354bea13ae1e53e0c9ab85ba1b20d7e91618fa30e6bc5566857fb" +checksum = "8b7905cdfe33d31a88bb2e8419ddd054451f5432d1da9eaf2ac7804ee1ea12d5" dependencies = [ "bitflags", "libc", @@ -779,9 +779,9 @@ checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c" [[package]] name = "libgit2-sys" -version = "0.15.0+1.6.3" +version = "0.15.1+1.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "032e537ae4dd4e50c877f258dc55fcd0657b5021f454094a425bb6bcc9edea4c" +checksum = "fb4577bde8cdfc7d6a2a4bcb7b049598597de33ffd337276e9c7db6cd4a2cee7" dependencies = [ "cc", "libc", diff --git a/crates/octopush_core/Cargo.toml b/crates/octopush_core/Cargo.toml index 6b31f99..2d7a38a 100644 --- a/crates/octopush_core/Cargo.toml +++ b/crates/octopush_core/Cargo.toml @@ -15,7 +15,7 @@ tracing = { workspace = true } rand = "0.8.5" hex = "0.4.3" -git2 = { version = "0.17.0", features = [ +git2 = { version = "0.17.1", features = [ "vendored-libgit2", "vendored-openssl", ] }