cargo-governor 2.0.3

Machine-First, LLM-Ready, CI/CD-Native release automation tool for Rust crates
Documentation
//! Release service module

pub mod analyze;
pub mod bump;
pub mod check;
pub mod plan;
pub mod publish;
pub mod resume;
pub mod simulate;
pub mod status;

pub use analyze::AnalyzeService;
pub use bump::BumpService;
pub use check::PreCheckService as CheckService;
pub use plan::PlanService;
pub use publish::PublishService;
pub use resume::ResumeService;
pub use simulate::SimulateService;
pub use status::StatusService;