releasaurus-core 0.16.0

A comprehensive release automation tool that streamlines the software release process across multiple programming languages and forge platforms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Unified interface for Git forge platforms (GitHub, GitLab, Gitea).
//!
//! Provides token-based authentication, release management, pull request
//! operations, and repository information through common traits.

/// Configuration and authentication for forge platforms.
pub mod config;
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;