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

@@ -5,8 +5,8 @@ edition.workspace = true
license.workspace = true
[dependencies]
arrow.workspace = true
arrow-schema.workspace = true
arrow.workspace = true
async-compression = { version = "0.3", features = [
"bzip2",
"gzip",
@@ -24,12 +24,12 @@ derive_builder.workspace = true
futures.workspace = true
object-store = { path = "../../object-store" }
orc-rust = "0.2"
paste = "1.0"
regex = "1.7"
snafu.workspace = true
tokio.workspace = true
tokio-util.workspace = true
tokio.workspace = true
url = "2.3"
paste = "1.0"
[dev-dependencies]
common-test-util = { path = "../test-util" }

View File

@@ -8,11 +8,11 @@ license.workspace = true
proc-macro = true
[dependencies]
common-telemetry = { path = "../telemetry" }
backtrace = "0.3"
common-telemetry = { path = "../telemetry" }
proc-macro2 = "1.0"
quote = "1.0"
syn = "1.0"
proc-macro2 = "1.0"
[dev-dependencies]
arc-swap = "1.0"

View File

@@ -9,6 +9,7 @@ async-trait.workspace = true
common-error = { path = "../error" }
common-runtime = { path = "../runtime" }
common-telemetry = { path = "../telemetry" }
once_cell = "1.17.0"
reqwest = { version = "0.11", features = [
"json",
"rustls-tls",
@@ -17,11 +18,10 @@ serde.workspace = true
serde_json.workspace = true
tokio.workspace = true
uuid.workspace = true
once_cell = "1.17.0"
[dev-dependencies]
hyper = { version = "0.14", features = ["full"] }
common-test-util = { path = "../test-util" }
hyper = { version = "0.14", features = ["full"] }
[build-dependencies]
common-version = { path = "../version" }

View File

@@ -12,5 +12,5 @@ tikv-jemalloc-ctl = { version = "0.5", features = ["use_std"] }
tokio.workspace = true
[dependencies.tikv-jemalloc-sys]
version = "0.5"
features = ["stats", "profiling", "unprefixed_malloc_on_supported_platforms"]
version = "0.5"

View File

@@ -5,8 +5,8 @@ edition.workspace = true
license.workspace = true
[dependencies]
async-trait.workspace = true
async-stream.workspace = true
async-trait.workspace = true
backon = "0.4"
common-error = { path = "../error" }
common-runtime = { path = "../runtime" }

View File

@@ -10,9 +10,9 @@ async-trait.workspace = true
common-error = { path = "../error" }
common-recordbatch = { path = "../recordbatch" }
common-time = { path = "../time" }
datafusion.workspace = true
datafusion-common.workspace = true
datafusion-expr.workspace = true
datafusion.workspace = true
datatypes = { path = "../../datatypes" }
serde.workspace = true
snafu.workspace = true

View File

@@ -6,8 +6,8 @@ license.workspace = true
[dependencies]
common-error = { path = "../error" }
datafusion.workspace = true
datafusion-common.workspace = true
datafusion.workspace = true
datatypes = { path = "../../datatypes" }
futures.workspace = true
paste = "1.0"

View File

@@ -12,8 +12,8 @@ metrics.workspace = true
once_cell.workspace = true
paste.workspace = true
snafu.workspace = true
tokio.workspace = true
tokio-util.workspace = true
tokio.workspace = true
[dev-dependencies]
tokio-test = "0.4"

View File

@@ -12,10 +12,10 @@ catalog = { path = "../../catalog" }
common-catalog = { path = "../catalog" }
common-error = { path = "../error" }
common-telemetry = { path = "../telemetry" }
datafusion.workspace = true
datafusion-common.workspace = true
datafusion-expr.workspace = true
datafusion-substrait.workspace = true
datafusion.workspace = true
datatypes = { path = "../../datatypes" }
futures = "0.3"
promql = { path = "../../promql" }

View File

@@ -6,8 +6,8 @@ license.workspace = true
[dependencies]
arrow.workspace = true
chrono.workspace = true
chrono-tz = "0.8"
chrono.workspace = true
common-error = { path = "../error" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"