keyed_priority_queue 0.1.2

Priority queue that support changing priority or early remove by key
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# Change Log


## 2019-11-24: 0.1.2

### Added

- Now items in queue can be looked up borrow using result, e.g. if `String` struct used as key, `&str` can be passed as lookup key.

## 2019-10-27: 0.1.1

### Added

- Now `KeyedPriorityQueue` implements `Default` trait

### Changed

- Some clippy fixes