[package]
edition = "2024"
rust-version = "1.85"
name = "rand-float"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A comparison of techniques for generating uniform random floating-point numbers in the unit interval from streams of random bits"
documentation = "https://docs.rs/rand-float-rs"
readme = "README.md"
keywords = [
"random",
"float",
"uniform",
"prng",
]
license = "(Apache-2.0 OR MIT) AND BSD-2-Clause AND MIT"
repository = "https://github.com/vigna/rand-float-rs"
[lib]
name = "rand_float"
path = "src/lib.rs"
[[bench]]
name = "uniform01"
path = "benches/uniform01.rs"
harness = false
[dependencies]
[dev-dependencies.criterion]
version = "0.8.2"
[profile.bench]
lto = "fat"
codegen-units = 1