qail-core 0.27.8

AST-native query builder - type-safe expressions, zero SQL strings
Documentation
//! Codebase analyzer for migration impact detection.
//!
//! Scans source files for QAIL queries and raw SQL to detect
//! breaking changes before migrations are applied.
//!
//! Supports tiered analysis:
//! - Rust files: semantic extraction plus semantic N+1 analysis
//! - Other files: parser-aware text scanning

mod impact;
pub mod rust_ast; // Public for LSP access to query_extractor
mod scanner;
mod text_qail;

pub use impact::{BreakingChange, MigrationImpact};
pub use rust_ast::{FetchMethod, QueryCall, SqlType, detect_query_calls};
pub use rust_ast::{RawSqlMatch, RustAnalyzer, detect_raw_sql, detect_raw_sql_in_file};
pub use scanner::{
    AnalysisMode, CodeReference, CodebaseScanner, FileAnalysis, QueryType, ScanResult,
};
pub use text_qail::{
    QAIL_ACTION_PREFIXES, TextLiteral, extract_qail_candidate_from_line, extract_text_literals,
    literal_offset_to_line_col, looks_like_qail_query, looks_like_sql_query, trim_query_bounds,
};
// N+1 detection
pub use rust_ast::{
    NPlusOneCode, NPlusOneDiagnostic, NPlusOneSeverity, detect_n_plus_one_in_dir,
    detect_n_plus_one_in_file,
};