mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-27 04:44:30 +00:00
cleaned up warnings
This commit is contained in:
parent
eff44f9aa4
commit
0c1b2e5aa6
1 changed files with 4 additions and 5 deletions
|
@ -1,22 +1,21 @@
|
|||
use anyhow::{anyhow, Result};
|
||||
use client::{self, UserStore};
|
||||
use git2::{Object, Oid, Repository};
|
||||
use gpui::{AppContext, AssetSource, ModelHandle, Task};
|
||||
use gpui::{AssetSource, Task};
|
||||
use language::LanguageRegistry;
|
||||
use node_runtime::RealNodeRuntime;
|
||||
use project::{Fs, Project, RealFs};
|
||||
use project::{Project, RealFs};
|
||||
use rust_embed::RustEmbed;
|
||||
use semantic_index::embedding::OpenAIEmbeddings;
|
||||
use semantic_index::semantic_index_settings::SemanticIndexSettings;
|
||||
use semantic_index::{SearchResult, SemanticIndex};
|
||||
use serde::Deserialize;
|
||||
use settings::{default_settings, handle_settings_file_changes, watch_config_file, SettingsStore};
|
||||
use std::path::{self, Path, PathBuf};
|
||||
use std::path::{Path, PathBuf};
|
||||
use std::sync::Arc;
|
||||
use std::time::Duration;
|
||||
use std::{cmp, env, fs};
|
||||
use util::channel::{RELEASE_CHANNEL, RELEASE_CHANNEL_NAME};
|
||||
use util::http::{self, HttpClient};
|
||||
use util::http::{self};
|
||||
use util::paths::{self, EMBEDDINGS_DIR};
|
||||
use zed::languages;
|
||||
|
||||
|
|
Loading…
Reference in a new issue