sib 0.0.17

A high-performance, secure, and cross-platform modules optimized for efficiency, scalability, and reliability.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[cfg(all(
    any(feature = "net-h2-server", feature = "net-h3-server"),
    feature = "rt-glommio",
    feature = "rt-tokio"
))]
compile_error!("Features `rt-glommio` and `rt-tokio` are mutually exclusive. Pick one.");

#[cfg(any(
    feature = "net-h1-server",
    feature = "net-h2-server",
    feature = "net-h3-server",
    feature = "net-ws-server",
    feature = "net-wt-server",
))]
pub mod http;

#[cfg(feature = "net-kafka-cli")]
pub mod kafka_cli;