Extract people_panel into its own crate

This commit is contained in:
Antonio Scandurra 2021-10-05 14:36:38 +02:00
parent cd6378e848
commit 47b29a5f21
6 changed files with 28 additions and 7 deletions

View file

@ -1,6 +1,7 @@
// Allow binary to be called Zed for a nice application menu when running executable direcly
#![allow(non_snake_case)]
use client::{self, http, ChannelList, UserStore};
use fs::OpenOptions;
use gpui::AssetSource;
use log::LevelFilter;
@ -10,12 +11,8 @@ use std::{fs, path::PathBuf, sync::Arc};
use theme::ThemeRegistry;
use workspace::{self, settings, OpenNew};
use zed::{
self,
assets::Assets,
client::{self, http, ChannelList, UserStore},
editor,
fs::RealFs,
language, menus, people_panel, theme_selector, AppState, OpenParams, OpenPaths,
self, assets::Assets, fs::RealFs, language, menus, theme_selector, AppState, OpenParams,
OpenPaths,
};
fn main() {