Skip to content

Commit

Permalink
push split tls
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfeil committed Jan 18, 2025
1 parent 9ac11df commit 72aed69
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions truss-transfer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ tokio = { version = "1.24", features = ["rt-multi-thread", "macros", "fs"] }



[target.'cfg(target_arch = "aarch64")'.dependencies]
[target.'cfg(any(target_arch = "aarch64", target_arch = "arm"))'.dependencies]
# https://github.com/briansmith/ring/issues/1789
reqwest = { version = "0.12.2", features = ["blocking", "json", "stream"] }
reqwest = { version = "0.12.2", optional = true, features = ["blocking", "json", "stream"] }
openssl = { version = "0.10", features = ["vendored"] }
# else:
[target.'cfg(not(target_arch = "aarch64"))'.dependencies]
reqwest = { version = "0.12.2", default-features = false, features = ["blocking", "json", "stream", "rustls-tls"] }

[target.'cfg(not(any(target_arch = "aarch64", target_arch = "arm")))'.dependencies]
reqwest = { version = "0.12.2", optional = true, default-features = false, features = ["blocking", "json", "stream", "rustls-tls"] }


[features]
Expand Down

0 comments on commit 72aed69

Please sign in to comment.