mirror of
https://github.com/tokio-rs/axum.git
synced 2024-12-30 16:19:16 +01:00
axum: Version 0.5.1
This commit is contained in:
parent
bcda1a97db
commit
3e716f303f
2 changed files with 9 additions and 3 deletions
|
@ -7,7 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
# Unreleased
|
||||
|
||||
- **added:** Add `RequestParts::extract` which allows applying an extractor as a method call
|
||||
- None.
|
||||
|
||||
# 0.5.1 (03. April, 2022)
|
||||
|
||||
- **added:** Add `RequestParts::extract` which allows applying an extractor as a method call ([#897)
|
||||
|
||||
[#897]: https://github.com/tokio-rs/axum/pull/897
|
||||
|
||||
# 0.5.0 (31. March, 2022)
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "axum"
|
||||
version = "0.5.0"
|
||||
version = "0.5.1"
|
||||
categories = ["asynchronous", "network-programming", "web-programming"]
|
||||
description = "Web framework that focuses on ergonomics and modularity"
|
||||
edition = "2018"
|
||||
|
@ -24,7 +24,7 @@ tower-log = ["tower/log"]
|
|||
ws = ["tokio-tungstenite", "sha-1", "base64"]
|
||||
|
||||
[dependencies]
|
||||
axum-core = { path = "../axum-core", version = "0.2.0" }
|
||||
axum-core = { path = "../axum-core", version = "0.2.1" }
|
||||
async-trait = "0.1.43"
|
||||
bitflags = "1.0"
|
||||
bytes = "1.0"
|
||||
|
|
Loading…
Reference in a new issue