[package]
edition = "2021"
rust-version = "1.81"
name = "netcdf-core"
version = "0.9.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared NetCDF data model, format constants, and validation helpers"
homepage = "https://github.com/roteiro-gis/netcdf-rust"
documentation = "https://docs.rs/netcdf-core"
readme = "README.md"
keywords = [
"netcdf",
"codec",
"scientific-data",
]
categories = [
"science",
"encoding",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/roteiro-gis/netcdf-rust"
[lib]
name = "netcdf_core"
path = "src/lib.rs"
[dependencies.thiserror]
version = "2"
[lints.clippy]
undocumented_unsafe_blocks = "deny"
[lints.rust]
unsafe_op_in_unsafe_fn = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(test)"]