ZeroTierOne/zeroidc/vendor/bytes
Grant Limberg a59626c971
Bump zeroidc dependencies (#1847)
openidconnect -> 2.5
base64 -> 0.21
url -> 2.3
bytes -> 1.3
2023-01-12 13:24:58 -08:00
..
benches Bump zeroidc dependencies (#1847) 2023-01-12 13:24:58 -08:00
ci Bump zeroidc dependencies (#1847) 2023-01-12 13:24:58 -08:00
src Bump zeroidc dependencies (#1847) 2023-01-12 13:24:58 -08:00
tests Bump zeroidc dependencies (#1847) 2023-01-12 13:24:58 -08:00
.cargo-checksum.json Bump zeroidc dependencies (#1847) 2023-01-12 13:24:58 -08:00
Cargo.toml Bump zeroidc dependencies (#1847) 2023-01-12 13:24:58 -08:00
CHANGELOG.md Bump zeroidc dependencies (#1847) 2023-01-12 13:24:58 -08:00
clippy.toml Bump zeroidc dependencies (#1847) 2023-01-12 13:24:58 -08:00
LICENSE RPM build fix (reverted CI changes which will need to be un-reverted or made conditional) and vendor Rust dependencies to make builds much faster in any CI system. 2022-06-08 07:32:16 -04:00
README.md RPM build fix (reverted CI changes which will need to be un-reverted or made conditional) and vendor Rust dependencies to make builds much faster in any CI system. 2022-06-08 07:32:16 -04:00

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"] }

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.