tgqe 0.0.2

The Great Qin Empire —— A centralized system for integrating and summarizing common compiler front-end library errors and span error output libraries, with optional Ariadne integration.
/**

 *  - Copyright (c) 星灿长风v(Starwindv) 2026/08/03
 *  - License: BSD-3
 *  - Author: 星灿长风v(StarWindv)
 *  - Location: tgqe/src/modules/tests/mod.rs
 */
#[cfg(any(
    feature = "renderer",
    feature = "store-to-db"
))]
mod config;

#[cfg(all(
    feature = "renderer",
    feature = "store-to-db"
))]
mod bus;

mod error_info;
mod line_code;
mod reader;

#[cfg(feature = "store-to-db")]
mod sqlite;

#[cfg(feature = "trans-chumsky")]
mod trans_chumsky;

#[cfg(feature = "trans-winnow")]
mod trans_winnow;