@@ -47,9 +47,9 @@ vcpkg install sqlite3
4747# Then set SQLITE3_LIB_PATH environment variable
4848```
4949
50- ### "Feature native-v2 not found"
50+ ### "Feature native-v3 not found"
5151
52- ** Symptom:** Build fails with ` error: unused manifest key: sqlitegraph/native-v2 `
52+ ** Symptom:** Build fails with ` error: unused manifest key: sqlitegraph-core /native-v3 `
5353
5454** Cause:** Native V2 is a feature flag, not a separate crate.
5555
@@ -58,7 +58,7 @@ vcpkg install sqlite3
5858``` toml
5959# In your Cargo.toml
6060[dependencies ]
61- sqlitegraph = { version = " 1.5.7 " , features = [" native-v2 " ] }
61+ sqlitegraph = { version = " 3.0 " , features = [" native-v3 " ] }
6262```
6363
6464### "Functionality mismatch: expected 7, found 5" (Internal)
@@ -125,7 +125,7 @@ for handle in handles {
125125}
126126```
127127
128- ** Solution (Native V2):** Native V2 also serializes writes via WAL. Use a similar approach.
128+ ** Solution (Native V2):** Native V3 also serializes writes via WAL. Use a similar approach.
129129
130130### "Node not found: 12345"
131131
@@ -222,7 +222,7 @@ println!("Cache hits: {}/{}", stats.cache_hits(), stats.cache_lookups());
222222 }
223223 ```
224224
225- 3 . ** Consider Native V2 for star-pattern graphs:**
225+ 3 . ** Consider Native V3 for star-pattern graphs:**
226226 ``` bash
227227 # Benchmark both backends
228228 time sqlitegraph --backend sqlite --db mygraph.db bfs --start 1 --max-depth 5
@@ -282,8 +282,8 @@ let graph = open_graph("mygraph.db", &cfg)?;
282282 let graph = open_graph (" mygraph.db" , & cfg )? ;
283283 ```
284284
285- 3 . ** Use Native V2 for write-heavy workloads:**
286- - Native V2 : 1.3-3.2x faster inserts
285+ 3 . ** Use Native V3 for write-heavy workloads:**
286+ - Native V3 : 1.3-3.2x faster inserts
287287
288288---
289289
@@ -400,7 +400,7 @@ let value = graph.kv_get(&key)?;
400400** Solution:** Upgrade to latest version:
401401``` toml
402402[dependencies ]
403- sqlitegraph = " 1.5.7 "
403+ sqlitegraph-core = " 3.0 "
404404```
405405
406406If the issue persists, the database may be corrupted:
0 commit comments