[package]
edition = "2021"
name = "zan-sort"
version = "0.1.0"
authors = ["Rhetro <rhetro@rhetroxc.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A hardware-oriented hybrid sorting engine achieving near-linear scaling via arithmetic routing and parallel SoA."
documentation = "https://docs.rs/zan-sort"
readme = "README.md"
keywords = [
"sort",
"sorting",
"algorithm",
"parallel",
"performance",
]
categories = [
"algorithms",
"data-structures",
"memory-management",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rhetro/zan-sort"
[features]
default = []
pure = []
[lib]
name = "zan_sort"
path = "src/lib.rs"
[[test]]
name = "correctness"
path = "tests/correctness.rs"
[[test]]
name = "miri_safety"
path = "tests/miri_safety.rs"
[[test]]
name = "proptest"
path = "tests/proptest.rs"
[[bench]]
name = "macro_performance"
path = "benches/macro_performance.rs"
harness = false
[[bench]]
name = "micro_scaling"
path = "benches/micro_scaling.rs"
harness = false
[[bench]]
name = "parallel_performance"
path = "benches/parallel_performance.rs"
harness = false
[dev-dependencies.criterion]
version = "0.4"
[dev-dependencies.proptest]
version = "1.4.0"
[dev-dependencies.rayon]
version = "1.8"