From 498fae9f64a44292382e74e3cb54f80cba8170b9 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Mon, 22 Feb 2021 12:35:48 +1100 Subject: [PATCH] Remove `native-tls` feature from `monero-rpc` 1. `monero-rpc` is not in the position to decide about the TLS backend an application should use. 2. We don't use TLS encrypted communication to my knowledge so we don't have to activate this feature anywhere else. --- monero-rpc/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monero-rpc/Cargo.toml b/monero-rpc/Cargo.toml index cf2c7a6f..c70f2797 100644 --- a/monero-rpc/Cargo.toml +++ b/monero-rpc/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] anyhow = "1" -reqwest = { version = "0.11", default-features = false, features = ["json", "native-tls"] } +reqwest = { version = "0.11", default-features = false, features = ["json"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" tracing = "0.1"