#![warn(missing_docs)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![cfg_attr(not(test), deny(clippy::unwrap_used))]
#![cfg_attr(not(test), deny(clippy::expect_used))]
pub mod backup;
pub mod cargo;
pub mod change_detection;
pub mod commands;
pub mod compiler;
pub mod config;
pub mod error;
pub mod git;
pub mod graph;
pub mod mutation;
pub mod output;
pub mod release;
pub mod split;
pub mod sync;
pub mod targets;
pub mod test;
pub mod toml;
pub mod utils;
pub mod workspace;
pub use error::{RailError, RailResult};