tightbeam-rs 0.9.0

A secure, high-performance messaging protocol library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod error;

#[cfg(feature = "standards-iso")]
pub mod iso;
#[cfg(feature = "standards-rfc")]
pub mod rfc;

// Re-exports
// TODO First supported ISO standard
#[allow(unused_imports)]
#[cfg(feature = "standards-iso")]
pub use iso::*;
#[cfg(feature = "standards-rfc")]
pub use rfc::*;