uor_addr/onnx/shapes/mod.rs
1//! ONNX realization spec constants + axis selection. The capacity
2//! profile is the shared [`crate::bounds::AddrBounds`]; only the ONNX IR
3//! v13 spec / policy constants live here.
4
5pub mod bounds;
6
7pub use bounds::{ONNX_IR_VERSION_MAX, ONNX_OPSET_VERSION_MIN, ONNX_SUBGRAPH_DEPTH_MAX};
8/// Canonical `Hasher<32>` selection. Re-exported from the Prism standard
9/// library; see wiki ADR-031 / ADR-047.
10pub use prism::crypto::Sha256Hasher;