mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-20 23:10:37 +00:00
* extract FlightCraft trait Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * split service handler in GrpcServer Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * left grpc server implement Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * start region server if configured Signed-off-by: Ruihang Xia <waynestxia@gmail.com> --------- Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
84 lines
2.5 KiB
TOML
84 lines
2.5 KiB
TOML
[package]
|
|
name = "datanode"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
testing = ["meta-srv/mock"]
|
|
|
|
[dependencies]
|
|
api = { workspace = true }
|
|
arrow-flight.workspace = true
|
|
async-compat = "0.2"
|
|
async-stream.workspace = true
|
|
async-trait.workspace = true
|
|
axum = "0.6"
|
|
axum-macros = "0.3"
|
|
bytes = "1.1"
|
|
catalog = { workspace = true }
|
|
common-base = { workspace = true }
|
|
common-catalog = { workspace = true }
|
|
common-datasource = { workspace = true }
|
|
common-error = { workspace = true }
|
|
common-function = { workspace = true }
|
|
common-greptimedb-telemetry = { workspace = true }
|
|
common-grpc = { workspace = true }
|
|
common-grpc-expr = { 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 }
|
|
dashmap = "5.4"
|
|
datafusion-common.workspace = true
|
|
datafusion-expr.workspace = true
|
|
datafusion.workspace = true
|
|
datatypes = { workspace = true }
|
|
file-table-engine = { workspace = true }
|
|
futures = "0.3"
|
|
futures-util.workspace = true
|
|
humantime-serde = "1.1"
|
|
hyper = { version = "0.14", features = ["full"] }
|
|
key-lock = "0.1"
|
|
log-store = { workspace = true }
|
|
meta-client = { workspace = true }
|
|
meta-srv = { workspace = true }
|
|
metrics.workspace = true
|
|
mito = { workspace = true }
|
|
object-store = { workspace = true }
|
|
pin-project = "1.0"
|
|
prost.workspace = true
|
|
query = { workspace = true }
|
|
secrecy = { version = "0.8", features = ["serde", "alloc"] }
|
|
serde.workspace = true
|
|
serde_json = "1.0"
|
|
servers = { workspace = true }
|
|
session = { workspace = true }
|
|
snafu = { version = "0.7", features = ["backtraces"] }
|
|
sql = { workspace = true }
|
|
storage = { workspace = true }
|
|
store-api = { workspace = true }
|
|
substrait = { workspace = true }
|
|
table = { workspace = true }
|
|
table-procedure = { workspace = true }
|
|
tokio-stream = { version = "0.1", features = ["net"] }
|
|
tokio.workspace = true
|
|
toml.workspace = true
|
|
tonic.workspace = true
|
|
tower = { version = "0.4", features = ["full"] }
|
|
tower-http = { version = "0.3", features = ["full"] }
|
|
url = "2.3.1"
|
|
uuid.workspace = true
|
|
|
|
[dev-dependencies]
|
|
axum-test-helper = { git = "https://github.com/sunng87/axum-test-helper.git", branch = "patch-1" }
|
|
client = { workspace = true }
|
|
common-query = { workspace = true }
|
|
common-test-util = { workspace = true }
|
|
datafusion-common.workspace = true
|
|
mito = { workspace = true, features = ["test"] }
|
|
session = { workspace = true }
|