[package] name = "rtx-vision" version = "1.0.0" edition.workspace = true rust-version = "1.92" authors = ["RustyTorch++ Team"] license = "Apache-2.0" description = "Vision Transformers and computer vision models for RustyTorch++" repository = "https://github.com/rustytorch/rustytorch" [dependencies] # RTX crates rtx-tensor = { path = "../../core/rtx-tensor" } # Core utilities anyhow = "1.0" thiserror = "2" tracing = "0.1" # Image processing image = "0.24" imageproc = "0.23" # Numeric computing ndarray = "0.15" nalgebra.workspace = true 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" [lints] workspace = true