# 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 = "deterministic_rand" version = "0.6.0" authors = [ "Kostiantyn Wandalen ", "Viktor Dudnik ", ] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ Hierarchical random number generators for concurrent simulations with switchable determinism. """ homepage = "https://github.com/Wandalen/wTools/tree/master/module/core/deterministic_rand" documentation = "https://docs.rs/deterministic_rand" readme = "Readme.md" keywords = [ "fundamental", "general-purpose", ] categories = [ "algorithms", "development-tools", ] license = "MIT" repository = "https://github.com/Wandalen/wTools/tree/master/module/core/deterministic_rand" [package.metadata.docs.rs] all-features = false features = ["full"] [lib] name = "deterministic_rand" path = "src/lib.rs" [[example]] name = "sample_deterministic_rand_rayon" path = "examples/sample_deterministic_rand_rayon.rs" [[example]] name = "sample_deterministic_rand_std" path = "examples/sample_deterministic_rand_std.rs" [[example]] name = "sample_deterministic_rand_trivial" path = "examples/deterministic_rand_trivial.rs" [[test]] name = "assumption_test" path = "tests/assumption_test.rs" [[test]] name = "basic_test" path = "tests/basic_test.rs" [[test]] name = "smoke_test" path = "tests/smoke_test.rs" [dependencies.iter_tools] version = "~0.24.0" features = ["default"] optional = true default-features = false [dependencies.mod_interface] version = "~0.30.0" features = ["default"] default-features = false [dependencies.rand] version = "0.8.5" [dependencies.rand_chacha] version = "0.3.1" optional = true [dependencies.rand_seeder] version = "0.2.3" optional = true [dependencies.sealed] version = "0.5.0" [dev-dependencies.rayon] version = "1.8.0" [dev-dependencies.test_tools] version = "~0.11.0" features = ["full"] [features] default = [ "enabled", "determinism", ] determinism = [ "rand_chacha", "rand_seeder", "iter_tools", ] enabled = [] full = [ "enabled", "determinism", ] no_std = [] use_alloc = ["no_std"] [lints.clippy] absolute_paths = "allow" inline_always = "allow" module_name_repetitions = "allow" pedantic = "warn" restriction = "warn" single_call_fn = "allow" std_instead_of_alloc = "warn" std_instead_of_core = "warn" undocumented_unsafe_blocks = "deny" [lints.rust] future_incompatible = "deny" missing_debug_implementations = "warn" missing_docs = "warn" rust_2018_idioms = "deny" unsafe-code = "warn"