diff options
author | metamuffin <metamuffin@disroot.org> | 2024-08-15 02:01:43 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-08-15 02:01:43 +0200 |
commit | 1fcc09430619cab543821c66c8bc722f83dbbe1f (patch) | |
tree | e8cc11ae4c45d1269391504620ce9b7dfc3e9cf2 | |
parent | 9427fefc2200b8bf865b018ce00028187372e721 (diff) | |
download | hurrycurry-1fcc09430619cab543821c66c8bc722f83dbbe1f.tar hurrycurry-1fcc09430619cab543821c66c8bc722f83dbbe1f.tar.bz2 hurrycurry-1fcc09430619cab543821c66c8bc722f83dbbe1f.tar.zst |
fix configuration problem in client-native-lib
-rw-r--r-- | server/client-lib/Cargo.toml | 4 |
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" |