Registry / utility / boxcar

boxcar

JSON →
library0.2.14rscratesunverified

A concurrent, append-only vector for lock-free shared data structures.

# Cargo.toml [dependencies] boxcar = "0.2.14"
INSTALL
IMPORT
SIG · BOXCAR
B
boxcar
utilityrustv0.2.14
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.

Vec
use boxcar::Vec;

Creates a concurrent vector and appends an element.

use boxcar::Vec; fn main() { let vec: Vec<i32> = Vec::new(); vec.push(42); assert_eq!(vec[0], 42); }
Debug
Known issues
gotchaAppend-only; elements cannot be removed after insertion.
fix
Use a different data structure if removal is needed.
affects: >=0.2.0
Upgrade
Version history
0.2.14latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
8 hits · last 30 days
node
6
Meta
1
Amazon
1
Resources
boxcar — cargo add boxcar · libregistry