# 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" name = "dandelion-random" version = "0.1.1" authors = ["Aaron Pribadi "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A high performance non-cryptographic random number generator." readme = "README.md" keywords = ["random"] categories = ["algorithms"] license = "Artistic-2.0" repository = "https://github.com/apribadi/dandelion" [package.metadata.docs.rs] all-features = true [lib] name = "dandelion" path = "src/lib.rs" [[example]] name = "bench" path = "examples/bench.rs" [[example]] name = "period" path = "examples/period.rs" [[example]] name = "rng" path = "examples/rng.rs" [[test]] name = "all" path = "tests/all.rs" [dependencies.getrandom] version = "0.2.15" optional = true [dependencies.rand_core] version = "0.6.4" optional = true [dev-dependencies.expect-test] version = "1.5.0" [dev-dependencies.pcg_rand] version = "0.13.0" [dev-dependencies.rand] version = "0.8.5" [dev-dependencies.rand_xoshiro] version = "0.6.0" [features] getrandom = ["dep:getrandom"] rand_core = ["dep:rand_core"] std = [] thread_local = [ "getrandom", "std", ] [lints.rust] elided_lifetimes_in_paths = "warn" missing_docs = "warn" non_ascii_idents = "warn" trivial_numeric_casts = "warn" unreachable_pub = "warn" unsafe_op_in_unsafe_fn = "deny" unused_lifetimes = "warn" unused_qualifications = "warn" unused_results = "warn"