[dependencies.grib]
default-features = false
optional = true
version = "0.13.5"
[dependencies.memchr]
version = "2.1"
[dependencies.rust-aec]
version = "0.1.1"
[[example]]
name = "extract_param"
path = "examples/extract_param.rs"
[[example]]
name = "show_timeseries"
path = "examples/show_timeseries.rs"
[features]
default = []
grib-support = ["grib"]
[lib]
name = "rust_grib_decoder"
path = "src/lib.rs"
[package]
authors = ["(HUANG Kunlun) <hkl@duck.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["parsing", "science::geo"]
description = "Utilities to decode GRIB2 CCSDS/AEC (template 5.0=42) payloads and extract Section 7 payloads per message."
documentation = "https://docs.rs/rust-grib-decoder"
edition = "2024"
homepage = "https://crates.io/crates/rust-grib-decoder"
keywords = ["grib", "ccsds", "aec", "decoder"]
license = "MIT OR Apache-2.0"
name = "rust-grib-decoder"
readme = "README.md"
repository = "https://github.com/hkwk/rust-grib-decoder"
version = "0.1.1"
[package.metadata]
[[test]]
name = "basic_payload_read"
path = "tests/basic_payload_read.rs"
[[test]]
name = "decode_first_field"
path = "tests/decode_first_field.rs"
[[test]]
name = "decode_first_message"
path = "tests/decode_first_message.rs"
[[test]]
name = "decode_messages"
path = "tests/decode_messages.rs"
[[test]]
name = "decode_try_message"
path = "tests/decode_try_message.rs"
[[test]]
name = "extract_timeseries"
path = "tests/extract_timeseries.rs"
[[test]]
name = "grib1"
path = "tests/grib1.rs"
[[test]]
name = "param_alias"
path = "tests/param_alias.rs"
[[test]]
name = "probe_all_fields"
path = "tests/probe_all_fields.rs"
[[test]]
name = "read_grid"
path = "tests/read_grid.rs"
[[test]]
name = "summarize_find"
path = "tests/summarize_find.rs"
[[test]]
name = "template42_params"
path = "tests/template42_params.rs"