From ed64aecdc51fcf406cbbacf7aee5c1a1a1238851 Mon Sep 17 00:00:00 2001 From: Fletcher Nichol Date: Wed, 10 Jan 2024 10:25:43 -0700 Subject: [PATCH] style(sdf): sort Buck2 & Cargo deps for `lib/sdf-server` Signed-off-by: Fletcher Nichol --- lib/sdf-server/BUCK | 6 +++--- lib/sdf-server/Cargo.toml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/sdf-server/BUCK b/lib/sdf-server/BUCK index 95c66c984f..dd83bce885 100644 --- a/lib/sdf-server/BUCK +++ b/lib/sdf-server/BUCK @@ -10,13 +10,13 @@ rust_library( "//lib/si-data-nats:si-data-nats", "//lib/si-data-pg:si-data-pg", "//lib/si-pkg:si-pkg", + "//lib/si-posthog-rs:si-posthog", "//lib/si-settings:si-settings", "//lib/si-std:si-std", - "//lib/si-posthog-rs:si-posthog", "//lib/telemetry-rs:telemetry", "//lib/veritech-client:veritech-client", - "//third-party/rust:async-trait", "//third-party/rust:async-recursion", + "//third-party/rust:async-trait", "//third-party/rust:axum", "//third-party/rust:base64", "//third-party/rust:chrono", @@ -29,8 +29,8 @@ rust_library( "//third-party/rust:nix", "//third-party/rust:once_cell", "//third-party/rust:pathdiff", - "//third-party/rust:remain", "//third-party/rust:rand", + "//third-party/rust:remain", "//third-party/rust:reqwest", "//third-party/rust:serde", "//third-party/rust:serde_json", diff --git a/lib/sdf-server/Cargo.toml b/lib/sdf-server/Cargo.toml index d568275d55..b840bfaaf6 100644 --- a/lib/sdf-server/Cargo.toml +++ b/lib/sdf-server/Cargo.toml @@ -6,26 +6,26 @@ rust-version = "1.64" publish = false [dependencies] -async-trait = { workspace = true } async-recursion = { workspace = true } +async-trait = { workspace = true } axum = { workspace = true } base64 = { workspace = true } buck2-resources = { path = "../../lib/buck2-resources" } chrono = { workspace = true } convert_case = { workspace = true } -once_cell = { workspace = true } dal = { path = "../../lib/dal" } derive_builder = { workspace = true } futures = { workspace = true } futures-lite = { workspace = true } hyper = { workspace = true } +module-index-client = { path = "../../lib/module-index-client" } names = { workspace = true } nix = { workspace = true } +once_cell = { workspace = true } pathdiff = { workspace = true } rand = { workspace = true } remain = { workspace = true } reqwest = { workspace = true } -module-index-client = { path = "../../lib/module-index-client" } serde = { workspace = true } serde_json = { workspace = true } serde_with = { workspace = true } @@ -33,9 +33,9 @@ si-crypto = { path = "../../lib/si-crypto" } si-data-nats = { path = "../../lib/si-data-nats" } si-data-pg = { path = "../../lib/si-data-pg" } si-pkg = { path = "../../lib/si-pkg" } +si-posthog = { path = "../../lib/si-posthog-rs" } si-settings = { path = "../../lib/si-settings" } si-std = { path = "../../lib/si-std" } -si-posthog = { path = "../../lib/si-posthog-rs" } sodiumoxide = { workspace = true } strum = { workspace = true } telemetry = { path = "../../lib/telemetry-rs" }