khive-vcs-adapters 0.2.8

KG import/export format adapters — CSV, JSON, and future format support (ADR-036)
Documentation
// Copyright 2026 Haiyang Li. Licensed under Apache-2.0.
//
//! KG import/export format adapters. See `docs/protocol.md` for the
//! full pipeline description, parse strategy notes, and deferred format list.

mod error;
pub use error::AdapterError;

mod record;
pub use record::{EdgeRecord, EntityRecord};

mod adapter;
pub use adapter::FormatAdapter;

mod json_adapter;
pub use json_adapter::JsonFormatAdapter;

/// Phase P0: format names accepted by the v0.5 adapter registry.
pub const PHASE0_FORMATS: &[&str] = &["csv", "tsv", "json", "ndjson"];