Skip to content

Commit

Permalink
chore(packaging): exclude
Browse files Browse the repository at this point in the history
  • Loading branch information
ssoudan committed Oct 11, 2023
1 parent 229ab85 commit 0d76d92
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
Cargo.lock
.vscode
BUILD.sh
venv/
venv/
test.ipynb
12 changes: 8 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,30 @@ exclude = [
"/.cargo/*",
"/.gitignore",
"/.devcontainer/*",
"/.vscode/*",
"/.git/*",
"/.idea/*",
"/venv/*",
]

[features]
default = []
unstable = [ "rand", "rand_distr"]
unstable = ["rand", "rand_distr"]

[[bench]]
name = "ols"
harness = false
required-features = [ "unstable" ]
required-features = ["unstable"]

[[bench]]
name = "dickeyfuller"
harness = false
required-features = [ "unstable" ]
required-features = ["unstable"]

[[bench]]
name = "adf"
harness = false
required-features = [ "unstable" ]
required-features = ["unstable"]

[dependencies]
nalgebra = "0"
Expand Down

0 comments on commit 0d76d92

Please sign in to comment.