local_buf 0.1.1

local_buf 是一个支持多线程异步的线程缓冲区
Documentation
[package]
name = "local_buf"
description = "local_buf 是一个支持多线程异步的线程缓冲区"
version = "0.1.1"
edition = "2021"
authors = ["share121 <me@s121.top>"]
license = "MIT"
repository = "https://github.com/share121/local_buf"
categories = ["asynchronous", "concurrency"]
keywords = ["buffer", "threads"]
readme = "README.md"
homepage = "https://github.com/share121/local_buf"

[dependencies]
bytes = "1.0"
tracing = { version = "0.1", optional = true }

[dev-dependencies]
tokio = { version = "1", features = [
    "rt-multi-thread",
    "macros",
    "sync",
    "time",
] }
rand = "0.8"

[features]
tracing = ["dep:tracing"]
stats = []

[lints.clippy]
all = { level = "deny", priority = -1 }
cargo = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }