rusty-web 0.0.2

Rusty Web is a lightweight web framework for rust developers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
## Default Limits

When you call `request.files()`, `request.form_data()` or `request.body()`, Rusty Web automatically sets the maximum
allowed size.

- Request header: 1 MiB
- Multipart (multipart/form-data)
    - Overall maximum body: 512 MiB
    - Form Part header: 1 MiB
    - Form part file size: None
    - Form part value: 1 MiB
- application/x-www-form-urlencoded
    - Overall maximum body: 2 MiB
- Raw Body: 512 MiB