[package]
edition = "2024"
name = "bytering"
version = "0.7.0"
authors = ["Folke <folke@gmail.com>"]
build = false
exclude = [
".gitignore",
".github",
"examples",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A ring buffer specialized for vectored reading and writing in blocking and async I/O"
readme = "README.md"
keywords = [
"buffer",
"ringbuffer",
"vectored-io",
"lock-free",
]
categories = ["data-structures"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/cloneable/bytering"
[features]
default = ["std"]
std = []
[lib]
name = "bytering"
path = "src/lib.rs"
[dependencies.crossbeam-utils]
version = "0.8"
[dev-dependencies.rand]
version = "0.9"
features = ["small_rng"]
[dev-dependencies.static_assertions]
version = "1"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
debug = 0
debug-assertions = true
panic = "abort"
overflow-checks = true
strip = true