-
Notifications
You must be signed in to change notification settings - Fork 37
/
Cargo.toml
50 lines (43 loc) · 1.4 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "deterministic_rand"
version = "0.5.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <[email protected]>",
"Viktor Dudnik <[email protected]>",
]
license = "MIT"
readme = "Readme.md"
documentation = "https://docs.rs/deterministic_rand"
repository = "https://github.com/Wandalen/wTools/tree/master/module/core/deterministic_rand"
homepage = "https://github.com/Wandalen/wTools/tree/master/module/core/deterministic_rand"
description = """
Hierarchical random number generators for concurrent simulations with switchable determinism.
"""
categories = [ "algorithms", "development-tools" ]
keywords = [ "fundamental", "general-purpose" ]
[lints]
workspace = true
[package.metadata.docs.rs]
features = [ "full" ]
all-features = false
[features]
default = [ "enabled", "determinism" ]
full = [ "enabled", "determinism" ]
no_std = []
use_alloc = [ "no_std" ]
enabled = []
determinism = [ "rand_chacha", "rand_seeder", "iter_tools" ]
[dependencies]
mod_interface = { workspace = true, features = [ "default" ] }
iter_tools = { workspace = true, features = [ "default" ], optional = true }
rand = "0.8.5"
rand_chacha = { version = "0.3.1", optional = true }
rand_seeder = { version = "0.2.3", optional = true }
sealed = "0.5.0"
[dev-dependencies]
test_tools = { workspace = true }
rayon = "1.8.0"
[[example]]
name = "sample_deterministic_rand_trivial"
path = "examples/deterministic_rand_trivial.rs"