pgsafe 0.8.6

Static safety linter for PostgreSQL DDL migrations — catches unsafe schema changes before they lock or break production.
Documentation
1
2
3
4
5
6
//! `pgsafe` binary — a thin wrapper over the library's CLI entry point.
use clap::Parser;

fn main() -> std::process::ExitCode {
    pgsafe::cli::run(pgsafe::cli::Cli::parse().args)
}