fix: introduce taplo.toml and sort Cargo.toml (#2096)

* fix: add taplo.toml

* fix: introduce taplo.toml & sort cargo.toml

* chore: remove option in ci too
This commit is contained in:
shuiyisong
2023-08-04 14:44:45 +08:00
committed by GitHub
parent 93cd4ab89d
commit 7efff2d704
34 changed files with 114 additions and 79 deletions

View File

@@ -8,18 +8,19 @@ license.workspace = true
greptimedb-telemetry = []
[dependencies]
api = { path = "../api" }
async-compat = "0.2"
async-stream.workspace = true
async-trait.workspace = true
api = { path = "../api" }
axum = "0.6"
axum-macros = "0.3"
catalog = { path = "../catalog" }
common-base = { path = "../common/base" }
common-catalog = { path = "../common/catalog" }
common-error = { path = "../common/error" }
common-datasource = { path = "../common/datasource" }
common-error = { path = "../common/error" }
common-function = { path = "../common/function" }
common-greptimedb-telemetry = { path = "../common/greptimedb-telemetry" }
common-grpc = { path = "../common/grpc" }
common-grpc-expr = { path = "../common/grpc-expr" }
common-meta = { path = "../common/meta" }
@@ -29,17 +30,16 @@ common-recordbatch = { path = "../common/recordbatch" }
common-runtime = { path = "../common/runtime" }
common-telemetry = { path = "../common/telemetry" }
common-time = { path = "../common/time" }
common-greptimedb-telemetry = { path = "../common/greptimedb-telemetry" }
datafusion.workspace = true
datafusion-common.workspace = true
datafusion-expr.workspace = true
datafusion.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"
hyper = { version = "0.14", features = ["full"] }
key-lock = "0.1"
log-store = { path = "../log-store" }
meta-client = { path = "../meta-client" }
meta-srv = { path = "../meta-srv", features = ["mock"] }
@@ -61,8 +61,8 @@ 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"] }
tokio.workspace = true
toml.workspace = true
tonic.workspace = true
tower = { version = "0.4", features = ["full"] }
@@ -73,7 +73,7 @@ uuid.workspace = true
[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" }
common-test-util = { path = "../common/test-util" }
datafusion-common.workspace = true
session = { path = "../session", features = ["testing"] }