diff --git a/Cargo.toml b/Cargo.toml index 1424a41fe34358d0d786ad15dba3fe55c3beb227..7f06b75bc2658f1b514eb72ad56fdda9f3e1b98c 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 9c0da064b1c3731823a84b8e7bcafc4cedf448d0..5a2837047108130aac6f087a679ca173fc86493e 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 77a98e55ff96c868856c89c4413dc764aae4b634..173eb921bca2aa5d8cec918daa36a12471f3a245 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