uor-addr 0.2.0

UOR-ADDR — the typed reference vocabulary for content-addressing across recursively-grammared formats. Standard-library Layer-3 Prism realization of the UOR Foundation; ships the common architectural surface plus the JSON realization under JCS-RFC8785 + NFC + SHA-256.
Documentation
//! A minimal `no_std` + `no_alloc` Protocol Buffers v3 wire-format
//! decoder, sufficient for walking ONNX `ModelProto` messages by
//! reference.
//!
//! Because `uor-addr` is no_std + no_alloc by default, the ONNX
//! realization hand-writes the protobuf decode rather than pulling in
//! `prost` / `protobuf` (which require `alloc`). The decoder is
//! reference-based: it walks the input bytes, validates field numbers /
//! wire types, and yields borrowed field views — it never copies.
//!
//! Authoritative source: <https://protobuf.dev/programming-guides/encoding/>.

pub mod tag;
pub mod varint;
pub mod wire;

pub use tag::{Tag, WireType};
pub use varint::read_varint;
pub use wire::{Field, FieldValue, MessageReader, WireError};