[package] name = "service_grpc_influxrpc" version = "0.1.0" edition = "2021" [dependencies] # Workspace dependencies, in alphabetical order data_types = { path = "../data_types" } datafusion = { path = "../datafusion" } generated_types = { path = "../generated_types" } observability_deps = { path = "../observability_deps" } predicate = { path = "../predicate" } iox_query = { path = "../iox_query" } query_functions = { path = "../query_functions"} schema = { path = "../schema" } service_common = { path = "../service_common" } # Crates.io dependencies, in alphabetical order arrow = { version = "15.0.0", features = ["prettyprint"] } async-trait = "0.1" futures = "0.3" pin-project = "1.0" prost = "0.10" regex = "1.5.6" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.81" snafu = "0.7" tokio = { version = "1.19", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } tokio-stream = { version = "0.1", features = ["net"] } tonic = "0.7" workspace-hack = { path = "../workspace-hack"} [dev-dependencies] # Workspace dependencies, in alphabetical order 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"