-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
53 lines (48 loc) · 1.05 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
[package]
name = "ndarray-npz"
version = "0.3.0"
rust-version = "1.73.0"
edition = "2021"
authors = ["Rouven Spreckels <[email protected]>"]
description = "Advanced .npz file format support for n-dimensional arrays."
documentation = "https://docs.rs/ndarray-npz"
repository = "https://github.com/qu1x/ndarray-npz"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = [
"array",
"ndarray",
"numpy",
"npy",
"npz",
]
categories = [
"encoding",
"parser-implementations",
"science",
]
include = [
"src/**/*.rs",
"tests/**/*.rs",
"Cargo.toml",
"README.md",
"RELEASES.md",
"LICENSES/*",
]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
ndarray = "0.16.1"
ndarray-npy = { version = "0.9.1", default-features = false }
zip = { version = "2.2.0", default-features = false }
crc32fast = "1.4.2"
[dev-dependencies]
aligned-vec = "0.6.1"
memmap2 = "0.9.5"
[features]
default = ["compressed", "num-complex-0_4"]
compressed = ["zip/deflate"]
num-complex-0_4 = ["ndarray-npy/num-complex-0_4"]
[profile.test]
opt-level = 2