1 2 3 4 5 6 7 8 9 10 11 12 13 14
#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(clippy::print_stderr)] #![warn(clippy::print_stdout)] pub mod config; pub use git::GitRepo; pub use snapshot::Branch; pub use snapshot::Snapshot; pub use stack::Stack; mod git; mod snapshot; mod stack;