From e846900a2d7d8007ddcd2bcce1837abe2cc428ad Mon Sep 17 00:00:00 2001 From: Roderick van Domburg Date: Tue, 15 Oct 2024 20:47:57 +0200 Subject: [PATCH] Specify tokio-tungstenite version crates.io does not allow wildcard versions --- core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index c62e54de..cc3bb8fe 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -59,7 +59,7 @@ thiserror = "1.0" time = { version = "0.3", features = ["formatting", "parsing"] } tokio = { version = "1", features = ["io-util", "macros", "net", "parking_lot", "rt", "sync", "time"] } tokio-stream = "0.1" -tokio-tungstenite = { version = "*", default-features = false, features = ["rustls-tls-native-roots"] } +tokio-tungstenite = { version = "0.24", default-features = false, features = ["rustls-tls-native-roots"] } tokio-util = { version = "0.7", features = ["codec"] } url = "2" uuid = { version = "1", default-features = false, features = ["fast-rng", "v4"] }