[package]
edition = "2021"
rust-version = "1.74"
name = "parse-author"
version = "0.1.1"
authors = ["trananhtung"]
build = false
exclude = [
"/.github",
"/.gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = 'Parse an npm-style author string "Name <email> (url)" into its name, email, and url. A faithful port of the parse-author npm package. Zero dependencies, no_std.'
homepage = "https://github.com/trananhtung/parse-author"
documentation = "https://docs.rs/parse-author"
readme = "README.md"
keywords = [
"author",
"parse",
"package-json",
"npm",
"person",
]
categories = [
"parser-implementations",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/trananhtung/parse-author"
[lib]
name = "parse_author"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies]
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"