[package]
edition = "2018"
name = "precis-profiles"
version = "0.1.13"
authors = ["Santiago Carot-Nemesio <sancane@gmail.com"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Implementation of the PRECIS Framework: Preparation, Enforcement,
and Comparison of Internationalized Strings Representing
Usernames and Passwords as defined in rfc8265; and Nicknames as
defined in rfc8266.
"""
homepage = "https://github.com/sancane/precis"
documentation = "https://docs.rs/precis-profiles"
readme = "README.md"
keywords = [
"precis",
"profiles",
"rfc8264",
"rfc8265",
"rfc8266",
]
categories = [
"text-processing",
"internationalization",
]
license = "MIT/Apache-2.0"
repository = "https://github.com/sancane/precis"
[features]
networking = [
"precis-core/networking",
"precis-tools/networking",
]
[lib]
name = "precis_profiles"
path = "src/lib.rs"
[[test]]
name = "nicknames"
path = "tests/nicknames.rs"
[[test]]
name = "passwords"
path = "tests/passwords.rs"
[[test]]
name = "usernames"
path = "tests/usernames.rs"
[dependencies.lazy_static]
version = "1.4.0"
[dependencies.precis-core]
version = "0.1.11"
[dependencies.unicode-normalization]
version = "0.1.24"
[build-dependencies.precis-tools]
version = "0.1.9"