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-09-09 08:56:19 +00:00
|
|
|
metric = { path = "../metric" }
|
2021-04-06 11:43:11 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2021-09-06 01:18:24 +00:00
|
|
|
parking_lot = "0.11.2"
|
2021-04-06 11:43:11 +00:00
|
|
|
pin-project = "1.0"
|
2021-10-12 21:19:03 +00:00
|
|
|
time = { path = "../time" }
|
2021-09-06 09:11:38 +00:00
|
|
|
tokio = { version = "1.11", features = ["macros", "time"] }
|
2021-04-06 11:43:11 +00:00
|
|
|
tokio-util = { version = "0.6.3" }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
# Need the multi-threaded executor for testing
|
2021-09-06 09:11:38 +00:00
|
|
|
tokio = { version = "1.11", features = ["macros", "time", "rt-multi-thread"] }
|