cbsk_socket_tokio/lib.rs
1#![allow(async_fn_in_trait)]
2
3#[cfg(feature = "cbsk_socket")]
4pub use cbsk_socket;
5#[cfg(feature = "tokio-tungstenite")]
6pub use tokio_tungstenite;
7#[cfg(feature = "futures-util")]
8pub use futures_util;
9
10pub(crate) mod r#macro;
11#[cfg(any(feature = "tcp_server", feature = "tcp_client"))]
12pub mod tcp;
13#[cfg(any(feature = "ws_server", feature = "ws_client"))]
14pub mod ws;