#![deny(missing_docs)]
#![deny(unsafe_code)]
#![deny(warnings)]
#![doc = include_str!("README.tpl")]
include!(concat!(env!("OUT_DIR"), "/readme.rs"));
pub mod deps {
pub use base64;
pub use serde;
pub use serde_json;
}
mod error;
pub use error::*;
mod id;
pub use id::*;
mod uniq;
pub use uniq::*;
mod url;
pub use crate::url::*;
#[cfg(feature = "file_check")]
pub mod file_check;
pub mod wire;
pub mod ws {
pub const MAX_SEND_QUEUE: usize = 32;
pub const MAX_MESSAGE_SIZE: usize = 2048;
pub const MAX_FRAME_SIZE: usize = 2048;
}
pub type BoxFut<'lt, T> =
std::pin::Pin<Box<dyn std::future::Future<Output = T> + 'lt + Send>>;