cargo-governor 2.0.3

Machine-First, LLM-Ready, CI/CD-Native release automation tool for Rust crates
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Public library surface for `cargo-governor`.
//!
//! The CLI binary is the primary transport for end users.
//! Programmatic integrations should prefer the application-layer API
//! re-exported here from `governor-application`.

#![allow(clippy::multiple_crate_versions)]

pub mod error;

pub use error::{CommandExitCode, Error, Result};
pub use governor_application::{
    AgentContext, ApplicationError, ApplicationResult, agent, owners, ports, release,
};