1//! The Rust priority queue implemented with a binary heap 2 3mod extend; 4mod from_stream; 5 6#[doc(inline)] 7pub use std::collections::BinaryHeap;