metamessage 0.1.20

MetaMessage (mm) is a structured data exchange protocol. It is self-describing, self-constraining, and self-exemplifying, enabling lossless data exchange. It is designed as a next-generation universal protocol that natively supports AI, humans, and machines.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod value_type;
pub mod tag;
pub mod mime;
pub mod ast;
pub mod binder;
pub mod to_string;

pub use value_type::ValueType;
pub use tag::Tag;
pub use ast::{Node, Object, Array, Value, Field, ValueData};
pub use binder::bind;
pub use to_string::{to_compact_string, to_string};