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(crate) mod profile;
9pub(crate) mod trace;
10
11pub mod cli;
12pub(crate) mod core;
13pub(crate) mod index;
14pub(crate) mod lang;
15pub(crate) mod search;
16pub(crate) mod store;
17
18#[cfg(test)]
19mod tests;