way 0.0.0-beta1

Fast Async Channel With no-std Support and Alternative Sync API
Documentation
[dependencies.branches]
version = "0.3"

[dependencies.futures-core]
version = "0.3"

[dependencies.swait]
optional = true
version = "0.1"

[dependencies.xutex]
version = "0.2"

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

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

[features]
default = ["std", "sync"]
no-std = ["libc", "winapi"]
std = []
sync = ["swait"]

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

[package]
authors = ["Khashayar Fereidani"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["concurrency", "data-structures", "asynchronous"]
description = "Fast Async Channel With no-std Support and Alternative Sync API"
documentation = "https://docs.rs/way"
edition = "2021"
keywords = ["channel", "mpsc", "mpmc", "async"]
license = "MIT"
name = "way"
readme = "README.md"
repository = "https://github.com/fereidani/way"
version = "0.0.0-beta1"

[target."cfg(unix)".dependencies.libc]
optional = true
version = "0.2"

[target."cfg(windows)".dependencies.winapi]
optional = true
version = "0.3"

[[test]]
name = "async"
path = "tests/async.rs"

[[test]]
name = "sync"
path = "tests/sync.rs"