coco 0.2.1

Concurrent collections
Documentation
# Concurrent collections

[![Build Status](https://travis-ci.org/stjepang/coco.svg?branch=master)](https://travis-ci.org/stjepang/coco)
[![License](https://img.shields.io/badge/license-Apache--2.0%2FMIT-blue.svg)](https://github.com/stjepang/coco)
[![Cargo](https://img.shields.io/crates/v/coco.svg)](https://crates.io/crates/coco)
[![Documentation](https://docs.rs/coco/badge.svg)](https://docs.rs/coco)

This crate offers several collections that are designed for performance in multithreaded
contexts. They can be freely shared among multiple threads running in parallel, and concurrently
modified without the overhead of locking.

<!-- Some of these data structures are lock-free. Others are not strictly speaking lock-free, but -->
<!-- still scale well with respect to the number of threads accessing them. -->

The following collections are available:

* `Stack`: A lock-free stack.
* `deque`: A lock-free work-stealing deque.