gedcom 0.1.0

A parser for GEDCOM files
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![deny(clippy::pedantic)]

#[macro_use]
mod util;

pub mod parser;
pub mod tokenizer;
pub mod types;

mod tree;
pub use tree::GedcomData;