axum-debug: Version 0.3.2 (#598)

- Support checking `FromRequest` bounds for extractors whose request body is something else than
  `axum::body::Body`. Use `#[debug_handler(body = YourBodyType)]` to use a different request body
  type ([#595])

[#595]: https://github.com/tokio-rs/axum/pull/595
This commit is contained in:
David Pedersen 2021-12-09 10:52:31 +01:00 committed by GitHub
parent 8895926f73
commit 3a259dcec7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View file

@ -7,9 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
# Unreleased
- None.
# 0.3.2 (09. December 2021)
- Support checking `FromRequest` bounds for extractors whose request body is something else than
`axum::body::Body`. Use `#[debug_handler(body = YourBodyType)]` to use a different request body
type.
type ([#595])
[#595]: https://github.com/tokio-rs/axum/pull/595
# 0.3.1 (06. December 2021)

View file

@ -8,7 +8,7 @@ license = "MIT"
name = "axum-debug"
readme = "README.md"
repository = "https://github.com/tokio-rs/axum"
version = "0.3.1"
version = "0.3.2"
[lib]
proc-macro = true