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!("features `ws` and `ws-wtx` are mutually exclusive — they provide conflicting WebSocket backends (tungstenite vs wtx). Enable at most one.");
5
6pub mod libs;
7#[cfg(feature = "types")]
8pub mod model;