Msgpack payload extractor for Actix Web.
bash
cargo add actix-msgpack
```rust use actixmsgpack::{MsgPack}; use actixweb::{post, App, HttpResponse, HttpServer, Responder}; use serde::Deserialize;
struct Data { payload: String, }
async fn index(data: MsgPack) -> impl Responder { println!("payload: {}", data.payload); HttpResponse::Ok().finish() }
async fn main() -> std::io::Result<()> { HttpServer::new(|| { App::new().service(index) }) .bind(("127.0.0.1", 8080))? .run() .await } ```
```rust use actix_msgpack::{MsgPackConfig};
async fn main() -> std::io::Result<()> { HttpServer::new(|| { let mut msgpackconfig = MsgPackConfig::default(); msgpackconfig.limit(1024); // 1kb
App::new().app_data(msgpack_config).service(index)
})
.bind(("127.0.0.1", 8080))?
.run()
.await
} ```
There are 2 responders:
- msgpack_named
- responder with field names (most likely you are looking for this option)
- msgpack
- responder with compact representation
```rust
struct Data { payload: bool, }
async fn index(data: MsgPack) -> HttpResponse { let payload = Data { payload: true }; HttpResponse::Ok().msgpack_named(payload) } ```
This project is licensed under of MIT license (LICENSE or https://opensource.org/licenses/MIT)