Files
rustytorch/crates/meta/rtx-core/Cargo.toml.backup
T
2026-03-04 00:08:42 +00:00

20 lines
716 B
Plaintext

[package]
name = "rtx-core"
version = "1.0.0"
edition = "2021"
authors = ["RustyTorch Team"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rustytorch/rustytorch"
description = "RTX core tensor operations and runtime - Essential functionality only"
keywords = ["machine-learning", "tensor", "gpu", "cuda", "core"]
categories = ["science", "mathematics"]
[dependencies]
rtx-tensor = { path = "../../core/rtx-tensor", version = "1.0.0" }
rtx-runtime = { path = "../../core/rtx-runtime", version = "1.0.0" }
rtx-autograd = { path = "../../core/rtx-autograd", version = "1.0.0" }
rtx-memory = { path = "../../core/rtx-memory", version = "1.0.0" }
[dev-dependencies]
tokio-test = "0.4"
criterion = "0.5"