ntex/ntex-bytes
2024-02-01 20:28:17 +06:00
..
benches fork bytes crate 2021-06-26 00:14:43 +06:00
src Bytes checked api (#288) 2024-02-01 20:28:17 +06:00
tests Use const generics for helper traits (From, PartialEq, PartialOrd) (#284) 2024-01-16 19:18:17 +06:00
Cargo.toml Bytes checked api (#288) 2024-02-01 20:28:17 +06:00
CHANGELOG.md Bytes checked api (#288) 2024-02-01 20:28:17 +06:00
LICENSE fork bytes crate 2021-06-26 00:14:43 +06:00
README.md Miri error 2024-01-16 13:24:25 +06:00

Bytes

A utility library for working with bytes. This is fork of bytes crate (https://github.com/tokio-rs/bytes)

Crates.io

Documentation

Usage

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

[dependencies]
ntex-bytes = "0.1"

Next, add this to your crate:

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

Serde support

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

[dependencies]
ntex-bytes = { version = "0.1", features = ["serde"] }

License