51 lines
948 B
TOML
51 lines
948 B
TOML
[package]
|
|
name = "rtx-vision"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["RustyTorch++ Team"]
|
|
license = "Apache-2.0"
|
|
description = "Vision Transformers and computer vision models for RustyTorch++"
|
|
repository = "https://github.com/rustytorch/rustytorch"
|
|
|
|
[dependencies]
|
|
# Core utilities
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
tracing = "0.1"
|
|
|
|
# Image processing
|
|
image = "0.24"
|
|
imageproc = "0.23"
|
|
|
|
# Numeric computing
|
|
ndarray = "0.15"
|
|
nalgebra = "0.32"
|
|
num-traits = "0.2"
|
|
half = "2.3"
|
|
rand = "0.8"
|
|
rand_distr = "0.4"
|
|
|
|
# Serialization
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
bincode = "1.3"
|
|
|
|
# Mock dependencies are handled internally
|
|
|
|
[dev-dependencies]
|
|
# Testing framework
|
|
proptest = "1.4"
|
|
criterion = "0.5"
|
|
approx = "0.5"
|
|
tempfile = "3.8"
|
|
|
|
# Async for integration tests
|
|
tokio = { version = "1.35", features = ["full"] }
|
|
|
|
[features]
|
|
default = ["mock-tensor"]
|
|
mock-tensor = []
|
|
|
|
[lib]
|
|
name = "rtx_vision"
|
|
path = "src/lib.rs" |