aranya_id/
lib.rs

1//! IDs and generation of [`custom_id`] types.
2
3#![cfg_attr(docsrs, feature(doc_cfg))]
4#![cfg_attr(not(any(test, doctest)), no_std)]
5#![warn(missing_docs)]
6
7mod id;
8
9#[doc(inline)]
10pub use crate::id::{BaseId, Id, IdTag, ParseIdError};
11
12#[doc(hidden)]
13pub mod __hidden {
14    pub use ::paste::paste;
15
16    pub use crate::id::Sealed;
17}