1 2 3 4 5 6 7 8 9 10 11 12 13
#![no_std] #![cfg_attr(docsrs, feature(doc_cfg))] #![doc = include_str!("../README.md")] extern crate alloc; #[cfg(feature = "client")] extern crate std; #[cfg(feature = "client")] pub mod client; pub mod coroutine; pub mod rfc8620; pub mod rfc8621;