mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-15 09:42:58 +00:00
* fix: stream insert blocking * fix: example link * chore: Increase the default channel size "1024" -> "65536"
48 lines
1.3 KiB
TOML
48 lines
1.3 KiB
TOML
[package]
|
|
name = "client"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
testing = []
|
|
|
|
[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-meta = { path = "../common/meta" }
|
|
common-telemetry = { path = "../common/telemetry" }
|
|
datafusion.workspace = true
|
|
datatypes = { path = "../datatypes" }
|
|
enum_dispatch = "0.3"
|
|
futures-util.workspace = true
|
|
moka = { version = "0.9", features = ["future"] }
|
|
parking_lot = "0.12"
|
|
prost.workspace = true
|
|
rand.workspace = true
|
|
snafu.workspace = true
|
|
tokio-stream = { version = "0.1", features = ["net"] }
|
|
tokio.workspace = true
|
|
tonic.workspace = true
|
|
|
|
[dev-dependencies]
|
|
datanode = { path = "../datanode" }
|
|
derive-new = "0.5"
|
|
substrait = { path = "../common/substrait" }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
prost.workspace = true
|
|
|
|
[dev-dependencies.substrait_proto]
|
|
package = "substrait"
|
|
version = "0.7"
|