-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
57 lines (50 loc) · 1.45 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
56
57
[package]
name = "n5"
version = "0.7.6"
edition = "2018"
license = "MIT/Apache-2.0"
authors = ["Andrew Champion <[email protected]>"]
description = "Rust implementation of the N5 tensor file system format"
readme = "README.md"
repository = "https://github.com/aschampion/rust-n5"
keywords = ["tensor"]
categories = ["encoding", "filesystem", "science"]
[features]
default = ["bzip", "filesystem", "gzip", "lz", "use_ndarray", "xz"]
bzip = ["bzip2"]
filesystem = ["fs2", "walkdir"]
gzip = ["flate2"]
lz = ["lz4"]
lz_pure = ["lz-fear"]
use_ndarray = ["itertools", "ndarray", "num-traits"]
xz = ["xz2"]
[dependencies]
byteorder = "1.3.4"
semver = "0.9"
serde_json = "1.0.39"
bzip2 = { version = "0.4", optional = true }
flate2 = { version = "1.0.16", optional = true }
fs2 = { version = "0.4", optional = true }
itertools = { version = "0.8", optional = true }
lz4 = { version = "1.23", optional = true }
lz-fear = { version = "0.1.1", optional = true }
ndarray = { version = "0.13", optional = true }
num-traits = { version = "0.2", optional = true }
serde = { version = "1.0", features = ["derive"] }
smallvec = { version = "1", features = ["serde"] }
walkdir = { version = "2", optional = true }
xz2 = { version = "0.1", optional = true }
[dev-dependencies]
bencher = "0.1.5"
doc-comment = "0.3"
futures = "0.1"
futures-cpupool = "0.1.8"
lazy_static = "1.4"
rand = "0.7"
rayon = "1"
tempdir = "0.3"
tiff = "0.3"
[profile.release]
lto = true
[profile.bench]
lto = true