releasaurus-core 0.20.0

A comprehensive release automation tool that streamlines the software release process across multiple programming languages and forge platforms
Documentation
//! Forge platform abstractions and implementations.
//!
//! The [`traits::Forge`] trait defines the common interface.
//! Implementations: [`github`], [`gitlab`], [`gitea`], [`forgejo`],
//! [`azure_devops`], [`local`].
//! [`manager::ForgeManager`] wraps any `Forge` with caching,
//! logging, and dry-run support.

pub mod azure_devops;
pub mod config;
pub mod forgejo;
pub mod gitea;
pub mod github;
pub mod gitlab;
pub mod local;
pub mod manager;
pub mod request;
pub mod traits;

#[cfg(test)]
#[cfg(feature = "_integration_tests")]
mod tests;