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