Skip to content

Commit 6251f4a

Browse files
authored
chore(io_uring): replace compio-ws with tungstenite config in common crate (#2324)
1 parent 1e133e5 commit 6251f4a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ bytes = { workspace = true }
4242
chrono = { workspace = true }
4343
clap = { workspace = true }
4444
comfy-table = { workspace = true }
45-
compio-ws = { workspace = true }
4645
crc32fast = { workspace = true }
4746
derive_more = { workspace = true }
4847
fast-async-mutex = { version = "0.6.7", optional = true }
@@ -58,3 +57,4 @@ thiserror = { workspace = true }
5857
tokio = { workspace = true }
5958
toml = { workspace = true }
6059
tracing = { workspace = true }
60+
tungstenite = { workspace = true }

core/common/src/types/configuration/websocket_config/websocket_client_config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
use crate::types::configuration::auth_config::connection_string::ConnectionString;
2020
use crate::types::configuration::websocket_config::websocket_connection_string_options::WebSocketConnectionStringOptions;
2121
use crate::{AutoLogin, IggyDuration, WebSocketClientReconnectionConfig};
22-
use compio_ws::WebSocketConfig as TungsteniteConfig;
2322
use std::fmt::{Display, Formatter};
2423
use std::str::FromStr;
24+
use tungstenite::protocol::WebSocketConfig as TungsteniteConfig;
2525

2626
/// Configuration for the WebSocket client.
2727
#[derive(Debug, Clone)]

0 commit comments

Comments
 (0)