Skip to content

Commit

Permalink
fix(rust): switch to Rust native tls.
Browse files Browse the repository at this point in the history
  • Loading branch information
nkaz001 committed Aug 8, 2024
1 parent b723a62 commit 734c7b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hftbacktest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ chrono = { version = "0.4.33", optional = true }
serde = { version = "1.0.196", features = ["derive"], optional = true }
serde_json = { version = "1.0.113", optional = true }
tokio = { version = "1.35.1", features = ["full"], optional = true }
tokio-tungstenite = { version = "0.23.1", features = ["native-tls"], optional = true }
reqwest = { version = "0.12.3", features = ["json", "rustls-tls"], optional = true }
tokio-tungstenite = { version = "0.23.1", features = ["rustls-tls-native-roots"], optional = true }
reqwest = { version = "0.12.3", default-features = false, features = ["json", "rustls-tls-native-roots"], optional = true }
zip = { version = "2.1.3", optional = true }
futures-util = { version = "0.3.30", optional = true }
sha2 = { version = "0.11.0-pre.3", optional = true }
Expand Down

0 comments on commit 734c7b8

Please sign in to comment.