Registry / async / crossbeam-channel

crossbeam-channel

JSON →
library0.5.15rscratesunverified

Multi-producer multi-consumer channels for message passing between threads, with select and timeout support.

# Cargo.toml [dependencies] crossbeam-channel = "0.5.15"
INSTALL
IMPORT
SIG · CROSSBEAM-CHANNEL
C
crossbeam-channel
asyncrustv0.5.15
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

unbounded
use crossbeam_channel::unbounded;

Creates an unbounded channel and sends/receives a message.

use crossbeam_channel::unbounded; let (sender, receiver) = unbounded(); sender.send(42).unwrap(); assert_eq!(receiver.recv().unwrap(), 42);
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.5.15latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
37 hits · last 30 days
node
34
Amazon
1
OpenAI (training)
1
Resources
crossbeam-channel — cargo add crossbeam-channel · libregistry