verit 0.2.0

Exavian Veritate — zero-copy, self-describing, schema-evolvable binary serialization, safe on untrusted bytes, no unsafe, byte-identical across independent implementations.
Documentation
//! The common import surface for Exavian Veritate.
//!
//! ```
//! use verit::prelude::*;
//! ```
//!
//! Brings in the handful of types nearly every consumer touches — the schema
//! builder and data-type helpers, the value tree, `encode`, the readers, the
//! resolver, and `dump_json`. Everything else (the `codegen` and `wire`
//! modules, error types, layout internals) stays reachable through the full
//! `verit::` paths.

#[doc(no_inline)]
pub use crate::{
    dump_json, encode, Budget, Dt, ListReader, Message, Ref, Resolver, Schema, SchemaBuilder,
    SchemaMode, StructReader, Value,
};

pub use crate::VERSION;