# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies # # If you believe there's an error in this file please file an # issue against the rust-lang/cargo repository. If you're # editing this file be aware that the upstream Cargo.toml # will likely look very different (and much more reasonable) [package] edition = "2018" name = "priority-queue-rs" version = "0.1.26" authors = ["opensource "] description = "Priority Queue is more specialized data structure than Queue. Like ordinary queue, priority queue has same method but with a major difference. In Priority queue items are ordered by key value so that item with the lowest value of key is at front and item with the highest value of key is at rear or vice versa. So we're assigned priority to item based on its key value. Lower the value, higher the priority. Following are the principal methods of a Priority Queue." homepage = "https://github.com/bangbaoshi/priority_queue" documentation = "https://github.com/bangbaoshi/priority_queue" readme = "README.md" keywords = ["collection", "queue", "priority", "priority-queue", "sorted"] license = "MIT" repository = "https://github.com/bangbaoshi/priority_queue" [dependencies]