mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-08 06:12:55 +00:00
31 lines
807 B
TOML
31 lines
807 B
TOML
[package]
|
|
name = "meta-client"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
api = { path = "../api" }
|
|
async-trait = "0.1"
|
|
chrono.workspace = true
|
|
common-error = { path = "../common/error" }
|
|
common-grpc = { path = "../common/grpc" }
|
|
common-telemetry = { path = "../common/telemetry" }
|
|
etcd-client = "0.10"
|
|
rand.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
snafu.workspace = true
|
|
table = { path = "../table" }
|
|
tokio.workspace = true
|
|
tokio-stream = { version = "0.1", features = ["net"] }
|
|
tonic.workspace = true
|
|
|
|
[dev-dependencies]
|
|
datatypes = { path = "../datatypes" }
|
|
futures = "0.3"
|
|
meta-srv = { path = "../meta-srv", features = ["mock"] }
|
|
tower = "0.4"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|