From 41743705ce820dab776d672efe60ca176152e9ee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 May 2023 14:42:19 +0000 Subject: [PATCH] build(deps): bump openssl from 0.10.48 to 0.10.52 Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.48 to 0.10.52. - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.48...openssl-v0.10.52) --- updated-dependencies: - dependency-name: openssl dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 11 +++++------ src/ccsr/Cargo.toml | 2 +- src/environmentd/Cargo.toml | 2 +- src/ore/Cargo.toml | 2 +- src/persist/Cargo.toml | 2 +- src/pgwire/Cargo.toml | 2 +- src/postgres-util/Cargo.toml | 2 +- src/ssh-util/Cargo.toml | 2 +- src/workspace-hack/Cargo.toml | 4 ++-- 9 files changed, 14 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3c51602334b36..2a7ae56612dba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1012,7 +1012,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chrono" version = "0.4.24" -source = "git+https://github.com/chronotope/chrono.git?branch=0.4.x#ada0629bb45cf08e9ff72f0ac18fe5eb43d628cb" +source = "git+https://github.com/chronotope/chrono.git?branch=0.4.x#403b247affd97e9ae6e16da3462bc22569c9df26" dependencies = [ "iana-time-zone", "num-traits", @@ -5484,9 +5484,9 @@ dependencies = [ [[package]] name = "openssl" -version = "0.10.48" +version = "0.10.52" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "518915b97df115dd36109bfa429a48b8f737bd05508cf9588977b599648926d2" +checksum = "01b8574602df80f7b85fdfc5392fa884a4e3b3f4f35402c070ab34c3d3f78d56" dependencies = [ "bitflags", "cfg-if", @@ -5525,11 +5525,10 @@ dependencies = [ [[package]] name = "openssl-sys" -version = "0.9.83" +version = "0.9.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "666416d899cf077260dac8698d60a60b435a46d57e82acb1be3d0dad87284e5b" +checksum = "8e17f59264b2809d77ae94f0e1ebabc434773f370d6ca667bd223ea10e06cc7e" dependencies = [ - "autocfg", "cc", "libc", "openssl-src", diff --git a/src/ccsr/Cargo.toml b/src/ccsr/Cargo.toml index 7e0e5cca24623..9066cd0f64296 100644 --- a/src/ccsr/Cargo.toml +++ b/src/ccsr/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] anyhow = "1.0.66" native-tls = "0.2.11" -openssl = { version = "0.10.48", features = ["vendored"] } +openssl = { version = "0.10.52", features = ["vendored"] } reqwest = { version = "0.11.13", features = ["blocking", "json", "native-tls-vendored"] } serde = { version = "1.0.152", features = ["derive"] } serde_json = "1.0.89" diff --git a/src/environmentd/Cargo.toml b/src/environmentd/Cargo.toml index 8da26692a4243..437e17ea7a924 100644 --- a/src/environmentd/Cargo.toml +++ b/src/environmentd/Cargo.toml @@ -58,7 +58,7 @@ mz-stash = { path = "../stash" } mz-storage-client = { path = "../storage-client" } nix = "0.26.1" num_cpus = "1.14.0" -openssl = { version = "0.10.48", features = ["vendored"] } +openssl = { version = "0.10.52", features = ["vendored"] } openssl-sys = { version = "0.9.80", features = ["vendored"] } opentelemetry = { git = "https://github.com/MaterializeInc/opentelemetry-rust.git", features = ["rt-tokio", "trace"] } prometheus = { version = "0.13.3", default-features = false } diff --git a/src/ore/Cargo.toml b/src/ore/Cargo.toml index 28ed001f56b9b..0053e68689f21 100644 --- a/src/ore/Cargo.toml +++ b/src/ore/Cargo.toml @@ -24,7 +24,7 @@ either = "1.8.0" futures = { version = "0.3.25", optional = true } once_cell = "1.16.0" # The vendored feature is transitively depended upon by tokio-openssl. -openssl = { version = "0.10.48", features = ["vendored"], optional = true } +openssl = { version = "0.10.52", features = ["vendored"], optional = true } paste = "1.0.11" pin-project = "1.0.12" prometheus = { version = "0.13.3", default-features = false, optional = true } diff --git a/src/persist/Cargo.toml b/src/persist/Cargo.toml index 7335cb23e6407..355e77b01a4bc 100644 --- a/src/persist/Cargo.toml +++ b/src/persist/Cargo.toml @@ -38,7 +38,7 @@ mz-aws-s3-util = { path = "../aws-s3-util" } mz-ore = { path = "../ore", default-features = false, features = ["metrics", "async", "bytes_"] } mz-persist-types = { path = "../persist-types" } mz-proto = { path = "../proto" } -openssl = { version = "0.10.48", features = ["vendored"] } +openssl = { version = "0.10.52", features = ["vendored"] } openssl-sys = { version = "0.9.80", features = ["vendored"] } postgres-openssl = { git = "https://github.com/MaterializeInc/rust-postgres" } prometheus = { version = "0.13.3", default-features = false } diff --git a/src/pgwire/Cargo.toml b/src/pgwire/Cargo.toml index 661a8f785f2e6..5ed24e31efa76 100644 --- a/src/pgwire/Cargo.toml +++ b/src/pgwire/Cargo.toml @@ -22,7 +22,7 @@ mz-pgcopy = { path = "../pgcopy" } mz-pgrepr = { path = "../pgrepr" } mz-repr = { path = "../repr" } mz-sql = { path = "../sql" } -openssl = { version = "0.10.48", features = ["vendored"] } +openssl = { version = "0.10.52", features = ["vendored"] } postgres = { git = "https://github.com/MaterializeInc/rust-postgres" } tokio = "1.24.2" tokio-openssl = "0.6.3" diff --git a/src/postgres-util/Cargo.toml b/src/postgres-util/Cargo.toml index 10fffbb28cb52..3fb6030bacb52 100644 --- a/src/postgres-util/Cargo.toml +++ b/src/postgres-util/Cargo.toml @@ -13,7 +13,7 @@ mz-ore = { path = "../ore", features = ["async"], optional = true } mz-proto = { path = "../proto", optional = true } mz-repr = { path = "../repr", optional = true } mz-ssh-util = { path = "../ssh-util", optional = true } -openssl = { version = "0.10.48", features = ["vendored"] } +openssl = { version = "0.10.52", features = ["vendored"] } openssh = { version = "0.9.8", default-features = false, features = ["native-mux"], optional = true } postgres_array = { git = "https://github.com/MaterializeInc/rust-postgres-array" } postgres-openssl = { git = "https://github.com/MaterializeInc/rust-postgres" } diff --git a/src/ssh-util/Cargo.toml b/src/ssh-util/Cargo.toml index 20f526e5f054c..b828c2d9fe156 100644 --- a/src/ssh-util/Cargo.toml +++ b/src/ssh-util/Cargo.toml @@ -11,7 +11,7 @@ anyhow = { version = "1.0.66" } mz-ore = { path = "../ore" } openssh = { version = "0.9.8", default-features = false, features = ["native-mux"] } openssh-mux-client = "0.15.5" -openssl = { version = "0.10.48", features = ["vendored"] } +openssl = { version = "0.10.52", features = ["vendored"] } rand = "0.8.5" scopeguard = "1.1.0" serde = { version = "1.0.152", features = ["derive"] } diff --git a/src/workspace-hack/Cargo.toml b/src/workspace-hack/Cargo.toml index fd3b2db2696dc..4698ba0bfa84c 100644 --- a/src/workspace-hack/Cargo.toml +++ b/src/workspace-hack/Cargo.toml @@ -65,7 +65,7 @@ nom = { version = "7.1.2" } num-bigint = { version = "0.4.3" } num-integer = { version = "0.1.44", features = ["i128"] } num-traits = { version = "0.2.15", features = ["i128"] } -openssl = { version = "0.10.48", features = ["vendored"] } +openssl = { version = "0.10.52", features = ["vendored"] } openssl-sys = { version = "0.9.83", default-features = false, features = ["vendored"] } ordered-float = { version = "3.4.0", features = ["serde"] } parking_lot = { version = "0.12.1", features = ["send_guard"] } @@ -162,7 +162,7 @@ nom = { version = "7.1.2" } num-bigint = { version = "0.4.3" } num-integer = { version = "0.1.44", features = ["i128"] } num-traits = { version = "0.2.15", features = ["i128"] } -openssl = { version = "0.10.48", features = ["vendored"] } +openssl = { version = "0.10.52", features = ["vendored"] } openssl-sys = { version = "0.9.83", default-features = false, features = ["vendored"] } ordered-float = { version = "3.4.0", features = ["serde"] } parking_lot = { version = "0.12.1", features = ["send_guard"] }