Skip to content

Commit

Permalink
fix deps for arm
Browse files Browse the repository at this point in the history
  • Loading branch information
erebe committed Aug 27, 2024
1 parent 5b2a34f commit 070e63d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,14 @@ tokio-util = { version = "0.7.11", features = ["io"] }
[target.'cfg(target_family = "unix")'.dependencies]
tokio-fd = "0.3.0"

[target.'cfg(any(target_os = "linux", target_os = "macos"))'.dependencies]
[target.'cfg(all(any(target_os = "linux", target_os = "macos"), any(target_arch = "x86_64", target_arch = "aarch64")))'.dependencies]
tokio-rustls = { version = "0.26.0", features = [] }
rcgen = { version = "0.13.1", default-features = false, features = ["aws_lc_rs"] }

[target.'cfg(not(any(target_os = "linux", target_os = "macos")))'.dependencies]
[target.'cfg(not(all(any(target_os = "linux", target_os = "macos"), any(target_arch = "x86_64", target_arch = "aarch64"))))'.dependencies]
tokio-rustls = { version = "0.26.0", default-features = false, features = ["logging", "tls12", "ring"] }
rcgen = { version = "0.13.1", default-features = false, features = ["ring"] }


[dev-dependencies]
testcontainers = "0.17.0"

Expand Down

0 comments on commit 070e63d

Please sign in to comment.