1 2 3 4 5 6 7 8 9 10
#![forbid(unsafe_code)] #![warn(clippy::all)] #![cfg_attr(coverage_nightly, feature(no_coverage))] mod errors; mod new_id; pub use errors::IdError; pub use new_id::NewId;