34 lines
830 B
TOML
34 lines
830 B
TOML
[package]
|
|
name = "rtx-neuro-gnn"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "Brain Connectome Graph Neural Networks for MEG/EEG analysis"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/rustytorch/rustytorch"
|
|
keywords = ["neuroscience", "gnn", "brain", "connectivity", "classification"]
|
|
categories = ["science", "machine-learning"]
|
|
|
|
[dependencies]
|
|
# RustyTorch dependencies
|
|
rtx-geom = { path = "../rtx-geom" }
|
|
rtx-neuro-connectivity = { path = "../rtx-neuro-connectivity" }
|
|
rtx-tensor = { workspace = true }
|
|
rtx-nn = { path = "../../core/rtx-nn" }
|
|
|
|
# Core dependencies
|
|
ndarray = { version = "0.16", features = ["serde"] }
|
|
thiserror = "2.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
# Numerical
|
|
num-traits = "0.2"
|
|
|
|
[dev-dependencies]
|
|
approx = "0.5"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[lints]
|
|
workspace = true
|