commit-wizard 0.0.2

A lightweight CLI assistant for Conventional Commits, semantic versioning, and changelog automation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod runtime;
pub mod types;

pub struct ResolvedRuntime {
    pub behavior: ResolvedBehavior,
    pub rules: ResolvedRules,
    pub sources: ResolutionSources,
    pub repo_config_path: Option<PathBuf>,
    pub global_config_path: Option<PathBuf>,
    pub registry: Option<ResolvedRegistry>,
}