Skip to content

v0.3.2

Compare
Choose a tag to compare
@seanmonstar seanmonstar released this 09 Nov 18:11
· 42 commits to master since this release

Features:

  • Add Filter::then(), which is like Filter::map() in that it's infallible, but is async like Filter::and_then().
  • Add redirect::found() reply helper that returns 302 Found.
  • Add compression-brotli and compression-gzip cargo features to enable only the compression you need.
  • Allow HEAD requests to be served to fs::dir() filters.
  • Allow path!() with no arguments.

Fixes:

  • Update private dependencies Tungstenite and Multipart.
  • Replaces uses of futures with futures-util, which is a smaller dependency.

New Contributors