[package]
edition = "2021"
name = "rustpy-ml"
version = "0.1.0"
authors = ["CHAN, Hin Chung <chanhinchung334@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for seamless Python integration, enabling ML workflows with type safety"
readme = "README.md"
keywords = [
"python",
"machine-learning",
"ml",
"pyo3",
"integration",
]
categories = [
"development-tools",
"science",
]
license = "Apache-2.0"
repository = "https://github.com/amoschanGH/rustpy"
[features]
default = []
ml = ["numpy"]
numpy = []
[lib]
name = "rustpy_ml"
path = "src/lib.rs"
[[example]]
name = "advanced"
path = "examples/advanced.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "iris_classification"
path = "examples/iris_classification.rs"
[[example]]
name = "ml_numpy"
path = "examples/ml_numpy.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "ml_tests"
path = "tests/ml_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.inventory]
version = "0.3"
[dependencies.once_cell]
version = "1.19"
[dependencies.pyo3]
version = "0.23"
features = [
"auto-initialize",
"anyhow",
]
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.tokio]
version = "1"
features = ["full"]