• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/workflows/H03-May-2022-173160

benches/H03-May-2022-574497

ci/H03-May-2022-5527

src/H03-May-2022-6,3232,695

tests/H03-May-2022-1,7531,306

.cargo-checksum.jsonH A D03-May-202289 11

.cargo_vcs_info.jsonH A D01-Jan-197074 65

.gitignoreH A D29-Nov-197320 32

CHANGELOG.mdH A D29-Nov-19736.3 KiB221157

Cargo.tomlH A D01-Jan-19701.2 KiB3936

Cargo.toml.orig-cargoH A D29-Nov-1973788 3528

LICENSEH A D29-Nov-19731 KiB2622

README.mdH A D29-Nov-19731 KiB4831

README.md

1# Bytes
2
3A utility library for working with bytes.
4
5[![Crates.io][crates-badge]][crates-url]
6[![Build Status][ci-badge]][ci-url]
7
8[crates-badge]: https://img.shields.io/crates/v/bytes.svg
9[crates-url]: https://crates.io/crates/bytes
10[ci-badge]: https://github.com/tokio-rs/bytes/workflows/CI/badge.svg
11[ci-url]: https://github.com/tokio-rs/bytes/actions
12
13[Documentation](https://docs.rs/bytes)
14
15## Usage
16
17To use `bytes`, first add this to your `Cargo.toml`:
18
19```toml
20[dependencies]
21bytes = "1"
22```
23
24Next, add this to your crate:
25
26```rust
27use bytes::{Bytes, BytesMut, Buf, BufMut};
28```
29
30## Serde support
31
32Serde support is optional and disabled by default. To enable use the feature `serde`.
33
34```toml
35[dependencies]
36bytes = { version = "1", features = ["serde"] }
37```
38
39## License
40
41This project is licensed under the [MIT license](LICENSE).
42
43### Contribution
44
45Unless you explicitly state otherwise, any contribution intentionally submitted
46for inclusion in `bytes` by you, shall be licensed as MIT, without any additional
47terms or conditions.
48