[package] name = "grib1_reader" version = "0.2.1" edition = "2021" description = "A simple library capable of reading GRIB version 1 files" license = "MIT OR Apache-2.0" keywords = ["GRIB"] homepage = "https://github.com/christian-boks/grib1_reader" repository = "https://github.com/christian-boks/grib1_reader" exclude = ["data/*", ".vscode/*"] [features] # Defines a feature named `json` that can be used to instrument the GribIndex to generate serialize functionality. json = ["dep:serde"] [dependencies] serde = { version = "1.0.197", features = ["derive"], optional = true } thiserror = "1.0.24" bitstream-io = "2.2.0" tokio = { version = "1.33.0", features = [ "macros", "fs", "test-util", "io-util", ] }