# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.70.0" name = "wyrand" version = "0.2.0" authors = ["Gonçalo Rica Pais da Silva "] exclude = ["/.*"] include = [ "src/", "LICENSE-*", "README.md", ] autobenches = true description = "A fast & portable non-cryptographic pseudorandom number generator and hashing algorithm" readme = "README.md" keywords = [ "fast", "random", "wyrand", "hash", "wyhash", ] categories = [ "algorithms", "no-std", ] license = "Apache-2.0 OR MIT" repository = "https://github.com/Bluefinger/wyrand-rs" resolver = "2" [package.metadata.docs.rs] all-features = true [[bench]] name = "rand_bench" path = "benches/rand_bench.rs" harness = false [dependencies.getrandom] version = "0.2" optional = true [dependencies.rand] version = "0.8" optional = true [dependencies.rand_core] version = "0.6" optional = true default-features = false [dependencies.serde] version = "1.0" features = ["derive"] optional = true [dev-dependencies.criterion] version = "0.5" [dev-dependencies.serde_test] version = "1.0" [features] debug = [] default = [ "rand_core", "debug", ] fully_randomised_wyhash = ["randomised_wyhash"] hash = [] legacy_v4 = [] rand_core = ["dep:rand_core"] randomised_wyhash = [ "wyhash", "dep:getrandom", ] serde1 = ["dep:serde"] threadrng_wyhash = [ "dep:rand", "randomised_wyhash", ] wyhash = []