axgf-rs 0.1.0

Reference implementation of the Axiom Genealogy Format (AXGF) 1.0 — a stateless JSON-boundary library for creating, validating, importing, exporting, and converting genealogy bundles (GEDCOM 5.5.1 supported).
Documentation
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: Apache-2.0
//! # convert — foreign-format ingestion
//!
//! One converter per supported source format. Each returns a flat-bundle
//! JSON wrapped in an [`crate::boundary::envelope::Envelope`]; downstream
//! validation and CRUD then work identically to any other bundle.
//!
//! Currently: [`gedcom`] for GEDCOM 5.5.1 (behind the `gedcom` feature).

#[cfg(feature = "gedcom")]
pub mod gedcom;