bufkit 0.1.4

Prioritizes explicit control and detailed error reporting, making it suitable for applications where memory behavior must be predictable and errors need comprehensive handling.
Documentation
[dependencies.bytes_1]
default-features = false
optional = true
package = "bytes"
version = "1"

[dependencies.paste]
version = "1"

[dependencies.thiserror]
default-features = false
version = "2"

[dependencies.varing]
default-features = false
optional = true
version = "0.8"

[dev-dependencies.criterion]
version = "0.7"

[features]
alloc = []
default = ["std"]
std = ["thiserror/default", "varing?/default", "bytes_1?/default"]

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

[lints.rust]
rust_2018_idioms = "warn"
single_use_lifetimes = "warn"

[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(all_tests)"]
level = "warn"
priority = 0

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["no-std", "no-std::no-alloc", "network-programming"]
description = "Prioritizes explicit control and detailed error reporting, making it suitable for applications where memory behavior must be predictable and errors need comprehensive handling."
documentation = "https://docs.rs/bufkit"
edition = "2021"
homepage = "https://github.com/al8n/bufkit"
keywords = ["buf", "bufmut", "bufio"]
license = "MIT OR Apache-2.0"
name = "bufkit"
readme = "README.md"
repository = "https://github.com/al8n/bufkit"
rust-version = "1.81.0"
version = "0.1.4"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[profile.bench]
codegen-units = 1
debug = 0
debug-assertions = false
incremental = false
lto = "thin"
opt-level = 3
overflow-checks = false
rpath = false

[[test]]
name = "bytes_buf"
path = "tests/bytes_buf.rs"

[[test]]
name = "bytes_mut_buf_mut"
path = "tests/bytes_mut_buf_mut.rs"

[[test]]
name = "deref_buf_mut"
path = "tests/deref_buf_mut.rs"

[[test]]
name = "vec_buf_mut"
path = "tests/vec_buf_mut.rs"