drawset 0.1.0

Sampling and subset-selection primitives
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 = "drawset"
version = "0.1.0"
build = false
include = [
    "/src/**/*.rs",
    "/examples/**/*.rs",
    "/tests/**/*.rs",
    "/benches/**/*.rs",
    "/Cargo.toml",
    "/Cargo.lock",
    "/LICENSE-*",
    "/README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Sampling and subset-selection primitives"
homepage = "https://github.com/arclabs561/drawset"
documentation = "https://docs.rs/drawset"
readme = "README.md"
keywords = [
    "sampling",
    "subset",
    "gumbel",
    "reservoir",
]
categories = [
    "algorithms",
    "science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/arclabs561/drawset"

[package.metadata.docs.rs]
all-features = true

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

[[example]]
name = "distribution_demo"
path = "examples/distribution_demo.rs"

[[example]]
name = "gumbel_softmax_demo"
path = "examples/gumbel_softmax_demo.rs"

[[example]]
name = "streaming_reservoir"
path = "examples/streaming_reservoir.rs"

[[example]]
name = "weighted_topk"
path = "examples/weighted_topk.rs"

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

[[bench]]
name = "sampling"
path = "benches/sampling.rs"
harness = false

[dependencies.rand]
version = "0.9"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.proptest]
version = "1.9"

[dev-dependencies.rand_chacha]
version = "0.9"