67 lines
1.6 KiB
Plaintext
67 lines
1.6 KiB
Plaintext
[package]
|
|
name = "rtx-timeseries"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
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 = "../rtx-tensor" }
|
|
rtx-runtime = { path = "../rtx-runtime" }
|
|
|
|
# ML and validation
|
|
rtx-ml-classic = { path = "../rtx-ml-classic" }
|
|
rtx-validation = { path = "../rtx-validation" }
|
|
rtx-automeasure = { path = "../rtx-automeasure" }
|
|
|
|
# Revolutionary capabilities
|
|
rtx-quantum = { path = "../rtx-quantum" }
|
|
rtx-neuromorphic = { path = "../rtx-neuromorphic" }
|
|
|
|
# Error handling and async
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
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"
|
|
|