crabstep 0.5.0

Cross-platform, zero-dependency Apple/NeXTSTEP typedstream deserializer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Provides a deserializer for the `typedstream` format

pub mod constants;
pub mod consumed;
#[cfg(feature = "foundation")]
#[cfg_attr(docsrs, doc(cfg(feature = "foundation")))]
pub mod foundation;
pub mod header;
pub mod iter;
pub mod number;
pub mod read;
pub mod string;
pub mod typedstream;