cuid2-timeless 0.1.6

An unstable, barely tested, probably giving wrong output and might panic out of nowhere CUID2 implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() {
    #[cfg(all(feature = "sha2", feature = "sha3"))]
    compile_error!("Please enable one of the SHA feature instead of enabling two of them.");

    #[cfg(not(feature = "sha2"))]
    {
        #[cfg(not(feature = "sha3"))]
        compile_error!("None of the feature has been enabled.")
    }
}