rand-unique 0.3.0

A no-std crate for generating random sequences of unique integers in O(1) time.
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.71.0"
name = "rand-unique"
version = "0.3.0"
authors = ["Liam Gray <gmail@liamg.me>"]
build = false
exclude = [
    "Cargo.lock",
    "charts/*",
    ".github",
    "examples",
    "benches",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A no-std crate for generating random sequences of unique integers in O(1) time."
documentation = "https://docs.rs/rand-unique"
readme = "README.md"
keywords = [
    "random",
    "unique",
    "numbers",
    "sequence",
    "integers",
]
categories = [
    "algorithms",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/hoxxep/rand-unique"

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

[features]
default = ["rand"]

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

[dependencies.num-traits]
version = "0.2"

[dependencies.rand]
version = "0.10.0"
features = [
    "sys_rng",
    "thread_rng",
]
optional = true
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dev-dependencies.criterion]
version = "0.8"
features = ["cargo_bench_support"]
default-features = false

[dev-dependencies.is_prime]
version = "2.0"

[dev-dependencies.plotters]
version = "0.3"
features = [
    "bitmap_encoder",
    "bitmap_backend",
    "histogram",
    "ttf",
]
default-features = false

[dev-dependencies.statrs]
version = "0.18"