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

49 lines
1.0 KiB
TOML

[package]
name = "rtx-neuro-artifacts"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
description = "Deep learning artifact detection with explainability for MEG/EEG"
[dependencies]
# Essential dependencies
thiserror = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
# Async runtime
tokio = { workspace = true }
# Math
nalgebra = { workspace = true }
# Neuro dependencies
rtx-neuro = { workspace = true }
# ONNX inference
rtx-onnx = { workspace = true }
# Interpretability (optional - has API compat issues with rtx-tensor)
# rtx-interpret = { path = "../../core/rtx-interpret" }
# Tensor operations
rtx-tensor = { workspace = true }
# Cache directory
dirs = "5.0"
[dev-dependencies]
tokio-test = { workspace = true }
[features]
default = []
# Enable CUDA acceleration for ONNX inference
cuda = ["rtx-onnx/cuda"]
# Enable CoreML acceleration (macOS)
coreml = ["rtx-onnx/coreml"]
[lints]
workspace = true