Files
rustytorch/crates/models/rtx-timeseries/Cargo.toml
T
Omar Sobh 16161bb9df deps: align all 56 per-crate Cargo.toml files to thiserror v2
The workspace root was upgraded to thiserror = "2" in an earlier commit,
but 56 per-crate Cargo.toml files still independently declared "1.0".
These crates do not use workspace.dependencies inheritance for thiserror.
All updated to thiserror = "2" for complete fleet alignment.

Includes: rtx-backend, rtx-tensor, rtx-losses, rtx-backend-cuda/rocm/metal,
all training crates (rtx-auto, rtx-rl, rtx-distributed, rtx-federated, etc.),
specialized crates (rtx-science, rtx-platform, rtx-nmf, rtx-neuro-*),
production crates (rtx-streaming, rtx-serving-api), and all demo crates.

cargo check --workspace: PASSES.
2026-04-26 11:45:14 -07:00

68 lines
1.6 KiB
TOML

[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