Skip to main content

endpoint_libs/
lib.rs

1#![cfg_attr(test, allow(deprecated))]
2
3#[cfg(all(feature = "ws", feature = "ws-wtx"))]
4compile_error!(
5    "features `ws` and `ws-wtx` are mutually exclusive — they provide conflicting WebSocket backends (tungstenite vs wtx). Enable at most one."
6);
7
8#[cfg(all(feature = "ws", feature = "ws-wtx-http2"))]
9compile_error!(
10    "features `ws` and `ws-wtx-http2` are mutually exclusive — ws-wtx-http2 requires the ws-wtx backend."
11);
12
13pub mod libs;
14#[cfg(feature = "types")]
15pub mod model;