neodyn_xc 0.4.0

Neodyn Exchange is the serialization format for the Neodyn database engine
Documentation
//! Umbrella module for serializing the exchange format as 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 `TetxSerializer` and `to_value`, and we don't
// want to rename these to the non-descriptive `Serializer` or `to`.
#![allow(clippy::module_name_repetitions)]

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