2021-04-06 11:43:11 +00:00
|
|
|
[package]
|
|
|
|
name = "tracker"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Raphael Taylor-Davies <r.taylordavies@googlemail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
description = "Utilities for tracking resource utilisation within IOx"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
2021-04-13 12:14:54 +00:00
|
|
|
futures = "0.3"
|
2021-05-05 22:32:46 +00:00
|
|
|
hashbrown = "0.11"
|
2021-05-06 08:36:30 +00:00
|
|
|
lock_api = "0.4.4"
|
2021-05-11 18:59:11 +00:00
|
|
|
metrics = { path = "../metrics" }
|
2021-04-06 11:43:11 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2021-05-06 08:36:30 +00:00
|
|
|
parking_lot = "0.11.1"
|
2021-04-06 11:43:11 +00:00
|
|
|
pin-project = "1.0"
|
|
|
|
tokio = { version = "1.0", features = ["macros", "time"] }
|
|
|
|
tokio-util = { version = "0.6.3" }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
# Need the multi-threaded executor for testing
|
|
|
|
tokio = { version = "1.0", features = ["macros", "time", "rt-multi-thread"] }
|