mirror of
https://github.com/tokio-rs/axum.git
synced 2026-09-08 00:00:24 +02:00
Add axum_extra::extract::Form (#1031)
* Add `axum_extra::extra::Form` * update tokio-util ban
This commit is contained in:
@@ -1,6 +1,10 @@
|
||||
//! Additional extractors.
|
||||
|
||||
mod cached;
|
||||
|
||||
#[cfg(feature = "form")]
|
||||
mod form;
|
||||
|
||||
#[cfg(feature = "cookie")]
|
||||
pub mod cookie;
|
||||
|
||||
@@ -14,3 +18,6 @@ pub use self::cookie::PrivateCookieJar;
|
||||
|
||||
#[cfg(feature = "cookie-signed")]
|
||||
pub use self::cookie::SignedCookieJar;
|
||||
|
||||
#[cfg(feature = "form")]
|
||||
pub use self::form::Form;
|
||||
|
||||
Reference in New Issue
Block a user