reservoir-sampling 0.3.0

Implementations of a variety of algorithms for reservoir sampling in Rust.
Documentation
[package]
name = "reservoir-sampling"
description = "Implementations of a variety of algorithms for reservoir sampling in Rust."
keywords = ["random", "rng", "streaming"]
repository = "https://github.com/DesmondWillowbrook/rs-reservoir-sampling"
categories = ["algorithms"]
version = "0.3.0"
authors = ["Kartavya Vashishtha <kartavya0703@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
default = [
    "unweighted"
]

unweighted = []
#weighted = ["binary-heap-plus"]

[dependencies]
rand = "^0.8.0"

# TODO: binary-heap-plus = { version = "0.4.*", optional = true}