Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
.github/workflows/ | 03-May-2024 | - | 173 | 137 | ||
benches/ | 03-May-2024 | - | 575 | 497 | ||
ci/ | 03-May-2024 | - | 55 | 26 | ||
patches/ | 03-May-2024 | - | 13 | 11 | ||
src/ | 03-May-2024 | - | 7,396 | 3,031 | ||
tests/ | 03-May-2024 | - | 2,074 | 1,520 | ||
.cargo_vcs_info.json | D | 03-May-2024 | 94 | 6 | 6 | |
.gitignore | D | 03-May-2024 | 20 | 3 | 2 | |
Android.bp | D | 03-May-2024 | 3.8 KiB | 179 | 163 | |
CHANGELOG.md | D | 03-May-2024 | 7.6 KiB | 284 | 194 | |
Cargo.toml | D | 03-May-2024 | 1.2 KiB | 55 | 48 | |
Cargo.toml.orig | D | 03-May-2024 | 788 | 35 | 28 | |
LICENSE | D | 03-May-2024 | 1 KiB | 26 | 22 | |
METADATA | D | 03-May-2024 | 605 | 24 | 22 | |
MODULE_LICENSE_MIT | D | 03-May-2024 | 0 | |||
NOTICE | D | 03-May-2024 | 1 KiB | 26 | 22 | |
OWNERS | D | 03-May-2024 | 40 | 2 | 1 | |
README.md | D | 03-May-2024 | 1.2 KiB | 57 | 37 | |
TEST_MAPPING | D | 03-May-2024 | 2.1 KiB | 109 | 108 | |
cargo2android.json | D | 03-May-2024 | 351 | 18 | 17 | |
clippy.toml | D | 03-May-2024 | 14 | 2 | 1 |
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## Building documentation 40 41When building the `bytes` documentation the `docsrs` option should be used, otherwise 42feature gates will not be shown. This requires a nightly toolchain: 43 44``` 45RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc 46``` 47 48## License 49 50This project is licensed under the [MIT license](LICENSE). 51 52### Contribution 53 54Unless you explicitly state otherwise, any contribution intentionally submitted 55for inclusion in `bytes` by you, shall be licensed as MIT, without any additional 56terms or conditions. 57