This commit is contained in:
bitfl0wer 2023-08-29 00:08:59 +02:00
parent 387991c605
commit 560a0d8fd8
2 changed files with 4 additions and 1 deletions

3
Cargo.lock generated
View File

@ -2265,7 +2265,9 @@ checksum = "2b2dbec703c26b00d74844519606ef15d09a7d6857860f84ad223dec002ddea2"
dependencies = [
"futures-util",
"log",
"native-tls",
"tokio",
"tokio-native-tls",
"tungstenite",
]
@ -2366,6 +2368,7 @@ dependencies = [
"http",
"httparse",
"log",
"native-tls",
"rand",
"sha1",
"thiserror",

View File

@ -28,7 +28,7 @@ chrono = { version = "0.4.26", features = ["serde"] }
regex = "1.9.4"
custom_error = "1.9.2"
native-tls = "0.2.11"
tokio-tungstenite = { version = "0.20.0", fseatures = ["native-tls"] }
tokio-tungstenite = { version = "0.20.0", features = ["native-tls"] }
futures-util = "0.3.28"
http = "0.2.9"
openssl = "0.10.56"