deko 0.4.0

A decoder that automatically detects compression format (gzip, bzip2, xz, zstd) via external crates. Includes an encoder for the same formats as well.
Documentation
[dependencies.bzip2]
optional = true
version = "0.5.0"

[dependencies.flate2]
optional = true
version = "1.0.33"

[dependencies.xz]
optional = true
version = "0.1.0"

[dependencies.zstd]
optional = true
version = "0.13.2"

[dev-dependencies.arbitrary]
features = ["derive", "derive_arbitrary"]
version = "1.4.1"

[dev-dependencies.arbtest]
version = "0.3.1"

[features]
bzip2 = ["dep:bzip2"]
default = ["bzip2", "flate2", "xz", "zstd"]
flate2 = ["dep:flate2"]
nightly = []
xz = ["dep:xz"]
zstd = ["dep:zstd"]

[lib]
name = "deko"
path = "src/lib.rs"

[lints.clippy]
expect_used = "deny"
panic = "deny"
unwrap_used = "deny"

[lints.rust]
missing_docs = "warn"

[package]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["compression", "encoding"]
description = "A decoder that automatically detects compression format (gzip, bzip2, xz, zstd) via external crates. Includes an encoder for the same formats as well."
documentation = "https://docs.rs/deko"
edition = "2021"
homepage = "https://github.com/igankevich/deko"
include = ["**/*.rs", "Cargo.toml", "README.md", "LICENSE"]
keywords = ["gzip", "zlib", "bzip2", "xz", "zstd"]
license = "MIT"
name = "deko"
readme = "README.md"
repository = "https://github.com/igankevich/deko"
version = "0.4.0"