mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-27 17:52:56 +01:00
24 lines
591 B
Rust
24 lines
591 B
Rust
//! Multipart form support for Actix Web.
|
|
|
|
#![deny(rust_2018_idioms, nonstandard_style)]
|
|
#![warn(future_incompatible)]
|
|
#![allow(clippy::borrow_interior_mutable_const)]
|
|
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
|
|
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
|
|
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
|
|
|
|
// This allows us to use the actix_multipart_derive within this crate's tests
|
|
#[cfg(test)]
|
|
extern crate self as actix_multipart;
|
|
|
|
mod error;
|
|
mod extractor;
|
|
mod server;
|
|
|
|
pub mod form;
|
|
|
|
pub use self::{
|
|
error::MultipartError,
|
|
server::{Field, Multipart},
|
|
};
|