[package]
edition = "2024"
name = "orasort"
version = "0.1.2"
authors = ["Theo M. Bulut <vertexclique@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance, cache-efficient sorting library optimized for common prefixes."
homepage = "https://github.com/psila-ai/orasort"
documentation = "https://docs.rs/orasort"
readme = "README.md"
keywords = [
"sort",
"sorting",
"performance",
"cache-oblivious",
"radix",
]
categories = [
"algorithms",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/psila-ai/orasort"
[lib]
name = "orasort"
path = "src/lib.rs"
[[test]]
name = "compatibility_test"
path = "tests/compatibility_test.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "repro_failure"
path = "tests/repro_failure.rs"
[[test]]
name = "scale_tests"
path = "tests/scale_tests.rs"
[[bench]]
name = "large_scale_benchmark"
path = "benches/large_scale_benchmark.rs"
harness = false
[[bench]]
name = "sorting_benchmark"
path = "benches/sorting_benchmark.rs"
harness = false
[dependencies.cuneiform]
version = "0.1.1"
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.rand]
version = "0.9"
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true