54 lines
1.2 KiB
TOML
54 lines
1.2 KiB
TOML
[package]
|
|
name = "rtx-neuro"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "MEG/EEG neuroimaging analysis platform for RustyTorch - GPU-accelerated brain signal processing"
|
|
|
|
[dependencies]
|
|
# Core RustyTorch dependencies
|
|
rtx-tensor = { workspace = true }
|
|
rtx-autograd = { workspace = true }
|
|
|
|
# Neuro-specific crates
|
|
rtx-neuro-io = { path = "../rtx-neuro-io" }
|
|
rtx-neuro-signal = { path = "../rtx-neuro-signal" }
|
|
|
|
# Essential dependencies
|
|
anyhow = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
# Math and linear algebra
|
|
nalgebra = { workspace = true }
|
|
num-complex = { workspace = true }
|
|
|
|
# Async runtime
|
|
tokio = { workspace = true }
|
|
futures = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
|
|
# Concurrency
|
|
rayon = { workspace = true }
|
|
|
|
# Time handling
|
|
chrono = { workspace = true }
|
|
|
|
# Unique identifiers
|
|
uuid = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tokio-test = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
cuda = ["rtx-tensor/cuda"]
|
|
metal = ["rtx-tensor/metal"]
|
|
|
|
[lints]
|
|
workspace = true
|