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!
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