# 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 = "robust-binary-search" version = "0.1.1" authors = ["Adam Crume "] description = "Robust Binary Search provides a binary search implementation which is robust against errors during the search." categories = ["algorithms"] license = "Apache-2.0" repository = "https://github.com/adamcrume/robust-binary-search" [[bin]] name = "tuner" path = "src/tuner.rs" required-features = ["tuner"] [[bin]] name = "benchmark" path = "src/benchmark.rs" required-features = ["benchmark"] [dependencies.clap] version = "2.33.3" [dependencies.im-rc] version = "15.0.0" [dependencies.lazy_static] version = "1.4.0" optional = true [dependencies.log] version = "0.4" [dependencies.rand] version = "0.7.3" optional = true [dependencies.regex] version = "1.3.9" optional = true [dependencies.simplelog] version = "0.8.0" [features] benchmark = ["regex", "lazy_static", "rand"] tuner = ["rand"]