2022-03-23 20:14:45 +00:00
|
|
|
[package]
|
|
|
|
name = "service_grpc_influxrpc"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2022-03-23 20:14:45 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# Workspace dependencies, in alphabetical order
|
2022-05-05 19:29:24 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2022-10-24 17:47:45 +00:00
|
|
|
datafusion = { workspace = true }
|
2022-10-19 20:09:55 +00:00
|
|
|
datafusion_util = { path = "../datafusion_util" }
|
2022-03-23 20:14:45 +00:00
|
|
|
generated_types = { path = "../generated_types" }
|
|
|
|
observability_deps = { path = "../observability_deps" }
|
|
|
|
predicate = { path = "../predicate" }
|
2022-05-18 09:38:35 +00:00
|
|
|
iox_query = { path = "../iox_query" }
|
2022-04-26 17:30:27 +00:00
|
|
|
query_functions = { path = "../query_functions"}
|
2022-03-23 20:14:45 +00:00
|
|
|
schema = { path = "../schema" }
|
|
|
|
service_common = { path = "../service_common" }
|
2022-07-15 07:50:28 +00:00
|
|
|
trace = { path = "../trace"}
|
2022-07-28 12:53:12 +00:00
|
|
|
trace_http = { path = "../trace_http"}
|
2022-06-13 09:36:50 +00:00
|
|
|
tracker = { path = "../tracker" }
|
2022-03-23 20:14:45 +00:00
|
|
|
|
|
|
|
# Crates.io dependencies, in alphabetical order
|
2022-10-18 20:58:47 +00:00
|
|
|
arrow = { version = "25.0.0", features = ["prettyprint"] }
|
2022-03-23 20:14:45 +00:00
|
|
|
async-trait = "0.1"
|
|
|
|
futures = "0.3"
|
2022-06-02 09:49:58 +00:00
|
|
|
pin-project = "1.0"
|
2022-08-09 17:30:44 +00:00
|
|
|
prost = "0.11"
|
2022-07-06 10:25:28 +00:00
|
|
|
regex = "1.6.0"
|
2022-03-23 20:14:45 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-10-20 07:52:33 +00:00
|
|
|
serde_json = "1.0.87"
|
2022-03-23 20:14:45 +00:00
|
|
|
snafu = "0.7"
|
2022-09-06 14:13:28 +00:00
|
|
|
tokio = { version = "1.21", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
|
2022-03-23 20:14:45 +00:00
|
|
|
tokio-stream = { version = "0.1", features = ["net"] }
|
2022-08-09 17:30:44 +00:00
|
|
|
tonic = "0.8"
|
2022-03-23 20:14:45 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
# Workspace dependencies, in alphabetical order
|
2022-10-12 16:19:14 +00:00
|
|
|
datafusion_util = { path = "../datafusion_util" }
|
2022-03-23 20:14:45 +00:00
|
|
|
influxdb_storage_client = { path = "../influxdb_storage_client" }
|
|
|
|
metric = { path = "../metric" }
|
|
|
|
panic_logging = { path = "../panic_logging" }
|
|
|
|
test_helpers = { path = "../test_helpers" }
|
|
|
|
trace_http = { path = "../trace_http" }
|
|
|
|
service_grpc_testing = { path = "../service_grpc_testing" }
|
|
|
|
|
|
|
|
# Crates.io dependencies, in alphabetical order
|
|
|
|
parking_lot = "0.12"
|
|
|
|
serde_urlencoded = "0.7.0"
|