scm_bisect/
lib.rs

1//! Reusable algorithms for identifying the first bad commit in a directed
2//! acyclic graph (similar to `git-bisect`). The intention is to provide support
3//! for various source control systems.
4
5#![warn(missing_docs)]
6#![warn(
7    clippy::all,
8    clippy::as_conversions,
9    clippy::clone_on_ref_ptr,
10    clippy::dbg_macro
11)]
12#![allow(clippy::too_many_arguments, clippy::blocks_in_if_conditions)]
13
14pub mod basic;
15pub mod search;
16
17#[cfg(test)]
18pub mod testing;