forked from jturner314/ndarray-npy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (30 loc) · 860 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
35
[package]
name = "ndarray-npy"
version = "0.6.2"
authors = ["Jim Turner <[email protected]>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/jturner314/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 = "2018"
[dependencies]
byteorder = "1.3.4"
ndarray = "0.14.0"
num-traits = "0.2.14"
py_literal = "0.2.2"
thiserror = "1.0.22"
zip = { version = "0.5.8", default-features = false, optional = true }
[features]
default = ["compressed_npz"]
npz = ["zip"]
compressed_npz = ["npz", "zip/deflate"]
[dev-dependencies]
criterion = { version = "0.3.3", features = ['real_blackbox'] }
[[bench]]
name = "write_arr"
harness = false
[[bench]]
name = "memcpy"
harness = false