[package]
edition = "2024"
rust-version = "1.85"
name = "ruapc-bufpool"
version = "0.1.0"
authors = ["SF-Zhou"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance memory pool using buddy memory allocation algorithm for efficient fixed-size buffer management"
readme = "README.md"
keywords = [
"memory-pool",
"buddy-allocation",
"buffer",
"async",
"tokio",
]
categories = [
"memory-management",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/SF-Zhou/ruapc-bufpool"
[lib]
name = "ruapc_bufpool"
path = "src/lib.rs"
[dependencies.tokio]
version = "1"
features = [
"sync",
"macros",
"time",
"rt",
]
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"rt-multi-thread",
"macros",
]
[lints.clippy]
all = "warn"
nursery = "warn"
pedantic = "warn"
[lints.rust]
unsafe_op_in_unsafe_fn = "deny"