twine-data 0.1.0

Codec for the twine-data binary serialization format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Twine encoding and decoding

pub mod deser;
pub mod ser;
pub mod shallow_value;
pub mod types;

pub use deser::Decoder;
pub use ser::Encoder;
pub use types::{Error, Immediate, Result};

pub mod value;

#[cfg(feature = "bumpalo")]
pub mod value_flat;