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,7 +1,6 @@
pub mod assets;
pub mod language;
pub mod menus;
pub mod people_panel;
#[cfg(any(test, feature = "test-support"))]
pub mod test;
pub mod theme_selector;
@ -19,6 +18,7 @@ use gpui::{
ModelHandle, MutableAppContext, PathPromptOptions, Task, ViewContext,
};
use parking_lot::Mutex;
pub use people_panel;
use people_panel::PeoplePanel;
use postage::watch;
pub use project::{self, fs};