overclocked_sort 0.2.1

Adaptive hybrid sort for integer-like keys: parallel counting on dense ranges with pattern-aware fallback paths.
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 = "overclocked_sort"
version = "0.2.1"
authors = ["Skyboy12"]
build = false
exclude = [
    "target/*",
    "*.bin",
    "*.exe",
    "*.class",
    "benchmark_results.txt",
    "src/bin/bench_fallback_msd.rs",
    "src/bin/massive.rs",
    "benchmark.js",
    "benchmark.py",
    "Benchmark.java",
    "OverclockedSort.java",
    "overclocked_sort.cpp",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Adaptive hybrid sort for integer-like keys: parallel counting on dense ranges with pattern-aware fallback paths."
homepage = "https://github.com/Skyboy12/overclocked_sort"
documentation = "https://docs.rs/overclocked_sort"
readme = "README.md"
keywords = [
    "sorting",
    "parallel",
    "counting-sort",
    "simd",
    "performance",
]
categories = ["algorithms"]
license = "MIT"
repository = "https://github.com/Skyboy12/overclocked_sort"

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

[[bin]]
name = "benchmark_matrix"
path = "src/bin/benchmark_matrix.rs"

[[bin]]
name = "comprehensive_test"
path = "src/bin/comprehensive_test.rs"

[[bin]]
name = "test_cmp_vs_key"
path = "src/bin/test_cmp_vs_key.rs"

[[bin]]
name = "test_consistency"
path = "src/bin/test_consistency.rs"

[[bin]]
name = "test_objects"
path = "src/bin/test_objects.rs"

[[bin]]
name = "test_shortcut"
path = "src/bin/test_shortcut.rs"

[dependencies.rand]
version = "0.8"

[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"