universal_radix_sort 1.0.0

A high-performance, generic Radix Sort implementation for Rust supporting integers, floats, and strings
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 = "2024"
name = "universal_radix_sort"
version = "1.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance, generic Radix Sort implementation for Rust supporting integers, floats, and strings"
homepage = "https://codeberg.org/ios-community/universal-radix-sort.git"
documentation = "https://codeberg.org/ios-community/universal-radix-sort.git"
readme = "README.md"
keywords = [
    "sorting",
    "radix",
    "algorithm",
    "performance",
    "generic",
]
categories = [
    "algorithms",
    "data-structures",
]
license = "MIT"
repository = "https://codeberg.org/ios-community/universal-radix-sort.git"

[lib]
name = "universal_radix_sort"
path = "src/lib.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[bench]]
name = "benchmark"
path = "benches/benchmark.rs"
harness = false

[dependencies.thiserror]
version = "2.0.18"

[dev-dependencies.criterion]
version = "0.8.2"

[dev-dependencies.rand]
version = "0.10.0"

[profile.release]
opt-level = 3
lto = true