-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCargo.toml
44 lines (39 loc) · 1.15 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 = "netcdf-sys"
version = "0.8.1"
authors = [
"Michael Hiley <mhiley@gmail.com>",
"Magnus Ulimoen <magnusu@met.no>"
]
license = "MIT"
description = "FFI bindings to NetCDF"
repository = "https://github.com/georust/netcdf"
keywords = ["netcdf", "hdf", "hdf5", "cdm", "ffi"]
edition = "2021"
links = "netcdf"
build = "build.rs"
readme = "README.md"
categories = ["development-tools::ffi", "filesystem", "science"]
exclude = [
"testdata/**",
]
rust-version = "1.77.0"
[dependencies]
libz-sys = { version = "1.0.25" }
curl-sys = { version = "0.4.51", optional = true }
hdf5-sys = { workspace = true }
netcdf-src = { workspace = true, optional = true }
mpi-sys = { workspace = true, optional = true }
parking_lot = "0.12.3"
[dev-dependencies]
[features]
default = []
memio = []
static = ["libz-sys/static", "hdf5-sys/static", "hdf5-sys/hl", "hdf5-sys/deprecated", "hdf5-sys/zlib", "dep:netcdf-src", "curl-sys?/static-curl", "curl-sys?/static-ssl"]
dap = ["dep:curl-sys", "netcdf-src?/dap"]
mpi = ["dep:mpi-sys", "netcdf-src?/mpi"]
[build-dependencies]
semver = "1.0.9"
[package.metadata.docs.rs]
features = ["static"]
rustdoc-args = ["--cfg", "docsrs"]