mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-07 13:52:59 +00:00
* chore: introduce `follower_regions` field for `DatanodeTableValue` * fix: skip wal replay when opening follower regions * chore: add enterprise feature gate * fix: fix unit tests * feat: improve RegionRoleSet backward compatibility
79 lines
2.0 KiB
TOML
79 lines
2.0 KiB
TOML
[package]
|
|
name = "datanode"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
testing = []
|
|
enterprise = []
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
api.workspace = true
|
|
arrow-flight.workspace = true
|
|
async-trait.workspace = true
|
|
bytes.workspace = true
|
|
catalog.workspace = true
|
|
client.workspace = true
|
|
common-base.workspace = true
|
|
common-config.workspace = true
|
|
common-error.workspace = true
|
|
common-function.workspace = true
|
|
common-greptimedb-telemetry.workspace = true
|
|
common-grpc.workspace = true
|
|
common-macro.workspace = true
|
|
common-meta.workspace = true
|
|
common-procedure.workspace = true
|
|
common-query.workspace = true
|
|
common-recordbatch.workspace = true
|
|
common-runtime.workspace = true
|
|
common-telemetry.workspace = true
|
|
common-time.workspace = true
|
|
common-version.workspace = true
|
|
common-wal.workspace = true
|
|
common-workload.workspace = true
|
|
dashmap.workspace = true
|
|
datafusion.workspace = true
|
|
datafusion-common.workspace = true
|
|
datafusion-expr.workspace = true
|
|
datatypes.workspace = true
|
|
file-engine.workspace = true
|
|
futures.workspace = true
|
|
futures-util.workspace = true
|
|
humantime-serde.workspace = true
|
|
lazy_static.workspace = true
|
|
log-store.workspace = true
|
|
meta-client.workspace = true
|
|
metric-engine.workspace = true
|
|
mito2.workspace = true
|
|
num_cpus.workspace = true
|
|
object-store.workspace = true
|
|
prometheus.workspace = true
|
|
prost.workspace = true
|
|
query.workspace = true
|
|
reqwest.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
servers.workspace = true
|
|
session.workspace = true
|
|
snafu.workspace = true
|
|
store-api.workspace = true
|
|
substrait.workspace = true
|
|
table.workspace = true
|
|
tokio.workspace = true
|
|
toml.workspace = true
|
|
tonic.workspace = true
|
|
|
|
[dev-dependencies]
|
|
cache.workspace = true
|
|
client.workspace = true
|
|
common-meta = { workspace = true, features = ["testing"] }
|
|
common-query.workspace = true
|
|
common-test-util.workspace = true
|
|
datafusion-common.workspace = true
|
|
mito2 = { workspace = true, features = ["test"] }
|
|
session.workspace = true
|