max / makenotwork
1 file changed,
+3 insertions,
-1 deletion
| @@ -32,7 +32,9 @@ sha2 = "0.11" | |||
| 32 | 32 | hex = "0.4" | |
| 33 | 33 | ||
| 34 | 34 | # HTTP | |
| 35 | - | reqwest = { version = "0.13", default-features = false, features = ["json", "native-tls", "stream", "form", "charset", "http2", "system-proxy"] } | |
| 35 | + | # rustls-no-provider: rustls TLS with the OS-native trust store (rustls-platform-verifier), | |
| 36 | + | # no bundled crypto provider — the consuming app installs one process default (ring). | |
| 37 | + | reqwest = { version = "0.13", default-features = false, features = ["json", "rustls-no-provider", "stream", "form", "charset", "http2", "system-proxy"] } | |
| 36 | 38 | bytes = "1" | |
| 37 | 39 | tokio = { version = "1", features = ["rt-multi-thread", "macros", "time", "fs", "io-util"] } | |
| 38 | 40 | tokio-stream = "0.1" |