Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions crates/git_ui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ fuzzy.workspace = true
fuzzy_nucleo.workspace = true
git.workspace = true
gpui.workspace = true
http_client.workspace = true
itertools.workspace = true
language.workspace = true
language_model.workspace = true
Expand All @@ -55,6 +56,7 @@ serde.workspace = true
serde_json.workspace = true
settings.workspace = true
smallvec.workspace = true
smol.workspace = true
strum.workspace = true
sysinfo.workspace = true
task.workspace = true
Expand Down
2 changes: 2 additions & 0 deletions crates/git_ui/src/git_ui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ pub mod git_picker;
mod git_runtime_diagnostics;
pub mod multi_diff_view;
pub mod picker_prompt;
pub mod pr_review;
pub mod project_diff;
pub(crate) mod remote_output;
pub mod repository_selector;
Expand Down Expand Up @@ -109,6 +110,7 @@ pub fn init(cx: &mut App) {
staged_diff::StagedDiff::register(workspace, cx);
unstaged_diff::UnstagedDiff::register(workspace, cx);
branch_diff::BranchDiff::register(workspace, cx);
pr_review::register(workspace, cx);
CommitModal::register(workspace);
git_panel::register(workspace);
repository_selector::register(workspace);
Expand Down
Loading