# 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 = "memo-cache" version = "0.8.1" authors = ["Kris van Rens "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A small, fixed-size cache with retention management" readme = "README.md" keywords = [ "caching", "memo", "memoize", "memoization", "no_std", ] categories = [ "caching", "data-structures", "no-std", ] license = "Apache-2.0 OR MIT" repository = "https://github.com/krisvanrens/memo-cache-rs" [lib] name = "memo_cache" path = "src/lib.rs" [[example]] name = "example" path = "examples/example.rs" [[test]] name = "memo_cache" path = "tests/memo_cache.rs" [[bench]] name = "memo_cache" path = "benches/memo_cache.rs" harness = false [dependencies] [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.rand] version = "0.8.5" [dev-dependencies.rand_chacha] version = "0.3.1" [dev-dependencies.rand_distr] version = "0.4.3" [features] default = ["inline-more"] inline-more = []