2021-04-06 11:43:11 +00:00
|
|
|
[package]
|
|
|
|
name = "tracker"
|
|
|
|
description = "Utilities for tracking resource utilisation within IOx"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2021-04-06 11:43:11 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2021-04-13 12:14:54 +00:00
|
|
|
futures = "0.3"
|
2022-11-11 17:12:30 +00:00
|
|
|
hashbrown = { workspace = true }
|
2022-09-21 05:30:50 +00:00
|
|
|
lock_api = "0.4.9"
|
2021-09-09 08:56:19 +00:00
|
|
|
metric = { path = "../metric" }
|
2021-04-06 11:43:11 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2022-02-01 11:50:42 +00:00
|
|
|
parking_lot = "0.12"
|
2021-04-06 11:43:11 +00:00
|
|
|
pin-project = "1.0"
|
2022-04-26 00:19:59 +00:00
|
|
|
iox_time = { path = "../iox_time" }
|
2023-04-26 12:53:26 +00:00
|
|
|
tokio = { version = "1.28", features = ["macros", "parking_lot", "sync", "time"] }
|
2023-04-26 09:24:39 +00:00
|
|
|
tokio-util = { version = "0.7.8" }
|
2022-07-15 07:50:28 +00:00
|
|
|
trace = { path = "../trace"}
|
2023-02-24 18:02:23 +00:00
|
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|
2021-04-06 11:43:11 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
# Need the multi-threaded executor for testing
|
2023-04-26 12:53:26 +00:00
|
|
|
tokio = { version = "1.28", features = ["macros", "parking_lot", "rt-multi-thread", "time"] }
|