2022-05-13 13:12:07 +00:00
|
|
|
[package]
|
|
|
|
name = "cache_system"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-06-03 09:10:40 +00:00
|
|
|
async-trait = "0.1.56"
|
2022-05-13 13:12:07 +00:00
|
|
|
futures = "0.3"
|
|
|
|
iox_time = { path = "../iox_time" }
|
2022-05-19 08:05:17 +00:00
|
|
|
metric = { path = "../metric" }
|
2022-05-13 13:12:07 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
|
|
|
parking_lot = "0.12"
|
2022-06-13 13:51:45 +00:00
|
|
|
pdatastructs = { version = "0.7", default-features = false, features = ["fixedbitset"] }
|
2022-06-06 14:15:12 +00:00
|
|
|
tokio = { version = "1.19", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
|
2022-05-13 13:12:07 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
criterion = "0.3"
|
|
|
|
proptest = { version = "1", default_features = false, features = ["std"] }
|
|
|
|
rand = "0.8.3"
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "addressable_heap"
|
|
|
|
harness = false
|