1 2 3 4 5 6 7 8 9 10
mod id; mod sort; pub use id::*; pub use sort::*; // re-export derive macro pub use const_identify_derive::ConstIdentify; // place self in extern prelude so re-exports of this crate work with derive macro extern crate self as const_identify;