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.
31 lines
631 B
TOML
31 lines
631 B
TOML
[package]
|
|
name = "rtx-diffuse"
|
|
version = "1.0.0"
|
|
edition.workspace = true
|
|
rust-version = "1.92"
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
rtx-tensor = { path = "../../core/rtx-tensor" }
|
|
rtx-runtime = { path = "../../core/rtx-runtime" }
|
|
rtx-synthesis = { path = "../../specialized/rtx-synthesis" }
|
|
rtx-polygraph = { path = "../../specialized/rtx-polygraph" }
|
|
rand = "0.8"
|
|
rand_distr = "0.4"
|
|
nalgebra.workspace = true
|
|
thiserror = "2"
|
|
anyhow = "1.0"
|
|
tracing = "0.1"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.5"
|
|
|
|
[[bench]]
|
|
name = "diffusion_bench"
|
|
harness = false
|
|
|
|
[lints]
|
|
workspace = true
|