rustbinary 0.1.5

A bounded nextjson binary codec with adaptive frames, zero-allocation paths, schema evolution, and authenticated pipelines
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Opt-in CBOR, compression, encryption, and parallel transform APIs.
//!
//! Enable the `pipeline` feature for the complete layer, or select only the
//! transforms used by the application. Transform order remains explicit in
//! the configuration type chain.

#[cfg(feature = "cbor")]
pub use crate::CborConfig;
#[cfg(feature = "compression")]
pub use crate::CompressedConfig;
#[cfg(all(feature = "cbor", feature = "fingerprint"))]
pub use crate::FingerprintedCborConfig;
#[cfg(feature = "parallel")]
pub use crate::ParallelConfig;
#[cfg(feature = "encryption")]
pub use crate::{EncryptedConfig, EncryptionKey};