n5 0.2.2

Rust implementation of the N5 tensor file system format
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g. crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
name = "n5"
version = "0.2.2"
authors = ["Andrew Champion <andrew.champion@gmail.com>"]
description = "Rust implementation of the N5 tensor file system format"
readme = "README.md"
keywords = ["tensor"]
categories = ["filesystem", "science"]
license = "MIT/Apache-2.0"
repository = "https://github.com/aschampion/rust-n5"
[dependencies.byteorder]
version = "1"

[dependencies.bzip2]
version = "0.3"
optional = true

[dependencies.flate2]
version = "1.0"
features = ["rust_backend"]
optional = true
default-features = false

[dependencies.fs2]
version = "0.4"
optional = true

[dependencies.itertools]
version = "0.7"
optional = true

[dependencies.lazy_static]
version = "1.0"

[dependencies.lz4]
version = "1.0"
optional = true

[dependencies.ndarray]
version = "0.12"
optional = true

[dependencies.num-traits]
version = "0.2"
optional = true

[dependencies.regex]
version = "1.0"

[dependencies.serde]
version = "1.0"

[dependencies.serde_derive]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.walkdir]
version = "2"
optional = true

[dependencies.xz2]
version = "0.1"
optional = true
[dev-dependencies.bencher]
version = "0.1.5"

[dev-dependencies.futures]
version = "0.1"

[dev-dependencies.futures-cpupool]
version = "0.1.8"

[dev-dependencies.rand]
version = "0.5"

[dev-dependencies.rayon]
version = "1"

[dev-dependencies.tempdir]
version = "0.3"

[dev-dependencies.tiff]
version = "0.2"

[features]
bzip = ["bzip2"]
default = ["bzip", "filesystem", "gzip", "lz", "use_ndarray", "xz"]
filesystem = ["fs2", "walkdir"]
gzip = ["flate2"]
lz = ["lz4"]
use_ndarray = ["itertools", "ndarray", "num-traits"]
xz = ["xz2"]