uor_addr/gguf/shapes/mod.rs
1//! GGUF realization spec constants + axis selection. The capacity
2//! profile is the shared [`crate::bounds::AddrBounds`]; only the GGUF v3
3//! spec constants live here.
4
5pub mod bounds;
6
7pub use bounds::{
8 GGUF_DEFAULT_ALIGNMENT, GGUF_HEADER_BYTES, GGUF_MAGIC, GGUF_MAX_DIMS,
9 GGUF_METADATA_ARRAY_DEPTH_MAX, GGUF_VERSION_REQUIRED,
10};
11/// Canonical `Hasher<32>` selection. Re-exported from the Prism standard
12/// library; see wiki ADR-031 / ADR-047.
13pub use prism::crypto::Sha256Hasher;