[package] name = "rtx-timeseries-demo" version = "1.0.0" edition = "2024" rust-version = "1.92" description = "Time series forecasting demo for RustyTorch++ - ARIMA, Prophet, and more" authors = ["RustyTorch Team"] license = "MIT OR Apache-2.0" repository = "https://github.com/rustytorch/rustytorch" [dependencies] timeseries-shared = { path = "../timeseries-shared" } rtx-timeseries = { workspace = true } rtx-tensor = { workspace = true } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" thiserror = "2" tracing = "0.1" rand = "0.9" rand_distr = "0.5" tokio = { version = "1.0", features = ["sync"] } [features] default = [] [dev-dependencies] tempfile = "3.10" [lints] workspace = true