2021-06-15 15:57:47 +00:00
|
|
|
[package]
|
|
|
|
name = "lifecycle"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Raphael Taylor-Davies <r.taylordavies@googlemail.com>"]
|
2021-10-25 08:45:44 +00:00
|
|
|
edition = "2021"
|
2021-06-15 15:57:47 +00:00
|
|
|
description = "Implements the IOx data lifecycle"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
data_types = { path = "../data_types" }
|
|
|
|
futures = "0.3"
|
|
|
|
hashbrown = "0.11"
|
2021-07-23 08:31:28 +00:00
|
|
|
internal_types = { path = "../internal_types" }
|
2021-06-15 15:57:47 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2021-10-12 21:19:03 +00:00
|
|
|
parking_lot = "0.11"
|
2021-10-11 20:40:00 +00:00
|
|
|
time = { path = "../time" }
|
2021-12-02 19:30:41 +00:00
|
|
|
tokio = { version = "1.13", features = ["macros", "parking_lot", "time"] }
|
2021-06-15 15:57:47 +00:00
|
|
|
tracker = { path = "../tracker" }
|
2021-11-19 14:21:57 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
2021-06-15 15:57:47 +00:00
|
|
|
|
2021-10-06 09:39:32 +00:00
|
|
|
[dev-dependencies]
|
2021-12-02 19:30:41 +00:00
|
|
|
tokio = { version = "1.13", features = ["macros", "parking_lot", "rt", "time"] }
|