Sort `Cargo.toml`s (#25721)

Marshall Bowers created

This PR sorts some `Cargo.toml`s that had become unsorted.

Release Notes:

- N/A

Change summary

Cargo.toml                                |  4 ++--
crates/git_ui/Cargo.toml                  | 12 ++++++------
crates/language_model_selector/Cargo.toml |  2 +-
3 files changed, 9 insertions(+), 9 deletions(-)

Detailed changes

Cargo.toml 🔗

@@ -27,7 +27,6 @@ members = [
     "crates/collab",
     "crates/collab_ui",
     "crates/collections",
-    "crates/popover_button",
     "crates/command_palette",
     "crates/command_palette_hooks",
     "crates/component",
@@ -99,6 +98,7 @@ members = [
     "crates/panel",
     "crates/paths",
     "crates/picker",
+    "crates/popover_button",
     "crates/prettier",
     "crates/project",
     "crates/project_panel",
@@ -232,7 +232,6 @@ clock = { path = "crates/clock" }
 collab = { path = "crates/collab" }
 collab_ui = { path = "crates/collab_ui" }
 collections = { path = "crates/collections" }
-popover_button = { path = "crates/popover_button" }
 command_palette = { path = "crates/command_palette" }
 command_palette_hooks = { path = "crates/command_palette_hooks" }
 component = { path = "crates/component" }
@@ -303,6 +302,7 @@ outline_panel = { path = "crates/outline_panel" }
 paths = { path = "crates/paths" }
 panel = { path = "crates/panel" }
 picker = { path = "crates/picker" }
+popover_button = { path = "crates/popover_button" }
 plugin = { path = "crates/plugin" }
 plugin_macros = { path = "crates/plugin_macros" }
 prettier = { path = "crates/prettier" }

crates/git_ui/Cargo.toml 🔗

@@ -12,11 +12,14 @@ workspace = true
 name = "git_ui"
 path = "src/git_ui.rs"
 
+[features]
+default = []
+test-support = ["multi_buffer/test-support"]
+
 [dependencies]
 anyhow.workspace = true
 buffer_diff.workspace = true
 collections.workspace = true
-popover_button.workspace = true
 db.workspace = true
 editor.workspace = true
 feature_flags.workspace = true
@@ -30,6 +33,7 @@ menu.workspace = true
 multi_buffer.workspace = true
 panel.workspace = true
 picker.workspace = true
+popover_button.workspace = true
 postage.workspace = true
 project.workspace = true
 schemars.workspace = true
@@ -53,9 +57,5 @@ editor = { workspace = true, features = ["test-support"] }
 gpui = { workspace = true, features = ["test-support"] }
 project = { workspace = true, features = ["test-support"] }
 settings = { workspace = true, features = ["test-support"] }
-workspace = { workspace = true, features = ["test-support"] }
 unindent.workspace = true
-
-[features]
-default = []
-test-support = ["multi_buffer/test-support"]
+workspace = { workspace = true, features = ["test-support"] }

crates/language_model_selector/Cargo.toml 🔗

@@ -17,8 +17,8 @@ gpui.workspace = true
 language_model.workspace = true
 log.workspace = true
 picker.workspace = true
+popover_button.workspace = true
 proto.workspace = true
 ui.workspace = true
 workspace.workspace = true
 zed_actions.workspace = true
-popover_button.workspace = true