torii_lib/vcs/mod.rs
1//! Version-control core: libgit2-based wrappers around the operations
2//! that touch the object database (commit, tag, snapshot, reauthor,
3//! scanner, patch). Everything in here is purely local; network ops
4//! live in [`crate::workspace`] (mirror / remote / workspace) and
5//! platform-side APIs live in [`crate::platforms`].
6
7pub mod core;
8pub mod core_extensions;
9pub mod core_tag;
10pub mod sign;
11pub mod tag;
12pub mod snapshot;
13pub mod patch;
14pub mod history_reauthor;
15pub mod commit_scan;
16pub mod scanner;