rocket-multipart-form-data 0.7.2

This crate provides a multipart parser for the Rocket framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html>
<head>
    <meta charset=UTF-8>
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <title>Image Uploader</title>
</head>
<body>
<form method="post" action="/upload" enctype="multipart/form-data">
    <input name="image" type="file" accept="image/*"/>
    <button type="submit">Upload The Image File</button>
</form>
</body>