lendpool 0.1.0

A simple lock-free library for allowing safe and concurrent access to a group of objects
Documentation
[dependencies.crossbeam-queue]
version = "0.3.12"

[dependencies.tokio]
features = ["sync"]
optional = true
version = "1.42.0"

[dev-dependencies.tokio]
features = ["full"]
version = "1.42.0"

[features]
async = ["tokio"]
default = []
sync = []

[lib]
name = "lendpool"
path = "src/lib.rs"

[package]
authors = ["Patrick Unick <dev_storm@winux.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["asynchronous", "concurrency", "data-structures", "memory-management"]
description = "A simple lock-free library for allowing safe and concurrent access to a group of objects"
documentation = "https://docs.rs/lendpool"
edition = "2021"
homepage = "https://github.com/snowfoxsh/lendpool"
keywords = ["pool", "object-pool", "atomic", "non-blocking", "lock-free"]
license = "MIT"
name = "lendpool"
readme = "README.md"
repository = "https://github.com/snowfoxsh/lendpool"
version = "0.1.0"