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-01-27 15:34:10 +00:00
|
|
|
hashbrown = "0.12"
|
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" }
|
2022-09-06 14:13:28 +00:00
|
|
|
tokio = { version = "1.21", features = ["macros", "parking_lot", "sync", "time"] }
|
2022-09-09 07:40:16 +00:00
|
|
|
tokio-util = { version = "0.7.4" }
|
2022-07-15 07:50:28 +00:00
|
|
|
trace = { path = "../trace"}
|
2021-11-19 14:21:57 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
2021-04-06 11:43:11 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
# Need the multi-threaded executor for testing
|
2022-09-06 14:13:28 +00:00
|
|
|
tokio = { version = "1.21", features = ["macros", "parking_lot", "rt-multi-thread", "time"] }
|