2021-04-06 11:43:11 +00:00
|
|
|
[package]
|
|
|
|
name = "tracker"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Raphael Taylor-Davies <r.taylordavies@googlemail.com>"]
|
2021-10-25 08:45:44 +00:00
|
|
|
edition = "2021"
|
2021-04-06 11:43:11 +00:00
|
|
|
description = "Utilities for tracking resource utilisation within IOx"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
2021-04-13 12:14:54 +00:00
|
|
|
futures = "0.3"
|
2022-01-27 15:34:10 +00:00
|
|
|
hashbrown = "0.12"
|
2022-03-31 07:45:03 +00:00
|
|
|
lock_api = "0.4.7"
|
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-06-06 14:15:12 +00:00
|
|
|
tokio = { version = "1.19", features = ["macros", "parking_lot", "sync", "time"] }
|
2022-06-06 14:46:27 +00:00
|
|
|
tokio-util = { version = "0.7.3" }
|
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-06-06 14:15:12 +00:00
|
|
|
tokio = { version = "1.19", features = ["macros", "parking_lot", "rt-multi-thread", "time"] }
|