We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8213cb9 + 2117558 commit 0cc47c3Copy full SHA for 0cc47c3
Cargo.toml
@@ -34,7 +34,7 @@ version = "1"
34
version = "1.7.1"
35
36
[dependencies.tokio-tungstenite]
37
-version = "0.24.0"
+version = "0.28.0"
38
features = ["connect"]
39
40
[dependencies.futures-util]
src/realtime/client_event.rs
@@ -92,7 +92,7 @@ pub enum ClientEvent {
92
93
impl From<ClientEvent> for Message {
94
fn from(value: ClientEvent) -> Self {
95
- Message::Text(String::from(&value))
+ Message::Text(String::from(&value).into())
96
}
97
98
0 commit comments