fibre 0.3.2

High-performance, memory-efficient sync/async channels built for real-time, low-overhead communication in concurrent Rust applications.
Documentation
[[bench]]
harness = false
name = "mpmc_async"
path = "benches/mpmc_async.rs"

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

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

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

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

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

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

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

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

[dependencies.futures-core]
default-features = false
features = ["alloc", "std"]
version = "^0.3"

[dependencies.futures-util]
default-features = false
features = ["alloc", "std"]
version = "^0.3"

[dependencies.lazy_static]
version = "^1"

[dependencies.parking_lot]
version = "^0.12"

[dependencies.tokio]
features = ["full"]
optional = true
version = "1"

[dev-dependencies.bench_matrix]
version = "^0"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"

[dev-dependencies.serial_test]
version = "^3"

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

[[example]]
name = "mpmc"
path = "examples/mpmc.rs"

[[example]]
name = "mpsc"
path = "examples/mpsc.rs"

[[example]]
name = "oneshot"
path = "examples/oneshot.rs"

[[example]]
name = "spmc"
path = "examples/spmc.rs"

[[example]]
name = "spsc"
path = "examples/spsc.rs"

[features]
alloc = []
default = ["std"]
fibre_telemetry = ["dep:tokio"]
std = []

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

[package]
authors = ["Excerion Sun <dev@excsn.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["concurrency", "asynchronous", "data-structures"]
description = "High-performance, memory-efficient sync/async channels built for real-time, low-overhead communication in concurrent Rust applications."
edition = "2021"
exclude = ["/docs/"]
keywords = ["channel", "mpmc", "spsc", "communication", "concurrent"]
license = "MPL-2.0"
name = "fibre"
readme = "README.md"
repository = "https://github.com/excsn/fibre"
version = "0.3.2"

[profile.dev]
debug = 2
opt-level = 1

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

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

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

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

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

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

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

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