Skip to content

Commit

Permalink
update cargo toml
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfeil committed Jan 18, 2025
1 parent b702c8e commit e388d26
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion truss-transfer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
tokio = { version = "1.24", features = ["rt-multi-thread", "macros", "fs"] }

# Default reqwest dependency with rustls for portability
# Base reqwest dependency without default features
reqwest = { version = "0.12", default-features = false }

# Conditional dependencies for architectures
[target.'cfg(any(target_arch = "x86", target_arch = "x86_64", target_arch = "x64", target_arch = "ppc64le"))'.dependencies]
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "stream", "rustls-tls"] }

Expand Down

0 comments on commit e388d26

Please sign in to comment.