djbsort 0.2.0

Constant-time sorting network (djbsort) with SIMD optimization
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"