forked from foyer-rs/foyer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (39 loc) · 1.1 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
[package]
name = "foyer-memory"
version = "0.1.2"
edition = "2021"
authors = ["MrCroxx <mrcroxx@outlook.com>"]
description = "memory cache for foyer - the hybrid cache for Rust"
license = "Apache-2.0"
repository = "https://github.com/mrcroxx/foyer"
homepage = "https://github.com/mrcroxx/foyer"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.cargo-udeps.ignore]
normal = ["foyer-workspace-hack"]
[dependencies]
ahash = "0.8"
bitflags = "2"
cmsketch = "0.2"
crossbeam = "0.8"
foyer-intrusive = { version = "0.3", path = "../foyer-intrusive" }
foyer-workspace-hack = { version = "0.3", path = "../foyer-workspace-hack" }
futures = "0.3"
hashbrown = "0.14"
itertools = "0.12"
libc = "0.2"
parking_lot = "0.12"
tokio = { workspace = true }
[dev-dependencies]
bytesize = "1"
clap = { version = "4", features = ["derive"] }
hdrhistogram = "7"
moka = { version = "0", features = ["sync"] }
rand = "0.8"
rand_mt = "4.2.1"
tempfile = "3"
zipf = "7.0.1"
[features]
deadlock = ["parking_lot/deadlock_detection"]
[[bench]]
name = "bench_hit_ratio"
harness = false