[package]
edition = "2024"
name = "evoc-rs"
version = "0.1.3"
authors = ["Gregor Lueg <gregorlueg@me.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust port of the EVoC clustering algorithm for high dimensional data"
readme = "README.md"
license = "MIT AND BSD-2-Clause"
repository = "https://github.com/GregorLueg/evoc-rs"
[features]
gpu = [
"manifolds-rs/gpu",
"ann-search-rs/gpu",
"cubecl",
]
[lib]
name = "evoc_rs"
path = "src/lib.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "integration_tests_gpu"
path = "tests/integration_tests_gpu.rs"
[dependencies.ann-search-rs]
version = "0.2.14"
[dependencies.approx]
version = "0.5.1"
[dependencies.cubecl]
version = "0.9.0"
optional = true
[dependencies.faer]
version = "0.23.2"
[dependencies.faer-traits]
version = "0.23.2"
[dependencies.manifolds-rs]
version = "0.2.2"
[dependencies.num-traits]
version = "0.2.19"
[dependencies.rand]
version = "0.10.0"
[dependencies.rayon]
version = "1.11.0"
[dependencies.rustc-hash]
version = "2.1.2"