-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
94 lines (91 loc) · 1.51 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[package]
name = "hypher"
version = "0.1.5"
authors = ["Laurenz <[email protected]>"]
edition = "2021"
description = "hypher separates words into syllables."
repository = "https://github.com/typst/hypher"
readme = "README.md"
license = "MIT OR Apache-2.0"
categories = ["text-processing", "internationalization", "no-std"]
keywords = ["hyphenation", "syllables"]
exclude = ["patterns/*"]
[features]
default = ["alloc", "full"]
alloc = []
full = [
"afrikaans",
"albanian",
"belarusian",
"bulgarian",
"catalan",
"croatian",
"czech",
"danish",
"dutch",
"english",
"estonian",
"finnish",
"french",
"georgian",
"german",
"greek",
"hungarian",
"icelandic",
"italian",
"kurmanji",
"latin",
"lithuanian",
"mongolian",
"norwegian",
"polish",
"portuguese",
"russian",
"serbian",
"slovak",
"slovenian",
"spanish",
"swedish",
"turkish",
"turkmen",
"ukrainian",
]
afrikaans = []
albanian = []
belarusian = []
bulgarian = []
catalan = []
croatian = []
czech = []
danish = []
dutch = []
english = []
estonian = []
finnish = []
french = []
georgian = []
german = []
greek = []
hungarian = []
icelandic = []
italian = []
kurmanji = []
latin = []
lithuanian = []
mongolian = []
norwegian = []
polish = []
portuguese = []
russian = []
serbian = []
slovak = []
slovenian = []
spanish = []
swedish = []
turkish = []
turkmen = []
ukrainian = []
[workspace]
members = ["bench"]
[profile.dev.build-override]
opt-level = 1