# 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 = "pinned-deque" version = "0.2.0" build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ A high-performance double-ended queue, inspired by BOOST deque. Every element in this deque is pinned until its popping. """ readme = "README.md" keywords = ["deque"] categories = [ "algorithms", "data-structures", ] license-file = "LICENSE" repository = "https://github.com/TimeExceed/pinned-deque" [lib] name = "pinned_deque" path = "src/lib.rs" [[bench]] name = "benches" path = "benches/benches.rs" harness = false [dependencies.page_size] version = "0.6.0" [dev-dependencies.criterion] version = "0.5" [dev-dependencies.jemallocator] version = "0.5" [dev-dependencies.quickcheck] version = "1.0" [dev-dependencies.quickcheck_macros] version = "1.0" [dev-dependencies.rblist] version = "0.1.0"