cursus 0.3.0

Library crate for the cursus release management CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! GitHub Releases integration.
//!
//! Provides remote URL parsing and an abstract client trait
//! for creating GitHub Releases as a post-publish action.

pub mod client;
mod octocrab_client;
pub mod remote;

pub use client::PullRequest;
pub use octocrab_client::OctocrabGitHubClient;
pub use remote::GitHubRepo;