forked from georust/netcdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (38 loc) · 1000 Bytes
/
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
[package]
name = "netcdf-src"
version = "0.3.7"
authors = ["Magnus Ulimoen <[email protected]>"]
edition = "2021"
description = "Build scripts for building `netCDF` from source"
build = "build.rs"
repository = "https://github.com/georust/netcdf"
license-file = "source/COPYRIGHT"
links = "netcdfsrc"
categories = ["filesystem"]
keywords = ["netcdf"]
readme = "README.md"
exclude = [
"source/unit_test/**",
"source/NUG/**",
"source/dap4_test/**",
"source/examples/**",
"source/nc_test/**",
"source/h5_test/**",
"source/nc_perf/**",
"source/ncdump/**",
"source/hdf4_test/**",
"source/ncgen/**",
"source/ncgen3/**",
"source/nctest/**",
"source/ncdap_test/**",
]
rust-version = "1.77.0"
[features]
dap = ["dep:link-cplusplus"]
mpi = []
[dependencies]
hdf5-sys = { workspace = true, features = ["hl", "deprecated", "zlib"] }
libz-sys = { version = "1.0.25" }
link-cplusplus = { version = "1.0.9", optional = true }
[build-dependencies]
cmake = "0.1.44"