git_topic_stage/lib.rs
1// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
2// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
3// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
4// option. This file may not be copied, modified, or distributed
5// except according to those terms.
6
7#![warn(missing_docs)]
8// XXX(rust-1.66)
9#![allow(clippy::uninlined_format_args)]
10
11//! Git Topic Stage
12//!
13//! This library implements a staging workflow to queue candidate topic branches into a single
14//! integration branch. Candidate topics are merged together into an integration branch. Topics
15//! which have been merged previously and recieve a new update are removed from the set and placed
16//! back at the end of the list of topics to be merged. This way a single topic branch cannot cause
17//! starvation in the rest of the topics.
18//!
19//! See also [`gitworkflow`][gitworkflow].
20//!
21//! [gitworkflow]: https://github.com/rocketraman/gitworkflow
22
23mod stager;
24
25pub use stager::*;
26
27#[cfg(test)]
28mod test;