53 lines
1.6 KiB
Plaintext
53 lines
1.6 KiB
Plaintext
[package]
|
|
name = "rtx-auto"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Autonomous platform agents for RustyTorch++"
|
|
|
|
[dependencies]
|
|
# Core dependencies
|
|
thiserror = "1.0"
|
|
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 = "../rtx-tensor" }
|
|
rtx-runtime = { path = "../rtx-runtime" }
|
|
rtx-compiler = { path = "../rtx-compiler" }
|
|
rtx-kernel = { path = "../rtx-kernel" }
|
|
rtx-autograd = { path = "../rtx-autograd" }
|
|
rtx-distributed = { path = "../rtx-distributed" }
|
|
rtx-inference = { path = "../rtx-inference" }
|
|
rtx-graph = { path = "../rtx-graph" }
|
|
rtx-platform = { path = "../rtx-platform" }
|
|
rtx-profiler = { path = "../rtx-profiler" }
|
|
rtx-synthesis = { path = "../rtx-synthesis" }
|
|
rtx-bench = { path = "../rtx-bench" }
|
|
rtx-bindings = { path = "../rtx-bindings" }
|
|
rtx-rl = { path = "../rtx-rl" }
|
|
rtx-geom = { path = "../rtx-geom" }
|
|
rtx-diffuse = { path = "../rtx-diffuse" }
|
|
rtx-multimodal = { path = "../rtx-multimodal" }
|
|
rtx-polygraph = { path = "../rtx-polygraph" }
|
|
rtx-governance = { path = "../rtx-governance" }
|
|
rtx-privacy = { path = "../rtx-privacy" }
|
|
rtx-compress = { path = "../rtx-compress" }
|
|
rtx-robust = { path = "../rtx-robust" }
|
|
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|
|
proptest = "1.0"
|
|
criterion = "0.5"
|
|
tempfile = "3.0"
|