nervusdb-core 1.0.3

Embeddable Graph Database Core (Rust)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Migration tools for converting legacy .synapsedb format to redb
//!
//! This module provides utilities to migrate data from NervusDB v1.x
//! (TypeScript + .synapsedb files) to v2.0 (Rust Core + redb).

#![cfg(not(target_arch = "wasm32"))]

pub mod legacy_reader;
pub mod migrator;

pub use legacy_reader::LegacyDatabase;
pub use migrator::{MigrationStats, migrate_database};