[package]
edition = "2024"
name = "i_key_sort"
version = "0.10.2"
authors = ["Nail Sharipov <nailxsharipov@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Counting sort algorithm."
readme = "README.md"
categories = [
"no-std",
"algorithms",
]
license = "MIT"
repository = "https://github.com/iShape-Rust/iKeySort"
[features]
allow_multithreading = [
"std",
"dep:rayon",
]
default = []
std = []
[lib]
name = "i_key_sort"
path = "src/lib.rs"
[[test]]
name = "dynamic"
path = "tests/dynamic.rs"
[dependencies.rayon]
version = "^1.11"
optional = true
[profile.release]
opt-level = 3
lto = true
codegen-units = 1