diff --git a/Cargo.toml b/Cargo.toml index 1424a41fe3..7f06b75bc2 100644 --- a/Cargo.toml +++ b/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" } diff --git a/crates/git_ui/Cargo.toml b/crates/git_ui/Cargo.toml index 9c0da064b1..5a28370471 100644 --- a/crates/git_ui/Cargo.toml +++ b/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"] } diff --git a/crates/language_model_selector/Cargo.toml b/crates/language_model_selector/Cargo.toml index 77a98e55ff..173eb921bc 100644 --- a/crates/language_model_selector/Cargo.toml +++ b/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