49 lines
1.0 KiB
TOML
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
|