basemind 0.0.1

Code-map MCP server + scanner — content-addressed, Fjall-backed inverted index over tree-sitter outlines
1
2
3
4
5
6
7
8
9
10
11
12
13
// Migration chain across schema versions.
//
// Each function rewrites a parsed TOML/JSON Value from version N → N+1.
// `migrate_to_latest` walks the chain. v1 is current, so the chain is empty.

use serde_json::Value;

use super::ConfigError;

#[allow(dead_code)] // wired in when v2 lands
pub fn migrate_to_latest(value: Value) -> Result<Value, ConfigError> {
    Ok(value)
}