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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![cfg_attr(test, allow(deprecated))]

#[cfg(all(feature = "ws", feature = "ws-wtx"))]
compile_error!(
    "features `ws` and `ws-wtx` are mutually exclusive — they provide conflicting WebSocket backends (tungstenite vs wtx). Enable at most one."
);

#[cfg(all(feature = "ws", feature = "ws-wtx-http2"))]
compile_error!(
    "features `ws` and `ws-wtx-http2` are mutually exclusive — ws-wtx-http2 requires the ws-wtx backend."
);

pub mod libs;
#[cfg(feature = "types")]
pub mod model;