aboutsummaryrefslogtreecommitdiff
path: root/server/client-lib
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-08-15 02:01:43 +0200
committermetamuffin <metamuffin@disroot.org>2024-08-15 02:01:43 +0200
commit1fcc09430619cab543821c66c8bc722f83dbbe1f (patch)
treee8cc11ae4c45d1269391504620ce9b7dfc3e9cf2 /server/client-lib
parent9427fefc2200b8bf865b018ce00028187372e721 (diff)
downloadhurrycurry-1fcc09430619cab543821c66c8bc722f83dbbe1f.tar
hurrycurry-1fcc09430619cab543821c66c8bc722f83dbbe1f.tar.bz2
hurrycurry-1fcc09430619cab543821c66c8bc722f83dbbe1f.tar.zst
fix configuration problem in client-native-lib
Diffstat (limited to 'server/client-lib')
-rw-r--r--server/client-lib/Cargo.toml4
1 files changed, 3 insertions, 1 deletions
diff --git a/server/client-lib/Cargo.toml b/server/client-lib/Cargo.toml
index 5644a905..47e4bd6d 100644
--- a/server/client-lib/Cargo.toml
+++ b/server/client-lib/Cargo.toml
@@ -8,7 +8,9 @@ hurrycurry-protocol = { path = "../protocol" }
tungstenite = { version = "0.23.0", optional = true, features = [
"rustls-tls-native-roots",
] }
-tokio-tungstenite = { version = "0.23.1", optional = true }
+tokio-tungstenite = { version = "0.23.1", optional = true, features = [
+ "rustls-tls-native-roots",
+] }
tokio = { version = "1.39.2", features = ["net"], optional = true }
serde_json = "1.0.122"
bincode = "2.0.0-rc.3"