forked from huonw/unicode_names
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
50 lines (41 loc) · 1.31 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "unicode_names2"
edition = "2018"
rust-version = "1.63.0"
version = "1.2.2"
authors = [
"Huon Wilson <dbau.pp@gmail.com>",
"Kang Seonghoon <public+rust@mearie.org>",
"Valentin Lorentz <progval+git@progval.net>",
"Jeong YunWon <jeong@youknowone.org>",
]
homepage = "https://github.com/progval/unicode_names2"
repository = "https://github.com/progval/unicode_names2"
documentation = "https://docs.rs/unicode_names2/"
license = "(MIT OR Apache-2.0) AND Unicode-DFS-2016"
keywords = ["text", "unicode"]
readme = "README.md"
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).)
"""
[workspace]
members = [".", "generator"]
[features]
default = []
unstable = []
no_std = []
generator-timing = ["unicode_names2_generator/timing"]
[dev-dependencies.unicode_names2_macros]
path = "unicode_names2_macros"
version = ">=0.3, <2.0"
[dependencies]
phf = { version = "0.11.1", default-features = false }
[dev-dependencies]
rand = "0.8.5"
rand_xorshift = "0.3.0"
[build-dependencies]
unicode_names2_generator = { version = "1.2.2", path = "generator" }