turboreview 0.1.2

A terminal code-review tool for git: review working-tree changes and commits, stage files, leave line comments, and hand off to an AI agent.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Commit-log page size: how many commits to load initially and per "load more".
pub const COMMIT_PAGE: usize = 50;

pub mod app;
pub mod comments;
pub mod git;
pub mod highlight;
pub mod icons;
pub mod review;
pub mod skill;
pub mod storage;
pub mod theme;
pub mod tree;
pub mod ui;