Doubly linked list implementation in Rust
Purely for educational and recreational purposes.
For real world production please use std::collections::LinkedList.
Build library:
$ cargo build --release
Run library unit tests:
$ cargo test
Run library unit tests under miri:
$ cargo +nigthly miri test
Build documentation:
$ cargo doc