lf-sll 0.0.3

A lock-free singly-linked list
Documentation
lf-sll
====

A Rust library containing a lock-free singly-linked list data structure.

[![Build Status](https://travis-ci.org/remis-thoughts/lf-sll.svg?branch=master)](https://travis-ci.org/remis-thoughts/lf-sll)

## Usage

Add this to your `Cargo.toml`:

```toml
[dependencies]
lf-sll = "0.0.3"
```

and this to your crate root:

```rust
extern crate lfsll;
```