torii-lib 0.10.0

Domain library of the torii git client — VCS operations, platform clients (GitHub/GitLab/Gitea/…), workspaces, config and auth. No CLI/TUI. Part of the Gitorii ecosystem (gitorii.com · torii.sh).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Version-control core: libgit2-based wrappers around the operations
//! that touch the object database (commit, tag, snapshot, reauthor,
//! scanner, patch). Everything in here is purely local; network ops
//! live in [`crate::workspace`] (mirror / remote / workspace) and
//! platform-side APIs live in [`crate::platforms`].

pub mod core;
pub mod core_extensions;
pub mod core_tag;
pub mod sign;
pub mod tag;
pub mod snapshot;
pub mod patch;
pub mod history_reauthor;
pub mod commit_scan;
pub mod scanner;