-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCargo.toml
34 lines (30 loc) · 939 Bytes
/
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
[package]
name = "ndarray-npy"
version = "0.9.1"
authors = ["Jim Turner <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jturner314/ndarray-npy"
documentation = "https://docs.rs/ndarray-npy"
description = ".npy and .npz file format support for ndarray"
keywords = ["npy", "npz", "ndarray", "numpy", "array"]
categories = ["parser-implementations", "encoding", "science"]
readme = "README.md"
edition = "2021"
rust-version = "1.64"
[dependencies]
byteorder = "1.3.2"
ndarray = "0.16"
num-complex-0_4 = { package = "num-complex", version = "0.4", optional = true }
num-traits = "0.2"
py_literal = "0.4"
zip = { version = "2", default-features = false, optional = true }
[features]
default = ["compressed_npz", "num-complex-0_4"]
npz = ["zip"]
compressed_npz = ["npz", "zip/deflate"]
[dev-dependencies]
memmap2 = "0.9"
tempfile = "3.2"
[[example]]
name = "simple_npz"
required-features = ["npz"]