[package]
edition = "2024"
name = "algorithmz"
version = "0.2.4"
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.2.4/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 = "bubble_sort_tests"
path = "tests/bubble_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 = "flatten_array_tests"
path = "tests/flatten_array_tests.rs"
[[test]]
name = "insertion_sort_tests"
path = "tests/insertion_sort_tests.rs"
[dependencies]