---
layout: default
title: hyper-body-utils - Utilities for handling HTTP bodies with hyper
nav_order: 1
description: "Utilities for handling HTTP bodies with hyper"
permalink: /
---
<div align="center">
<h1><b>hyper-body-utils</b></h1>
</div>
[](https://crates.io/crates/hyper-body-utils) [](https://crates.io/crates/hyper-body-utils) [](https://github.com/ararog/hyper-body-utils/actions/workflows/rust.yml)  [](https://docs.rs/hyper-body-utils/latest/hyper-body-utils) [](https://github.com/ararog/hyper-body-utils/blob/main/LICENSE.md) [](https://codecov.io/gh/ararog/hyper-body-utils)
**hyper-body-utils** is a collection of utilities for working with hyper bodies.
## Quick Start
Add to your `Cargo.toml`:
```toml
[dependencies]
hyper-body-utils = { version = "0.1.0" }
```
Basic usage:
```rust
use hyper_body_utils::HttpBody;
let body = HttpBody::from_bytes(b"Hello, world!");
```
## Examples
Check out the [examples](./examples.md) for complete examples of how to use hyper-body-utils in your projects.
## Documentation
- [API Reference](https://docs.rs/hyper-body-utils)
- [Contributing Guide](./CONTRIBUTING.md)
## License
This project is licensed under the [MIT License](./LICENSE.md).
## Author
Rogerio Pereira Araujo <rogerio.araujo@gmail.com>