rustpy-ml 0.1.0

A Rust library for seamless Python integration, enabling ML workflows with type safety
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"]