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.
This commit is contained in:
Thomas Eizinger 2021-02-22 12:35:48 +11:00
parent 03078f328c
commit 498fae9f64
No known key found for this signature in database
GPG Key ID: 651AC83A6C6C8B96

View File

@ -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"