The workspace root was upgraded to thiserror = "2" in an earlier commit, but 56 per-crate Cargo.toml files still independently declared "1.0". These crates do not use workspace.dependencies inheritance for thiserror. All updated to thiserror = "2" for complete fleet alignment. Includes: rtx-backend, rtx-tensor, rtx-losses, rtx-backend-cuda/rocm/metal, all training crates (rtx-auto, rtx-rl, rtx-distributed, rtx-federated, etc.), specialized crates (rtx-science, rtx-platform, rtx-nmf, rtx-neuro-*), production crates (rtx-streaming, rtx-serving-api), and all demo crates. cargo check --workspace: PASSES.
41 lines
1.0 KiB
TOML
41 lines
1.0 KiB
TOML
[package]
|
|
name = "rtx-neuro-python"
|
|
version = "1.0.0"
|
|
edition = "2024"
|
|
authors = ["RustyTorch Team"]
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Python bindings for RTX-Neuro neuroimaging library"
|
|
keywords = ["neuroimaging", "meg", "eeg", "python", "pyo3"]
|
|
categories = ["science", "api-bindings"]
|
|
|
|
[lib]
|
|
name = "rtx_neuro"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
# PyO3 for Python bindings
|
|
pyo3 = { version = "0.24", features = ["extension-module"] }
|
|
numpy = "0.24"
|
|
ndarray = "0.15"
|
|
|
|
# RTX Neuro crates
|
|
rtx-neuro-io = { path = "../rtx-neuro-io" }
|
|
rtx-neuro-signal = { path = "../rtx-neuro-signal" }
|
|
rtx-neuro-forward = { path = "../rtx-neuro-forward" }
|
|
rtx-neuro-inverse = { path = "../rtx-neuro-inverse" }
|
|
rtx-neuro-connectivity = { path = "../rtx-neuro-connectivity" }
|
|
rtx-neuro-stats = { path = "../rtx-neuro-stats" }
|
|
rtx-neuro-anatomy = { path = "../rtx-neuro-anatomy" }
|
|
|
|
# Core dependencies
|
|
thiserror = "2"
|
|
nalgebra = "0.34"
|
|
num-complex = "0.4"
|
|
|
|
[features]
|
|
default = ["extension-module"]
|
|
extension-module = ["pyo3/extension-module"]
|
|
|
|
[lints]
|
|
workspace = true
|