cratestack-cli 0.3.4

Rust-native schema-first framework for typed HTTP APIs, generated clients, and backend services.
1
2
3
4
5
6
7
8
9
10
11
12
13
//! `cratestack migrate` subcommands.
//!
//! Slice 5 ships `diff`. `verify` (replay against ephemeral DB) and
//! `drift` (introspect live DB) land in subsequent slices.

mod backend;
mod diff_cmd;
mod slug;

#[cfg(test)]
mod tests_diff;

pub(crate) use diff_cmd::handle_diff;