-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (21 loc) · 888 Bytes
/
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
[package]
name = "tinymt"
version = "1.0.9"
authors = ["Torao Takami <[email protected]>"]
edition = "2021"
repository = "https://github.com/torao/tinymt"
keywords = ["prng", "mersennetwister", "mt", "tinymt", "random"]
license = "MIT"
readme = "README.md"
description = "Rust implementation of TinyMT 64/32 - a lightweight variant of Mersenne Twister PRNG"
documentation = "https://docs.rs/tinymt"
members = ["cli"]
[badges]
maintenance = { status = "passively-maintained" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = { version = "0.8", default-features = false }
[dev-dependencies]
rand = { version = "0.8", default-features = false, features = ["getrandom"] }
[target.'cfg(not(any(target_family="windows",target_family="wasm")))'.dev-dependencies]
pprof = { version = "0.11", features = ["flamegraph"] }