A collection of Lock-Free (sometimes also Wait-Free) algorithms and datastructures
The Goal of this Crate is to provide a save, easy to use and fast implementation for a variety of different Lock-Free or Wait-Free datastructures.
Rust's no_std is supported for parts of this crate, to use this you need to disable the default features of the Crate and can then enable the specific features you need. Currently supported are: * queues
Name | Default | Description --- | --- | --- std | true | Enables the std, which is needed for most of the other Features queues | true | Enables the different Queues implementation async | true | Enables async varients of different Datastructures threaddata | true | Enables the lockfree Thread-Local-Storage hazardptr | true | Enables the Hazard-Pointer implementation full | true | Enables all Feature-Flags
These are Features that may still contain bugs or are not complete yet
Name | Default | Description --- | --- | --- hash_trie | true | Enables the Hash-Trie-Map implementation
cargo bench --bench criterion_bench --
cargo bench --bench criterion_bench -- --profile-time=5