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.
52 lines
1.6 KiB
TOML
52 lines
1.6 KiB
TOML
[package]
|
|
name = "rtx-auto"
|
|
version = "1.0.0"
|
|
edition.workspace = true
|
|
rust-version = "1.92"
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Autonomous platform agents for 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"
|
|
statrs.workspace = true
|
|
|
|
# All Phase 12 crates as dependencies
|
|
rtx-evolution = { path = "../rtx-evolution" }
|
|
rtx-tensor = { path = "../../core/rtx-tensor" }
|
|
rtx-runtime = { path = "../../core/rtx-runtime" }
|
|
rtx-compiler = { path = "../../specialized/rtx-compiler" }
|
|
rtx-kernel = { path = "../../core/rtx-kernel" }
|
|
rtx-autograd = { path = "../../core/rtx-autograd" }
|
|
# rtx-distributed = { path = "../rtx-distributed" } # Temporarily disabled - missing hpc-channels
|
|
rtx-inference = { path = "../../production/rtx-inference" }
|
|
rtx-graph = { path = "../../core/rtx-graph" }
|
|
rtx-platform = { path = "../../specialized/rtx-platform" }
|
|
rtx-synthesis = { path = "../../specialized/rtx-synthesis" }
|
|
rtx-bindings = { path = "../../core/rtx-bindings" }
|
|
rtx-rl = { path = "../rtx-rl" }
|
|
rtx-geom = { path = "../../specialized/rtx-geom" }
|
|
rtx-diffuse = { path = "../../models/rtx-diffuse" }
|
|
rtx-multimodal = { path = "../../models/rtx-multimodal" }
|
|
rtx-polygraph = { path = "../../specialized/rtx-polygraph" }
|
|
rtx-compress = { path = "../rtx-compress" }
|
|
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|
|
proptest = "1.0"
|
|
criterion = "0.5"
|
|
tempfile = "3.0"
|
|
|
|
[lints]
|
|
workspace = true
|