[package]
edition = "2024"
rust-version = "1.85.0"
name = "rand_mt"
version = "6.0.1"
authors = [
"David Creswick <dcrewi@gyrae.net>",
"Ryan Lopopolo <rjl@hyperbo.la>",
]
build = false
include = [
"/src/**/*",
"/tests/**/*",
"/LICENSE-*",
"/README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reference Mersenne Twister random number generators."
homepage = "https://github.com/artichoke/rand_mt"
documentation = "https://docs.rs/rand_mt"
readme = "README.md"
keywords = [
"random",
"rand",
"rng",
"mt",
]
categories = [
"algorithms",
"no-std",
"no-std::no-alloc",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/artichoke/rand_mt"
[package.metadata.docs.rs]
default-target = "x86_64-unknown-linux-gnu"
targets = []
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = ["rand-traits"]
rand-traits = ["dep:rand_core"]
[lib]
name = "rand_mt"
path = "src/lib.rs"
[[test]]
name = "ruby_reproducibility"
path = "tests/ruby_reproducibility.rs"
[dependencies.rand_core]
version = "0.10.0"
optional = true
default-features = false
[dev-dependencies.getrandom]
version = "0.4.1"
default-features = false