[package] name = "mx3" version = "1.0.1" edition = "2021" authors = ["Christopher Foo "] license = "MIT" description = "Implementation of the mx3 algorithm providing a bit mixer, pseudo-random number generator, and hash function." repository = "https://github.com/chfoo/mx3-rs" readme = "README.md" categories = ["algorithms", "no-std"] keywords = ["hash", "random", "no_std"] [features] default = [] hasher = [] [dependencies] rand_core = "0.6" [dev-dependencies] rand = { version = "0.8", default-features = false } [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] [[example]] name = "stream_hasher" required-features = ["hasher"]