# 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 are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "priority-queue" version = "2.1.1" authors = ["Gianmarco Garrisi "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A Priority Queue implemented as a heap with a function to efficiently change the priority of an item." documentation = "https://docs.rs/priority-queue" readme = "README.md" keywords = [ "priority", "queue", "heap", ] categories = [ "data-structures", "algorithms", ] license = "LGPL-3.0-or-later OR MPL-2.0" repository = "https://github.com/garro95/priority-queue" [package.metadata.docs.rs] features = ["serde"] rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "priority_queue" path = "src/lib.rs" [[test]] name = "double_priority_queue" path = "tests/double_priority_queue.rs" [[test]] name = "priority_queue" path = "tests/priority_queue.rs" [[bench]] name = "priority_queue" path = "benches/priority_queue.rs" [dependencies.equivalent] version = "1.0.1" [dependencies.indexmap] version = "2.2" features = [] default-features = false [dependencies.serde] version = "1" optional = true [dev-dependencies.hashbrown] version = "0.14" [dev-dependencies.serde] version = "1" features = ["derive"] [dev-dependencies.serde_json] version = "1" [dev-dependencies.serde_test] version = "1" [dev-dependencies.uuid] version = "1" features = [ "v4", "serde", ] [build-dependencies.autocfg] version = "1" [features] benchmarks = [] default = ["std"] std = ["indexmap/std"]