gedcom-rs 0.1.0

A Rust library to parse and interact with GEDCOM data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# prog :=wc

build:
	cargo build
lint:
	cargo fmt
	cargo clippy -- -D warnings
test:
	cargo test
	cargo fmt
	cargo clippy -- -D warnings

all: build test

help:
	@echo "usage: make $(prog) [debug=1]"