axum-msgpack
adds MessagePack features to axum.
More information about this crate can be found in the crate documentation.
```rust use axum_msgpack::MsgPack; use serde::{Deserialize, Serialize};
struct User {
pub name: String,
#[serde(with = "serde_bytes")]
pub data: Vec
// axum handler | MsgPack
async fn gethandler() -> MsgPack
// axum handler | MsgPack
async fn post_handler(MsgPack(user): MsgPack{:?}
", user.name);
Html(string)
}
// axum handler | MsgPackRaw
async fn gethandlerraw() -> MsgPackRaw
// axum handler | MsgPackRaw
async fn posthandlerraw(MsgPackRaw(user): MsgPackRaw{:?}
", user.name);
Html(string)
}
```
Dependencies for serializing/deserializing MsgPack
toml
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11"
In order to pack arrays correct remember to add #[serde(with = "serde_bytes")]
to the struct member.
This crate uses #![forbid(unsafe_code)] to ensure everything is implemented in 100% safe Rust.
This project is licensed under the MIT license.