Skip to content

Commit

Permalink
fix: vendored openssl when cross build arm (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
lwshang authored Jan 10, 2025
1 parent 47cef0b commit fd863e9
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
11 changes: 11 additions & 0 deletions Cargo.lock

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

9 changes: 8 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ ic-agent = "0.39"
ic-identity-hsm = "0.39"
ic-transport-types = "0.39"
ic-wasm = { version = "0.9", default-features = false }
inferno = { version = "0.11", default-features = false, features = ["multithreaded", "nameattr"] }
inferno = { version = "0.11", default-features = false, features = [
"multithreaded",
"nameattr",
] }
tokio = { version = "1.35", features = ["full"] }
anyhow = "1.0"
rand = "0.8"
Expand All @@ -50,3 +53,7 @@ base64 = "0.21"
futures = "0.3.30"
reqwest = "0.12.9"
serde_with = { version = "3.11.0", features = ["base64"] }

# When cross-compiling for ARM, we need to use a vendored version of OpenSSL
[target.arm-unknown-linux-gnueabihf.dependencies]
openssl = { version = "0.10", features = ["vendored"] }

0 comments on commit fd863e9

Please sign in to comment.