[package] name = "pdqselect" version = "0.1.1" authors = ["TheIronBorn"] edition = "2021" description = "Selects the kth smallest element of a slice, based on Orson Peters's Pattern Defeating Quickselect" documentation = "https://docs.rs/pdqselect" # repository = "https://github.com/TheIronBorn/pdqselect" # readme = "https://github.com/TheIronBorn/pdqselect/blob/master/README.md" keywords = ["quickselect", "quicksort", "pdqsort", "nth_element", "select"] categories = ["no-std", "algorithms"] license = "Apache-2.0/MIT" exclude = [ "tests/*", "benches/*" ] [dev-dependencies] time = "0.3" # kth = "" rand = { version = "0.8", features = ["small_rng"] }