rktk_rrp/
lib.rs

1#![doc = include_str!("../README.md")]
2#![cfg_attr(not(feature = "std"), no_std)]
3#![cfg_attr(doc, feature(doc_auto_cfg))]
4
5#[cfg(all(not(feature = "client"), not(feature = "server")))]
6compile_error!("At least, one of the `client` or `server` features should be enabled");
7
8#[cfg(feature = "client")]
9pub mod client;
10pub mod endpoints;
11#[cfg(feature = "server")]
12pub mod server;
13pub mod transport;
14
15mod macros;
16
17#[cfg(test)]
18mod tests;