[package]
edition = "2024"
name = "algorithmz"
version = "0.1.6"
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.1.6/algorithmz/"
readme = "README.md"
keywords = [
"mathemathics",
"algorithms",
]
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"
[dependencies]