2022-05-13 13:12:07 +00:00
|
|
|
[package]
|
|
|
|
name = "cache_system"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2022-05-13 13:12:07 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-08-14 06:25:33 +00:00
|
|
|
async-trait = "0.1.73"
|
2022-10-19 16:01:39 +00:00
|
|
|
backoff = { path = "../backoff" }
|
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" }
|
2023-08-07 13:46:03 +00:00
|
|
|
ouroboros = "0.17"
|
2022-08-15 16:48:16 +00:00
|
|
|
parking_lot = { version = "0.12", features = ["arc_lock"] }
|
2022-06-13 13:51:45 +00:00
|
|
|
pdatastructs = { version = "0.7", default-features = false, features = ["fixedbitset"] }
|
2022-10-19 16:01:39 +00:00
|
|
|
rand = "0.8.3"
|
2023-08-17 08:06:29 +00:00
|
|
|
tokio = { version = "1.32", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
|
2023-04-26 09:24:39 +00:00
|
|
|
tokio-util = { version = "0.7.8" }
|
2022-07-21 11:54:22 +00:00
|
|
|
trace = { path = "../trace"}
|
2023-02-24 18:02:23 +00:00
|
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|
2022-05-13 13:12:07 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-05-24 09:08:37 +00:00
|
|
|
criterion = { version = "0.5", default-features = false, features = ["rayon"]}
|
2022-05-13 13:12:07 +00:00
|
|
|
proptest = { version = "1", default_features = false, features = ["std"] }
|
2023-07-31 13:04:34 +00:00
|
|
|
test_helpers = { path = "../test_helpers" }
|
2022-05-13 13:12:07 +00:00
|
|
|
|
2022-08-16 08:11:23 +00:00
|
|
|
[lib]
|
|
|
|
# Allow --save-baseline to work
|
|
|
|
# https://github.com/bheisler/criterion.rs/issues/275
|
|
|
|
bench = false
|
|
|
|
|
2022-05-13 13:12:07 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "addressable_heap"
|
|
|
|
harness = false
|