diff --git a/Cargo.lock b/Cargo.lock index da94c746e7fc528e12dce31b547c13d248055d66..c0a44f86cab201c22dda7952e2807b360d858299 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1410,7 +1410,6 @@ dependencies = [ "log", "parking_lot", "rodio", - "schemars 1.0.1", "serde", "settings", "smol", @@ -1443,7 +1442,6 @@ dependencies = [ "log", "paths", "release_channel", - "schemars 1.0.1", "serde", "serde_json", "settings", @@ -2646,7 +2644,6 @@ dependencies = [ "log", "postage", "project", - "schemars 1.0.1", "serde", "settings", "telemetry", @@ -3458,7 +3455,6 @@ dependencies = [ "project", "release_channel", "rpc", - "schemars 1.0.1", "serde", "serde_json", "settings", @@ -5745,7 +5741,6 @@ dependencies = [ "release_channel", "remote", "reqwest_client", - "schemars 1.0.1", "semantic_version", "serde", "serde_json", @@ -6866,7 +6861,6 @@ dependencies = [ "indoc", "pretty_assertions", "regex", - "schemars 1.0.1", "serde", "serde_json", "settings", @@ -7738,7 +7732,6 @@ dependencies = [ name = "go_to_line" version = "0.1.0" dependencies = [ - "anyhow", "editor", "gpui", "indoc", @@ -7746,7 +7739,6 @@ dependencies = [ "menu", "project", "rope", - "schemars 1.0.1", "serde", "serde_json", "settings", @@ -8772,7 +8764,6 @@ dependencies = [ "language", "log", "project", - "schemars 1.0.1", "serde", "settings", "theme", @@ -9275,7 +9266,6 @@ dependencies = [ "editor", "gpui", "log", - "schemars 1.0.1", "serde", "settings", "shellexpand 2.1.2", @@ -11695,7 +11685,6 @@ dependencies = [ "settings", "strum 0.27.1", "thiserror 2.0.12", - "util", "workspace-hack", ] @@ -11869,7 +11858,6 @@ dependencies = [ "outline", "pretty_assertions", "project", - "schemars 1.0.1", "search", "serde", "serde_json", @@ -13841,7 +13829,6 @@ dependencies = [ "project", "release_channel", "remote", - "schemars 1.0.1", "serde", "serde_json", "settings", @@ -14015,7 +14002,6 @@ dependencies = [ "prost 0.9.0", "release_channel", "rpc", - "schemars 1.0.1", "serde", "serde_json", "settings", @@ -14135,7 +14121,6 @@ dependencies = [ "picker", "project", "runtimelib", - "schemars 1.0.1", "serde", "serde_json", "settings", @@ -17179,7 +17164,6 @@ dependencies = [ "serde", "serde_json", "serde_json_lenient", - "serde_repr", "settings", "strum 0.27.1", "thiserror 2.0.12", @@ -18726,7 +18710,6 @@ dependencies = [ name = "vim_mode_setting" version = "0.1.0" dependencies = [ - "anyhow", "gpui", "settings", "workspace-hack", @@ -20849,7 +20832,6 @@ dependencies = [ "pretty_assertions", "rand 0.9.1", "rpc", - "schemars 1.0.1", "serde", "serde_json", "settings", @@ -21707,7 +21689,6 @@ dependencies = [ name = "zlog_settings" version = "0.1.0" dependencies = [ - "anyhow", "collections", "gpui", "settings", diff --git a/crates/agent_settings/src/agent_profile.rs b/crates/agent_settings/src/agent_profile.rs index 2d39fe85adb92ce67006f4e0c40e8be817222f6a..999ddc8083a1a4b4c271ea9bde4c1e45307e9542 100644 --- a/crates/agent_settings/src/agent_profile.rs +++ b/crates/agent_settings/src/agent_profile.rs @@ -126,7 +126,7 @@ impl AgentProfileSettings { } profiles.insert( - profile_id.0.clone(), + profile_id.0, AgentProfileContent { name: self.name.clone().into(), tools: self.tools.clone(), diff --git a/crates/agent_ui/src/text_thread_editor.rs b/crates/agent_ui/src/text_thread_editor.rs index dadb6263c765a10fedc01b25ae5dd3dded19b877..3c09e47852ffae8f45a5315859a7bb3392b1680d 100644 --- a/crates/agent_ui/src/text_thread_editor.rs +++ b/crates/agent_ui/src/text_thread_editor.rs @@ -303,7 +303,7 @@ impl TextThreadEditor { settings.agent.get_or_insert_default().set_model( LanguageModelSelection { provider: LanguageModelProviderSetting(provider), - model: model.clone(), + model, }, ) }); diff --git a/crates/audio/Cargo.toml b/crates/audio/Cargo.toml index 85274f651417f8df91e2f785056e5ee8da0220de..c083c9a659e50aef37acc2cdfc239696bd469c1e 100644 --- a/crates/audio/Cargo.toml +++ b/crates/audio/Cargo.toml @@ -21,7 +21,6 @@ gpui.workspace = true log.workspace = true parking_lot.workspace = true rodio = { workspace = true, features = [ "wav", "playback", "wav_output" ] } -schemars.workspace = true serde.workspace = true settings.workspace = true smol.workspace = true diff --git a/crates/auto_update/Cargo.toml b/crates/auto_update/Cargo.toml index 35cef84f0366b16d9e31b2416e7a6a10173ff5ef..21df028a88f027b1ce3796ef3e04998ca205ce51 100644 --- a/crates/auto_update/Cargo.toml +++ b/crates/auto_update/Cargo.toml @@ -21,7 +21,6 @@ http_client.workspace = true log.workspace = true paths.workspace = true release_channel.workspace = true -schemars.workspace = true serde.workspace = true serde_json.workspace = true settings.workspace = true diff --git a/crates/call/Cargo.toml b/crates/call/Cargo.toml index 9dfb4acbb424724ce976f918f3bf5124a450e372..1d5fbccb4644d9f168a2afd321a205f01c8f9cdc 100644 --- a/crates/call/Cargo.toml +++ b/crates/call/Cargo.toml @@ -35,7 +35,6 @@ language.workspace = true log.workspace = true postage.workspace = true project.workspace = true -schemars.workspace = true serde.workspace = true settings.workspace = true telemetry.workspace = true diff --git a/crates/collab_ui/Cargo.toml b/crates/collab_ui/Cargo.toml index b3b0f1b0e37207582293fcc6d8930cc004ad7405..24202445a79b5c906d4f6fe1f1a633422f24772a 100644 --- a/crates/collab_ui/Cargo.toml +++ b/crates/collab_ui/Cargo.toml @@ -47,7 +47,6 @@ picker.workspace = true project.workspace = true release_channel.workspace = true rpc.workspace = true -schemars.workspace = true serde.workspace = true serde_json.workspace = true settings.workspace = true diff --git a/crates/editor/src/editor.rs b/crates/editor/src/editor.rs index 38bbcecc16deadf8543f9aa280c607604882461b..8b4b81cd4ae3d42538f0cfd1226292614ec27232 100644 --- a/crates/editor/src/editor.rs +++ b/crates/editor/src/editor.rs @@ -22916,7 +22916,7 @@ fn inlay_hint_settings( ) -> InlayHintSettings { let file = snapshot.file_at(location); let language = snapshot.language_at(location).map(|l| l.name()); - language_settings(language, file, cx).inlay_hints.clone() + language_settings(language, file, cx).inlay_hints } fn consume_contiguous_rows( diff --git a/crates/extension_host/Cargo.toml b/crates/extension_host/Cargo.toml index c933d253c65b525b29eb072ce6910514b15e5932..ba7f056866f41dbc61e7aea38dac8d8aca35979f 100644 --- a/crates/extension_host/Cargo.toml +++ b/crates/extension_host/Cargo.toml @@ -37,7 +37,6 @@ paths.workspace = true project.workspace = true remote.workspace = true release_channel.workspace = true -schemars.workspace = true semantic_version.workspace = true serde.workspace = true serde_json.workspace = true diff --git a/crates/git_hosting_providers/Cargo.toml b/crates/git_hosting_providers/Cargo.toml index cce7ea439ecfb7ea51cbf5bd89dae5e6c6a6f350..64c7e701a4dbdcec405a6fb8b37eba8663a4d8db 100644 --- a/crates/git_hosting_providers/Cargo.toml +++ b/crates/git_hosting_providers/Cargo.toml @@ -19,7 +19,6 @@ git.workspace = true gpui.workspace = true http_client.workspace = true regex.workspace = true -schemars.workspace = true serde.workspace = true serde_json.workspace = true settings.workspace = true diff --git a/crates/go_to_line/Cargo.toml b/crates/go_to_line/Cargo.toml index 57438910fbef39f2b0308a3f4706d5e01df0f832..54a9b4d37c7a237cdedf20e0cc683895384caa03 100644 --- a/crates/go_to_line/Cargo.toml +++ b/crates/go_to_line/Cargo.toml @@ -13,12 +13,10 @@ path = "src/go_to_line.rs" doctest = false [dependencies] -anyhow.workspace = true editor.workspace = true gpui.workspace = true language.workspace = true menu.workspace = true -schemars.workspace = true serde.workspace = true settings.workspace = true text.workspace = true diff --git a/crates/image_viewer/Cargo.toml b/crates/image_viewer/Cargo.toml index 254c916789df2cdfa3e3458ed30572e84153ad61..1afa2c5f9dd90956b93c2e9dfac3537c7253a610 100644 --- a/crates/image_viewer/Cargo.toml +++ b/crates/image_viewer/Cargo.toml @@ -24,7 +24,6 @@ gpui.workspace = true language.workspace = true log.workspace = true project.workspace = true -schemars.workspace = true serde.workspace = true settings.workspace = true theme.workspace = true diff --git a/crates/journal/Cargo.toml b/crates/journal/Cargo.toml index 089896cc1edafa760fbe908bcf7d8f689511edca..3c98e4a712a4e53358d2d31e7df981dccb86fa3c 100644 --- a/crates/journal/Cargo.toml +++ b/crates/journal/Cargo.toml @@ -18,7 +18,6 @@ chrono.workspace = true editor.workspace = true gpui.workspace = true log.workspace = true -schemars.workspace = true serde.workspace = true settings.workspace = true shellexpand.workspace = true diff --git a/crates/journal/src/journal.rs b/crates/journal/src/journal.rs index 4d0d1a41dafbe466abf61178c6e006b7b86161dc..24c3fecf78c2ea3ce1cd036e8b90f88a5d889ccd 100644 --- a/crates/journal/src/journal.rs +++ b/crates/journal/src/journal.rs @@ -39,7 +39,7 @@ impl settings::Settings for JournalSettings { Self { path: journal.path.unwrap(), - hour_format: journal.hour_format.unwrap().into(), + hour_format: journal.hour_format.unwrap(), } } @@ -195,7 +195,7 @@ fn heading_entry(now: NaiveTime, hour_format: &HourFormat) -> String { let hour = now.hour(); format!("# {}:{:02}", hour, now.minute()) } - HourFormat::Hour12 => { + HourFormat::Hour12 => { let (pm, hour) = now.hour12(); let am_or_pm = if pm { "PM" } else { "AM" }; format!("# {}:{:02} {}", hour, now.minute(), am_or_pm) diff --git a/crates/language/src/language_settings.rs b/crates/language/src/language_settings.rs index f1daa0d3f8198fb36ef37bfe79a6ed01f7ea2add..28828f672316d6214ffc81e0c38b53449d178728 100644 --- a/crates/language/src/language_settings.rs +++ b/crates/language/src/language_settings.rs @@ -917,8 +917,7 @@ fn merge_settings(settings: &mut LanguageSettings, src: &LanguageSettingsContent .scroll_debounce_ms .merge_from(&inlay_hints.scroll_debounce_ms); if let Some(toggle_on_modifiers_press) = &inlay_hints.toggle_on_modifiers_press { - settings.inlay_hints.toggle_on_modifiers_press = - Some(toggle_on_modifiers_press.clone()); + settings.inlay_hints.toggle_on_modifiers_press = Some(*toggle_on_modifiers_press); } } settings diff --git a/crates/language_models/src/provider/anthropic.rs b/crates/language_models/src/provider/anthropic.rs index e1ca862a2fe12e7c9d0e1fffcef2960dac005b36..c9cd56f6328f3070cafe2b7d7ff58f8e5315a3da 100644 --- a/crates/language_models/src/provider/anthropic.rs +++ b/crates/language_models/src/provider/anthropic.rs @@ -188,7 +188,7 @@ impl LanguageModelProvider for AnthropicLanguageModelProvider { max_output_tokens: model.max_output_tokens, default_temperature: model.default_temperature, extra_beta_headers: model.extra_beta_headers.clone(), - mode: model.mode.clone().unwrap_or_default().into(), + mode: model.mode.unwrap_or_default().into(), }, ); } diff --git a/crates/language_models/src/provider/google.rs b/crates/language_models/src/provider/google.rs index fafb2258e606d712991a9e8a2febd07735fae997..70a7a27defdfba609765710902845f921a8333ac 100644 --- a/crates/language_models/src/provider/google.rs +++ b/crates/language_models/src/provider/google.rs @@ -209,7 +209,7 @@ impl LanguageModelProvider for GoogleLanguageModelProvider { name: model.name.clone(), display_name: model.display_name.clone(), max_tokens: model.max_tokens, - mode: model.mode.unwrap_or_default().into(), + mode: model.mode.unwrap_or_default(), }, ); } diff --git a/crates/language_models/src/provider/open_router.rs b/crates/language_models/src/provider/open_router.rs index a69041737f2850e8209d923de617716ad258b8ad..bbc5c44cdc7835b4402543371d4677520bdcf645 100644 --- a/crates/language_models/src/provider/open_router.rs +++ b/crates/language_models/src/provider/open_router.rs @@ -211,7 +211,7 @@ impl LanguageModelProvider for OpenRouterLanguageModelProvider { max_tokens: model.max_tokens, supports_tools: model.supports_tools, supports_images: model.supports_images, - mode: model.mode.clone().unwrap_or_default(), + mode: model.mode.unwrap_or_default(), provider: model.provider.clone(), }); } diff --git a/crates/open_router/Cargo.toml b/crates/open_router/Cargo.toml index ec52ead3cba96f9026bc4df1a04d3af94eb44ed6..f9728673bd891488b90c062acf7cb507bb9e329f 100644 --- a/crates/open_router/Cargo.toml +++ b/crates/open_router/Cargo.toml @@ -25,5 +25,4 @@ serde_json.workspace = true settings.workspace = true strum.workspace = true thiserror.workspace = true -util.workspace = true workspace-hack.workspace = true diff --git a/crates/outline_panel/Cargo.toml b/crates/outline_panel/Cargo.toml index 6950929304fb37e1f0d140adc2b461188cbeaaf1..b851ae672df0ba4a99b25e19c8c2ebaf49676346 100644 --- a/crates/outline_panel/Cargo.toml +++ b/crates/outline_panel/Cargo.toml @@ -26,7 +26,6 @@ log.workspace = true menu.workspace = true outline.workspace = true project.workspace = true -schemars.workspace = true search.workspace = true serde.workspace = true serde_json.workspace = true diff --git a/crates/outline_panel/src/outline_panel_settings.rs b/crates/outline_panel/src/outline_panel_settings.rs index b9b0518a7cf3eac107abc04c39ac1d6d65a61bb9..7652c633f1e1166f2515e0338cba3323d6017fb3 100644 --- a/crates/outline_panel/src/outline_panel_settings.rs +++ b/crates/outline_panel/src/outline_panel_settings.rs @@ -72,7 +72,7 @@ impl Settings for OutlinePanelSettings { self.button.merge_from(&panel.button); self.default_width .merge_from(&panel.default_width.map(Pixels::from)); - self.dock.merge_from(&panel.dock.map(Into::into)); + self.dock.merge_from(&panel.dock); self.file_icons.merge_from(&panel.file_icons); self.folder_icons.merge_from(&panel.folder_icons); self.git_status.merge_from(&panel.git_status); diff --git a/crates/project/src/agent_server_store.rs b/crates/project/src/agent_server_store.rs index 9357bd773466645d6e7dad666b92dc5b5ed9ce4c..b7d1a75521480353433cf4953960b505201ab3c1 100644 --- a/crates/project/src/agent_server_store.rs +++ b/crates/project/src/agent_server_store.rs @@ -1071,7 +1071,7 @@ impl settings::Settings for AllAgentServersSettings { custom: agent_settings .custom .into_iter() - .map(|(k, v)| (k.clone(), v.into())) + .map(|(k, v)| (k, v.into())) .collect(), } } diff --git a/crates/project/src/project_settings.rs b/crates/project/src/project_settings.rs index eb1dbe7534c6d16da6a23bb4d0ac0cf8167ac7f4..836943952f76ce297b2b2bb16ae12e16f3b003aa 100644 --- a/crates/project/src/project_settings.rs +++ b/crates/project/src/project_settings.rs @@ -505,7 +505,7 @@ impl Settings for ProjectSettings { .lsp .clone() .into_iter() - .map(|(key, value)| (LanguageServerName(key.into()), value.into())) + .map(|(key, value)| (LanguageServerName(key.into()), value)) .collect(), global_lsp_settings: GlobalLspSettings { button: content @@ -559,7 +559,7 @@ impl Settings for ProjectSettings { .dap .clone() .into_iter() - .filter_map(|(key, value)| Some((DebugAdapterName(key.into()), value))), + .map(|(key, value)| (DebugAdapterName(key.into()), value)), ); if let Some(diagnostics) = content.diagnostics.as_ref() { if let Some(inline) = &diagnostics.inline { diff --git a/crates/recent_projects/Cargo.toml b/crates/recent_projects/Cargo.toml index 2ba6293ad2cf63c7ca664dba43f53d7facc70a57..1445b80fa6118bbc79fa83f113bc23bdf66c7dc4 100644 --- a/crates/recent_projects/Cargo.toml +++ b/crates/recent_projects/Cargo.toml @@ -31,7 +31,6 @@ picker.workspace = true project.workspace = true release_channel.workspace = true remote.workspace = true -schemars.workspace = true serde.workspace = true settings.workspace = true smol.workspace = true diff --git a/crates/remote/Cargo.toml b/crates/remote/Cargo.toml index 3aea56c6411b1a084219734361cc2da9578a6b1e..59d80206b0585d59df6c73e2fee44b9ba1fb70c1 100644 --- a/crates/remote/Cargo.toml +++ b/crates/remote/Cargo.toml @@ -32,7 +32,6 @@ paths.workspace = true prost.workspace = true release_channel.workspace = true rpc = { workspace = true, features = ["gpui"] } -schemars.workspace = true serde.workspace = true serde_json.workspace = true settings.workspace = true diff --git a/crates/repl/Cargo.toml b/crates/repl/Cargo.toml index 5821bc6297266cffba19234d82efec3f6190c310..6386dc330af8fd1eb46380cb39c71f4adffea1e6 100644 --- a/crates/repl/Cargo.toml +++ b/crates/repl/Cargo.toml @@ -38,7 +38,6 @@ multi_buffer.workspace = true nbformat.workspace = true project.workspace = true runtimelib.workspace = true -schemars.workspace = true serde.workspace = true serde_json.workspace = true settings.workspace = true diff --git a/crates/theme/Cargo.toml b/crates/theme/Cargo.toml index 00f8e1868e5ddf00fa1fdaadb042c23d6013f5d8..8c51b991ccc8580d2be3d38273a7c11118b37d52 100644 --- a/crates/theme/Cargo.toml +++ b/crates/theme/Cargo.toml @@ -33,7 +33,6 @@ schemars = { workspace = true, features = ["indexmap2"] } serde.workspace = true serde_json.workspace = true serde_json_lenient.workspace = true -serde_repr.workspace = true settings.workspace = true strum.workspace = true thiserror.workspace = true diff --git a/crates/vim_mode_setting/Cargo.toml b/crates/vim_mode_setting/Cargo.toml index fbb7f30b4c2a03aca48ad5db26283c33aedb885b..8371cca401fa77c63cba6748dc428645340f48b6 100644 --- a/crates/vim_mode_setting/Cargo.toml +++ b/crates/vim_mode_setting/Cargo.toml @@ -12,7 +12,6 @@ workspace = true path = "src/vim_mode_setting.rs" [dependencies] -anyhow.workspace = true gpui.workspace = true settings.workspace = true workspace-hack.workspace = true diff --git a/crates/workspace/src/workspace_settings.rs b/crates/workspace/src/workspace_settings.rs index 165ec776febc939997d878fc69dfd6af4043d9ad..30bebb7c18b1f03e5bf59425026aea5a0f4bd552 100644 --- a/crates/workspace/src/workspace_settings.rs +++ b/crates/workspace/src/workspace_settings.rs @@ -82,25 +82,22 @@ impl Settings for WorkspaceSettings { .unwrap(), ), }, - bottom_dock_layout: workspace.bottom_dock_layout.clone().unwrap(), - pane_split_direction_horizontal: workspace - .pane_split_direction_horizontal - .clone() - .unwrap(), - pane_split_direction_vertical: workspace.pane_split_direction_vertical.clone().unwrap(), - centered_layout: workspace.centered_layout.clone().unwrap(), - confirm_quit: workspace.confirm_quit.clone().unwrap(), - show_call_status_icon: workspace.show_call_status_icon.clone().unwrap(), - autosave: workspace.autosave.clone().unwrap(), - restore_on_startup: workspace.restore_on_startup.clone().unwrap(), - restore_on_file_reopen: workspace.restore_on_file_reopen.clone().unwrap(), - drop_target_size: workspace.drop_target_size.clone().unwrap(), - use_system_path_prompts: workspace.use_system_path_prompts.clone().unwrap(), - use_system_prompts: workspace.use_system_prompts.clone().unwrap(), + bottom_dock_layout: workspace.bottom_dock_layout.unwrap(), + pane_split_direction_horizontal: workspace.pane_split_direction_horizontal.unwrap(), + pane_split_direction_vertical: workspace.pane_split_direction_vertical.unwrap(), + centered_layout: workspace.centered_layout.unwrap(), + confirm_quit: workspace.confirm_quit.unwrap(), + show_call_status_icon: workspace.show_call_status_icon.unwrap(), + autosave: workspace.autosave.unwrap(), + restore_on_startup: workspace.restore_on_startup.unwrap(), + restore_on_file_reopen: workspace.restore_on_file_reopen.unwrap(), + drop_target_size: workspace.drop_target_size.unwrap(), + use_system_path_prompts: workspace.use_system_path_prompts.unwrap(), + use_system_prompts: workspace.use_system_prompts.unwrap(), command_aliases: workspace.command_aliases.clone(), - max_tabs: workspace.max_tabs.clone(), - when_closing_with_no_tabs: workspace.when_closing_with_no_tabs.clone().unwrap(), - on_last_window_closed: workspace.on_last_window_closed.clone().unwrap(), + max_tabs: workspace.max_tabs, + when_closing_with_no_tabs: workspace.when_closing_with_no_tabs.unwrap(), + on_last_window_closed: workspace.on_last_window_closed.unwrap(), resize_all_panels_in_dock: workspace .resize_all_panels_in_dock .clone() @@ -108,22 +105,22 @@ impl Settings for WorkspaceSettings { .into_iter() .map(Into::into) .collect(), - close_on_file_delete: workspace.close_on_file_delete.clone().unwrap(), - use_system_window_tabs: workspace.use_system_window_tabs.clone().unwrap(), - zoomed_padding: workspace.zoomed_padding.clone().unwrap(), + close_on_file_delete: workspace.close_on_file_delete.unwrap(), + use_system_window_tabs: workspace.use_system_window_tabs.unwrap(), + zoomed_padding: workspace.zoomed_padding.unwrap(), } } fn refine(&mut self, content: &settings::SettingsContent, _cx: &mut App) { let workspace = &content.workspace; - if let Some(border_size) = *&workspace + if let Some(border_size) = workspace .active_pane_modifiers .and_then(|modifier| modifier.border_size) { self.active_pane_modifiers.border_size = Some(border_size); } - if let Some(inactive_opacity) = *&workspace + if let Some(inactive_opacity) = workspace .active_pane_modifiers .and_then(|modifier| modifier.inactive_opacity) { diff --git a/crates/worktree/Cargo.toml b/crates/worktree/Cargo.toml index 507b95c00d52435411e307f8d68dafd718177598..fdeca37b7ac73759fe9851f722985349e0a183b7 100644 --- a/crates/worktree/Cargo.toml +++ b/crates/worktree/Cargo.toml @@ -38,7 +38,6 @@ parking_lot.workspace = true paths.workspace = true postage.workspace = true rpc = { workspace = true, features = ["gpui"] } -schemars.workspace = true serde.workspace = true serde_json.workspace = true settings.workspace = true diff --git a/crates/zlog_settings/Cargo.toml b/crates/zlog_settings/Cargo.toml index 00c81e0ef45863d36014d63ac5e07d690c507207..8ec63cefe447d944b4556f1e72e481d5461391f1 100644 --- a/crates/zlog_settings/Cargo.toml +++ b/crates/zlog_settings/Cargo.toml @@ -15,7 +15,6 @@ path = "src/zlog_settings.rs" default = [] [dependencies] -anyhow.workspace = true gpui.workspace = true collections.workspace = true settings.workspace = true