2021-01-08 16:21:26 +00:00
|
|
|
[package]
|
|
|
|
name = "influxdb_iox_client"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Dom Dwyer <dom@itsallbroken.com>"]
|
2021-10-25 08:45:44 +00:00
|
|
|
edition = "2021"
|
2021-01-08 16:21:26 +00:00
|
|
|
|
2021-02-05 21:59:49 +00:00
|
|
|
[features]
|
2022-01-28 16:38:59 +00:00
|
|
|
default = ["flight", "format", "write_lp"]
|
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"]
|
2022-05-06 15:16:17 +00:00
|
|
|
write_lp = ["dml", "mutable_batch_lp", "mutable_batch_pb"]
|
2021-02-05 21:59:49 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# Workspace dependencies, in alphabetical order
|
2021-09-06 13:11:20 +00:00
|
|
|
arrow_util = { path = "../arrow_util", optional = true }
|
2021-08-26 10:30:59 +00:00
|
|
|
client_util = { path = "../client_util" }
|
2022-05-06 15:16:17 +00:00
|
|
|
dml = { path = "../dml", optional = true }
|
2022-01-28 16:38:59 +00:00
|
|
|
generated_types = { path = "../generated_types", default-features = false }
|
2022-05-06 15:16:17 +00:00
|
|
|
mutable_batch_lp = { path = "../mutable_batch_lp", optional = true }
|
|
|
|
mutable_batch_pb = { path = "../mutable_batch_pb", optional = true }
|
2021-02-05 21:59:49 +00:00
|
|
|
|
|
|
|
# Crates.io dependencies, in alphabetical order
|
2022-09-27 12:50:54 +00:00
|
|
|
arrow = { version = "23.0.0", optional = true }
|
|
|
|
arrow-flight = { version = "23.0.0", optional = true }
|
2022-07-20 10:00:08 +00:00
|
|
|
bytes = "1.2"
|
2021-11-29 16:10:42 +00:00
|
|
|
futures-util = { version = "0.3", optional = true }
|
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-26 14:44:36 +00:00
|
|
|
thiserror = "1.0.36"
|
2022-08-09 17:30:44 +00:00
|
|
|
tonic = { version = "0.8" }
|
2021-01-08 16:21:26 +00:00
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dev-dependencies] # In alphabetical order
|
2022-09-06 14:13:28 +00:00
|
|
|
tokio = { version = "1.21", features = ["macros", "parking_lot", "rt-multi-thread"] }
|