codebase-graph 1.3.0

Native codebaseGraph CLI and MCP server for local code knowledge graphs.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod command;
mod options;
mod output;

pub(in crate::adapters::cli) use command::run_watch;
pub(in crate::adapters::cli) use options::SetupOptions;

#[cfg(test)]
pub(super) use crate::api::{
    apply_watch_message, collect_poll_batch, collect_watch_batch, probe_native_watcher,
    watch_file_snapshot, watch_snapshot_diff, WatchChangeBatch, WatchEventFilter, WatchMessage,
};
#[cfg(test)]
pub(super) use options::{WatchBackend, WatchOptions};