# skew-heap A priority queue based on a skew heap. Documentation is available at https://apasel422.github.io/skew-heap/skew_heap. To use `skew-heap` with Cargo, add this to `Cargo.toml`: ```toml [dependencies] skew_heap = "0.2" ``` and this to the crate root: ```rust extern crate skew_heap; ```