codebase-graph 1.5.1

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
15
16
#[derive(Debug, Clone)]
pub struct LadybugWriteRequest {
    pub db_path: String,
    pub worker_memory_bytes: u64,
    pub buffer_pool_bytes: u64,
    pub max_num_threads: u64,
    pub defer_hash_indexes: bool,
    pub include_fts: bool,
    pub schema_statements: Vec<String>,
    pub copy_statements: Vec<String>,
}

#[derive(Debug, Clone, Copy, Default, PartialEq, Eq)]
pub struct LadybugWriteMetrics {
    pub high_water_bytes: u64,
}