[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"