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.1 KiB
TOML
52 lines
1.1 KiB
TOML
[package]
|
|
name = "rtx-platform"
|
|
version = "1.0.0"
|
|
edition.workspace = true
|
|
rust-version = "1.92"
|
|
license = "MIT"
|
|
repository = "https://github.com/RustyTorch/RustyTorch"
|
|
|
|
[dependencies]
|
|
# Core dependencies
|
|
anyhow = "1.0"
|
|
thiserror = "2"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
bincode = "1.3"
|
|
uuid = { version = "1.0", features = ["v4", "serde"] }
|
|
async-trait = "0.1"
|
|
parking_lot = "0.12"
|
|
dashmap = "5.4"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
# Platform-specific dependencies (simplified for compilation)
|
|
tokio-util = "0.7"
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
|
|
# Security and encryption
|
|
ring = "0.17"
|
|
hmac = "0.12"
|
|
sha2 = "0.10"
|
|
rand = "0.8"
|
|
|
|
# Configuration and networking
|
|
url = "2.3"
|
|
|
|
# Database and caching
|
|
sqlx = { workspace = true }
|
|
redis = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|
|
proptest = "1.0"
|
|
criterion = "0.5"
|
|
tempfile = "3.0"
|
|
|
|
[build-dependencies]
|
|
tonic-build = "0.13"
|
|
[lints]
|
|
workspace = true
|