const_identify/
lib.rs

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