Skip to main content

cargo_governor/
lib.rs

1//! Public library surface for `cargo-governor`.
2//!
3//! The CLI binary is the primary transport for end users.
4//! Programmatic integrations should prefer the application-layer API
5//! re-exported here from `governor-application`.
6
7#![allow(clippy::multiple_crate_versions)]
8
9pub mod error;
10
11pub use error::{CommandExitCode, Error, Result};
12pub use governor_application::{
13    AgentContext, ApplicationError, ApplicationResult, agent, owners, ports, release,
14};