tide-compress 0.1.1

Outgoing compression middleware for the Tide web framework.
Documentation

tide-compress

Outgoing compression middleware for the Tide web framework.

#[async_std::main]
async fn main() -> Result<(), std::io::Error> {
    let mut app = tide::new();
    app.middleware(tide_compress::CompressMiddleware::new());
}

Features

  • Support for Brotli, Gzip, and Deflate encodings, compile-time configurable through cargo feature flags.
    • Prioritizes Brotli if available.
    • Only pulls in the necessary dependencies for the desired configuration.
    • Defaults to Brotli + Gzip.
  • Accept-Encoding checking.
  • Minimum body size threshold.
    • Configurable when created by CompressMiddleware::with_threshold(usize).

Caveats

  • Does not do any Accept-Encoding priority handling.
  • Does not do any Content-Type / MIME checking.
  • Does not handle Cache-Control or Vary headers.

License

Licensed under the BlueOak Model License 1.0.0Contributions via DCO 1.1