-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (41 loc) · 1.28 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
[package]
name = "tengwar"
description = "Transliterate text into J.R.R. Tolkien's Tengwar."
version = "1.1.0"
authors = ["Yaulendil"]
repository = "https://github.com/yaulendil/tengwar-rs"
readme = "README.md"
exclude = ["/.idea", "*.sh", "*.txt"]
categories = ["command-line-utilities", "text-processing"]
keywords = ["text", "unicode", "tengwar", "quenya", "sindarin"]
edition = "2021"
license = "Apache-2.0"
[profile.release]
codegen-units = 1
lto = true
opt-level = "s"
panic = "abort"
[dependencies]
cfg-if = "1.0.0"
itertools = "0.11.0"
unicode-normalization = "0.1.22"
[dependencies.clap]
version = "4.0.18"
features = ["cargo", "derive", "wrap_help"]
[dependencies.serde]
version = "1.0.147"
features = ["derive"]
optional = true
[features]
default = []
# Use the codepoints in the ConScript Unicode Registry, rather than the official
# codepoints in the Supplementary Multilingual Plane. This feature does not
# yet do anything, because the codepoints in the SMP have not been approved,
# but it exists in advance for any dependents to opt out of the switch ahead
# of time.
# We may be waiting for a while.
csur = []
# Use standard Unicode characters for dot punctuation.
dots-standard = []
# Enable custom transcription modes, defined by config file.
mode-custom = ["serde"]