mbrotli 0.4.1

Fast Brotli (RFC 7932 and RFC 9841) compression and decompression in safe Rust; encoding is byte-identical to Google's reference encoder
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Immutable dictionaries for the enabled codecs.
//!
//! Prepared encoder dictionaries require `compression`; decode-only dictionaries
//! and borrowed decoding views require `decompression`.

#[cfg(feature = "compression")]
pub use crate::compressor::dictionary::*;
#[cfg(feature = "decompression")]
mod decode;
#[cfg(feature = "decompression")]
pub use decode::{
    DecodeDictionary, DecodeDictionaryError, DecodeDictionaryLimits, DictionaryAttachment,
    DictionaryRef,
};