[package]
edition = "2021"
name = "arslib"
version = "0.4.0"
authors = ["Mohammad T. Ismael"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Adjacency Run Sort (ARS): a fast run-based sorting algorithm in Rust."
homepage = "https://github.com/Mohammad-Talaat7/arslib"
documentation = "https://docs.rs/arslib"
readme = "README.md"
keywords = [
"sorting",
"algorithm",
"performance",
"parallel",
"radix",
]
categories = [
"algorithms",
"science",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Mohammad-Talaat7/arslib"
[lib]
name = "arslib"
path = "src/lib.rs"
[[test]]
name = "sorting_tests"
path = "tests/sorting_tests.rs"
[dependencies.num-traits]
version = "0.2"
[dependencies.rand]
version = "0.8"
[dependencies.rand_chacha]
version = "0.3"
[dependencies.rand_distr]
version = "0.4"
[dependencies.rayon]
version = "1.10"