# 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 = "range_minimum_query" version = "0.2.0" authors = ["Matthias Petri "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Range Minimum Query (RMQ) is used on arrays to find the position of an element with the minimum value between two specified indices." homepage = "https://github.com/mpetri/rmq-rs" documentation = "https://docs.rs/range_minimum_query" readme = "README.md" keywords = [ "rmq", "range_minimum_query", ] categories = ["data-structures"] license = "MIT" repository = "https://github.com/mpetri/rmq-rs" [lib] name = "range_minimum_query" path = "src/lib.rs" [dependencies.bitvec] version = "1.0.1" [dependencies.serde] version = "1.0.145" features = ["derive"] optional = true [dev-dependencies.proptest] version = "1.0.0" [features] serde = [ "dep:serde", "bitvec/serde", ]