[package]
edition = "2021"
name = "djbsort"
version = "0.2.0"
authors = ["Frank Denis <github@pureftpd.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Constant-time sorting network (djbsort) with SIMD optimization"
readme = "README.md"
keywords = [
"sorting",
"constant-time",
"simd",
"cryptography",
]
categories = [
"algorithms",
"no-std",
]
license = "MIT"
repository = "https://github.com/jedisct1/rust-djbsort"
[lib]
name = "djbsort"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.rand]
version = "0.10"