blob: e5cd3be7305437ecc11bffa770338b48ecc48673 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#![doc = include_str!("../README.md")]
#![cfg_attr(feature = "f16", feature(f16))]
#![cfg_attr(feature = "f128", feature(f128))]
pub mod backend;
pub mod codec;
pub mod context;
pub mod event;
pub mod transport;
pub mod types;
pub use zr_protocol_macros::Codec;
pub use zr_protocol_macros::Decode;
pub use zr_protocol_macros::Encode;
pub use types::prefix::{CountPrefix, LenPrefixed};
|