sorting-algorithm 0.1.17

An implementation of various sorting algorithms
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 = "sorting-algorithm"
version = "0.1.17"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An implementation of various sorting algorithms"
readme = "README.md"
license = "MIT"
repository = "https://github.com/FLogan800/sorting-algorithm"

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.fastrand]
version = "2.3.0"