/// Macro for prefixed status logging to stderr (only when stderr is a terminal).
///
/// Usage:
/// ```ignore
/// log_status!("deploy", "Uploading {} to {}", artifact, server);
/// log_status!("release", "Version bumped to {}", version);
/// ```
// Re-export everything from core for ergonomic library use
// Users can write `homeboy::config` instead of `homeboy::core::config`
pub use changelog;
pub use version;
pub use *;
/// Helper for `#[serde(skip_serializing_if = "is_zero")]` on `usize` fields.
/// Helper for `#[serde(skip_serializing_if = "is_zero_u32")]` on `u32` fields.