Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 582 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 582 Bytes

linked_list

Implementation of a linked list in Rust, closely following Learning Rust With Entirely Too Many Linked Lists As can be seen in that book, a linked list is almost never what you want as a data structure.

But it's an interesting exercise to implement in unsafe Rust!

Usage

This project uses the just command runner, which is configured to run normal and
miri tests in a watcher process. cargo-watch and miri must be installed for this:

just test
just miri