Add rustls-tls to reqwest in validator-client

This commit is contained in:
Jon Häggblad
2024-04-22 21:36:49 +02:00
parent f34c9d5d28
commit da4eab8fdb
2 changed files with 10 additions and 3 deletions
Generated
+9 -2
View File
@@ -4384,7 +4384,7 @@ dependencies = [
"rw-stream-sink",
"soketto",
"url",
"webpki-roots",
"webpki-roots 0.22.6",
]
[[package]]
@@ -8335,6 +8335,7 @@ dependencies = [
"wasm-bindgen-futures",
"wasm-streams",
"web-sys",
"webpki-roots 0.25.4",
"winreg",
]
@@ -9500,7 +9501,7 @@ dependencies = [
"time",
"tokio-stream",
"url",
"webpki-roots",
"webpki-roots 0.22.6",
]
[[package]]
@@ -11183,6 +11184,12 @@ dependencies = [
"webpki 0.22.4",
]
[[package]]
name = "webpki-roots"
version = "0.25.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
[[package]]
name = "webrtc"
version = "0.6.0"
@@ -24,7 +24,7 @@ nym-group-contract-common = { path = "../../cosmwasm-smart-contracts/group-contr
nym-service-provider-directory-common = { path = "../../cosmwasm-smart-contracts/service-provider-directory" }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
reqwest = { workspace = true, features = ["json"] }
reqwest = { workspace = true, features = ["json", "rustls-tls"] }
nym-http-api-client = { path = "../../../common/http-api-client"}
thiserror = { workspace = true }
log = { workspace = true }