rapidrand 0.1.2

An extremely fast pseudo-random number generator.
Documentation
# 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 = "2024"
rust-version = "1.85.0"
name = "rapidrand"
version = "0.1.2"
authors = ["Liam Gray <gmail@liamg.me>"]
build = false
exclude = ["Cargo.lock"]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An extremely fast pseudo-random number generator."
documentation = "https://docs.rs/rapidrand"
readme = "README.md"
keywords = [
    "rand",
    "rng",
    "random",
    "no-std",
    "rapidhash",
]
categories = [
    "algorithms",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/hoxxep/rapidrand"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = ["rand"]
rand = ["dep:rand_core"]

[lib]
name = "rapidrand"
path = "src/lib.rs"

[[test]]
name = "rng"
path = "tests/rng.rs"

[dependencies.rand_core]
version = "0.10"
optional = true
default-features = false

[dev-dependencies.rand]
version = "0.10"

[lints.rust]
unused_must_use = "deny"