forked from 10XGenomics/hdf5-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (39 loc) · 1.17 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
[package]
name = "hdf5"
version = "0.7.0" # !V
authors = ["Ivan Smirnov <[email protected]>"]
keywords = ["hdf5"]
license = "MIT OR Apache-2.0"
readme = "README.md"
description = "Thread-safe Rust bindings for the HDF5 library."
repository = "https://github.com/aldanor/hdf5-rust"
homepage = "https://github.com/aldanor/hdf5-rust"
build = "build.rs"
edition = "2018"
[features]
default = []
mpio = ["mpi-sys", "hdf5-sys/mpio"]
[workspace]
members = [".", "hdf5-types", "hdf5-derive", "hdf5-sys", "hdf5-src"]
default-members = [".", "hdf5-types", "hdf5-derive", "hdf5-sys"]
[dependencies]
bitflags = "1.2"
lazy_static = "1.4"
libc = "0.2"
parking_lot = "0.10"
ndarray = "0.13"
num-integer = "0.1"
num-traits = "0.2"
mpi-sys = { version = "0.1", optional = true }
hdf5-sys = { path = "hdf5-sys", version = "0.7.0" } # !V
hdf5-types = { path = "hdf5-types", version = "0.7.0" } # !V
hdf5-derive = { path = "hdf5-derive", version = "0.7.0" } # !V
[dev-dependencies]
mashup = "0.1"
pretty_assertions = "0.6"
rand = { version = "0.7", features = ["small_rng"] }
regex = "1.3"
scopeguard = "1.0"
tempdir = "0.3"
[package.metadata.docs.rs]
features = ["hdf5-sys/static", "hdf5-sys/zlib"]