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.
36 lines
887 B
TOML
36 lines
887 B
TOML
[package]
|
|
name = "rtx-piddm-demo"
|
|
version = "1.0.0"
|
|
edition = "2024"
|
|
rust-version = "1.92"
|
|
description = "Physics-Informed Diffusion Model demo for RustyTorch++"
|
|
authors = ["RustyTorch Team"]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/rustytorch/rustytorch"
|
|
|
|
[dependencies]
|
|
rtx-piddm-shared = { workspace = true }
|
|
rtx-piddm = { workspace = true }
|
|
rtx-tensor = { workspace = true }
|
|
rtx-backend = { workspace = true }
|
|
rtx-backend-cpu = { workspace = true }
|
|
rtx-nn = { workspace = true }
|
|
rtx-autograd = { workspace = true }
|
|
rtx-hub = { workspace = true }
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "2"
|
|
dirs = "5"
|
|
tracing = "0.1"
|
|
tokio = { version = "1.0", features = ["sync", "rt", "rt-multi-thread", "time", "macros"] }
|
|
rand = "0.8"
|
|
|
|
[dev-dependencies]
|
|
proptest = "1.4"
|
|
approx = "0.5"
|
|
tempfile = "3.10"
|
|
|
|
[lints]
|
|
workspace = true
|