From 0a89d1a479f2e7937cd2ee77240450c3c566c7a9 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Wed, 5 Feb 2025 10:07:53 -0500 Subject: [PATCH] languages: Sort dependencies in `Cargo.toml` (#24277) This PR sorts the dependency lists in the `Cargo.toml` for the `languages` crate. Release Notes: - N/A --- crates/languages/Cargo.toml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/crates/languages/Cargo.toml b/crates/languages/Cargo.toml index 3d51f748c1f7c334df7a62e6bc80649fdbf563bb..5665b9b53ab25daba2a4b979e7f19201e8f89436 100644 --- a/crates/languages/Cargo.toml +++ b/crates/languages/Cargo.toml @@ -13,6 +13,7 @@ test-support = [ "load-grammars" ] load-grammars = [ + "tree-sitter", "tree-sitter-bash", "tree-sitter-c", "tree-sitter-cpp", @@ -29,7 +30,6 @@ load-grammars = [ "tree-sitter-rust", "tree-sitter-typescript", "tree-sitter-yaml", - "tree-sitter", ] [dependencies] @@ -46,12 +46,12 @@ log.workspace = true lsp.workspace = true node_runtime.workspace = true paths.workspace = true -pet.workspace = true -pet-fs.workspace = true -pet-core.workspace = true pet-conda.workspace = true +pet-core.workspace = true +pet-fs.workspace = true pet-poetry.workspace = true pet-reporter.workspace = true +pet.workspace = true project.workspace = true regex.workspace = true rope.workspace = true @@ -83,15 +83,15 @@ tree-sitter-yaml = { workspace = true, optional = true } util.workspace = true [dev-dependencies] -tree-sitter.workspace = true +pretty_assertions.workspace = true text.workspace = true theme = { workspace = true, features = ["test-support"] } -unindent.workspace = true -workspace = { workspace = true, features = ["test-support"] } -tree-sitter-typescript.workspace = true -tree-sitter-python.workspace = true -tree-sitter-go.workspace = true +tree-sitter-bash.workspace = true tree-sitter-c.workspace = true tree-sitter-css.workspace = true -tree-sitter-bash.workspace = true -pretty_assertions.workspace = true +tree-sitter-go.workspace = true +tree-sitter-python.workspace = true +tree-sitter-typescript.workspace = true +tree-sitter.workspace = true +unindent.workspace = true +workspace = { workspace = true, features = ["test-support"] }