drep-ai 3.0.0

A local commit gate: runs the linters your repo configures, and sends changed code to an LLM for review
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Unit tests for the interactive wizard.
//!
//! Wired in via `#[cfg(test)] mod tests;` in `wizard.rs`. Every file here must
//! be declared below: Rust silently ignores a file no `mod` points at, which
//! once left four files of tests uncompiled in this repository while the count
//! still looked right.

mod flow;
mod keys;
mod models;
mod quirks;
mod support;

pub(crate) use support::{
    Catalog, Quirked, Recording, Scripted, deps, deps_with_env_set, number_of,
};