mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-06 21:32:58 +00:00
* chore: cherrypick 52e8eebb2dbbbe81179583c05094004a5eedd7fd * refactor/tables: Change variable from immutable to mutable in KvBackendCatalogManager's method * refactor/tables: Replace unbounded channel with bounded and use semaphore for concurrency control in KvBackendCatalogManager * refactor/tables: Add common-runtime dependency and update KvBackendCatalogManager to use common_runtime::spawn_global * refactor/tables: Await on sending error through channel in KvBackendCatalogManager
72 lines
1.8 KiB
TOML
72 lines
1.8 KiB
TOML
[package]
|
|
name = "common-meta"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
testing = []
|
|
pg_kvbackend = ["dep:tokio-postgres"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anymap2 = "0.13.0"
|
|
api.workspace = true
|
|
async-recursion = "1.0"
|
|
async-stream = "0.3"
|
|
async-trait.workspace = true
|
|
base64.workspace = true
|
|
bytes.workspace = true
|
|
chrono.workspace = true
|
|
common-base.workspace = true
|
|
common-catalog.workspace = true
|
|
common-error.workspace = true
|
|
common-grpc-expr.workspace = true
|
|
common-macro.workspace = true
|
|
common-procedure.workspace = true
|
|
common-procedure-test.workspace = true
|
|
common-query.workspace = true
|
|
common-recordbatch.workspace = true
|
|
common-telemetry.workspace = true
|
|
common-time.workspace = true
|
|
common-wal.workspace = true
|
|
datafusion-common.workspace = true
|
|
datafusion-expr.workspace = true
|
|
datatypes.workspace = true
|
|
derive_builder.workspace = true
|
|
etcd-client.workspace = true
|
|
futures.workspace = true
|
|
futures-util.workspace = true
|
|
hex = { version = "0.4" }
|
|
humantime-serde.workspace = true
|
|
itertools.workspace = true
|
|
lazy_static.workspace = true
|
|
moka.workspace = true
|
|
prometheus.workspace = true
|
|
prost.workspace = true
|
|
rand.workspace = true
|
|
regex.workspace = true
|
|
rskafka.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
serde_with.workspace = true
|
|
session.workspace = true
|
|
snafu.workspace = true
|
|
store-api.workspace = true
|
|
strum.workspace = true
|
|
table.workspace = true
|
|
tokio.workspace = true
|
|
tokio-postgres = { workspace = true, optional = true }
|
|
tonic.workspace = true
|
|
typetag = "0.2"
|
|
|
|
[dev-dependencies]
|
|
chrono.workspace = true
|
|
common-procedure = { workspace = true, features = ["testing"] }
|
|
common-wal = { workspace = true, features = ["testing"] }
|
|
datatypes.workspace = true
|
|
hyper = { version = "0.14", features = ["full"] }
|
|
uuid.workspace = true
|