multra 1.0.0

An async parser for `multipart/form-data` content-type in Rust.
Documentation
# Examples of using multra

These examples show of how to do common tasks using `multra`.

Please visit: [Docs](https://docs.rs/multra) for the documentation.

Run an example:

```sh
 cargo run --example example_name
```

* [`simple_example`]simple_example.rs - A basic example using `multra`.

* [`hyper_server_example`]hyper_server_example.rs - Shows how to use this crate with Rust HTTP server [hyper]https://hyper.rs/.

* [`parse_async_read`]parse_async_read.rs - Shows how to parse `multipart/form-data` from an [`AsyncRead`]https://docs.rs/tokio/1/tokio/io/trait.AsyncRead.html.

* [`prevent_dos_attack`]prevent_dos_attack.rs - Shows how to apply some rules to prevent potential DoS attacks while handling `multipart/form-data`.