callisto-cli 0.3.3

Callisto Release Engine — Polyglot monorepo versioning and release management CLI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Standalone callisto CLI binary library target (`wrapper` feature for callisto-moon).

#![allow(clippy::result_large_err)]

pub mod cli;
pub mod commands;
pub mod error;
pub mod output;
pub mod render;
pub mod runner;
pub mod tty;
pub mod workspace;

pub use cli::{Cli, Command, GlobalArgs, OutputFormat};
pub use error::CliError;
pub use output::{log_line, write_json};
pub use runner::CliCommandRunner;