Skip to content

Commit

Permalink
style(sdf): sort Buck2 & Cargo deps for lib/sdf-server
Browse files Browse the repository at this point in the history
Signed-off-by: Fletcher Nichol <[email protected]>
  • Loading branch information
fnichol committed Jan 11, 2024
1 parent 15cfa74 commit ed64aec
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions lib/sdf-server/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down
8 changes: 4 additions & 4 deletions lib/sdf-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,36 +6,36 @@ 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 }
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" }
Expand Down

0 comments on commit ed64aec

Please sign in to comment.