-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
55 lines (47 loc) · 1.3 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
51
52
53
54
55
[package]
name = "human_name"
version = "2.0.4"
authors = ["David Judd <cargo@davidjudd.net>"]
description = "A library for parsing and comparing human names"
keywords = ["human", "name", "language", "nlp"]
categories = ["parsing", "text-processing", "command-line-utilities",]
license = "Apache-2.0"
repository = "https://github.com/djudd/human-name"
documentation = "https://docs.rs/human_name/"
rust-version = "1.52"
edition = "2018"
[dependencies]
crossbeam-utils = "0.8"
unicode-segmentation = "1.9"
unicode-normalization = "0.1"
unicode-case-mapping = "0.4"
unidecode = "0.3"
libc = { version = "0.2", optional = true }
phf = "0.11"
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }
smallvec = { features = ["union"], version = "1.9" }
compact_str = { version = "0.7.1", features = ["serde"] }
[dev-dependencies]
alloc_counter = "0.0"
[build-dependencies]
phf_codegen = "0.11"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[features]
default = []
name_eq_hash = []
serialization = ["serde", "serde_json"]
bench = []
ffi = ["libc"]
[profile.release]
lto = "thin"
[profile.bench]
debug = true
[[bin]]
name = "human_name"
doc = false
required-features = ["serialization"]
[lib]
name = "human_name"
crate-type = ["rlib", "cdylib"]