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
//! Language-agnostic core: the common symbol model and repository identity.
//!
//! Nothing here knows about a specific language. Language plugins (`crate::lang`)
//! emit [`Symbol`]s; everything else in rq operates on that shape.

mod identity;
mod symbol;

pub use identity::RepoIdentity;
pub use symbol::{Kind, Symbol};