[package]
edition = "2021"
name = "chronos-ts"
version = "0.1.0"
build = false
exclude = [
".github/",
"python/",
"chronos_ts.pyi",
"py.typed",
"pyproject.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance, parallelized time series forecasting and auto-ARIMA engine in Rust."
homepage = "https://github.com/mi7plus/chronos-ts"
readme = "README.md"
keywords = [
"time-series",
"arima",
"sarima",
"forecasting",
"prophet",
]
categories = [
"science",
"mathematics",
"algorithms",
]
license = "MIT"
repository = "https://github.com/mi7plus/chronos-ts"
[features]
default = []
python = [
"dep:pyo3",
"dep:numpy",
]
[lib]
name = "chronos_ts"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[example]]
name = "arima_forecast"
path = "examples/arima_forecast.rs"
[[example]]
name = "prophet_forecast"
path = "examples/prophet_forecast.rs"
[[test]]
name = "arima_accuracy_test"
path = "tests/arima_accuracy_test.rs"
[[test]]
name = "autotune_test"
path = "tests/autotune_test.rs"
[[test]]
name = "diagnostics_and_statespace_test"
path = "tests/diagnostics_and_statespace_test.rs"
[[test]]
name = "diagnostics_test"
path = "tests/diagnostics_test.rs"
[[test]]
name = "fit_test"
path = "tests/fit_test.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "serde_test"
path = "tests/serde_test.rs"
[[test]]
name = "viz_test"
path = "tests/viz_test.rs"
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false
[dependencies.argmin]
version = "0.10"
[dependencies.argmin-math]
version = "0.4"
features = ["ndarray_0_15"]
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.ndarray]
version = "0.15"
features = ["serde"]
[dependencies.numpy]
version = "0.20"
optional = true
[dependencies.pyo3]
version = "0.20"
features = [
"extension-module",
"abi3-py38",
]
optional = true
[dependencies.rand]
version = "0.8"
[dependencies.rand_distr]
version = "0.4"
[dependencies.rayon]
version = "1.8"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.statrs]
version = "0.16"
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.approx]
version = "0.5"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]