[package] name = "rtx-timeseries" version = "1.0.0" edition.workspace = true rust-version = "1.92" authors = ["RustyTorch++ Team"] description = "GPU-accelerated time series analysis and forecasting with revolutionary enhancements" license = "MIT OR Apache-2.0" repository = "https://github.com/rustyai/rustytorch" keywords = ["time-series", "forecasting", "arima", "prophet", "gpu"] categories = ["science", "algorithms", "mathematics"] [dependencies] # Core tensor operations rtx-tensor = { path = "../../core/rtx-tensor" } rtx-runtime = { path = "../../core/rtx-runtime" } # ML and validation rtx-ml-classic = { path = "../../specialized/rtx-ml-classic" } rtx-validation = { path = "../../core/rtx-validation" } rtx-automeasure = { path = "../../training/rtx-automeasure" } # Error handling and async anyhow = "1.0" thiserror = "2" tokio = { version = "1.0", features = ["full"] } # Serialization and data structures serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" uuid = { version = "1.0", features = ["v4"] } # Math and statistics approx = "0.5" ndarray = "0.15" statrs.workspace = true rand = "0.8" rand_distr = "0.4" # Optimization and numerical argmin = "0.8" argmin-math = "0.3" # Parallel processing rayon = "1.7" parking_lot = "0.12" # Logging and monitoring tracing = "0.1" tracing-subscriber = "0.3" # Time handling chrono = { version = "0.4", features = ["serde"] } # Linear algebra nalgebra.workspace = true [dev-dependencies] tokio-test = "0.4" criterion = { version = "0.5", features = ["html_reports"] } proptest = "1.0" test-case = "3.0" [lints] workspace = true