akar-migrate-0.1.18 is not a library.
Akar Migration Tool
Command-line tool to migrate an Akar C++ database to the pure-Rust Akar database.
Usage:
Flags:
--from <path>— source C++ database directory--to <path>— destination Rust database directory--skip-extract— skip the Python extraction step (assumesschema.jsonand Parquet files already present)
How it works:
- Extract schema + data from the C++ DB via Python (
export_cpp.py) - Connect to the destination Rust Akar database
- Reconstruct DDL (node tables, then rel tables) and
COPYdata from Parquet - Clean up temporary files
Idempotent: re-running skips tables already present in the destination.