//! Bounded-collection storage, backed by `heapless::Vec` (inline, no_std)
//! or `alloc::vec::Vec` (heap-backed) depending on the `alloc` feature.
//! Capacity `N` is enforced identically in both modes; only where the
//! bytes live differs.
extern crate alloc;
pub use Vec;
pub type Vec<T, const N: usize> = Vec;