Registry / async / st3
library0.4.1rscratesunverified

A very fast lock-free, bounded, work-stealing LIFO queue.

# Cargo.toml [dependencies] st3 = "0.4.1"
INSTALL
IMPORT
SIG · ST3
S
st3
asyncrustv0.4.1
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.

Worker
use st3::Worker;

Create a worker and push/pop items from the work-stealing queue.

use st3::Worker; fn main() { let worker = Worker::new(1024); worker.push(42); if let Some(val) = worker.pop() { println!("Popped: {}", val); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.4.1latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
26 hits · last 30 days
node
22
Resources