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.
22 lines
493 B
TOML
22 lines
493 B
TOML
[package]
|
|
name = "rtx-neuro-forward"
|
|
version = "1.0.0"
|
|
edition = "2024"
|
|
rust-version = "1.92"
|
|
description = "Forward modeling for MEG/EEG source localization"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/rustytorch/rustytorch"
|
|
keywords = ["neuroscience", "meg", "eeg", "forward-model", "source-localization"]
|
|
categories = ["science", "mathematics"]
|
|
|
|
[dependencies]
|
|
thiserror = "2"
|
|
nalgebra = "0.33"
|
|
rayon = "1.10"
|
|
|
|
[dev-dependencies]
|
|
approx = "0.5"
|
|
|
|
[lints]
|
|
workspace = true
|