Files
rustytorch/crates/training/rtx-nas/Cargo.toml
T
Omar Sobh 16161bb9df deps: align all 56 per-crate Cargo.toml files to thiserror v2
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.
2026-04-26 11:45:14 -07:00

22 lines
479 B
TOML

[package]
name = "rtx-nas"
version = "1.0.0"
edition.workspace = true
rust-version = "1.92"
[dependencies]
rtx-tensor = { path = "../../core/rtx-tensor", default-features = false }
rtx-nn = { path = "../../core/rtx-nn" }
rtx-autograd = { path = "../../core/rtx-autograd" }
thiserror = "2"
tracing = "0.1"
serde = { version = "1.0", features = ["derive"] }
rand = "0.8"
uuid = { version = "1.0", features = ["v4"] }
[dev-dependencies]
proptest = "1.0"
[lints]
workspace = true