# 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 = "pure_rng" version = "0.8.0" authors = ["Jonathan Davies "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "rand-compatible RNG library for generating repeatable, controlled random values, designed primarily for use in games." readme = "README.md" keywords = [ "rng", "random", "hasher", "deterministic", "gamedev", ] categories = [ "game-development", "algorithms", ] license = "MIT" repository = "https://github.com/JonnieCache/pure_rng" [lib] name = "pure_rng" path = "src/lib.rs" [[example]] name = "complex" path = "examples/complex.rs" [[example]] name = "test_recursive_hashing" path = "examples/test_recursive_hashing.rs" [[example]] name = "test_stream" path = "examples/test_stream.rs" [dependencies.rand] version = "0.8.5" features = ["std"] default-features = false [dependencies.rand_core] version = "0.6.4" default-features = false [dependencies.rapidhash] version = "1.1.0" features = ["rng"] optional = true [dependencies.serde] version = "1.0.210" features = ["serde_derive"] optional = true [dev-dependencies.rand_distr] version = "0.4.3" [features] default = ["rapidhash"]