-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
46 lines (39 loc) · 1.17 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "quick_cache"
version = "0.6.9"
edition = "2021"
description = "Lightweight and high performance concurrent cache"
repository = "https://github.com/arthurprs/quick-cache"
authors = ["Arthur Silva <arthurprs@gmail.com>"]
license = "MIT"
keywords = ["lru", "concurrent", "cache"]
categories = ["caching", "concurrency", "data-structures"]
readme = "README.md"
exclude = ["fuzz"]
rust-version = "1.71"
[features]
default = ["ahash", "parking_lot"]
shuttle = ["dep:shuttle"]
stats = []
[dependencies]
ahash = { optional = true, version = "0.8.10" }
equivalent = "1.0.1"
hashbrown = { version = "0.14", default-features = false, features = ["raw", "inline-more"] }
parking_lot = { optional = true, version = "0.12" }
shuttle = { version = "0.7", optional = true }
[dev-dependencies]
criterion = "0.5"
rand = { version = "0.8", features = ["small_rng"] }
rand_distr = "0.4"
tokio = { version = "1", features = ["full"] }
[[bench]]
name = "benchmarks"
harness = false
[profile.shuttle]
inherits = "test"
opt-level = 3
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }
[package.metadata.docs.rs]
features = ["stats"]
rustdoc-args = ["--cfg", "docsrs"]