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]
|
2021-09-06 13:11:20 +00:00
|
|
|
flight = ["arrow", "arrow-flight", "arrow_util", "serde/derive", "serde_json", "futures-util"]
|
2021-10-25 08:58:15 +00:00
|
|
|
format = ["arrow", "arrow_util"]
|
2021-11-11 12:34:07 +00:00
|
|
|
write_lp = ["dml", "mutable_batch", "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" }
|
2021-02-25 13:24:12 +00:00
|
|
|
generated_types = { path = "../generated_types" }
|
2021-02-05 21:59:49 +00:00
|
|
|
|
|
|
|
# Crates.io dependencies, in alphabetical order
|
2022-01-27 13:33:27 +00:00
|
|
|
arrow = { version = "8.0", optional = true }
|
|
|
|
arrow-flight = { version = "8.0", optional = true }
|
2021-10-06 07:44:41 +00:00
|
|
|
bytes = "1.0"
|
2021-11-29 16:10:42 +00:00
|
|
|
futures-util = { version = "0.3", optional = true }
|
2021-11-11 12:34:07 +00:00
|
|
|
dml = { path = "../dml", optional = true }
|
2021-11-05 17:26:18 +00:00
|
|
|
mutable_batch = { path = "../mutable_batch", optional = true }
|
|
|
|
mutable_batch_lp = { path = "../mutable_batch_lp", optional = true }
|
|
|
|
mutable_batch_pb = { path = "../mutable_batch_pb", optional = true }
|
2022-01-13 17:07:15 +00:00
|
|
|
prost = "0.9"
|
2021-07-30 15:43:28 +00:00
|
|
|
rand = "0.8.3"
|
2021-08-23 01:16:38 +00:00
|
|
|
serde = "1.0.128"
|
2021-11-29 09:28:07 +00:00
|
|
|
serde_json = { version = "1.0.72", optional = true }
|
2021-10-11 08:01:21 +00:00
|
|
|
thiserror = "1.0.30"
|
2022-01-13 17:07:15 +00:00
|
|
|
tonic = { version = "0.6" }
|
2021-10-22 20:51:18 +00:00
|
|
|
uuid = { version = "0.8", features = ["v4"] }
|
2021-01-08 16:21:26 +00:00
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dev-dependencies] # In alphabetical order
|
2021-01-15 16:31:20 +00:00
|
|
|
serde_json = "1.0"
|
2021-12-02 19:30:41 +00:00
|
|
|
tokio = { version = "1.13", features = ["macros", "parking_lot", "rt-multi-thread"] }
|