Cargo.lock 🔗
@@ -2336,12 +2336,9 @@ version = "0.1.0"
dependencies = [
"editor",
"gpui",
- "itertools 0.14.0",
- "settings",
"theme",
"ui",
"workspace",
- "zed_actions",
]
[[package]]
KyleBarton created
Cargo.lock | 3 ---
crates/breadcrumbs/Cargo.toml | 3 ---
crates/search/src/project_search.rs | 2 +-
3 files changed, 1 insertion(+), 7 deletions(-)
@@ -2336,12 +2336,9 @@ version = "0.1.0"
dependencies = [
"editor",
"gpui",
- "itertools 0.14.0",
- "settings",
"theme",
"ui",
"workspace",
- "zed_actions",
]
[[package]]
@@ -15,12 +15,9 @@ doctest = false
[dependencies]
editor.workspace = true
gpui.workspace = true
-itertools.workspace = true
-settings.workspace = true
theme.workspace = true
ui.workspace = true
workspace.workspace = true
-zed_actions.workspace = true
[dev-dependencies]
editor = { workspace = true, features = ["test-support"] }
@@ -2251,7 +2251,7 @@ impl Render for ProjectSearchBar {
.child(SearchOption::IncludeIgnored.as_button(
search.search_options,
SearchSource::Project(cx),
- focus_handle.clone(),
+ focus_handle,
));
h_flex()
.w_full()