[package]
edition = "2024"
name = "algorithmz"
version = "0.4.8"
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.8/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"
[[bin]]
name = "demo"
path = "src/bin/demo.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[dependencies]