# 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" rust-version = "1.71" name = "quick_cache" version = "0.6.9" authors = ["Arthur Silva "] build = false exclude = ["fuzz"] autobins = false autoexamples = false autotests = false autobenches = false description = "Lightweight and high performance concurrent cache" readme = "README.md" keywords = [ "lru", "concurrent", "cache", ] categories = [ "caching", "concurrency", "data-structures", ] license = "MIT" repository = "https://github.com/arthurprs/quick-cache" [package.metadata.docs.rs] features = ["stats"] rustdoc-args = [ "--cfg", "docsrs", ] [profile.shuttle] opt-level = 3 inherits = "test" [lib] name = "quick_cache" path = "src/lib.rs" [[example]] name = "custom_weight" path = "examples/custom_weight.rs" [[example]] name = "equivalent" path = "examples/equivalent.rs" [[example]] name = "eviction_listener" path = "examples/eviction_listener.rs" [[bench]] name = "benchmarks" path = "benches/benchmarks.rs" harness = false [dependencies.ahash] version = "0.8.10" optional = true [dependencies.equivalent] version = "1.0.1" [dependencies.hashbrown] version = "0.14" features = [ "raw", "inline-more", ] default-features = false [dependencies.parking_lot] version = "0.12" optional = true [dependencies.shuttle] version = "0.7" optional = true [dev-dependencies.criterion] version = "0.5" [dev-dependencies.rand] version = "0.8" features = ["small_rng"] [dev-dependencies.rand_distr] version = "0.4" [dev-dependencies.tokio] version = "1" features = ["full"] [features] default = [ "ahash", "parking_lot", ] shuttle = ["dep:shuttle"] stats = [] [lints.rust.unexpected_cfgs] level = "warn" priority = 0 check-cfg = ["cfg(fuzzing)"]