blob: ce2b14cb3343710eccbe128585610bb9976348f0 (
plain)
1
2
3
4
5
6
7
8
9
|
pub mod codec;
pub mod context;
pub mod types;
#[cfg(feature = "macros")]
pub use zr_protocol_macros as macros;
/// The default buffer length used to allocate chunks
pub(crate) const DEFAULT_BUFFER_LEN: usize = 2048;
|