2021-03-19 16:27:57 +00:00
|
|
|
[package]
|
|
|
|
name = "internal_types"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Andrew Lamb <andrew@nerdnetworks.org>"]
|
2021-10-25 08:45:44 +00:00
|
|
|
edition = "2021"
|
2021-03-19 16:27:57 +00:00
|
|
|
description = "InfluxDB IOx internal types, shared between IOx instances"
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-02-01 11:50:42 +00:00
|
|
|
parking_lot = "0.12"
|
2022-04-26 00:19:59 +00:00
|
|
|
iox_time = { path = "../iox_time" }
|
2022-04-28 08:21:17 +00:00
|
|
|
tokio = { version = "1.18", features = ["parking_lot", "sync"] }
|
2021-11-19 14:21:57 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
2021-03-19 16:27:57 +00:00
|
|
|
|
2021-05-06 11:36:23 +00:00
|
|
|
[dev-dependencies]
|
2021-08-08 19:26:11 +00:00
|
|
|
futures = "0.3"
|
2022-04-28 08:21:17 +00:00
|
|
|
tokio = { version = "1.18", features = ["macros", "parking_lot", "rt", "rt-multi-thread", "sync", "time"] }
|