Include tls feature (#20360)

This commit is contained in:
Tyera Eulberg 2021-09-30 20:55:11 -05:00 committed by GitHub
parent e31c065544
commit fc6b617477
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 1 deletions

3
Cargo.lock generated
View File

@ -6790,10 +6790,13 @@ dependencies = [
"httparse",
"log 0.4.14",
"rand 0.8.3",
"rustls",
"sha-1 0.9.6",
"thiserror",
"url 2.2.2",
"utf-8",
"webpki",
"webpki-roots",
]
[[package]]

View File

@ -33,7 +33,7 @@ solana-version = { path = "../version", version = "=1.8.0" }
solana-vote-program = { path = "../programs/vote", version = "=1.8.0" }
thiserror = "1.0"
tokio = { version = "1", features = ["full"] }
tungstenite = "0.15.0"
tungstenite = { version = "0.15.0", features = ["rustls-tls-webpki-roots"] }
url = "2.2.2"
[dev-dependencies]

View File

@ -3885,10 +3885,13 @@ dependencies = [
"httparse",
"log",
"rand 0.8.2",
"rustls",
"sha-1",
"thiserror",
"url",
"utf-8",
"webpki",
"webpki-roots",
]
[[package]]