eccodes 0.8.0

Unofficial high-level Rust bindings of the latest ecCodes release
Documentation
[package]
name = "eccodes"
description = "Unofficial high-level Rust bindings of the latest ecCodes release"
repository = "https://github.com/ScaleWeather/eccodes"
version = "0.8.0"
readme = "README.md"
authors = ["Jakub Lewandowski <scaleweather@gmail.com>"]
keywords = ["eccodes", "grib", "bufr", "meteorology", "weather"]
categories = [
    "api-bindings",
    "external-ffi-bindings",
    "filesystem",
    "encoding",
    "science",
]
license = "Apache-2.0"
edition = "2021"
exclude = [".github/*", ".vscode/*", ".idea/*", "data/*"]

[dependencies]
eccodes-sys = "0.5.1"
libc = "0.2"
thiserror = "1.0"
bytes = "1.5"
log = "0.4"
errno = "0.3"
num-derive = "0.4.1"
num-traits = "0.2"
fallible-iterator = "0.3"

[dev-dependencies]
eccodes-sys = "0.5.1"
reqwest = { version = "0.11", features = ["rustls-tls"] }
tokio = { version = "1.35", features = ["macros", "rt"] }
criterion = "0.5"
testing_logger = "0.1"

[features]
docs = ["eccodes-sys/docs"]

[package.metadata.docs.rs]
features = ["docs"]

[[bench]]
name = "main"
harness = false