specta_util/lib.rs
1//! Extended functionality for [Specta](specta).
2
3#![cfg_attr(docsrs, feature(doc_cfg))]
4#![doc(
5 html_logo_url = "https://github.com/specta-rs/specta/raw/main/.github/logo-128.png",
6 html_favicon_url = "https://github.com/specta-rs/specta/raw/main/.github/logo-128.png"
7)]
8
9#[cfg(feature = "serde")]
10#[cfg_attr(docsrs, doc(cfg(feature = "serde")))]
11mod selection;
12
13mod array;
14mod remapper;
15
16pub use array::FixedArray;
17pub use remapper::Remapper;