Skip to content

Commit

Permalink
Fix Miri.
Browse files Browse the repository at this point in the history
  • Loading branch information
n3vu0r committed Jun 13, 2024
1 parent a28be8b commit d25cc7c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ jobs:
- name: fmt
run: cargo fmt --all --check
- name: miri
run: cargo miri test
run: cargo miri test --no-default-features
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ categories = ["data-structures", "science"]

[dependencies]
ndarray = "0.15.6"
ndarray-slice = "0.3.1"
ndarray-slice = { version = "0.3.1", default-features = false, features = ["std"] }
ordered-float = "4.2.0"
num-integer = "0.1.46"
num-traits = "0.2.19"
Expand All @@ -28,6 +28,7 @@ quickcheck = { version = "1.0.3", default-features = false }
quickcheck_macros = "1.0.0"

[features]
default = ["ndarray-slice/stacker"]
rayon = ["dep:rayon", "ndarray-slice/rayon", "ndarray/rayon"]

[[bench]]
Expand Down

0 comments on commit d25cc7c

Please sign in to comment.