reference-query 0.39.1

Reference Query — find the code you're looking for.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! rq — a code navigation engine.
//!
//! The goal is to reach the file, symbol, or definition a developer is most
//! likely looking for as fast as possible — not to enumerate every match.
//! See `docs/ARCHITECTURE.md` for the design these modules implement.

#[macro_use]
pub mod profile;
pub mod trace;

pub mod cli;
pub mod core;
pub mod index;
pub mod lang;
pub mod search;
pub mod store;