mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-08 22:32:55 +00:00
41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
[package]
|
|
name = "client"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
api = { path = "../api" }
|
|
arrow-flight.workspace = true
|
|
async-stream.workspace = true
|
|
common-base = { path = "../common/base" }
|
|
common-catalog = { path = "../common/catalog" }
|
|
common-error = { path = "../common/error" }
|
|
common-grpc = { path = "../common/grpc" }
|
|
common-grpc-expr = { path = "../common/grpc-expr" }
|
|
common-query = { path = "../common/query" }
|
|
common-recordbatch = { path = "../common/recordbatch" }
|
|
common-time = { path = "../common/time" }
|
|
common-telemetry = { path = "../common/telemetry" }
|
|
datafusion.workspace = true
|
|
datatypes = { path = "../datatypes" }
|
|
enum_dispatch = "0.3"
|
|
futures-util.workspace = true
|
|
parking_lot = "0.12"
|
|
prost.workspace = true
|
|
rand = "0.8"
|
|
snafu.workspace = true
|
|
tonic.workspace = true
|
|
|
|
[dev-dependencies]
|
|
datanode = { path = "../datanode" }
|
|
substrait = { path = "../common/substrait" }
|
|
tokio.workspace = true
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
prost.workspace = true
|
|
|
|
[dev-dependencies.substrait_proto]
|
|
package = "substrait"
|
|
version = "0.4"
|