38 lines
883 B
Plaintext
38 lines
883 B
Plaintext
[package]
|
|
name = "rtx-evolution"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Autonomous evolution framework for RustyTorch++"
|
|
license = "MIT"
|
|
repository = "https://github.com/RustyTorch/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"
|
|
petgraph = "0.6"
|
|
|
|
# Statistics and optimization
|
|
statrs.workspace = true
|
|
optimization = "0.2"
|
|
tempfile = "3.0"
|
|
|
|
# Internal dependencies
|
|
rtx-runtime = { path = "../rtx-runtime" }
|
|
rtx-tensor = { path = "../rtx-tensor" }
|
|
rtx-graph = { path = "../rtx-graph" }
|
|
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|
|
proptest = "1.0"
|
|
criterion = "0.5"
|
|
tempfile = "3.0"
|
|
|
|
# Benchmarks will be added after implementation |