shared-buffer-rs 0.3.2

A library which combines Arc and RefCell for Send and Sync
Documentation
[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"]

# A program which includes this crate is based on standart library i.e std.
# For non-std an alloc crate is exported.
# Enabled by default.
std = []

[dependencies]
crossbeam-utils = { version = "~0.8", optional = false }

[dev-dependencies]
#tokio-test = "0.4"
tokio = { version = "1", features = ["rt", "macros", "time"] }

[[example]]
name = "example1"