//! Minimal zero-copy integer wrapper.
//!
//! Vendored from [`spl_pod::primitives::PodU128`] (byte-for-byte layout compatible) so that
//! `solana-zk-sdk` — which `spl-pod >= 0.4` pulls in unconditionally, and which requires
//! Rust >= 1.82 (`core::iter::repeat_n`) — stays out of this crate's dependency closure.
//! Keeping it out is what lets the published MSRV be 1.81.
//!
//! [`spl_pod::primitives::PodU128`]: https://docs.rs/spl-pod/latest/spl_pod/primitives/struct.PodU128.html
use ;
/// A `u128` stored as little-endian bytes, so it can be a field inside `#[repr(C)]` `Pod` structs.
;