From 038bc4fe6e2189bae1e209ac4588393fc708f535 Mon Sep 17 00:00:00 2001 From: Ruihang Xia Date: Thu, 14 Mar 2024 00:46:00 +0800 Subject: [PATCH] revert toml format Signed-off-by: Ruihang Xia --- Cargo.lock | 7 +++++++ src/servers/Cargo.toml | 12 ++++++------ 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a8ca9d963b..fdf835ce31 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6632,6 +6632,12 @@ version = "2.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" +[[package]] +name = "permutation" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df202b0b0f5b8e389955afd5f27b007b00fb948162953f1db9c70d2c7e3157d7" + [[package]] name = "pest" version = "2.7.5" @@ -9212,6 +9218,7 @@ dependencies = [ "opensrv-mysql", "opentelemetry-proto 0.3.0", "parking_lot 0.12.1", + "permutation", "pgwire", "pin-project", "postgres-types", diff --git a/src/servers/Cargo.toml b/src/servers/Cargo.toml index 945a51d362..d1eb805312 100644 --- a/src/servers/Cargo.toml +++ b/src/servers/Cargo.toml @@ -16,14 +16,14 @@ workspace = true [dependencies] aide = { version = "0.9", features = ["axum"] } api.workspace = true +arrow.workspace = true arrow-flight.workspace = true arrow-ipc.workspace = true arrow-schema.workspace = true -arrow.workspace = true async-trait = "0.1" auth.workspace = true -axum-macros = "0.3.8" axum.workspace = true +axum-macros = "0.3.8" base64.workspace = true bytes.workspace = true catalog.workspace = true @@ -31,8 +31,8 @@ chrono.workspace = true common-base.workspace = true common-catalog.workspace = true common-error.workspace = true -common-grpc-expr.workspace = true common-grpc.workspace = true +common-grpc-expr.workspace = true common-macro.workspace = true common-mem-prof = { workspace = true, optional = true } common-meta.workspace = true @@ -42,9 +42,9 @@ common-recordbatch.workspace = true common-runtime.workspace = true common-telemetry.workspace = true common-time.workspace = true +datafusion.workspace = true datafusion-common.workspace = true datafusion-expr.workspace = true -datafusion.workspace = true datatypes.workspace = true derive_builder.workspace = true digest = "0.10" @@ -97,11 +97,11 @@ snap = "1" sql.workspace = true strum.workspace = true table.workspace = true +tokio.workspace = true tokio-rustls = "0.25" tokio-stream = { workspace = true, features = ["net"] } -tokio.workspace = true -tonic-reflection = "0.10" tonic.workspace = true +tonic-reflection = "0.10" tower = { version = "0.4", features = ["full"] } tower-http = { version = "0.3", features = ["full"] } urlencoding = "2.1"