Skip to content

Commit ac92e96

Browse files
committed
Add docstrings for all hdf5 crate features
1 parent b276176 commit ac92e96

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

hdf5/Cargo.toml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,19 @@ edition.workspace = true
1515

1616
[features]
1717
default = []
18-
mpio = ["dep:mpi-sys", "hdf5-sys/mpio"]
19-
lzf = ["dep:lzf-sys", "dep:errno"]
20-
blosc = ["dep:blosc-sys"]
18+
# Compile and statically link bundled HDF5 library.
2119
static = ["hdf5-sys/static"]
20+
# Enable zlib compression filter.
2221
zlib = ["hdf5-sys/zlib"]
22+
# Enable LZF compression filter.
23+
lzf = ["dep:lzf-sys", "dep:errno"]
24+
# Enable blosc compression filters.
25+
blosc = ["dep:blosc-sys"]
26+
# Enable MPI support.
27+
mpio = ["dep:mpi-sys", "hdf5-sys/mpio"]
28+
# Enable complex number type support.
2329
complex = ["hdf5-types/complex"]
30+
# Enable float16 type support.
2431
f16 = ["hdf5-types/f16"]
2532

2633
# The features with version numbers such as 1.10.3, 1.12.0 are metafeatures

0 commit comments

Comments
 (0)