[package] name = "rtx-losses" version = "1.0.0" edition.workspace = true rust-version = "1.92" authors = ["RustyTorch++ Team"] license = "Apache-2.0" description = "Comprehensive loss functions for deep learning with automatic differentiation support" [dependencies] # Core tensor operations # rtx-tensor = { path = "../rtx-tensor" } # Disabled due to compilation issues # rtx-autograd = { path = "../rtx-autograd" } # Disabled due to compilation issues # Core utilities anyhow = "1.0" thiserror = "2" tracing = "0.1" # Numeric computing ndarray = "0.15" # Random number generation rand = "0.8" [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_losses" path = "src/lib.rs" # [workspace] - This crate is part of the main workspace [lints] workspace = true