mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 00:21:08 +01:00
docs(multipart): use cargo-rdme
This commit is contained in:
parent
cc5030c542
commit
132b84d3b1
@ -1,7 +1,5 @@
|
|||||||
# `actix-multipart`
|
# `actix-multipart`
|
||||||
|
|
||||||
> Multipart form support for Actix Web.
|
|
||||||
|
|
||||||
<!-- prettier-ignore-start -->
|
<!-- prettier-ignore-start -->
|
||||||
|
|
||||||
[![crates.io](https://img.shields.io/crates/v/actix-multipart?label=latest)](https://crates.io/crates/actix-multipart)
|
[![crates.io](https://img.shields.io/crates/v/actix-multipart?label=latest)](https://crates.io/crates/actix-multipart)
|
||||||
@ -15,18 +13,13 @@
|
|||||||
|
|
||||||
<!-- prettier-ignore-end -->
|
<!-- prettier-ignore-end -->
|
||||||
|
|
||||||
## Example
|
<!-- cargo-rdme start -->
|
||||||
|
|
||||||
Dependencies:
|
Multipart form support for Actix Web.
|
||||||
|
|
||||||
```toml
|
## Examples
|
||||||
[dependencies]
|
|
||||||
actix-multipart = "0.6"
|
|
||||||
actix-web = "4.5"
|
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
|
||||||
```
|
|
||||||
|
|
||||||
Code:
|
[More available in the examples repo →](https://github.com/actix/examples/tree/master/forms/multipart)
|
||||||
|
|
||||||
```rust
|
```rust
|
||||||
use actix_web::{post, App, HttpServer, Responder};
|
use actix_web::{post, App, HttpServer, Responder};
|
||||||
@ -63,6 +56,8 @@ async fn main() -> std::io::Result<()> {
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
<!-- cargo-rdme end -->
|
||||||
|
|
||||||
Curl request :
|
Curl request :
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
@ -71,7 +66,3 @@ curl -v --request POST \
|
|||||||
-F 'json={"name": "Cargo.lock"};type=application/json' \
|
-F 'json={"name": "Cargo.lock"};type=application/json' \
|
||||||
-F file=@./Cargo.lock
|
-F file=@./Cargo.lock
|
||||||
```
|
```
|
||||||
|
|
||||||
### Examples
|
|
||||||
|
|
||||||
https://github.com/actix/examples/tree/master/forms/multipart
|
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
//! Multipart form support for Actix Web.
|
//! Multipart form support for Actix Web.
|
||||||
|
//!
|
||||||
//! # Examples
|
//! # Examples
|
||||||
|
//!
|
||||||
//! ```no_run
|
//! ```no_run
|
||||||
//! use actix_web::{post, App, HttpServer, Responder};
|
//! use actix_web::{post, App, HttpServer, Responder};
|
||||||
//!
|
//!
|
||||||
|
1
justfile
1
justfile
@ -90,6 +90,7 @@ update-readmes: && fmt
|
|||||||
cd ./actix-files && cargo rdme --force
|
cd ./actix-files && cargo rdme --force
|
||||||
cd ./actix-http-test && cargo rdme --force
|
cd ./actix-http-test && cargo rdme --force
|
||||||
cd ./actix-router && cargo rdme --force
|
cd ./actix-router && cargo rdme --force
|
||||||
|
cd ./actix-multipart && cargo rdme --force
|
||||||
cd ./actix-test && cargo rdme --force
|
cd ./actix-test && cargo rdme --force
|
||||||
|
|
||||||
# Check for unintentional external type exposure on all crates in workspace.
|
# Check for unintentional external type exposure on all crates in workspace.
|
||||||
|
Loading…
Reference in New Issue
Block a user