Files
kmeans_rs/Cargo.toml
T
w.pomp 7b16abebb0
CI / linux (map[runner:ubuntu-latest target:x86_64-unknown-linux-gnu]) (push) Successful in 1m3s
CI / sdist (push) Failing after 8s
CI / Release (push) Has been skipped
CI workflow
2026-04-16 18:26:18 +02:00

31 lines
829 B
TOML

[package]
name = "kmeans_rs"
version = "0.1.0"
edition = "2024"
rust-version = "1.94.0"
authors = ["Wim Pomp <w.pomp@nki.nl>"]
license = "MIT OR Apache-2.0"
description = "Python wrapper for Rust kmeans library."
homepage = "https://git.wimpomp.nl/wim/kmeans_rs"
repository = "https://git.wimpomp.nl/wim/kmeans_rs"
readme = "README.md"
keywords = ["kmeans"]
categories = ["science"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "kmeans_rs"
crate-type = ["cdylib"]
[dependencies]
color-eyre = "0.6"
console = "0.16"
indicatif = { version = "0.18", features = ["rayon"] }
kmeans = "2"
ndarray = "0.17"
numpy = "0.28"
pyo3 = { version = "0.28", features = ["abi3-py310", "anyhow", "eyre", "generate-import-lib"] }
pyo3-stub-gen = "0.22"
rayon = "1"
thiserror = "2"