lite-sync 0.1.8

Fast, lightweight async primitives: SPSC channel, oneshot, notify, and atomic waker
Documentation
[[bench]]
harness = false
name = "channel_benchmark"
path = "benches/channel_benchmark.rs"

[[bench]]
harness = false
name = "notify_benchmark"
path = "benches/notify_benchmark.rs"

[dependencies.crossbeam-queue]
optional = true
version = "0.3.12"

[dependencies.smallring]
version = "0.1.3"

[dev-dependencies.criterion]
features = ["async_tokio"]
version = "0.7.0"

[dev-dependencies.futures]
version = "0.3.31"

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

[dev-dependencies.tokio-test]
version = "0.4.4"

[features]
crossbeam-queue = ["dep:crossbeam-queue"]
default = ["crossbeam-queue"]

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

[package]
authors = ["ShaoG <shaog.rs@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["asynchronous", "concurrency"]
description = "Fast, lightweight async primitives: SPSC channel, oneshot, notify, and atomic waker"
documentation = "https://docs.rs/lite-sync"
edition = "2024"
homepage = "https://github.com/ShaoG-R/lite-sync"
keywords = ["async", "spsc", "channel", "oneshot", "performance"]
license = "MIT OR Apache-2.0"
name = "lite-sync"
readme = "README.md"
repository = "https://github.com/ShaoG-R/lite-sync"
version = "0.1.8"