rustyroad 1.7.3

Rusty Road is a framework written in Rust that is based on Ruby on Rails. It is designed to provide the familiar conventions and ease of use of Ruby on Rails, while also taking advantage of the performance and efficiency of Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod detector;
mod finding;
mod patterns;
mod scan;

#[cfg(test)]
mod detector_test;

pub use finding::{BreakingChangeFinding, BreakingChangeKind};
pub use scan::{migration_directories, scan_all_up_migrations, scan_migration, scan_sql};

pub fn has_breaking_changes(findings: &[BreakingChangeFinding]) -> bool {
    !findings.is_empty()
}