Skip to content

Commit

Permalink
Unvendor OpenSSL for Windows to avoid CI troubles with perl.exe
Browse files Browse the repository at this point in the history
  • Loading branch information
mvines authored and mergify[bot] committed Dec 3, 2021
1 parent 689b8d7 commit c9bfc99
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion storage-bigtable/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,13 @@ zstd = "0.9.0"

# openssl is a dependency of the goauth and smpl_jwt crates, but explicitly
# declare it here as well to activate the "vendored" feature that builds OpenSSL
# statically
# statically...
[target."cfg(not(windows))".dependencies]
openssl = { version = "0.10", features = ["vendored"] }
# ...except on Windows to avoid having to deal with getting CI past a build-time
# Perl dependency
[target."cfg(windows)".dependencies]
openssl = { version = "0.10", features = [] }

[lib]
crate-type = ["lib"]
Expand Down

0 comments on commit c9bfc99

Please sign in to comment.