Skip to content

Commit

Permalink
Fix gRPC build in CI (#1457)
Browse files Browse the repository at this point in the history
* re-add openssl dep to gRPC bindings and limit it to `x86_64-unknown-linux-musl` target
  • Loading branch information
wulfraem authored Nov 28, 2024
1 parent 14fc0f1 commit e9c6b78
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bindings/grpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ tracing = { version = "0.1.40", features = ["async-await"] }
tracing-subscriber = "0.3.18"
url = { version = "2.5", default-features = false }

[target.x86_64-unknown-linux-musl.dependencies]
openssl = { version = "0.10", features = ["vendored"] } # this is not an unused dependency but required for the docker build

[dev-dependencies]
fastcrypto = { git = "https://github.com/MystenLabs/fastcrypto", rev = "5f2c63266a065996d53f98156f0412782b468597", package = "fastcrypto" }
identity_storage = { path = "../../identity_storage", features = ["memstore"] }
Expand Down

0 comments on commit e9c6b78

Please sign in to comment.