[package]
name = "shared-buffer-rs"
version = "0.3.2"
authors = ["Aleksandr Morozov <alex@nixd.org>"]
edition = "2024"
description="A library which combines Arc and RefCell for Send and Sync"
repository = "https://codeberg.org/4neko/shared-buffer-rs"
keywords = ["thread-safe", "buffer"]
categories = ["memory-management"]
license="MPL-2.0 OR EUPL-1.2"
[features]
default = ["std"]
std = []
[dependencies]
crossbeam-utils = { version = "~0.8", optional = false }
[dev-dependencies]
tokio = { version = "1", features = ["rt", "macros", "time"] }
[[example]]
name = "example1"