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"]
|
2022-05-06 15:16:17 +00:00
|
|
|
flight = ["arrow", "arrow-flight", "arrow_util", "futures-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 }
|
2022-10-18 20:58:47 +00:00
|
|
|
arrow-flight = { version = "25.0.0", optional = true }
|
2022-10-19 16:05:44 +00:00
|
|
|
arrow_util = { path = "../arrow_util", optional = true }
|
2022-07-20 10:00:08 +00:00
|
|
|
bytes = "1.2"
|
2022-10-19 16:05:44 +00:00
|
|
|
client_util = { path = "../client_util" }
|
2021-11-29 16:10:42 +00:00
|
|
|
futures-util = { version = "0.3", optional = true }
|
2022-10-19 16:05:44 +00:00
|
|
|
influxdb_line_protocol = { path = "../influxdb_line_protocol"}
|
|
|
|
generated_types = { path = "../generated_types", default-features = false, features = ["data_types_conversions"] }
|
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"] }
|
2022-09-30 21:02:38 +00:00
|
|
|
tokio = { version = "1.21", features = ["macros", "parking_lot", "rt-multi-thread"] }
|
2022-10-12 12:37:24 +00:00
|
|
|
tokio-stream = "0.1.11"
|
2022-09-29 10:37:14 +00:00
|
|
|
thiserror = "1.0.37"
|
2022-08-09 17:30:44 +00:00
|
|
|
tonic = { version = "0.8" }
|
2022-10-19 16:10:17 +00:00
|
|
|
trace = { path = "../trace" }
|
|
|
|
trace_exporters = { path = "../trace_exporters" }
|
|
|
|
trace_http = { path = "../trace_http" }
|