From 5fae1fc4037fc5275ee8058c4dd7a758aa9120ba Mon Sep 17 00:00:00 2001 From: Kasper Juul Hermansen Date: Sat, 20 Jan 2024 00:10:57 +0000 Subject: [PATCH] fix(deps): update rust crate openssl to 0.10.63 --- Cargo.lock | 8 ++++---- cuddle/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 68b1018..ecaad4d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1391,9 +1391,9 @@ checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" [[package]] name = "openssl" -version = "0.10.62" +version = "0.10.63" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8cde4d2d9200ad5909f8dac647e29482e07c3a35de8a13fce7c9c7747ad9f671" +checksum = "15c9d69dd87a29568d4d017cfe8ec518706046a05184e5aea92d0af890b803c8" dependencies = [ "bitflags 2.4.1", "cfg-if", @@ -1426,9 +1426,9 @@ dependencies = [ [[package]] name = "openssl-sys" -version = "0.9.98" +version = "0.9.99" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1665caf8ab2dc9aef43d1c0023bd904633a6a05cb30b0ad59bec2ae986e57a7" +checksum = "22e1bf214306098e4832460f797824c05d25aacdf896f64a985fb0fd992454ae" dependencies = [ "cc", "libc", diff --git a/cuddle/Cargo.toml b/cuddle/Cargo.toml index dc7c8b3..bef66c5 100644 --- a/cuddle/Cargo.toml +++ b/cuddle/Cargo.toml @@ -29,7 +29,7 @@ tracing = "0.1.40" tracing-subscriber = { version = "0.3.18", features = ["json", "env-filter"] } log = { version = "0.4.20", features = ["std", "kv_unstable"] } tera = "1.19.1" -openssl = { version = "0.10.62", features = ["vendored"] } +openssl = { version = "0.10.63", features = ["vendored"] } libz-sys = { version = "1.1.14", default-features = false, features = [ "libc", "static",