endpoint-libs 1.7.28

Common dependencies to be used with Pathscale projects, projects that use [endpoint-gen](https://github.com/pathscale/endpoint-gen), and projects that use honey_id-types.
Documentation
mod basics;
mod conn;
pub mod handler;
mod headers;
mod listener;
mod message;
mod push;
mod server;
mod session;
mod subs;
#[cfg(any(feature = "ws", feature = "ws-wtx"))]
mod tls;
pub mod toolbox;
mod traits;

#[cfg(feature = "ws-client")]
mod client;
#[cfg(feature = "ws")]
pub(crate) mod tungstenite;
#[cfg(feature = "ws-wtx")]
pub(crate) mod wtx;

pub use basics::*;
pub use conn::*;
pub use headers::*;
pub use listener::*;
pub use message::*;
pub use server::*;
pub use session::*;
pub use subs::*;
#[cfg(any(feature = "ws", feature = "ws-wtx"))]
pub use tls::*;
pub use traits::*;

#[cfg(feature = "ws-client")]
pub use client::*;
#[cfg(feature = "ws")]
pub use tungstenite::*;
#[cfg(feature = "ws-wtx")]
pub use wtx::WtxUpgrader;