neodyn_xc 0.4.0

Neodyn Exchange is the serialization format for the Neodyn database engine
Documentation
//! Umbrella module for deserializing the exchange format from human-readable
//! text, a compact binary format, or an in-memory value tree.

// Allow module name repetitions in the serializer and deserializer modules,
// because we have names like `BinaryComplexDeserializer` and `from_value`,
// and we don't want to rename these to the non-descriptive `Deserializer`
// or `from`.
#![allow(clippy::module_name_repetitions)]

pub mod value;
pub mod value_ref;
pub mod text;
pub mod binary;