[package] name = "rtx-auto" version = "1.0.0" edition.workspace = true rust-version = "1.92" authors.workspace = true license.workspace = true repository.workspace = true description = "Autonomous platform agents for 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" statrs.workspace = true # All Phase 12 crates as dependencies rtx-evolution = { path = "../rtx-evolution" } rtx-tensor = { path = "../../core/rtx-tensor" } rtx-runtime = { path = "../../core/rtx-runtime" } rtx-compiler = { path = "../../specialized/rtx-compiler" } rtx-kernel = { path = "../../core/rtx-kernel" } rtx-autograd = { path = "../../core/rtx-autograd" } # rtx-distributed = { path = "../rtx-distributed" } # Temporarily disabled - missing hpc-channels rtx-inference = { path = "../../production/rtx-inference" } rtx-graph = { path = "../../core/rtx-graph" } rtx-platform = { path = "../../specialized/rtx-platform" } rtx-synthesis = { path = "../../specialized/rtx-synthesis" } rtx-bindings = { path = "../../core/rtx-bindings" } rtx-rl = { path = "../rtx-rl" } rtx-geom = { path = "../../specialized/rtx-geom" } rtx-diffuse = { path = "../../models/rtx-diffuse" } rtx-multimodal = { path = "../../models/rtx-multimodal" } rtx-polygraph = { path = "../../specialized/rtx-polygraph" } rtx-compress = { path = "../rtx-compress" } [dev-dependencies] tokio-test = "0.4" proptest = "1.0" criterion = "0.5" tempfile = "3.0" [lints] workspace = true