-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 733 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (24 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "rust-stats"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Pure-Rust statistical modeling: LOESS, STL, seasonal_decompose, ARIMA, Holt-Winters, catch22"
[dependencies]
thiserror = "2"
rayon = "1.10"
# FFT-based autocorrelation and Welch PSD, used by `catch22`.
realfft = "3.4"
arrow = { version = "58", optional = true, default-features = false }
polars = { version = "0.53", optional = true, default-features = false }
[features]
default = []
arrow = ["dep:arrow"]
polars = ["dep:polars"]
[dev-dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
approx = "0.5"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]