50 lines
925 B
Plaintext
50 lines
925 B
Plaintext
[package]
|
|
name = "rtx-tensor"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["RustyTorch++ Team"]
|
|
license = "Apache-2.0"
|
|
description = "GPU-native tensor library with PyTorch-compatible API for RustyTorch++"
|
|
|
|
[dependencies]
|
|
# Core utilities
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
tracing = "0.1"
|
|
|
|
# Serialization for tensor persistence
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
bincode = "1.3"
|
|
serde_json = "1.0"
|
|
|
|
# Compression algorithms for sparse tensor serialization
|
|
lz4_flex = "0.11"
|
|
zstd = "0.13"
|
|
|
|
# Checksums for data integrity
|
|
crc32fast = "1.3"
|
|
sha2 = "0.10"
|
|
|
|
# Numeric computing
|
|
ndarray = "0.15"
|
|
half = "2.3"
|
|
rand = "0.8"
|
|
|
|
# Removed rtx-runtime dependency - rtx-tensor is the foundation layer
|
|
|
|
[dev-dependencies]
|
|
# Testing framework
|
|
proptest = "1.4"
|
|
criterion = "0.5"
|
|
tokio = "1.35"
|
|
|
|
# Additional testing utilities
|
|
approx = "0.5"
|
|
rand = "0.8"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[lib]
|
|
name = "rtx_tensor"
|
|
path = "src/lib.rs" |