[package]
edition = "2018"
rust-version = "1.65.0"
name = "unicode_names2"
version = "3.1.0"
authors = [
"Huon Wilson <dbau.pp@gmail.com>",
"Kang Seonghoon <public+rust@mearie.org>",
"Valentin Lorentz <progval+git@progval.net>",
"Jeong YunWon <jeong@youknowone.org>",
]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Map characters to and from their name given in the Unicode standard.
This goes to great lengths to be as efficient as possible in both time
and space, with the full bidirectional tables weighing barely 500 KB
but still offering O(1)* look-up in both directions. (*more precisely,
O(length of name).)
"""
homepage = "https://github.com/progval/unicode_names2"
documentation = "https://docs.rs/unicode_names2/"
readme = "README.md"
keywords = [
"text",
"unicode",
]
license = "(MIT OR Apache-2.0) AND Unicode-DFS-2016"
repository = "https://github.com/progval/unicode_names2"
[features]
default = []
generator-timing = ["unicode_names2_generator/timing"]
no_std = []
unstable = []
[lib]
name = "unicode_names2"
path = "src/lib.rs"
[[example]]
name = "character"
path = "examples/character.rs"
[[example]]
name = "count"
path = "examples/count.rs"
[[example]]
name = "name"
path = "examples/name.rs"
[dependencies.phf]
version = "0.11.1"
default-features = false
[dev-dependencies.rand]
version = "0.8.5"
[dev-dependencies.rand_xorshift]
version = "0.3.0"
[dev-dependencies.unicode_names2_macros]
version = ">=0.3, <4.0"
[build-dependencies.unicode_names2_generator]
version = "3.1.0"