-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (25 loc) · 698 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (25 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "gedcom"
version = "0.2.2"
authors = ["Robert Pirtle <astropirtle@gmail.com>"]
description = "A parser for GEDCOM files"
keywords = ["genealogy", "gedcom", "parser", "gedcom-parser", "family-trees"]
license = "MIT"
readme = "readme.md"
repository = "https://github.com/pirtleshell/rust-gedcom/"
edition = "2018"
include = ["Cargo.toml", "src/**/*.rs"]
[features]
default = []
json = ["serde", "serde_json"]
[dependencies]
serde = { version = "1.0", features = [ "derive" ], optional = true }
serde_json = { version = "1.0", optional = true }
[dev-dependencies]
serde_test = "1.0.123"
[lib]
name = "gedcom"
path = "src/lib.rs"
[[bin]]
name = "parse_gedcom"
path = "src/bin.rs"