Skip to content

Commit

Permalink
chore: disable default-features for reqwest.
Browse files Browse the repository at this point in the history
Was causing openssl-sys to be built on Linux which in turn was breaking
the CI deployment.
  • Loading branch information
tmpfs committed Jun 21, 2024
1 parent 779b6c3 commit 8624b88
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 147 deletions.
148 changes: 2 additions & 146 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/net/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ prost.workspace = true
# pairing
snow = { version = "0.9", optional = true }

reqwest = { version = "0.12.5", features = ["json", "rustls-tls", "stream"] }
reqwest = { version = "0.12.5", default-features = false, features = ["json", "rustls-tls", "stream"] }
tokio = { version = "1", features = ["rt", "rt-multi-thread", "time", "sync", "macros"] }
tokio-tungstenite = { version = "0.23", features = ["rustls-tls-native-roots"] , optional = true}

Expand Down

0 comments on commit 8624b88

Please sign in to comment.