validator 0.18.1

Common validation functions (email, url, length, ...) and trait - to be used with `validator_derive`
Documentation
[package]
name = "validator"
version = "0.18.1"
authors = ["Vincent Prouillet <hello@vincentprouillet.com"]
license = "MIT"
description = "Common validation functions (email, url, length, ...) and trait - to be used with `validator_derive`"
homepage = "https://github.com/Keats/validator"
repository = "https://github.com/Keats/validator"
keywords = ["validation", "api", "validator"]
edition = "2021"
readme = "../README.md"

[dependencies]
url = "2"
regex = { version = "1", default-features = false, features = ["std"] }
once_cell = "1.18.0"
idna = "0.5"
serde = "1"
serde_derive = "1"
serde_json = "1"
validator_derive = { version = "0.18", path = "../validator_derive", optional = true }
card-validate = { version = "2.3", optional = true }
unic-ucd-common = { version = "0.9", optional = true }
indexmap = { version = "2.0.0", features = ["serde"], optional = true }

[features]
card = ["card-validate"]
unic = ["unic-ucd-common"]
derive = ["validator_derive"]