lockfree 0.5.1

This crate provides concurrent data structures and a solution to the ABA problem as an alternative of hazard pointers
Documentation
# lockfree
Lockfree data structures for Rust.

We currently have:
* Per-Object Thread-Local Storage
* Map
* Set
* Queue
* Stack
* SPSC, MPSC, SPMC and MPMC channels

# Documentation for the Lastest Commit
<https://bzim.gitlab.io/lockfree/lockfree/>

# Changelog
See [CHANGELOG.md](CHANGELOG.md)

# Contributing
See [CONTRIBUTING.md](CONTRIBUTING.md)

# Benchmarks
See [BENCHMARKS.md](BENCHMARKS.md)

# C11 Incinerator Implementation
<https://gitlab.com/bzim/c11-incinerator/>