[package]
edition = "2024"
name = "algorithmz"
version = "0.4.1"
authors = ["Szabó Dániel Ernő <r3ap3rpy@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "This is the corresponding implemenation of the python module of the same name."
documentation = "https://docs.rs/algorithmz/0.4.1/algorithmz/"
readme = "README.md"
keywords = [
"algorithms",
"data_structures",
"dynamic",
"searching",
"streaming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/r3ap3rpy/algorithms"
[lib]
name = "algorithmz"
path = "src/lib.rs"
[[test]]
name = "bead_sort_tests"
path = "tests/bead_sort_tests.rs"
[[test]]
name = "bitonic_sort_tests"
path = "tests/bitonic_sort_tests.rs"
[[test]]
name = "bogo_sort_tests"
path = "tests/bogo_sort_tests.rs"
[[test]]
name = "bubble_sort_tests"
path = "tests/bubble_sort_tests.rs"
[[test]]
name = "bucket_sort"
path = "tests/bucket_sort.rs"
[[test]]
name = "cocktail_shaker_sort_tests"
path = "tests/cocktail_shaker_sort_tests.rs"
[[test]]
name = "color_sort_tests"
path = "tests/color_sort_tests.rs"
[[test]]
name = "comb_sort_tests"
path = "tests/comb_sort_tests.rs"
[[test]]
name = "counting_sort_tests"
path = "tests/counting_sort_tests.rs"
[[test]]
name = "cycle_sort_tests"
path = "tests/cycle_sort_tests.rs"
[[test]]
name = "exchange_sort_tests"
path = "tests/exchange_sort_tests.rs"
[[test]]
name = "flatten_array_tests"
path = "tests/flatten_array_tests.rs"
[[test]]
name = "gnome_sort_tests"
path = "tests/gnome_sort_tests.rs"
[[test]]
name = "heap_sort_tests"
path = "tests/heap_sort_tests.rs"
[[test]]
name = "insertion_sort_tests"
path = "tests/insertion_sort_tests.rs"
[[test]]
name = "meeting_rooms_sort_tests"
path = "tests/meeting_rooms_sort_tests.rs"
[[test]]
name = "merge_sort_tests"
path = "tests/merge_sort_tests.rs"
[[test]]
name = "pancake_sort_tests"
path = "tests/pancake_sort_tests.rs"
[[test]]
name = "pigeonhole_sort_tests"
path = "tests/pigeonhole_sort_tests.rs"
[[test]]
name = "quick_sort_tests"
path = "tests/quick_sort_tests.rs"
[[test]]
name = "radix_sort_tests"
path = "tests/radix_sort_tests.rs"
[[test]]
name = "selection_sort_tests"
path = "tests/selection_sort_tests.rs"
[[test]]
name = "shell_sort_tests"
path = "tests/shell_sort_tests.rs"
[dependencies]