Skip to main content

reference_query/
lib.rs

1//! rq — a code navigation engine.
2//!
3//! The goal is to reach the file, symbol, or definition a developer is most
4//! likely looking for as fast as possible — not to enumerate every match.
5//! See `docs/ARCHITECTURE.md` for the design these modules implement.
6
7#[macro_use]
8pub mod trace;
9
10pub mod cli;
11pub mod core;
12pub mod index;
13pub mod lang;
14pub mod search;
15pub mod store;