2021-03-19 16:27:57 +00:00
|
|
|
[package]
|
|
|
|
name = "internal_types"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Andrew Lamb <andrew@nerdnetworks.org>"]
|
|
|
|
edition = "2018"
|
|
|
|
description = "InfluxDB IOx internal types, shared between IOx instances"
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-07-19 12:49:51 +00:00
|
|
|
arrow = { version = "5.0", features = ["prettyprint"] }
|
2021-06-09 06:30:45 +00:00
|
|
|
hashbrown = "0.11"
|
2021-06-14 18:10:41 +00:00
|
|
|
indexmap = "1.6"
|
2021-06-17 17:56:44 +00:00
|
|
|
itertools = "0.10.1"
|
2021-06-14 18:10:41 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2021-03-19 16:27:57 +00:00
|
|
|
snafu = "0.6"
|
2021-08-08 19:26:11 +00:00
|
|
|
tokio = { version = "1.0", features = ["sync"] }
|
2021-03-19 16:27:57 +00:00
|
|
|
|
2021-05-06 11:36:23 +00:00
|
|
|
[dev-dependencies]
|
2021-05-05 16:59:12 +00:00
|
|
|
arrow_util = { path = "../arrow_util" }
|
2021-08-08 19:26:11 +00:00
|
|
|
futures = "0.3"
|
|
|
|
tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync", "time"] }
|