35 lines
786 B
Plaintext
35 lines
786 B
Plaintext
[package]
|
|
name = "rtx-runtime"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.80"
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
description = "RustyTorch++ GPU runtime system"
|
|
repository.workspace = true
|
|
keywords = ["runtime", "gpu", "cuda", "execution"]
|
|
categories = ["development-tools"]
|
|
|
|
[dependencies]
|
|
# Core dependencies
|
|
anyhow.workspace = true
|
|
thiserror.workspace = true
|
|
tracing.workspace = true
|
|
|
|
# Memory and synchronization
|
|
parking_lot = "0.12"
|
|
once_cell = "1.19"
|
|
bitfield-struct = "0.6"
|
|
|
|
# Numerical types
|
|
bytemuck = "1.14"
|
|
|
|
# CUDA integration
|
|
cudarc = { version = "0.17.2", features = ["driver", "runtime", "nvrtc", "cuda-13000"] }
|
|
|
|
[dev-dependencies]
|
|
proptest.workspace = true
|
|
criterion.workspace = true
|
|
rand = "0.8"
|
|
static_assertions = "1.1"
|
|
tokio.workspace = true |