mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-31 20:30:37 +00:00
* fix: convert to ReadableSize & Durations * fix: change more grpc sender/recv message size to ReadableSize fix: format fix: cargo fmt fix: change cmd test to use durations fix: revert metaclient change fix: convert default fields in meta client options fix: human serde meta client durations * fix: remove milisecond postfix in heartbeat option * fix: humantime serde on heartbeat * fix: update config example * fix: update integration test config * fix: address pr comments * fix: fix pr comment on default annotation
34 lines
883 B
TOML
34 lines
883 B
TOML
[package]
|
|
name = "meta-client"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
api = { workspace = true }
|
|
async-trait = "0.1"
|
|
chrono.workspace = true
|
|
common-error = { workspace = true }
|
|
common-grpc = { workspace = true }
|
|
common-macro = { workspace = true }
|
|
common-meta = { workspace = true }
|
|
common-telemetry = { workspace = true }
|
|
etcd-client.workspace = true
|
|
humantime-serde.workspace = true
|
|
rand.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
snafu.workspace = true
|
|
table = { workspace = true }
|
|
tokio-stream = { version = "0.1", features = ["net"] }
|
|
tokio.workspace = true
|
|
tonic.workspace = true
|
|
|
|
[dev-dependencies]
|
|
datatypes = { workspace = true }
|
|
futures = "0.3"
|
|
meta-srv = { workspace = true, features = ["mock"] }
|
|
tower = "0.4"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|