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.
34 lines
837 B
TOML
34 lines
837 B
TOML
[package]
|
|
name = "rtx-polygraph"
|
|
version = "1.0.0"
|
|
edition.workspace = true
|
|
rust-version = "1.92"
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
rtx-compiler = { path = "../rtx-compiler" }
|
|
rtx-synthesis = { path = "../rtx-synthesis" }
|
|
rtx-tensor = { path = "../../core/rtx-tensor" }
|
|
rustc-hash = "1.1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
thiserror = "2"
|
|
smallvec = { version = "1.11", features = ["const_generics"] }
|
|
indexmap = { version = "2.0", features = ["serde"] }
|
|
ahash = "0.8"
|
|
petgraph = { version = "0.6", default-features = false, features = ["serde-1"] }
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.5", features = ["html_reports"] }
|
|
proptest = "1.4"
|
|
test-log = "0.2"
|
|
env_logger = "0.10"
|
|
|
|
[[bench]]
|
|
name = "fusion_bench"
|
|
harness = false
|
|
|
|
[lints]
|
|
workspace = true
|