water_buffer 1.2.4

A high-performance, zero-overhead byte buffer implementation in Rust that outperforms the industry-standard `BytesMut` by **6-11x** in most scenarios.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "water_buffer"
version = "1.2.4"
authors = ["HassanSharara"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance, zero-overhead byte buffer implementation in Rust that outperforms the industry-standard `BytesMut` by **6-11x** in most scenarios."
homepage = "https://github.com/HassanSharara/water_buffer"
readme = "README.md"
keywords = [
    "buffer",
    "water-buffer",
    "water_buffer",
]
categories = [
    "memory-management",
    "caching",
    "network-programming",
]
license = "MIT"
repository = "https://github.com/HassanSharara/water_buffer"

[package.metadata]
unstable-features = ["circular_buffer"]

[features]
bytes = ["dep:bytes"]
circular_buffer = []
unsafe_clone = []
uring = ["dep:tokio-uring"]

[lib]
name = "water_buffer"
path = "src/lib.rs"

[[bin]]
name = "water_buffer"
path = "src/main.rs"

[[example]]
name = "benchmark"
path = "examples/benchmark.rs"

[[example]]
name = "benchmark2"
path = "examples/benchmark2.rs"

[[example]]
name = "benchmark3"
path = "examples/benchmark3.rs"

[dependencies.bytes]
version = "1.11.0"
optional = true

[dependencies.tokio-uring]
version = "0.5.0"
optional = true

[dev-dependencies.bytes]
version = "1.11.0"