Skip to content

Commit

Permalink
ensure openssl version
Browse files Browse the repository at this point in the history
  • Loading branch information
insipx committed Oct 18, 2024
1 parent a7bd4b5 commit 995e6bf
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 24 deletions.
38 changes: 19 additions & 19 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ web-sys = "0.3"
js-sys = "0.3"
# NOTE: A regression in openssl-sys exists where libatomic is dynamically linked
# for i686-linux-android targets. https://github.com/sfackler/rust-openssl/issues/2163
openssl-sys = "0.9.104"
openssl = "0.10.68"
openssl-sys = "=0.9.92"
openssl = "=0.10.57"
libsqlite3-sys = { version = "0.29", features = ["bundled-sqlcipher-vendored-openssl" ] }
dyn-clone = "1"
trait-variant = "0.1.2"
Expand Down
2 changes: 1 addition & 1 deletion bindings_ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ name = "ffi-uniffi-bindgen"
path = "src/bin.rs"

[dev-dependencies]
ethers = { workspace = true, features = ["openssl"] }
ethers = { workspace = true, features = ["rustls"] }
rand.workspace = true
tokio = { workspace = true, features = ["rt-multi-thread"] }
uniffi = { version = "0.28.0", features = ["bindgen-tests"] }
Expand Down
3 changes: 1 addition & 2 deletions xmtp_id/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,14 @@ tracing.workspace = true
xmtp_cryptography.workspace = true
xmtp_proto = { workspace = true, features = ["proto_full"] }
wasm-timer.workspace = true
ethers = { workspace = true, features = ["rustls"] }

[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.2", features = ["js"] }
openmls = { workspace = true, features = ["js"] }
ethers = { workspace = true, features = ["rustls"] }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
openmls.workspace = true
ethers = { workspace = true, features = ["openssl"] }

[dev-dependencies]
xmtp_v2 = { path = "../xmtp_v2" }
Expand Down

0 comments on commit 995e6bf

Please sign in to comment.