Skip to content

Commit

Permalink
hack(deps): pin openssl-sys to 0.9.92
Browse files Browse the repository at this point in the history
  • Loading branch information
rami3l authored and djc committed Mar 8, 2024
1 parent 16896b9 commit 00f8036
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
14 changes: 8 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,11 @@ once_cell.workspace = true
opener = "0.6.0"
# `openssl` is used by `curl` or `reqwest` backend although it isn't imported by rustup: this
# allows controlling the vendoring status without exposing the presence of the download crate.
openssl = { version = "0.10", optional = true }
# HACK: We temporarily pin the OpenSSL version due to build issues encountered in
# https://github.com/rust-lang/rustup/pull/3668.
openssl = { version = "=0.10.57", optional = true }
openssl-src = { version = "=111.28.1", optional = true }
openssl-sys = { version = "=0.9.92", optional = true }
opentelemetry = { workspace = true, optional = true }
opentelemetry_sdk = { workspace = true, optional = true }
opentelemetry-otlp = { workspace = true, optional = true }
Expand Down

0 comments on commit 00f8036

Please sign in to comment.