cartog 0.30.2

Code graph indexer for LLM coding agents. Map your codebase, navigate by graph.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Tests for the ide command modules, split by concern.

pub(super) fn args() -> Vec<String> {
    vec!["serve".into()]
}

pub(super) fn args_watch() -> Vec<String> {
    vec!["serve".into(), "--watch".into()]
}

mod catalogue;
mod merge;
mod picker;
mod run;