gobby-code 1.3.3

Fast Rust CLI for Gobby's code index — AST-aware search, symbol navigation, and dependency graph
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Git-aware file discovery using the `ignore` crate.
//! Respects .gitignore and exclude patterns.

mod classification;
mod discovery;
mod generated;
mod hidden;
mod types;

pub use classification::{
    classify_explicit_file_with_options, classify_file, content_language, is_content_indexable,
};
pub use discovery::{discover_files, discover_files_with_options};
pub use types::{DiscoveryOptions, FileClassification};

#[cfg(test)]
mod tests;