Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e4bb946

Browse files
committedJan 8, 2025·
format TOML
1 parent 5b25305 commit e4bb946

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed
 

‎crates/pg_completions/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ async-std = "1.12.0"
1616

1717
text-size.workspace = true
1818

19-
serde = { workspace = true, features = ["derive"] }
20-
serde_json = { workspace = true }
21-
pg_schema_cache.workspace = true
22-
tree-sitter.workspace = true
23-
tree_sitter_sql.workspace = true
19+
pg_schema_cache.workspace = true
2420
pg_treesitter_queries.workspace = true
21+
serde = { workspace = true, features = ["derive"] }
22+
serde_json = { workspace = true }
23+
tree-sitter.workspace = true
24+
tree_sitter_sql.workspace = true
2525

2626
sqlx.workspace = true
2727

‎crates/pg_lsp_new/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ anyhow = { workspace = true }
1616
biome_deserialize = { workspace = true }
1717
futures = "0.3.31"
1818
pg_analyse = { workspace = true }
19+
pg_completions = { workspace = true }
1920
pg_configuration = { workspace = true }
2021
pg_console = { workspace = true }
2122
pg_diagnostics = { workspace = true }
22-
pg_completions = { workspace = true }
2323
pg_fs = { workspace = true }
2424
pg_lsp_converters = { workspace = true }
2525
pg_text_edit = { workspace = true }

‎crates/pg_treesitter_queries/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ version = "0.0.0"
1212

1313

1414
[dependencies]
15-
clap = { version = "4.5.23", features = ["derive"] }
15+
clap = { version = "4.5.23", features = ["derive"] }
1616
tree-sitter.workspace = true
1717
tree_sitter_sql.workspace = true
1818

‎crates/pg_workspace_new/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ futures = "0.3.31"
1818
ignore = { workspace = true }
1919
pg_analyse = { workspace = true, features = ["serde"] }
2020
pg_analyser = { workspace = true }
21+
pg_completions = { workspace = true }
2122
pg_configuration = { workspace = true }
2223
pg_console = { workspace = true }
2324
pg_diagnostics = { workspace = true }
24-
pg_completions = { workspace = true }
2525
pg_fs = { workspace = true, features = ["serde"] }
2626
pg_query_ext = { workspace = true }
2727
pg_schema_cache = { workspace = true }

0 commit comments

Comments
 (0)
Please sign in to comment.