[package]
name = "shared-brotli-patch-decoder"
version = "0.1.4"
description = "Wrapper around brotli-sys which allows for decoding shared brotli (https://datatracker.ietf.org/doc/draft-vandevenne-shared-brotli-format/) encoded patch data."
edition.workspace = true
license.workspace = true
repository.workspace = true
[package.metadata.docs.rs]
all-features = true
[features]
default = ["c-brotli"]
c-brotli = ["cc"]
rust-brotli = ["dep:brotli-decompressor"]
[dependencies]
brotli-decompressor = {version = "5.0.0", optional = true}
cfg-if = "1.0.0"
[build-dependencies]
cc = { version = "1.2", optional = true }
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }