[package]
edition = "2021"
name = "vcard_parser"
version = "0.2.3"
authors = ["Norman Kerr"]
build = false
include = [
"src/",
"LICENSE",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parses and validates vCard data according to RFC 6350 specification."
documentation = "https://docs.rs/vcard_parser"
readme = "README.md"
keywords = [
"vcard",
"parser",
"rfc6350",
]
categories = [
"parsing",
"data-structures",
"email",
"encoding",
]
license = "MIT"
repository = "https://github.com/kenianbei/vcard_parser"
[lib]
name = "vcard_parser"
path = "src/lib.rs"
[dependencies.language-tags]
version = "0.3"
[dependencies.nom]
version = "8"
[dependencies.time]
version = "0.3"
features = [
"parsing",
"formatting",
]
[dependencies.url]
version = "2.5"