[package]
edition = "2018"
name = "gzip-header"
version = "1.1.0"
authors = ["oyvindln <oyvindln@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
A crate for decoding and encoding the header part of gzip files based on the gzip header
implementation in the flate2 crate.
"""
homepage = "https://github.com/oyvindln/gzip-header"
documentation = "https://docs.rs/gzip-header/"
readme = "README.md"
keywords = [
"gzip",
"compression",
]
categories = ["compression"]
license = "MIT/Apache-2.0"
repository = "https://github.com/oyvindln/gzip-header"
[features]
default = ["std"]
std = []
[lib]
name = "gzip_header"
path = "src/lib.rs"
[dependencies.crc32fast]
version = "1.5"