chat-core 0.4.1

Core library for chat-rs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[cfg(any(feature = "tungstenite", feature = "tokio-tungstenite"))]
pub(crate) mod common;

#[cfg(feature = "reqwest-transport")]
mod reqwest;
#[cfg(feature = "tokio-tungstenite")]
mod tokio_tungstenite;
#[cfg(feature = "tungstenite")]
mod tungstenite;

#[cfg(feature = "reqwest-transport")]
pub use self::reqwest::ReqwestTransport;
#[cfg(feature = "tokio-tungstenite")]
pub use self::tokio_tungstenite::AsyncWsTransport;
#[cfg(feature = "tungstenite")]
pub use self::tungstenite::WsTransport;