Files
rustytorch/crates/specialized/rtx-ml-classic/Cargo.toml
T
2026-03-04 00:08:42 +00:00

57 lines
1.1 KiB
TOML

[package]
name = "rtx-ml-classic"
version = "1.0.0"
edition.workspace = true
rust-version = "1.92"
authors.workspace = true
license.workspace = true
repository.workspace = true
description = "GPU-accelerated classical machine learning algorithms for RustyTorch++"
[dependencies]
# Core RustyTorch++ dependencies
rtx-tensor = { path = "../../core/rtx-tensor" }
rtx-runtime = { path = "../../core/rtx-runtime" }
# Core utilities
anyhow.workspace = true
thiserror.workspace = true
tracing.workspace = true
# Serialization
serde.workspace = true
# Numerical computing
ndarray = "0.15"
rand = "0.8"
rayon.workspace = true
# Statistics and probability
statrs.workspace = true
approx = "0.5"
[dev-dependencies]
# Testing framework
proptest.workspace = true
criterion.workspace = true
tokio.workspace = true
# Additional testing utilities
approx = "0.5"
rand = "0.8"
[features]
default = ["gpu-acceleration"]
gpu-acceleration = []
sklearn-compat = []
[lib]
name = "rtx_ml_classic"
path = "src/lib.rs"
[[bench]]
name = "ml_classic_bench"
harness = false
[lints]
workspace = true