Files
rustytorch/crates/training/rtx-evolution/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

42 lines
961 B
TOML

[package]
name = "rtx-evolution"
version = "1.0.0"
edition.workspace = true
rust-version = "1.92"
description = "Autonomous evolution framework for RustyTorch++"
license = "MIT"
repository = "https://github.com/RustyTorch/RustyTorch"
[dependencies]
# Core dependencies
thiserror = "2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
uuid = { version = "1.0", features = ["v4", "serde"] }
# Scientific computing
ndarray = "0.15"
petgraph = "0.6"
# Statistics and optimization
statrs.workspace = true
optimization = "0.2"
tempfile = "3.0"
# Internal dependencies
rtx-runtime = { path = "../../core/rtx-runtime" }
rtx-tensor = { path = "../../core/rtx-tensor" }
rtx-graph = { path = "../../core/rtx-graph" }
[dev-dependencies]
tokio-test = "0.4"
proptest = "1.0"
criterion = "0.5"
tempfile = "3.0"
# Benchmarks will be added after implementation
[lints]
workspace = true