arslib 0.4.0

Adjacency Run Sort (ARS): a fast run-based sorting algorithm in Rust.
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 = "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"