Registry / async / flume
library0.12.0rscratesunverified

A blazingly fast multi-producer channel for Rust.

# Cargo.toml [dependencies] flume = "0.12.0"
INSTALL
IMPORT
SIG · FLUME
F
flume
asyncrustv0.12.0
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.

Sender
use flume::Sender;

Creates an unbounded channel and sends/receives a message.

use flume::Sender; fn main() { let (tx, rx) = flume::unbounded::<i32>(); tx.send(42).unwrap(); assert_eq!(rx.recv().unwrap(), 42); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.12.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
33 hits · last 30 days
node
30
OpenAI (training)
1
Resources
flume — cargo add flume · libregistry