-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathCargo.toml
45 lines (39 loc) · 935 Bytes
/
Cargo.toml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "augurs-ets"
version.workspace = true
authors.workspace = true
documentation.workspace = true
repository.workspace = true
license.workspace = true
edition.workspace = true
keywords.workspace = true
description = "ETS models for augurs"
[dependencies]
augurs-core.workspace = true
augurs-mstl = { workspace = true, optional = true }
distrs.workspace = true
itertools.workspace = true
lstsq = "0.6.0"
nalgebra = "0.33.0"
rand.workspace = true
rand_distr = "0.4.3"
roots.workspace = true
serde = { workspace = true, optional = true, features = ["derive"] }
thiserror.workspace = true
tracing.workspace = true
[features]
mstl = ["dep:augurs-mstl"]
serde = ["dep:serde"]
[dev-dependencies]
augurs-testing.workspace = true
criterion.workspace = true
iai.workspace = true
pprof.workspace = true
[lib]
bench = false
[[bench]]
name = "air_passengers"
harness = false
[[bench]]
name = "air_passengers_iai"
harness = false