-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (50 loc) · 1.15 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
[package]
name = "ndarray-slice"
version = "0.4.0"
rust-version = "1.65.0"
edition = "2021"
authors = ["Rouven Spreckels <[email protected]>"]
description = """Fast and robust slice-based algorithms (e.g., sorting, selection, search)
for non-contiguous (sub)views into n-dimensional arrays."""
documentation = "https://docs.rs/ndarray-slice"
repository = "https://github.com/qu1x/ndarray-slice"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = [
"array",
"ndarray",
"numpy",
"select",
"sort",
]
categories = [
"algorithms",
"data-structures",
"no-std::no-alloc",
"science",
]
include = [
"src/**/*.rs",
"Cargo.toml",
"README.md",
"RELEASES.md",
"LICENSES/*",
]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
ndarray = { version = "0.16.1", default-features = false }
stacker = { version = "0.1.17", optional = true }
rayon = { version = "1.10.0", optional = true }
[dev-dependencies]
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
rand = "0.8.5"
[features]
default = ["std", "stacker"]
alloc = []
std = ["alloc", "ndarray/std"]
rayon = ["dep:rayon", "ndarray/rayon", "std"]
[profile.test]
opt-level = 2