crossbeam-skiplist

Crates.iocrossbeam-skiplist
lib.rscrossbeam-skiplist
version0.1.3
sourcesrc
created_at2018-02-24 23:14:28.505224
updated_at2024-01-08 13:26:29.520627
descriptionA concurrent skip list
homepagehttps://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-skiplist
repositoryhttps://github.com/crossbeam-rs/crossbeam
max_upload_size
id52716
size211,188
Taiki Endo (taiki-e)

documentation

README

Crossbeam Skiplist

Build Status License Cargo Documentation Rust 1.61+ chat

This crate provides the types SkipMap and SkipSet. These data structures provide an interface similar to BTreeMap and BTreeSet, respectively, except they support safe concurrent access across multiple threads.

This crate can be used in no_std environments that implement alloc. The alloc feature of this crate needs to be enabled in no_std environments.

Usage

Add this to your Cargo.toml:

[dependencies]
crossbeam-skiplist = "0.1"

Compatibility

Crossbeam Skiplist supports stable Rust releases going back at least six months, and every time the minimum supported Rust version is increased, a new minor version is released. Currently, the minimum supported Rust version is 1.61.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Commit count: 2236

cargo fmt