smallrand 1.1.0

Random number generation with absolutely minimal dependencies and no unsafe code.
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 = "2021"
rust-version = "1.75"
name = "smallrand"
version = "1.1.0"
build = false
exclude = [".github/workflows/*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Random number generation with absolutely minimal dependencies and no unsafe code.
"""
readme = "readme.md"
keywords = [
    "random",
    "prng",
    "rand",
    "xoshiro",
    "chacha",
]
license = "MIT-0"
repository = "https://github.com/hpenne/smallrand"

[features]
allow-getrandom = ["getrandom"]
default = [
    "std",
    "allow-getrandom",
]
std = []

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

[dependencies]

[target."cfg(not(unix))".dependencies.getrandom]
version = "0.4.2"
optional = true