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 profile;
9pub mod trace;
10
11pub mod cli;
12pub mod core;
13pub mod index;
14pub mod lang;
15pub mod search;
16pub mod store;