gedcom 0.2.2

A parser for GEDCOM files
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
edition = "2018"
name = "gedcom"
version = "0.2.2"
authors = ["Robert Pirtle <astropirtle@gmail.com>"]
include = ["Cargo.toml", "src/**/*.rs"]
description = "A parser for GEDCOM files"
readme = "readme.md"
keywords = ["genealogy", "gedcom", "parser", "gedcom-parser", "family-trees"]
license = "MIT"
repository = "https://github.com/pirtleshell/rust-gedcom/"

[lib]
name = "gedcom"
path = "src/lib.rs"

[[bin]]
name = "parse_gedcom"
path = "src/bin.rs"
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.serde_json]
version = "1.0"
optional = true
[dev-dependencies.serde_test]
version = "1.0.123"

[features]
default = []
json = ["serde", "serde_json"]