[package]
edition = "2021"
rust-version = "1.70"
name = "phonelib"
version = "1.0.3"
authors = ["Mohamad Al Zohbie <alzoubi528@gmail.com>"]
build = false
include = [
"src/**/*",
"benches/**/*",
"Cargo.toml",
"LICENSE",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A comprehensive library for phone number validation, formatting, parsing, and manipulation"
homepage = "https://github.com/mohamadzoh/phonelib"
documentation = "https://docs.rs/phonelib"
readme = "README.md"
keywords = [
"phone",
"validation",
"phonenumber",
"e164",
"international",
]
categories = [
"internationalization",
"text-processing",
"parsing",
]
license = "MIT"
repository = "https://github.com/mohamadzoh/phonelib"
[badges.maintenance]
status = "actively-developed"
[lib]
name = "phonelib"
path = "src/lib.rs"
[[bench]]
name = "phone_benchmark"
path = "benches/phone_benchmark.rs"
harness = false
[dependencies]
[dev-dependencies.criterion]
version = "0.8.1"
[profile.release]
lto = true
codegen-units = 1