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.
42 lines
961 B
TOML
42 lines
961 B
TOML
[package]
|
|
name = "rtx-evolution"
|
|
version = "1.0.0"
|
|
edition.workspace = true
|
|
rust-version = "1.92"
|
|
description = "Autonomous evolution framework for RustyTorch++"
|
|
license = "MIT"
|
|
repository = "https://github.com/RustyTorch/RustyTorch"
|
|
|
|
[dependencies]
|
|
# Core dependencies
|
|
thiserror = "2"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
tracing = "0.1"
|
|
uuid = { version = "1.0", features = ["v4", "serde"] }
|
|
|
|
# Scientific computing
|
|
ndarray = "0.15"
|
|
petgraph = "0.6"
|
|
|
|
# Statistics and optimization
|
|
statrs.workspace = true
|
|
optimization = "0.2"
|
|
tempfile = "3.0"
|
|
|
|
# Internal dependencies
|
|
rtx-runtime = { path = "../../core/rtx-runtime" }
|
|
rtx-tensor = { path = "../../core/rtx-tensor" }
|
|
rtx-graph = { path = "../../core/rtx-graph" }
|
|
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|
|
proptest = "1.0"
|
|
criterion = "0.5"
|
|
tempfile = "3.0"
|
|
|
|
# Benchmarks will be added after implementation
|
|
[lints]
|
|
workspace = true
|