-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
56 lines (50 loc) · 1.11 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "unit-root"
version = "0.7.0"
edition = "2021"
authors = ["Sebastien Soudan <[email protected]>"]
description = "Unit root tests"
license = "Apache-2.0"
categories = ["science", "mathematics"]
keywords = ["math", "statistics", "unit-root", "adf"]
homepage = "https://github.com/ssoudan/unit-root"
repository = "https://github.com/ssoudan/unit-root"
documentation = "https://docs.rs/unit-root"
readme = "README.md"
exclude = [
"/.github/*",
"/.cargo/*",
"/.gitignore",
"/.devcontainer/*",
"/.vscode/*",
"/.git/*",
"/.idea/*",
"/venv/*",
]
[features]
default = []
unstable = ["rand", "rand_distr"]
[[bench]]
name = "ols"
harness = false
required-features = ["unstable"]
[[bench]]
name = "dickeyfuller"
harness = false
required-features = ["unstable"]
[[bench]]
name = "adf"
harness = false
required-features = ["unstable"]
[dependencies]
nalgebra = "0"
thiserror = "1"
rand = { version = "0", optional = true }
rand_distr = { version = "0", optional = true }
num-traits = "0"
[dev-dependencies]
rand = "0"
rand_distr = "0"
approx = "0"
rand_chacha = "0"
criterion = "0"