mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-06 21:32:58 +00:00
* feat(config-endpoint): add initial implementation * feat: add initial handler implementation * fix: apply clippy suggestions, use axum response instead of string * feat: address CR suggestions * fix: minor adjustments in formatting * fix: add a test * feat: add to_toml_string method to options * fix: adjust the assertion for the integration test * fix: adjust expected indents * fix: adjust assertion for the integration test * fix: improve according to clippy
76 lines
2.5 KiB
TOML
76 lines
2.5 KiB
TOML
[package]
|
|
name = "datanode"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
async-compat = "0.2"
|
|
async-stream.workspace = true
|
|
async-trait.workspace = true
|
|
api = { path = "../api" }
|
|
axum = "0.6"
|
|
axum-macros = "0.3"
|
|
backon = "0.2"
|
|
catalog = { path = "../catalog" }
|
|
common-base = { path = "../common/base" }
|
|
common-catalog = { path = "../common/catalog" }
|
|
common-error = { path = "../common/error" }
|
|
common-datasource = { path = "../common/datasource" }
|
|
common-function = { path = "../common/function" }
|
|
common-grpc = { path = "../common/grpc" }
|
|
common-grpc-expr = { path = "../common/grpc-expr" }
|
|
common-meta = { path = "../common/meta" }
|
|
common-procedure = { path = "../common/procedure" }
|
|
common-query = { path = "../common/query" }
|
|
common-recordbatch = { path = "../common/recordbatch" }
|
|
common-runtime = { path = "../common/runtime" }
|
|
common-telemetry = { path = "../common/telemetry" }
|
|
common-time = { path = "../common/time" }
|
|
datafusion.workspace = true
|
|
datafusion-common.workspace = true
|
|
datafusion-expr.workspace = true
|
|
datatypes = { path = "../datatypes" }
|
|
file-table-engine = { path = "../file-table-engine" }
|
|
futures = "0.3"
|
|
futures-util.workspace = true
|
|
key-lock = "0.1"
|
|
hyper = { version = "0.14", features = ["full"] }
|
|
humantime-serde = "1.1"
|
|
log-store = { path = "../log-store" }
|
|
meta-client = { path = "../meta-client" }
|
|
meta-srv = { path = "../meta-srv", features = ["mock"] }
|
|
metrics.workspace = true
|
|
mito = { path = "../mito", features = ["test"] }
|
|
object-store = { path = "../object-store" }
|
|
pin-project = "1.0"
|
|
prost.workspace = true
|
|
query = { path = "../query" }
|
|
regex = "1.6"
|
|
secrecy = { version = "0.8", features = ["serde", "alloc"] }
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
servers = { path = "../servers" }
|
|
session = { path = "../session" }
|
|
snafu = { version = "0.7", features = ["backtraces"] }
|
|
sql = { path = "../sql" }
|
|
storage = { path = "../storage" }
|
|
store-api = { path = "../store-api" }
|
|
substrait = { path = "../common/substrait" }
|
|
table = { path = "../table" }
|
|
table-procedure = { path = "../table-procedure" }
|
|
tokio.workspace = true
|
|
tokio-stream = { version = "0.1", features = ["net"] }
|
|
toml = "0.5"
|
|
tonic.workspace = true
|
|
tower = { version = "0.4", features = ["full"] }
|
|
tower-http = { version = "0.3", features = ["full"] }
|
|
url = "2.3.1"
|
|
|
|
[dev-dependencies]
|
|
axum-test-helper = { git = "https://github.com/sunng87/axum-test-helper.git", branch = "patch-1" }
|
|
client = { path = "../client" }
|
|
common-test-util = { path = "../common/test-util" }
|
|
common-query = { path = "../common/query" }
|
|
datafusion-common.workspace = true
|