rcbytes 1.2.2

Rc version bytes crate
Documentation
  • Coverage
  • 100%
    85 out of 85 items documented78 out of 78 items with examples
  • Size
  • Source code size: 297.69 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 16.45 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 11s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • al8n/rcbytes
    3 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • al8n

RcBytes

The aim for this crate is to implement a Rc version bytes, which means that the structs in this crate does not implement the Sync and Send.

This crate is heavily based on the bytes (A utility library for working with bytes).

Crates.io Build Status

Documentation

Usage

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

[dependencies]
rcbytes = "1"

Next, add this to your crate:

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

Serde support

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

[dependencies]
rcbytes = { 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 rcbytes by you, shall be licensed as MIT, without any additional terms or conditions.