зеркало из https://github.com/mozilla/gecko-dev.git
22 строки
516 B
TOML
22 строки
516 B
TOML
[package]
|
|
name = "pdqsort"
|
|
version = "0.1.2"
|
|
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
|
|
description = "Pattern-defeating quicksort"
|
|
repository = "https://github.com/stjepang/pdqsort"
|
|
documentation = "https://docs.rs/pdqsort"
|
|
readme = "README.md"
|
|
license = "Apache-2.0/MIT"
|
|
keywords = ["sort", "sorting", "no_std", "quicksort", "introsort"]
|
|
categories = ["algorithms"]
|
|
exclude = [
|
|
"out*",
|
|
"src/bin/test.rs",
|
|
]
|
|
|
|
[badges]
|
|
travis-ci = { repository = "stjepang/pdqsort" }
|
|
|
|
[dev-dependencies]
|
|
rand = "0.3"
|