From c2f3842252d93ef913c03cd39228a56e2194c18f Mon Sep 17 00:00:00 2001 From: Kai Hudalla Date: Tue, 19 Sep 2023 12:50:31 +0200 Subject: [PATCH] Pin openssl-sys version Pinned version to 0.9.92. --- DEPENDENCIES | 2 +- components/Cargo.lock | 8 ++++---- components/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/DEPENDENCIES b/DEPENDENCIES index 347d510..f3132bf 100644 --- a/DEPENDENCIES +++ b/DEPENDENCIES @@ -88,7 +88,7 @@ crate/cratesio/-/num_enum_derive/0.5.11, BSD-3-Clause OR (MIT OR Apache-2.0), ap crate/cratesio/-/num-traits/0.2.16, MIT OR Apache-2.0, approved, clearlydefined crate/cratesio/-/once_cell/1.18.0, MIT OR Apache-2.0, approved, clearlydefined crate/cratesio/-/openssl-probe/0.1.5, MIT OR Apache-2.0, approved, clearlydefined -crate/cratesio/-/openssl-sys/0.9.90, MIT AND (Apache-2.0 AND MIT), approved, #9757 +crate/cratesio/-/openssl-sys/0.9.92, MIT AND (Apache-2.0 AND MIT), approved, #9757 crate/cratesio/-/paho-mqtt/0.12.1, EPL-1.0 OR BSD-3-Clause, approved, #9785 crate/cratesio/-/paho-mqtt-sys/0.8.1, (BSD-3-Clause OR EPL-1.0) AND (BSD-3-Clause OR EPL-2.0) AND GPL-2.0-only AND GPL-2.0-or-later AND MIT, approved, #9776 crate/cratesio/-/parking/2.1.0, Apache-2.0 OR MIT, approved, clearlydefined diff --git a/components/Cargo.lock b/components/Cargo.lock index 56ebcb3..2f76a35 100644 --- a/components/Cargo.lock +++ b/components/Cargo.lock @@ -1162,18 +1162,18 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "openssl-src" -version = "111.26.0+1.1.1u" +version = "111.28.0+1.1.1w" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "efc62c9f12b22b8f5208c23a7200a442b2e5999f8bdf80233852122b5a4f6f37" +checksum = "3ce95ee1f6f999dfb95b8afd43ebe442758ea2104d1ccb99a94c30db22ae701f" dependencies = [ "cc", ] [[package]] name = "openssl-sys" -version = "0.9.90" +version = "0.9.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "374533b0e45f3a7ced10fcaeccca020e66656bc03dac384f852e4e5a7a8104a6" +checksum = "db7e971c2c2bba161b2d2fdf37080177eff520b3bc044787c7f1f5f9e78d869b" dependencies = [ "cc", "libc", diff --git a/components/Cargo.toml b/components/Cargo.toml index ddcfefa..7bb883a 100644 --- a/components/Cargo.toml +++ b/components/Cargo.toml @@ -43,7 +43,7 @@ fms-proto = { path = "fms-proto" } influx-client = { path = "influx-client", default-features = false } influxrs = { version = "2.0" } log = { version = "0.4" } -openssl = { version = "0.10", default-features = false } +openssl-sys = { version = "0.9.92", default-features = false } protobuf = { version = "3" } protobuf-codegen = { version = "3" } protoc-bin-vendored = { version = "3" }