Skip to content
/ bytes Public
forked from tokio-rs/bytes

Utilities for working with bytes

License

Notifications You must be signed in to change notification settings

A5rocks/bytes

This branch is 33 commits behind tokio-rs/bytes:master.

Folders and files

NameName
Last commit message
Last commit date
Jan 7, 2024
Apr 11, 2024
Jan 7, 2024
Jul 9, 2024
Jun 28, 2024
Jan 30, 2015
Mar 22, 2024
Mar 22, 2024
Jun 18, 2018
Jan 31, 2023
Jan 3, 2024
Jan 24, 2022

Repository files navigation

Bytes

A utility library for working with bytes.

Crates.io Build Status

Documentation

Usage

To use bytes, first add this to your Cargo.toml:

[dependencies]
bytes = "1"

Next, add this to your crate:

use bytes::{Bytes, BytesMut, Buf, BufMut};

Serde support

Serde support is optional and disabled by default. To enable use the feature serde.

[dependencies]
bytes = { version = "1", features = ["serde"] }

Building documentation

When building the bytes documentation the docsrs option should be used, otherwise feature gates will not be shown. This requires a nightly toolchain:

RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc

License

This project is licensed under the MIT license.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in bytes by you, shall be licensed as MIT, without any additional terms or conditions.

About

Utilities for working with bytes

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 99.6%
  • Shell 0.4%