[package]
name = "shuffle"
version = "0.2.1"
authors = ["Adam Budziak <adambudziak@protonmail.com>"]
edition = "2018"
license = "MIT"
repository = "https://github.com/adambudziak/shuffle"
description = "Implementation of various shuffling algorithms over slices."
documentation = "https://docs.rs/shuffle"
readme = "./README.md"
[features]
default = ["rand-0_9", "bitvec-1_0"]
rand-0_8 = ["dep:rand-0_8"]
rand-0_9 = ["dep:rand-0_9"]
bitvec-0_17 = ["dep:bitvec-0_17"]
bitvec-1_0 = ["dep:bitvec-1_0"]
[dependencies]
rand-0_8 = { package = "rand", version = "0.8", default-features = false, optional = true }
rand-0_9 = { package = "rand", version = "0.9", default-features = false, optional = true }
bitvec-0_17 = { package = "bitvec", version = "0.17", optional = true }
bitvec-1_0 = { package = "bitvec", version = "1.0", optional = true }