Support deserializing i128 and u128 in extract::Path (#406)

Fixes https://github.com/tokio-rs/axum/issues/398
This commit is contained in:
David Pedersen
2021-10-24 20:27:51 +00:00
committed by GitHub
parent 7692baf837
commit 47017f90b3
3 changed files with 29 additions and 1 deletions
+1
View File
@@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- **breaking:** The routes `/foo` and `/:key` are considered to overlap and
will cause a panic when constructing the router. This might be fixed in the future.
- **fixed:** Expand accepted content types for JSON requests ([#378])
- **fixed:** Support deserializing `i128` and `u128` in `extract::Path`
- **breaking:** The router's type is now always `Router` regardless of how many routes or
middleware are applies ([#404])