added C and Python bindings

This commit is contained in:
randogoth 2025-01-17 18:50:37 +02:00
parent dcc612fc98
commit f21804ffaf
6 changed files with 211 additions and 2 deletions

View file

@ -3,7 +3,15 @@ name = "onod3000"
version = "0.1.0"
edition = "2021"
[lib]
name = "onod3000"
crate-type = ["cdylib", "lib"]
[dependencies]
flate2 = "1.0.35"
kolmogorov_smirnov = "1.1.0"
pyo3 = {version = "0.23.4", optional = true}
statrs = "0.18.0"
[features]
python = ["dep:pyo3"]