From c59a7dcc5b847d326c24e373c18e1d5fb9b042de Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Nov 2023 21:38:41 +0000 Subject: [PATCH] chore: bump openssl from 0.10.55 to 0.10.60 Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.55 to 0.10.60. - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.55...openssl-v0.10.60) --- updated-dependencies: - dependency-name: openssl dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 10 +++++----- admin-tool/Cargo.toml | 2 +- client-linuxapp/Cargo.toml | 2 +- data-formats/Cargo.toml | 2 +- http-wrapper/Cargo.toml | 2 +- integration-tests/Cargo.toml | 2 +- manufacturing-client/Cargo.toml | 2 +- manufacturing-server/Cargo.toml | 2 +- owner-onboarding-server/Cargo.toml | 2 +- owner-tool/Cargo.toml | 2 +- rendezvous-server/Cargo.toml | 2 +- 11 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b16b54c6a..e20921c75 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1837,11 +1837,11 @@ checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" [[package]] name = "openssl" -version = "0.10.55" +version = "0.10.60" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "345df152bc43501c5eb9e4654ff05f794effb78d4efe3d53abc158baddc0703d" +checksum = "79a4c6c3a2b158f7f8f2a2fc5a969fa3a068df6fc9dbb4a43845436e3af7c800" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.4.1", "cfg-if 1.0.0", "foreign-types", "libc", @@ -1883,9 +1883,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "openssl-sys" -version = "0.9.90" +version = "0.9.96" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "374533b0e45f3a7ced10fcaeccca020e66656bc03dac384f852e4e5a7a8104a6" +checksum = "3812c071ba60da8b5677cc12bcb1d42989a65553772897a7e0355545a819838f" dependencies = [ "cc", "libc", diff --git a/admin-tool/Cargo.toml b/admin-tool/Cargo.toml index 85fb3bbcb..a0ecc249c 100644 --- a/admin-tool/Cargo.toml +++ b/admin-tool/Cargo.toml @@ -9,7 +9,7 @@ edition = "2018" [dependencies] anyhow = "1" config = "0.13.3" -openssl = "0.10.55" +openssl = "0.10.60" log = "0.4" time = "0.3" clap = { version = "4.2", features = ["derive"] } diff --git a/client-linuxapp/Cargo.toml b/client-linuxapp/Cargo.toml index 9df5fe961..f13c790fb 100644 --- a/client-linuxapp/Cargo.toml +++ b/client-linuxapp/Cargo.toml @@ -19,7 +19,7 @@ thiserror = "1" libcryptsetup-rs = { version = "0.8.0", features = ["mutex"] } secrecy = "0.8" devicemapper = "0.34" -openssl = "0.10.55" +openssl = "0.10.60" fdo-data-formats = { path = "../data-formats", version = "0.4.12" } fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.12", features = ["client"] } diff --git a/data-formats/Cargo.toml b/data-formats/Cargo.toml index 686f7974b..763a319dd 100644 --- a/data-formats/Cargo.toml +++ b/data-formats/Cargo.toml @@ -9,7 +9,7 @@ edition = "2018" [dependencies] ciborium = "0.2.0" hex = "0.4" -openssl = "0.10.55" +openssl = "0.10.60" log = "0.4" serde = "1" serde_bytes = "0.11" diff --git a/http-wrapper/Cargo.toml b/http-wrapper/Cargo.toml index b1bfcf828..0be4cd322 100644 --- a/http-wrapper/Cargo.toml +++ b/http-wrapper/Cargo.toml @@ -16,7 +16,7 @@ pretty_env_logger = "0.4" hex = "0.4" -openssl = "0.10.55" +openssl = "0.10.60" fdo-data-formats = { path = "../data-formats", version = "0.4.12" } fdo-store = { path = "../store", version = "0.4.12" } diff --git a/integration-tests/Cargo.toml b/integration-tests/Cargo.toml index 66e1bca53..bb1d81eec 100644 --- a/integration-tests/Cargo.toml +++ b/integration-tests/Cargo.toml @@ -23,7 +23,7 @@ tempfile = "3" tera = "1" regex = "1.3.7" lazy_static = "1.4.0" -openssl = "0.10.55" +openssl = "0.10.60" libc = "0.2" reqwest = { version = "0.11", features = ["json"] } tokio = "1.25.0" diff --git a/manufacturing-client/Cargo.toml b/manufacturing-client/Cargo.toml index e0cf448e2..2feabc15d 100644 --- a/manufacturing-client/Cargo.toml +++ b/manufacturing-client/Cargo.toml @@ -11,7 +11,7 @@ anyhow = "1" clap = { version = "4.2", features = ["derive"] } hex = "0.4" log = "0.4" -openssl = "0.10.55" +openssl = "0.10.60" tokio = { version = "1", features = ["full"] } rand = "0.8.4" tss-esapi = { version = "7.2", features = ["generate-bindings"] } diff --git a/manufacturing-server/Cargo.toml b/manufacturing-server/Cargo.toml index aeaf7ff2a..f37527627 100644 --- a/manufacturing-server/Cargo.toml +++ b/manufacturing-server/Cargo.toml @@ -12,7 +12,7 @@ config = "0.13.3" tokio = { version = "1", features = ["full"] } thiserror= "1" serde = "1" -openssl = "0.10.55" +openssl = "0.10.60" warp = "0.3" log = "0.4" hex = "0.4" diff --git a/owner-onboarding-server/Cargo.toml b/owner-onboarding-server/Cargo.toml index 24059ae6b..39ae55b1b 100644 --- a/owner-onboarding-server/Cargo.toml +++ b/owner-onboarding-server/Cargo.toml @@ -12,7 +12,7 @@ config = "0.13.3" tokio = { version = "1", features = ["full"] } thiserror= "1" serde = "1" -openssl = "0.10.55" +openssl = "0.10.60" warp = "0.3" serde_bytes = "0.11" serde_cbor = "0.11" diff --git a/owner-tool/Cargo.toml b/owner-tool/Cargo.toml index dd1dea9a4..89b509c98 100644 --- a/owner-tool/Cargo.toml +++ b/owner-tool/Cargo.toml @@ -10,7 +10,7 @@ edition = "2018" anyhow = "1.0" clap = { version = "4.2", features = ["derive"] } log = "0.4" -openssl = "0.10.55" +openssl = "0.10.60" serde = { version = "1", features = ["derive"] } serde_yaml = "0.9" tokio = { version = "1", features = ["full"] } diff --git a/rendezvous-server/Cargo.toml b/rendezvous-server/Cargo.toml index 11a4db00f..e8f4a0a4f 100644 --- a/rendezvous-server/Cargo.toml +++ b/rendezvous-server/Cargo.toml @@ -12,7 +12,7 @@ config = "0.13.3" tokio = { version = "1", features = ["full"] } thiserror= "1" serde = "1" -openssl = "0.10.55" +openssl = "0.10.60" warp = "0.3" log = "0.4" time = "0.3"