2021-01-08 16:21:26 +00:00
|
|
|
[package]
|
|
|
|
name = "influxdb_iox_client"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2021-01-08 16:21:26 +00:00
|
|
|
|
2021-02-05 21:59:49 +00:00
|
|
|
[features]
|
2022-09-29 11:12:51 +00:00
|
|
|
default = ["flight", "format"]
|
2023-03-13 11:06:53 +00:00
|
|
|
flight = ["arrow", "arrow-flight", "arrow_util"]
|
2021-10-25 08:58:15 +00:00
|
|
|
format = ["arrow", "arrow_util"]
|
2021-02-05 21:59:49 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-10-24 17:58:38 +00:00
|
|
|
arrow = { workspace = true, optional = true }
|
2023-01-20 11:16:19 +00:00
|
|
|
arrow-flight = { workspace = true, optional = true, features=["flight-sql-experimental"] }
|
2022-10-19 16:05:44 +00:00
|
|
|
arrow_util = { path = "../arrow_util", optional = true }
|
2023-02-01 00:30:56 +00:00
|
|
|
bytes = "1.4"
|
2022-10-19 16:05:44 +00:00
|
|
|
client_util = { path = "../client_util" }
|
2023-06-07 08:19:53 +00:00
|
|
|
comfy-table = { version = "7.0", default-features = false}
|
2023-03-13 11:06:53 +00:00
|
|
|
futures-util = { version = "0.3" }
|
2023-03-17 13:19:50 +00:00
|
|
|
influxdb-line-protocol = { path = "../influxdb_line_protocol"}
|
2023-05-12 17:25:49 +00:00
|
|
|
generated_types = { path = "../generated_types" }
|
2022-08-09 17:30:44 +00:00
|
|
|
prost = "0.11"
|
2021-07-30 15:43:28 +00:00
|
|
|
rand = "0.8.3"
|
2022-09-29 11:12:51 +00:00
|
|
|
reqwest = { version = "0.11", default-features = false, features = ["stream", "rustls-tls"] }
|
2023-03-08 00:42:05 +00:00
|
|
|
schema = { path = "../schema" }
|
2023-07-05 09:12:11 +00:00
|
|
|
serde_json = "1.0.100"
|
2023-06-28 13:18:08 +00:00
|
|
|
tokio = { version = "1.29", features = ["macros", "parking_lot", "rt-multi-thread"] }
|
2023-04-26 09:31:04 +00:00
|
|
|
tokio-stream = "0.1.13"
|
2023-07-07 09:25:12 +00:00
|
|
|
thiserror = "1.0.43"
|
2023-04-12 16:07:19 +00:00
|
|
|
tonic = { workspace = true }
|
2023-03-08 00:42:05 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
insta = { version = "1" }
|