Skip to content

Commit

Permalink
One crate accidentally enabled vendored feature in openssl, so unvend…
Browse files Browse the repository at this point in the history
…ored builds were not possible
  • Loading branch information
scx1332 authored Jul 8, 2024
1 parent 6d89d15 commit c2d09bb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ lazy_static = "1.4"
log = "0.4"
metrics = "0.12"
num_cpus = "1"
openssl = "0.10"
openssl.workspace = true
openssl-probe = { version = "0.1", optional = true }
serde = "1.0"
serde_json = "1.0"
Expand Down Expand Up @@ -246,6 +246,7 @@ erc20_processor = { git = "https://github.com/golemfactory/erc20_payment_lib", r
gftp = { version = "0.4.0", path = "core/gftp" }
hex = "0.4.3"
libsqlite3-sys = { version = "0.26.0", features = ["bundled"] }
openssl = "0.10"
rand = "0.8.5"
strum = { version = "0.24", features = ["derive"] }
trust-dns-resolver = "0.22"
Expand Down
2 changes: 1 addition & 1 deletion exe-unit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ hex = "0.4.2"
ipnet = "2.3"
lazy_static = "1.4.0"
log = "0.4"
openssl = { version = "0.10", optional = true }
openssl = { workspace = true, optional = true }
rand = "0.8.5"
regex = "1.5"
reqwest = { version = "0.11", optional = false, features = ["stream"] }
Expand Down
4 changes: 2 additions & 2 deletions utils/manifest-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ snailquote = { version = "0.3" }
structopt = { version = "0.3" }
strum = { workspace = true }
url = { version = "2.2", features = ["serde"] }
openssl = { version = "0.10.62", features = ["vendored"] }
openssl = { workspace = true }
md-5 = "0.10"
log = "0.4"
schemars = { version = "0.8", features = [
Expand All @@ -58,7 +58,7 @@ shlex = "1.1"
tar = "0.4"
test-case = "3.1"
ya-manifest-test-utils = "0.1"
openssl = { version = "0.10", features = ["vendored"] }
openssl.workspace = true

[lints]
workspace = true

0 comments on commit c2d09bb

Please sign in to comment.