Skip to main content

worktrunk/
lib.rs

1//! Git worktree management for parallel workflows.
2//!
3//! Worktrunk is a CLI tool — see <https://worktrunk.dev> for documentation
4//! and the [README](https://github.com/max-sixty/worktrunk) for an overview.
5//!
6//! The library API is not stable. If you're building tooling that integrates
7//! with worktrunk, please [open an issue](https://github.com/max-sixty/worktrunk/issues)
8//! to discuss your use case.
9
10pub mod config;
11pub mod git;
12pub mod path;
13pub mod shell;
14pub mod shell_exec;
15pub mod styling;
16pub mod sync;
17pub mod trace;
18pub mod utils;
19
20// Re-export HookType for convenience
21pub use git::HookType;