otl-normalizer 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- otl_normalizer-0.0.1/Cargo.lock +2721 -0
- otl_normalizer-0.0.1/Cargo.toml +42 -0
- otl_normalizer-0.0.1/LICENSE +201 -0
- otl_normalizer-0.0.1/PKG-INFO +17 -0
- otl_normalizer-0.0.1/README.md +10 -0
- otl_normalizer-0.0.1/fea-rs/Cargo.toml +54 -0
- otl_normalizer-0.0.1/fea-rs/README.md +114 -0
- otl_normalizer-0.0.1/fea-rs/benches/parsing.rs +31 -0
- otl_normalizer-0.0.1/fea-rs/src/bin/compile.rs +209 -0
- otl_normalizer-0.0.1/fea-rs/src/bin/highlight.rs +52 -0
- otl_normalizer-0.0.1/fea-rs/src/bin/parse_test.rs +120 -0
- otl_normalizer-0.0.1/fea-rs/src/bin/ttx_test.rs +84 -0
- otl_normalizer-0.0.1/fea-rs/src/common/glyph_class.rs +98 -0
- otl_normalizer-0.0.1/fea-rs/src/common/glyph_map.rs +199 -0
- otl_normalizer-0.0.1/fea-rs/src/common.rs +130 -0
- otl_normalizer-0.0.1/fea-rs/src/compile/compile_ctx.rs +2375 -0
- otl_normalizer-0.0.1/fea-rs/src/compile/compiler.rs +184 -0
- otl_normalizer-0.0.1/fea-rs/src/compile/error.rs +100 -0
- otl_normalizer-0.0.1/fea-rs/src/compile/feature_writer.rs +956 -0
- otl_normalizer-0.0.1/fea-rs/src/compile/features.rs +760 -0
- otl_normalizer-0.0.1/fea-rs/src/compile/glyph_range.rs +270 -0
- otl_normalizer-0.0.1/fea-rs/src/compile/glyphsapp_syntax_ext.rs +233 -0
- otl_normalizer-0.0.1/fea-rs/src/compile/language_system.rs +73 -0
- otl_normalizer-0.0.1/fea-rs/src/compile/lookups/contextual.rs +844 -0
- otl_normalizer-0.0.1/fea-rs/src/compile/lookups.rs +1302 -0
- otl_normalizer-0.0.1/fea-rs/src/compile/metrics.rs +385 -0
- otl_normalizer-0.0.1/fea-rs/src/compile/opts.rs +107 -0
- otl_normalizer-0.0.1/fea-rs/src/compile/output.rs +192 -0
- otl_normalizer-0.0.1/fea-rs/src/compile/tables/base.rs +61 -0
- otl_normalizer-0.0.1/fea-rs/src/compile/tables/gdef.rs +177 -0
- otl_normalizer-0.0.1/fea-rs/src/compile/tables/name.rs +223 -0
- otl_normalizer-0.0.1/fea-rs/src/compile/tables/os2.rs +136 -0
- otl_normalizer-0.0.1/fea-rs/src/compile/tables/stat.rs +156 -0
- otl_normalizer-0.0.1/fea-rs/src/compile/tables.rs +83 -0
- otl_normalizer-0.0.1/fea-rs/src/compile/tags.rs +62 -0
- otl_normalizer-0.0.1/fea-rs/src/compile/validate.rs +1528 -0
- otl_normalizer-0.0.1/fea-rs/src/compile/variations.rs +275 -0
- otl_normalizer-0.0.1/fea-rs/src/compile.rs +164 -0
- otl_normalizer-0.0.1/fea-rs/src/diagnostic.rs +207 -0
- otl_normalizer-0.0.1/fea-rs/src/lib.rs +22 -0
- otl_normalizer-0.0.1/fea-rs/src/parse/context.rs +480 -0
- otl_normalizer-0.0.1/fea-rs/src/parse/grammar/feature.rs +279 -0
- otl_normalizer-0.0.1/fea-rs/src/parse/grammar/glyph.rs +291 -0
- otl_normalizer-0.0.1/fea-rs/src/parse/grammar/gpos.rs +228 -0
- otl_normalizer-0.0.1/fea-rs/src/parse/grammar/gsub.rs +215 -0
- otl_normalizer-0.0.1/fea-rs/src/parse/grammar/metrics.rs +537 -0
- otl_normalizer-0.0.1/fea-rs/src/parse/grammar/mod.rs +436 -0
- otl_normalizer-0.0.1/fea-rs/src/parse/grammar/table.rs +533 -0
- otl_normalizer-0.0.1/fea-rs/src/parse/grammar/variations.rs +95 -0
- otl_normalizer-0.0.1/fea-rs/src/parse/lexer/lexeme.rs +574 -0
- otl_normalizer-0.0.1/fea-rs/src/parse/lexer/token_set.rs +240 -0
- otl_normalizer-0.0.1/fea-rs/src/parse/lexer.rs +466 -0
- otl_normalizer-0.0.1/fea-rs/src/parse/parser.rs +489 -0
- otl_normalizer-0.0.1/fea-rs/src/parse/source.rs +370 -0
- otl_normalizer-0.0.1/fea-rs/src/parse/tree.rs +53 -0
- otl_normalizer-0.0.1/fea-rs/src/parse.rs +120 -0
- otl_normalizer-0.0.1/fea-rs/src/tests/compile.rs +139 -0
- otl_normalizer-0.0.1/fea-rs/src/tests/parse.rs +118 -0
- otl_normalizer-0.0.1/fea-rs/src/tests.rs +4 -0
- otl_normalizer-0.0.1/fea-rs/src/token_tree/cursor.rs +296 -0
- otl_normalizer-0.0.1/fea-rs/src/token_tree/edit.rs +148 -0
- otl_normalizer-0.0.1/fea-rs/src/token_tree/rewrite.rs +363 -0
- otl_normalizer-0.0.1/fea-rs/src/token_tree/stack.rs +65 -0
- otl_normalizer-0.0.1/fea-rs/src/token_tree/token.rs +585 -0
- otl_normalizer-0.0.1/fea-rs/src/token_tree/typed.rs +1786 -0
- otl_normalizer-0.0.1/fea-rs/src/token_tree.rs +648 -0
- otl_normalizer-0.0.1/fea-rs/src/util/highlighting.rs +180 -0
- otl_normalizer-0.0.1/fea-rs/src/util/paths.rs +116 -0
- otl_normalizer-0.0.1/fea-rs/src/util/pretty_diff.rs +241 -0
- otl_normalizer-0.0.1/fea-rs/src/util/ttx.rs +893 -0
- otl_normalizer-0.0.1/fea-rs/src/util.rs +23 -0
- otl_normalizer-0.0.1/fontdrasil/Cargo.toml +26 -0
- otl_normalizer-0.0.1/fontdrasil/README.md +11 -0
- otl_normalizer-0.0.1/fontdrasil/build.rs +82 -0
- otl_normalizer-0.0.1/fontdrasil/data/aglfn.txt +695 -0
- otl_normalizer-0.0.1/fontdrasil/data/glyphlist.txt +4325 -0
- otl_normalizer-0.0.1/fontdrasil/src/agl.rs +197 -0
- otl_normalizer-0.0.1/fontdrasil/src/coords.rs +734 -0
- otl_normalizer-0.0.1/fontdrasil/src/lib.rs +10 -0
- otl_normalizer-0.0.1/fontdrasil/src/orchestration.rs +306 -0
- otl_normalizer-0.0.1/fontdrasil/src/paths.rs +250 -0
- otl_normalizer-0.0.1/fontdrasil/src/piecewise_linear_map.rs +145 -0
- otl_normalizer-0.0.1/fontdrasil/src/types.rs +359 -0
- otl_normalizer-0.0.1/fontdrasil/src/util.rs +192 -0
- otl_normalizer-0.0.1/fontdrasil/src/variations.rs +1791 -0
- otl_normalizer-0.0.1/otl-normalizer/Cargo.toml +21 -0
- otl_normalizer-0.0.1/otl-normalizer/LICENSE +201 -0
- otl_normalizer-0.0.1/otl-normalizer/README.md +10 -0
- otl_normalizer-0.0.1/otl-normalizer/src/args.rs +52 -0
- otl_normalizer-0.0.1/otl-normalizer/src/common.rs +455 -0
- otl_normalizer-0.0.1/otl-normalizer/src/error.rs +23 -0
- otl_normalizer-0.0.1/otl-normalizer/src/gdef.rs +104 -0
- otl_normalizer-0.0.1/otl-normalizer/src/glyph_names.rs +155 -0
- otl_normalizer-0.0.1/otl-normalizer/src/gpos/cursive.rs +75 -0
- otl_normalizer-0.0.1/otl-normalizer/src/gpos/marks.rs +369 -0
- otl_normalizer-0.0.1/otl-normalizer/src/gpos/pairpos.rs +251 -0
- otl_normalizer-0.0.1/otl-normalizer/src/gpos/test_helpers.rs +120 -0
- otl_normalizer-0.0.1/otl-normalizer/src/gpos.rs +669 -0
- otl_normalizer-0.0.1/otl-normalizer/src/gsub.rs +16 -0
- otl_normalizer-0.0.1/otl-normalizer/src/lib.rs +19 -0
- otl_normalizer-0.0.1/otl-normalizer/src/main.rs +85 -0
- otl_normalizer-0.0.1/otl-normalizer/src/variations.rs +43 -0
- otl_normalizer-0.0.1/pyproject.toml +32 -0
|
@@ -0,0 +1,2721 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "aho-corasick"
|
|
13
|
+
version = "1.1.3"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"memchr",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "android_system_properties"
|
|
22
|
+
version = "0.1.5"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"libc",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "anes"
|
|
31
|
+
version = "0.1.6"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "ansi_term"
|
|
37
|
+
version = "0.12.1"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"winapi",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "anstream"
|
|
46
|
+
version = "0.6.20"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192"
|
|
49
|
+
dependencies = [
|
|
50
|
+
"anstyle",
|
|
51
|
+
"anstyle-parse",
|
|
52
|
+
"anstyle-query",
|
|
53
|
+
"anstyle-wincon",
|
|
54
|
+
"colorchoice",
|
|
55
|
+
"is_terminal_polyfill",
|
|
56
|
+
"utf8parse",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "anstyle"
|
|
61
|
+
version = "1.0.11"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "anstyle-parse"
|
|
67
|
+
version = "0.2.7"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
70
|
+
dependencies = [
|
|
71
|
+
"utf8parse",
|
|
72
|
+
]
|
|
73
|
+
|
|
74
|
+
[[package]]
|
|
75
|
+
name = "anstyle-query"
|
|
76
|
+
version = "1.1.4"
|
|
77
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
78
|
+
checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
|
|
79
|
+
dependencies = [
|
|
80
|
+
"windows-sys 0.60.2",
|
|
81
|
+
]
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "anstyle-wincon"
|
|
85
|
+
version = "3.0.10"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
|
|
88
|
+
dependencies = [
|
|
89
|
+
"anstyle",
|
|
90
|
+
"once_cell_polyfill",
|
|
91
|
+
"windows-sys 0.60.2",
|
|
92
|
+
]
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "anyhow"
|
|
96
|
+
version = "1.0.99"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100"
|
|
99
|
+
|
|
100
|
+
[[package]]
|
|
101
|
+
name = "arrayvec"
|
|
102
|
+
version = "0.7.6"
|
|
103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
104
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
105
|
+
|
|
106
|
+
[[package]]
|
|
107
|
+
name = "ascii_plist_derive"
|
|
108
|
+
version = "0.1.0"
|
|
109
|
+
dependencies = [
|
|
110
|
+
"proc-macro2",
|
|
111
|
+
"quote",
|
|
112
|
+
"syn",
|
|
113
|
+
]
|
|
114
|
+
|
|
115
|
+
[[package]]
|
|
116
|
+
name = "autocfg"
|
|
117
|
+
version = "1.5.0"
|
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
120
|
+
|
|
121
|
+
[[package]]
|
|
122
|
+
name = "base64"
|
|
123
|
+
version = "0.22.1"
|
|
124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
125
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
126
|
+
|
|
127
|
+
[[package]]
|
|
128
|
+
name = "bincode"
|
|
129
|
+
version = "1.3.3"
|
|
130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
131
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
132
|
+
dependencies = [
|
|
133
|
+
"serde",
|
|
134
|
+
]
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "bindgen"
|
|
138
|
+
version = "0.70.1"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "f49d8fed880d473ea71efb9bf597651e77201bdd4893efe54c9e5d65ae04ce6f"
|
|
141
|
+
dependencies = [
|
|
142
|
+
"bitflags",
|
|
143
|
+
"cexpr",
|
|
144
|
+
"clang-sys",
|
|
145
|
+
"itertools",
|
|
146
|
+
"log",
|
|
147
|
+
"prettyplease",
|
|
148
|
+
"proc-macro2",
|
|
149
|
+
"quote",
|
|
150
|
+
"regex",
|
|
151
|
+
"rustc-hash",
|
|
152
|
+
"shlex",
|
|
153
|
+
"syn",
|
|
154
|
+
]
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "bitflags"
|
|
158
|
+
version = "2.9.4"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394"
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "bumpalo"
|
|
164
|
+
version = "3.19.0"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
167
|
+
|
|
168
|
+
[[package]]
|
|
169
|
+
name = "bytemuck"
|
|
170
|
+
version = "1.23.2"
|
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
+
checksum = "3995eaeebcdf32f91f980d360f78732ddc061097ab4e39991ae7a6ace9194677"
|
|
173
|
+
dependencies = [
|
|
174
|
+
"bytemuck_derive",
|
|
175
|
+
]
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "bytemuck_derive"
|
|
179
|
+
version = "1.10.1"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "4f154e572231cb6ba2bd1176980827e3d5dc04cc183a75dea38109fbdd672d29"
|
|
182
|
+
dependencies = [
|
|
183
|
+
"proc-macro2",
|
|
184
|
+
"quote",
|
|
185
|
+
"syn",
|
|
186
|
+
]
|
|
187
|
+
|
|
188
|
+
[[package]]
|
|
189
|
+
name = "bytes"
|
|
190
|
+
version = "1.10.1"
|
|
191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
193
|
+
|
|
194
|
+
[[package]]
|
|
195
|
+
name = "camino"
|
|
196
|
+
version = "1.2.0"
|
|
197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
+
checksum = "e1de8bc0aa9e9385ceb3bf0c152e3a9b9544f6c4a912c8ae504e80c1f0368603"
|
|
199
|
+
dependencies = [
|
|
200
|
+
"serde_core",
|
|
201
|
+
]
|
|
202
|
+
|
|
203
|
+
[[package]]
|
|
204
|
+
name = "cargo-platform"
|
|
205
|
+
version = "0.1.9"
|
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
+
checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
|
|
208
|
+
dependencies = [
|
|
209
|
+
"serde",
|
|
210
|
+
]
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "cargo_metadata"
|
|
214
|
+
version = "0.19.2"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba"
|
|
217
|
+
dependencies = [
|
|
218
|
+
"camino",
|
|
219
|
+
"cargo-platform",
|
|
220
|
+
"semver",
|
|
221
|
+
"serde",
|
|
222
|
+
"serde_json",
|
|
223
|
+
"thiserror",
|
|
224
|
+
]
|
|
225
|
+
|
|
226
|
+
[[package]]
|
|
227
|
+
name = "cast"
|
|
228
|
+
version = "0.3.0"
|
|
229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
230
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
231
|
+
|
|
232
|
+
[[package]]
|
|
233
|
+
name = "cc"
|
|
234
|
+
version = "1.2.37"
|
|
235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
236
|
+
checksum = "65193589c6404eb80b450d618eaf9a2cafaaafd57ecce47370519ef674a7bd44"
|
|
237
|
+
dependencies = [
|
|
238
|
+
"find-msvc-tools",
|
|
239
|
+
"shlex",
|
|
240
|
+
]
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "cexpr"
|
|
244
|
+
version = "0.6.0"
|
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
247
|
+
dependencies = [
|
|
248
|
+
"nom",
|
|
249
|
+
]
|
|
250
|
+
|
|
251
|
+
[[package]]
|
|
252
|
+
name = "cfg-if"
|
|
253
|
+
version = "1.0.3"
|
|
254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
255
|
+
checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
|
|
256
|
+
|
|
257
|
+
[[package]]
|
|
258
|
+
name = "chrono"
|
|
259
|
+
version = "0.4.42"
|
|
260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
261
|
+
checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
|
|
262
|
+
dependencies = [
|
|
263
|
+
"iana-time-zone",
|
|
264
|
+
"js-sys",
|
|
265
|
+
"num-traits",
|
|
266
|
+
"serde",
|
|
267
|
+
"wasm-bindgen",
|
|
268
|
+
"windows-link 0.2.0",
|
|
269
|
+
]
|
|
270
|
+
|
|
271
|
+
[[package]]
|
|
272
|
+
name = "ciborium"
|
|
273
|
+
version = "0.2.2"
|
|
274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
276
|
+
dependencies = [
|
|
277
|
+
"ciborium-io",
|
|
278
|
+
"ciborium-ll",
|
|
279
|
+
"serde",
|
|
280
|
+
]
|
|
281
|
+
|
|
282
|
+
[[package]]
|
|
283
|
+
name = "ciborium-io"
|
|
284
|
+
version = "0.2.2"
|
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
286
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
287
|
+
|
|
288
|
+
[[package]]
|
|
289
|
+
name = "ciborium-ll"
|
|
290
|
+
version = "0.2.2"
|
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
293
|
+
dependencies = [
|
|
294
|
+
"ciborium-io",
|
|
295
|
+
"half",
|
|
296
|
+
]
|
|
297
|
+
|
|
298
|
+
[[package]]
|
|
299
|
+
name = "clang-sys"
|
|
300
|
+
version = "1.8.1"
|
|
301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
302
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
303
|
+
dependencies = [
|
|
304
|
+
"glob",
|
|
305
|
+
"libc",
|
|
306
|
+
"libloading",
|
|
307
|
+
]
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "clap"
|
|
311
|
+
version = "4.5.47"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "7eac00902d9d136acd712710d71823fb8ac8004ca445a89e73a41d45aa712931"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"clap_builder",
|
|
316
|
+
"clap_derive",
|
|
317
|
+
]
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "clap_builder"
|
|
321
|
+
version = "4.5.47"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "2ad9bbf750e73b5884fb8a211a9424a1906c1e156724260fdae972f31d70e1d6"
|
|
324
|
+
dependencies = [
|
|
325
|
+
"anstream",
|
|
326
|
+
"anstyle",
|
|
327
|
+
"clap_lex",
|
|
328
|
+
"strsim",
|
|
329
|
+
]
|
|
330
|
+
|
|
331
|
+
[[package]]
|
|
332
|
+
name = "clap_derive"
|
|
333
|
+
version = "4.5.47"
|
|
334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
+
checksum = "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c"
|
|
336
|
+
dependencies = [
|
|
337
|
+
"heck",
|
|
338
|
+
"proc-macro2",
|
|
339
|
+
"quote",
|
|
340
|
+
"syn",
|
|
341
|
+
]
|
|
342
|
+
|
|
343
|
+
[[package]]
|
|
344
|
+
name = "clap_lex"
|
|
345
|
+
version = "0.7.5"
|
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
+
checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "close_already"
|
|
351
|
+
version = "0.3.5"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "750e1d95751350d95c23de2567c1c0810bb2107a3a9f36bb120fcf819c91ea2e"
|
|
354
|
+
dependencies = [
|
|
355
|
+
"mutually_exclusive_features",
|
|
356
|
+
"threadpool",
|
|
357
|
+
]
|
|
358
|
+
|
|
359
|
+
[[package]]
|
|
360
|
+
name = "cmake"
|
|
361
|
+
version = "0.1.54"
|
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
+
checksum = "e7caa3f9de89ddbe2c607f4101924c5abec803763ae9534e4f4d7d8f84aa81f0"
|
|
364
|
+
dependencies = [
|
|
365
|
+
"cc",
|
|
366
|
+
]
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "colorchoice"
|
|
370
|
+
version = "1.0.4"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "core-foundation-sys"
|
|
376
|
+
version = "0.8.7"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
379
|
+
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "crc32fast"
|
|
382
|
+
version = "1.5.0"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
385
|
+
dependencies = [
|
|
386
|
+
"cfg-if",
|
|
387
|
+
]
|
|
388
|
+
|
|
389
|
+
[[package]]
|
|
390
|
+
name = "criterion"
|
|
391
|
+
version = "0.7.0"
|
|
392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
+
checksum = "e1c047a62b0cc3e145fa84415a3191f628e980b194c2755aa12300a4e6cbd928"
|
|
394
|
+
dependencies = [
|
|
395
|
+
"anes",
|
|
396
|
+
"cast",
|
|
397
|
+
"ciborium",
|
|
398
|
+
"clap",
|
|
399
|
+
"criterion-plot",
|
|
400
|
+
"itertools",
|
|
401
|
+
"num-traits",
|
|
402
|
+
"oorandom",
|
|
403
|
+
"plotters",
|
|
404
|
+
"rayon",
|
|
405
|
+
"regex",
|
|
406
|
+
"serde",
|
|
407
|
+
"serde_json",
|
|
408
|
+
"tinytemplate",
|
|
409
|
+
"walkdir",
|
|
410
|
+
]
|
|
411
|
+
|
|
412
|
+
[[package]]
|
|
413
|
+
name = "criterion-plot"
|
|
414
|
+
version = "0.6.0"
|
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
+
checksum = "9b1bcc0dc7dfae599d84ad0b1a55f80cde8af3725da8313b528da95ef783e338"
|
|
417
|
+
dependencies = [
|
|
418
|
+
"cast",
|
|
419
|
+
"itertools",
|
|
420
|
+
]
|
|
421
|
+
|
|
422
|
+
[[package]]
|
|
423
|
+
name = "crossbeam-channel"
|
|
424
|
+
version = "0.5.15"
|
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
427
|
+
dependencies = [
|
|
428
|
+
"crossbeam-utils",
|
|
429
|
+
]
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "crossbeam-deque"
|
|
433
|
+
version = "0.8.6"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
436
|
+
dependencies = [
|
|
437
|
+
"crossbeam-epoch",
|
|
438
|
+
"crossbeam-utils",
|
|
439
|
+
]
|
|
440
|
+
|
|
441
|
+
[[package]]
|
|
442
|
+
name = "crossbeam-epoch"
|
|
443
|
+
version = "0.9.18"
|
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
446
|
+
dependencies = [
|
|
447
|
+
"crossbeam-utils",
|
|
448
|
+
]
|
|
449
|
+
|
|
450
|
+
[[package]]
|
|
451
|
+
name = "crossbeam-utils"
|
|
452
|
+
version = "0.8.21"
|
|
453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
455
|
+
|
|
456
|
+
[[package]]
|
|
457
|
+
name = "crunchy"
|
|
458
|
+
version = "0.2.4"
|
|
459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "darling"
|
|
464
|
+
version = "0.20.11"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
467
|
+
dependencies = [
|
|
468
|
+
"darling_core",
|
|
469
|
+
"darling_macro",
|
|
470
|
+
]
|
|
471
|
+
|
|
472
|
+
[[package]]
|
|
473
|
+
name = "darling_core"
|
|
474
|
+
version = "0.20.11"
|
|
475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
|
477
|
+
dependencies = [
|
|
478
|
+
"fnv",
|
|
479
|
+
"ident_case",
|
|
480
|
+
"proc-macro2",
|
|
481
|
+
"quote",
|
|
482
|
+
"strsim",
|
|
483
|
+
"syn",
|
|
484
|
+
]
|
|
485
|
+
|
|
486
|
+
[[package]]
|
|
487
|
+
name = "darling_macro"
|
|
488
|
+
version = "0.20.11"
|
|
489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
491
|
+
dependencies = [
|
|
492
|
+
"darling_core",
|
|
493
|
+
"quote",
|
|
494
|
+
"syn",
|
|
495
|
+
]
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "deranged"
|
|
499
|
+
version = "0.5.3"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "d630bccd429a5bb5a64b5e94f693bfc48c9f8566418fda4c494cc94f911f87cc"
|
|
502
|
+
dependencies = [
|
|
503
|
+
"powerfmt",
|
|
504
|
+
]
|
|
505
|
+
|
|
506
|
+
[[package]]
|
|
507
|
+
name = "derive_builder"
|
|
508
|
+
version = "0.20.2"
|
|
509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
510
|
+
checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
|
|
511
|
+
dependencies = [
|
|
512
|
+
"derive_builder_macro",
|
|
513
|
+
]
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "derive_builder_core"
|
|
517
|
+
version = "0.20.2"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
|
|
520
|
+
dependencies = [
|
|
521
|
+
"darling",
|
|
522
|
+
"proc-macro2",
|
|
523
|
+
"quote",
|
|
524
|
+
"syn",
|
|
525
|
+
]
|
|
526
|
+
|
|
527
|
+
[[package]]
|
|
528
|
+
name = "derive_builder_macro"
|
|
529
|
+
version = "0.20.2"
|
|
530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
531
|
+
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
|
532
|
+
dependencies = [
|
|
533
|
+
"derive_builder_core",
|
|
534
|
+
"syn",
|
|
535
|
+
]
|
|
536
|
+
|
|
537
|
+
[[package]]
|
|
538
|
+
name = "diff"
|
|
539
|
+
version = "0.1.13"
|
|
540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
541
|
+
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "displaydoc"
|
|
545
|
+
version = "0.2.5"
|
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
548
|
+
dependencies = [
|
|
549
|
+
"proc-macro2",
|
|
550
|
+
"quote",
|
|
551
|
+
"syn",
|
|
552
|
+
]
|
|
553
|
+
|
|
554
|
+
[[package]]
|
|
555
|
+
name = "either"
|
|
556
|
+
version = "1.15.0"
|
|
557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
558
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
559
|
+
|
|
560
|
+
[[package]]
|
|
561
|
+
name = "env_filter"
|
|
562
|
+
version = "0.1.3"
|
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
+
checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0"
|
|
565
|
+
dependencies = [
|
|
566
|
+
"log",
|
|
567
|
+
"regex",
|
|
568
|
+
]
|
|
569
|
+
|
|
570
|
+
[[package]]
|
|
571
|
+
name = "env_logger"
|
|
572
|
+
version = "0.11.8"
|
|
573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
|
+
checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
|
|
575
|
+
dependencies = [
|
|
576
|
+
"anstream",
|
|
577
|
+
"anstyle",
|
|
578
|
+
"env_filter",
|
|
579
|
+
"jiff",
|
|
580
|
+
"log",
|
|
581
|
+
]
|
|
582
|
+
|
|
583
|
+
[[package]]
|
|
584
|
+
name = "equivalent"
|
|
585
|
+
version = "1.0.2"
|
|
586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
587
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
588
|
+
|
|
589
|
+
[[package]]
|
|
590
|
+
name = "errno"
|
|
591
|
+
version = "0.3.14"
|
|
592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
593
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
594
|
+
dependencies = [
|
|
595
|
+
"libc",
|
|
596
|
+
"windows-sys 0.61.0",
|
|
597
|
+
]
|
|
598
|
+
|
|
599
|
+
[[package]]
|
|
600
|
+
name = "euclid"
|
|
601
|
+
version = "0.22.11"
|
|
602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
+
checksum = "ad9cdb4b747e485a12abb0e6566612956c7a1bafa3bdb8d682c5b6d403589e48"
|
|
604
|
+
dependencies = [
|
|
605
|
+
"num-traits",
|
|
606
|
+
]
|
|
607
|
+
|
|
608
|
+
[[package]]
|
|
609
|
+
name = "fastrand"
|
|
610
|
+
version = "2.3.0"
|
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
613
|
+
|
|
614
|
+
[[package]]
|
|
615
|
+
name = "fea-rs"
|
|
616
|
+
version = "0.20.3"
|
|
617
|
+
dependencies = [
|
|
618
|
+
"ansi_term",
|
|
619
|
+
"clap",
|
|
620
|
+
"criterion",
|
|
621
|
+
"diff",
|
|
622
|
+
"env_logger",
|
|
623
|
+
"fontdrasil",
|
|
624
|
+
"indexmap",
|
|
625
|
+
"log",
|
|
626
|
+
"norad",
|
|
627
|
+
"ordered-float",
|
|
628
|
+
"rayon",
|
|
629
|
+
"serde",
|
|
630
|
+
"serde_json",
|
|
631
|
+
"smol_str",
|
|
632
|
+
"thiserror",
|
|
633
|
+
"write-fonts",
|
|
634
|
+
]
|
|
635
|
+
|
|
636
|
+
[[package]]
|
|
637
|
+
name = "find-msvc-tools"
|
|
638
|
+
version = "0.1.1"
|
|
639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
+
checksum = "7fd99930f64d146689264c637b5af2f0233a933bef0d8570e2526bf9e083192d"
|
|
641
|
+
|
|
642
|
+
[[package]]
|
|
643
|
+
name = "flate2"
|
|
644
|
+
version = "1.1.2"
|
|
645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
646
|
+
checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
|
|
647
|
+
dependencies = [
|
|
648
|
+
"crc32fast",
|
|
649
|
+
"miniz_oxide",
|
|
650
|
+
]
|
|
651
|
+
|
|
652
|
+
[[package]]
|
|
653
|
+
name = "fnv"
|
|
654
|
+
version = "1.0.7"
|
|
655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
656
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
657
|
+
|
|
658
|
+
[[package]]
|
|
659
|
+
name = "font-types"
|
|
660
|
+
version = "0.10.1"
|
|
661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
662
|
+
checksum = "39a654f404bbcbd48ea58c617c2993ee91d1cb63727a37bf2323a4edeed1b8c5"
|
|
663
|
+
dependencies = [
|
|
664
|
+
"bytemuck",
|
|
665
|
+
"serde",
|
|
666
|
+
]
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "fontbe"
|
|
670
|
+
version = "0.2.3"
|
|
671
|
+
dependencies = [
|
|
672
|
+
"bincode",
|
|
673
|
+
"chrono",
|
|
674
|
+
"diff",
|
|
675
|
+
"env_logger",
|
|
676
|
+
"fea-rs",
|
|
677
|
+
"fontdrasil",
|
|
678
|
+
"fontir",
|
|
679
|
+
"icu_properties",
|
|
680
|
+
"indexmap",
|
|
681
|
+
"kurbo",
|
|
682
|
+
"log",
|
|
683
|
+
"more-asserts",
|
|
684
|
+
"ordered-float",
|
|
685
|
+
"otl-normalizer",
|
|
686
|
+
"parking_lot",
|
|
687
|
+
"pretty_assertions",
|
|
688
|
+
"rstest",
|
|
689
|
+
"serde",
|
|
690
|
+
"smol_str",
|
|
691
|
+
"temp-env",
|
|
692
|
+
"tempfile",
|
|
693
|
+
"thiserror",
|
|
694
|
+
"tinystr",
|
|
695
|
+
"write-fonts",
|
|
696
|
+
]
|
|
697
|
+
|
|
698
|
+
[[package]]
|
|
699
|
+
name = "fontc"
|
|
700
|
+
version = "0.3.2"
|
|
701
|
+
dependencies = [
|
|
702
|
+
"bitflags",
|
|
703
|
+
"chrono",
|
|
704
|
+
"clap",
|
|
705
|
+
"crossbeam-channel",
|
|
706
|
+
"diff",
|
|
707
|
+
"env_logger",
|
|
708
|
+
"fontbe",
|
|
709
|
+
"fontdrasil",
|
|
710
|
+
"fontir",
|
|
711
|
+
"fontra2fontir",
|
|
712
|
+
"glyphs2fontir",
|
|
713
|
+
"indexmap",
|
|
714
|
+
"kurbo",
|
|
715
|
+
"log",
|
|
716
|
+
"ordered-float",
|
|
717
|
+
"pretty_assertions",
|
|
718
|
+
"rayon",
|
|
719
|
+
"regex",
|
|
720
|
+
"rstest",
|
|
721
|
+
"serde",
|
|
722
|
+
"serde_yaml",
|
|
723
|
+
"skrifa",
|
|
724
|
+
"tempfile",
|
|
725
|
+
"thiserror",
|
|
726
|
+
"ufo2fontir",
|
|
727
|
+
"vergen-gitcl",
|
|
728
|
+
"write-fonts",
|
|
729
|
+
]
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "fontc_crater"
|
|
733
|
+
version = "0.2.0"
|
|
734
|
+
dependencies = [
|
|
735
|
+
"chrono",
|
|
736
|
+
"clap",
|
|
737
|
+
"env_logger",
|
|
738
|
+
"fontc",
|
|
739
|
+
"google-fonts-sources",
|
|
740
|
+
"log",
|
|
741
|
+
"maud",
|
|
742
|
+
"rayon",
|
|
743
|
+
"serde",
|
|
744
|
+
"serde_json",
|
|
745
|
+
"serde_yaml",
|
|
746
|
+
"tempfile",
|
|
747
|
+
"thiserror",
|
|
748
|
+
"tidier",
|
|
749
|
+
"write-fonts",
|
|
750
|
+
]
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "fontdrasil"
|
|
754
|
+
version = "0.2.3"
|
|
755
|
+
dependencies = [
|
|
756
|
+
"diff",
|
|
757
|
+
"env_logger",
|
|
758
|
+
"kurbo",
|
|
759
|
+
"log",
|
|
760
|
+
"ordered-float",
|
|
761
|
+
"pretty_assertions",
|
|
762
|
+
"serde",
|
|
763
|
+
"smol_str",
|
|
764
|
+
"tempfile",
|
|
765
|
+
"thiserror",
|
|
766
|
+
"write-fonts",
|
|
767
|
+
]
|
|
768
|
+
|
|
769
|
+
[[package]]
|
|
770
|
+
name = "fontir"
|
|
771
|
+
version = "0.3.1"
|
|
772
|
+
dependencies = [
|
|
773
|
+
"bincode",
|
|
774
|
+
"bitflags",
|
|
775
|
+
"chrono",
|
|
776
|
+
"diff",
|
|
777
|
+
"env_logger",
|
|
778
|
+
"fontdrasil",
|
|
779
|
+
"indexmap",
|
|
780
|
+
"kurbo",
|
|
781
|
+
"log",
|
|
782
|
+
"ordered-float",
|
|
783
|
+
"parking_lot",
|
|
784
|
+
"pretty_assertions",
|
|
785
|
+
"rstest",
|
|
786
|
+
"serde",
|
|
787
|
+
"serde_yaml",
|
|
788
|
+
"smol_str",
|
|
789
|
+
"tempfile",
|
|
790
|
+
"thiserror",
|
|
791
|
+
"write-fonts",
|
|
792
|
+
]
|
|
793
|
+
|
|
794
|
+
[[package]]
|
|
795
|
+
name = "fontra2fontir"
|
|
796
|
+
version = "0.2.3"
|
|
797
|
+
dependencies = [
|
|
798
|
+
"diff",
|
|
799
|
+
"env_logger",
|
|
800
|
+
"fontdrasil",
|
|
801
|
+
"fontir",
|
|
802
|
+
"indexmap",
|
|
803
|
+
"kurbo",
|
|
804
|
+
"log",
|
|
805
|
+
"ordered-float",
|
|
806
|
+
"pretty_assertions",
|
|
807
|
+
"serde",
|
|
808
|
+
"serde_json",
|
|
809
|
+
"tempfile",
|
|
810
|
+
"thiserror",
|
|
811
|
+
"write-fonts",
|
|
812
|
+
]
|
|
813
|
+
|
|
814
|
+
[[package]]
|
|
815
|
+
name = "futures-core"
|
|
816
|
+
version = "0.3.31"
|
|
817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
818
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
819
|
+
|
|
820
|
+
[[package]]
|
|
821
|
+
name = "futures-macro"
|
|
822
|
+
version = "0.3.31"
|
|
823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
825
|
+
dependencies = [
|
|
826
|
+
"proc-macro2",
|
|
827
|
+
"quote",
|
|
828
|
+
"syn",
|
|
829
|
+
]
|
|
830
|
+
|
|
831
|
+
[[package]]
|
|
832
|
+
name = "futures-task"
|
|
833
|
+
version = "0.3.31"
|
|
834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
835
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
836
|
+
|
|
837
|
+
[[package]]
|
|
838
|
+
name = "futures-timer"
|
|
839
|
+
version = "3.0.3"
|
|
840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
841
|
+
checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
|
|
842
|
+
|
|
843
|
+
[[package]]
|
|
844
|
+
name = "futures-util"
|
|
845
|
+
version = "0.3.31"
|
|
846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
848
|
+
dependencies = [
|
|
849
|
+
"futures-core",
|
|
850
|
+
"futures-macro",
|
|
851
|
+
"futures-task",
|
|
852
|
+
"pin-project-lite",
|
|
853
|
+
"pin-utils",
|
|
854
|
+
"slab",
|
|
855
|
+
]
|
|
856
|
+
|
|
857
|
+
[[package]]
|
|
858
|
+
name = "getrandom"
|
|
859
|
+
version = "0.2.16"
|
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
862
|
+
dependencies = [
|
|
863
|
+
"cfg-if",
|
|
864
|
+
"libc",
|
|
865
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
866
|
+
]
|
|
867
|
+
|
|
868
|
+
[[package]]
|
|
869
|
+
name = "getrandom"
|
|
870
|
+
version = "0.3.3"
|
|
871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
872
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
|
873
|
+
dependencies = [
|
|
874
|
+
"cfg-if",
|
|
875
|
+
"libc",
|
|
876
|
+
"r-efi",
|
|
877
|
+
"wasi 0.14.7+wasi-0.2.4",
|
|
878
|
+
]
|
|
879
|
+
|
|
880
|
+
[[package]]
|
|
881
|
+
name = "glob"
|
|
882
|
+
version = "0.3.3"
|
|
883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
884
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
885
|
+
|
|
886
|
+
[[package]]
|
|
887
|
+
name = "glyphs-reader"
|
|
888
|
+
version = "0.2.3"
|
|
889
|
+
dependencies = [
|
|
890
|
+
"ascii_plist_derive",
|
|
891
|
+
"chrono",
|
|
892
|
+
"env_logger",
|
|
893
|
+
"fontdrasil",
|
|
894
|
+
"icu_properties",
|
|
895
|
+
"indexmap",
|
|
896
|
+
"kurbo",
|
|
897
|
+
"log",
|
|
898
|
+
"ordered-float",
|
|
899
|
+
"pretty_assertions",
|
|
900
|
+
"quick-xml",
|
|
901
|
+
"regex",
|
|
902
|
+
"rstest",
|
|
903
|
+
"serde",
|
|
904
|
+
"smol_str",
|
|
905
|
+
"thiserror",
|
|
906
|
+
]
|
|
907
|
+
|
|
908
|
+
[[package]]
|
|
909
|
+
name = "glyphs2fontir"
|
|
910
|
+
version = "0.3.1"
|
|
911
|
+
dependencies = [
|
|
912
|
+
"chrono",
|
|
913
|
+
"diff",
|
|
914
|
+
"env_logger",
|
|
915
|
+
"fontdrasil",
|
|
916
|
+
"fontir",
|
|
917
|
+
"glyphs-reader",
|
|
918
|
+
"indexmap",
|
|
919
|
+
"kurbo",
|
|
920
|
+
"log",
|
|
921
|
+
"ordered-float",
|
|
922
|
+
"pretty_assertions",
|
|
923
|
+
"smol_str",
|
|
924
|
+
"tempfile",
|
|
925
|
+
"thiserror",
|
|
926
|
+
"write-fonts",
|
|
927
|
+
]
|
|
928
|
+
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "google-fonts-sources"
|
|
931
|
+
version = "0.10.3"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "faba60fb8afbaf326e88ba5d7b9b365fc21db2c448abb5c8d69784d918e4bab8"
|
|
934
|
+
dependencies = [
|
|
935
|
+
"clap",
|
|
936
|
+
"env_logger",
|
|
937
|
+
"font-types",
|
|
938
|
+
"log",
|
|
939
|
+
"rayon",
|
|
940
|
+
"serde",
|
|
941
|
+
"serde_json",
|
|
942
|
+
"serde_yaml",
|
|
943
|
+
"tempfile",
|
|
944
|
+
"thiserror",
|
|
945
|
+
"ureq",
|
|
946
|
+
]
|
|
947
|
+
|
|
948
|
+
[[package]]
|
|
949
|
+
name = "half"
|
|
950
|
+
version = "2.6.0"
|
|
951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
952
|
+
checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
|
|
953
|
+
dependencies = [
|
|
954
|
+
"cfg-if",
|
|
955
|
+
"crunchy",
|
|
956
|
+
]
|
|
957
|
+
|
|
958
|
+
[[package]]
|
|
959
|
+
name = "hashbrown"
|
|
960
|
+
version = "0.16.0"
|
|
961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
962
|
+
checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
|
|
963
|
+
|
|
964
|
+
[[package]]
|
|
965
|
+
name = "heck"
|
|
966
|
+
version = "0.5.0"
|
|
967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
968
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
969
|
+
|
|
970
|
+
[[package]]
|
|
971
|
+
name = "hermit-abi"
|
|
972
|
+
version = "0.5.2"
|
|
973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
974
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
975
|
+
|
|
976
|
+
[[package]]
|
|
977
|
+
name = "http"
|
|
978
|
+
version = "1.3.1"
|
|
979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
980
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
|
981
|
+
dependencies = [
|
|
982
|
+
"bytes",
|
|
983
|
+
"fnv",
|
|
984
|
+
"itoa",
|
|
985
|
+
]
|
|
986
|
+
|
|
987
|
+
[[package]]
|
|
988
|
+
name = "httparse"
|
|
989
|
+
version = "1.10.1"
|
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
992
|
+
|
|
993
|
+
[[package]]
|
|
994
|
+
name = "iana-time-zone"
|
|
995
|
+
version = "0.1.64"
|
|
996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
|
998
|
+
dependencies = [
|
|
999
|
+
"android_system_properties",
|
|
1000
|
+
"core-foundation-sys",
|
|
1001
|
+
"iana-time-zone-haiku",
|
|
1002
|
+
"js-sys",
|
|
1003
|
+
"log",
|
|
1004
|
+
"wasm-bindgen",
|
|
1005
|
+
"windows-core",
|
|
1006
|
+
]
|
|
1007
|
+
|
|
1008
|
+
[[package]]
|
|
1009
|
+
name = "iana-time-zone-haiku"
|
|
1010
|
+
version = "0.1.2"
|
|
1011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1012
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1013
|
+
dependencies = [
|
|
1014
|
+
"cc",
|
|
1015
|
+
]
|
|
1016
|
+
|
|
1017
|
+
[[package]]
|
|
1018
|
+
name = "icu_collections"
|
|
1019
|
+
version = "2.0.0"
|
|
1020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1021
|
+
checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
|
|
1022
|
+
dependencies = [
|
|
1023
|
+
"displaydoc",
|
|
1024
|
+
"potential_utf",
|
|
1025
|
+
"yoke",
|
|
1026
|
+
"zerofrom",
|
|
1027
|
+
"zerovec",
|
|
1028
|
+
]
|
|
1029
|
+
|
|
1030
|
+
[[package]]
|
|
1031
|
+
name = "icu_locale_core"
|
|
1032
|
+
version = "2.0.0"
|
|
1033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1034
|
+
checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
|
|
1035
|
+
dependencies = [
|
|
1036
|
+
"displaydoc",
|
|
1037
|
+
"litemap",
|
|
1038
|
+
"tinystr",
|
|
1039
|
+
"writeable",
|
|
1040
|
+
"zerovec",
|
|
1041
|
+
]
|
|
1042
|
+
|
|
1043
|
+
[[package]]
|
|
1044
|
+
name = "icu_properties"
|
|
1045
|
+
version = "2.0.1"
|
|
1046
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1047
|
+
checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
|
|
1048
|
+
dependencies = [
|
|
1049
|
+
"displaydoc",
|
|
1050
|
+
"icu_collections",
|
|
1051
|
+
"icu_locale_core",
|
|
1052
|
+
"icu_properties_data",
|
|
1053
|
+
"icu_provider",
|
|
1054
|
+
"potential_utf",
|
|
1055
|
+
"zerotrie",
|
|
1056
|
+
"zerovec",
|
|
1057
|
+
]
|
|
1058
|
+
|
|
1059
|
+
[[package]]
|
|
1060
|
+
name = "icu_properties_data"
|
|
1061
|
+
version = "2.0.1"
|
|
1062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1063
|
+
checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
|
|
1064
|
+
|
|
1065
|
+
[[package]]
|
|
1066
|
+
name = "icu_provider"
|
|
1067
|
+
version = "2.0.0"
|
|
1068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1069
|
+
checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
|
|
1070
|
+
dependencies = [
|
|
1071
|
+
"displaydoc",
|
|
1072
|
+
"icu_locale_core",
|
|
1073
|
+
"stable_deref_trait",
|
|
1074
|
+
"tinystr",
|
|
1075
|
+
"writeable",
|
|
1076
|
+
"yoke",
|
|
1077
|
+
"zerofrom",
|
|
1078
|
+
"zerotrie",
|
|
1079
|
+
"zerovec",
|
|
1080
|
+
]
|
|
1081
|
+
|
|
1082
|
+
[[package]]
|
|
1083
|
+
name = "ident_case"
|
|
1084
|
+
version = "1.0.1"
|
|
1085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1086
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1087
|
+
|
|
1088
|
+
[[package]]
|
|
1089
|
+
name = "indexmap"
|
|
1090
|
+
version = "2.12.0"
|
|
1091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1092
|
+
checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
|
|
1093
|
+
dependencies = [
|
|
1094
|
+
"equivalent",
|
|
1095
|
+
"hashbrown",
|
|
1096
|
+
"serde",
|
|
1097
|
+
"serde_core",
|
|
1098
|
+
]
|
|
1099
|
+
|
|
1100
|
+
[[package]]
|
|
1101
|
+
name = "is_terminal_polyfill"
|
|
1102
|
+
version = "1.70.1"
|
|
1103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1104
|
+
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
|
1105
|
+
|
|
1106
|
+
[[package]]
|
|
1107
|
+
name = "itertools"
|
|
1108
|
+
version = "0.13.0"
|
|
1109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1110
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
1111
|
+
dependencies = [
|
|
1112
|
+
"either",
|
|
1113
|
+
]
|
|
1114
|
+
|
|
1115
|
+
[[package]]
|
|
1116
|
+
name = "itoa"
|
|
1117
|
+
version = "1.0.15"
|
|
1118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1119
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
1120
|
+
|
|
1121
|
+
[[package]]
|
|
1122
|
+
name = "jiff"
|
|
1123
|
+
version = "0.2.15"
|
|
1124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1125
|
+
checksum = "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49"
|
|
1126
|
+
dependencies = [
|
|
1127
|
+
"jiff-static",
|
|
1128
|
+
"log",
|
|
1129
|
+
"portable-atomic",
|
|
1130
|
+
"portable-atomic-util",
|
|
1131
|
+
"serde",
|
|
1132
|
+
]
|
|
1133
|
+
|
|
1134
|
+
[[package]]
|
|
1135
|
+
name = "jiff-static"
|
|
1136
|
+
version = "0.2.15"
|
|
1137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
+
checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4"
|
|
1139
|
+
dependencies = [
|
|
1140
|
+
"proc-macro2",
|
|
1141
|
+
"quote",
|
|
1142
|
+
"syn",
|
|
1143
|
+
]
|
|
1144
|
+
|
|
1145
|
+
[[package]]
|
|
1146
|
+
name = "js-sys"
|
|
1147
|
+
version = "0.3.80"
|
|
1148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
+
checksum = "852f13bec5eba4ba9afbeb93fd7c13fe56147f055939ae21c43a29a0ecb2702e"
|
|
1150
|
+
dependencies = [
|
|
1151
|
+
"once_cell",
|
|
1152
|
+
"wasm-bindgen",
|
|
1153
|
+
]
|
|
1154
|
+
|
|
1155
|
+
[[package]]
|
|
1156
|
+
name = "kurbo"
|
|
1157
|
+
version = "0.12.0"
|
|
1158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1159
|
+
checksum = "ce9729cc38c18d86123ab736fd2e7151763ba226ac2490ec092d1dd148825e32"
|
|
1160
|
+
dependencies = [
|
|
1161
|
+
"arrayvec",
|
|
1162
|
+
"euclid",
|
|
1163
|
+
"serde",
|
|
1164
|
+
"smallvec",
|
|
1165
|
+
]
|
|
1166
|
+
|
|
1167
|
+
[[package]]
|
|
1168
|
+
name = "libc"
|
|
1169
|
+
version = "0.2.175"
|
|
1170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1171
|
+
checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
|
|
1172
|
+
|
|
1173
|
+
[[package]]
|
|
1174
|
+
name = "libloading"
|
|
1175
|
+
version = "0.8.8"
|
|
1176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1177
|
+
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
|
1178
|
+
dependencies = [
|
|
1179
|
+
"cfg-if",
|
|
1180
|
+
"windows-targets 0.53.3",
|
|
1181
|
+
]
|
|
1182
|
+
|
|
1183
|
+
[[package]]
|
|
1184
|
+
name = "linux-raw-sys"
|
|
1185
|
+
version = "0.11.0"
|
|
1186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1187
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
1188
|
+
|
|
1189
|
+
[[package]]
|
|
1190
|
+
name = "litemap"
|
|
1191
|
+
version = "0.8.0"
|
|
1192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1193
|
+
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
|
|
1194
|
+
|
|
1195
|
+
[[package]]
|
|
1196
|
+
name = "lock_api"
|
|
1197
|
+
version = "0.4.13"
|
|
1198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1199
|
+
checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
|
|
1200
|
+
dependencies = [
|
|
1201
|
+
"autocfg",
|
|
1202
|
+
"scopeguard",
|
|
1203
|
+
]
|
|
1204
|
+
|
|
1205
|
+
[[package]]
|
|
1206
|
+
name = "log"
|
|
1207
|
+
version = "0.4.28"
|
|
1208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
+
checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
|
|
1210
|
+
|
|
1211
|
+
[[package]]
|
|
1212
|
+
name = "maud"
|
|
1213
|
+
version = "0.27.0"
|
|
1214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1215
|
+
checksum = "8156733e27020ea5c684db5beac5d1d611e1272ab17901a49466294b84fc217e"
|
|
1216
|
+
dependencies = [
|
|
1217
|
+
"itoa",
|
|
1218
|
+
"maud_macros",
|
|
1219
|
+
]
|
|
1220
|
+
|
|
1221
|
+
[[package]]
|
|
1222
|
+
name = "maud_macros"
|
|
1223
|
+
version = "0.27.0"
|
|
1224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1225
|
+
checksum = "7261b00f3952f617899bc012e3dbd56e4f0110a038175929fa5d18e5a19913ca"
|
|
1226
|
+
dependencies = [
|
|
1227
|
+
"proc-macro2",
|
|
1228
|
+
"proc-macro2-diagnostics",
|
|
1229
|
+
"quote",
|
|
1230
|
+
"syn",
|
|
1231
|
+
]
|
|
1232
|
+
|
|
1233
|
+
[[package]]
|
|
1234
|
+
name = "memchr"
|
|
1235
|
+
version = "2.7.5"
|
|
1236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1237
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
|
1238
|
+
|
|
1239
|
+
[[package]]
|
|
1240
|
+
name = "minimal-lexical"
|
|
1241
|
+
version = "0.2.1"
|
|
1242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1243
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1244
|
+
|
|
1245
|
+
[[package]]
|
|
1246
|
+
name = "miniz_oxide"
|
|
1247
|
+
version = "0.8.9"
|
|
1248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1249
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1250
|
+
dependencies = [
|
|
1251
|
+
"adler2",
|
|
1252
|
+
]
|
|
1253
|
+
|
|
1254
|
+
[[package]]
|
|
1255
|
+
name = "more-asserts"
|
|
1256
|
+
version = "0.3.1"
|
|
1257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1258
|
+
checksum = "1fafa6961cabd9c63bcd77a45d7e3b7f3b552b70417831fb0f56db717e72407e"
|
|
1259
|
+
|
|
1260
|
+
[[package]]
|
|
1261
|
+
name = "mutually_exclusive_features"
|
|
1262
|
+
version = "0.1.0"
|
|
1263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1264
|
+
checksum = "e94e1e6445d314f972ff7395df2de295fe51b71821694f0b0e1e79c4f12c8577"
|
|
1265
|
+
|
|
1266
|
+
[[package]]
|
|
1267
|
+
name = "nom"
|
|
1268
|
+
version = "7.1.3"
|
|
1269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1270
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
1271
|
+
dependencies = [
|
|
1272
|
+
"memchr",
|
|
1273
|
+
"minimal-lexical",
|
|
1274
|
+
]
|
|
1275
|
+
|
|
1276
|
+
[[package]]
|
|
1277
|
+
name = "norad"
|
|
1278
|
+
version = "0.16.1"
|
|
1279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1280
|
+
checksum = "af78fa33027e25d57ac99c174a885632f58fd427598e646ae4913f42baf09b49"
|
|
1281
|
+
dependencies = [
|
|
1282
|
+
"base64",
|
|
1283
|
+
"close_already",
|
|
1284
|
+
"indexmap",
|
|
1285
|
+
"plist",
|
|
1286
|
+
"quick-xml",
|
|
1287
|
+
"serde",
|
|
1288
|
+
"serde_derive",
|
|
1289
|
+
"serde_repr",
|
|
1290
|
+
"thiserror",
|
|
1291
|
+
]
|
|
1292
|
+
|
|
1293
|
+
[[package]]
|
|
1294
|
+
name = "num-conv"
|
|
1295
|
+
version = "0.1.0"
|
|
1296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1297
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
1298
|
+
|
|
1299
|
+
[[package]]
|
|
1300
|
+
name = "num-traits"
|
|
1301
|
+
version = "0.2.19"
|
|
1302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1303
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1304
|
+
dependencies = [
|
|
1305
|
+
"autocfg",
|
|
1306
|
+
]
|
|
1307
|
+
|
|
1308
|
+
[[package]]
|
|
1309
|
+
name = "num_cpus"
|
|
1310
|
+
version = "1.17.0"
|
|
1311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1312
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
|
1313
|
+
dependencies = [
|
|
1314
|
+
"hermit-abi",
|
|
1315
|
+
"libc",
|
|
1316
|
+
]
|
|
1317
|
+
|
|
1318
|
+
[[package]]
|
|
1319
|
+
name = "num_threads"
|
|
1320
|
+
version = "0.1.7"
|
|
1321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1322
|
+
checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
|
|
1323
|
+
dependencies = [
|
|
1324
|
+
"libc",
|
|
1325
|
+
]
|
|
1326
|
+
|
|
1327
|
+
[[package]]
|
|
1328
|
+
name = "once_cell"
|
|
1329
|
+
version = "1.21.3"
|
|
1330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1331
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1332
|
+
|
|
1333
|
+
[[package]]
|
|
1334
|
+
name = "once_cell_polyfill"
|
|
1335
|
+
version = "1.70.1"
|
|
1336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1337
|
+
checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
|
|
1338
|
+
|
|
1339
|
+
[[package]]
|
|
1340
|
+
name = "oorandom"
|
|
1341
|
+
version = "11.1.5"
|
|
1342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1343
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
1344
|
+
|
|
1345
|
+
[[package]]
|
|
1346
|
+
name = "ordered-float"
|
|
1347
|
+
version = "4.6.0"
|
|
1348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1349
|
+
checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951"
|
|
1350
|
+
dependencies = [
|
|
1351
|
+
"num-traits",
|
|
1352
|
+
"rand",
|
|
1353
|
+
"serde",
|
|
1354
|
+
]
|
|
1355
|
+
|
|
1356
|
+
[[package]]
|
|
1357
|
+
name = "otl-normalizer"
|
|
1358
|
+
version = "0.0.1"
|
|
1359
|
+
dependencies = [
|
|
1360
|
+
"clap",
|
|
1361
|
+
"fea-rs",
|
|
1362
|
+
"fontdrasil",
|
|
1363
|
+
"indexmap",
|
|
1364
|
+
"smol_str",
|
|
1365
|
+
"thiserror",
|
|
1366
|
+
"write-fonts",
|
|
1367
|
+
]
|
|
1368
|
+
|
|
1369
|
+
[[package]]
|
|
1370
|
+
name = "parking_lot"
|
|
1371
|
+
version = "0.12.4"
|
|
1372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1373
|
+
checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
|
|
1374
|
+
dependencies = [
|
|
1375
|
+
"lock_api",
|
|
1376
|
+
"parking_lot_core",
|
|
1377
|
+
]
|
|
1378
|
+
|
|
1379
|
+
[[package]]
|
|
1380
|
+
name = "parking_lot_core"
|
|
1381
|
+
version = "0.9.11"
|
|
1382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1383
|
+
checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
|
|
1384
|
+
dependencies = [
|
|
1385
|
+
"cfg-if",
|
|
1386
|
+
"libc",
|
|
1387
|
+
"redox_syscall",
|
|
1388
|
+
"smallvec",
|
|
1389
|
+
"windows-targets 0.52.6",
|
|
1390
|
+
]
|
|
1391
|
+
|
|
1392
|
+
[[package]]
|
|
1393
|
+
name = "percent-encoding"
|
|
1394
|
+
version = "2.3.2"
|
|
1395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1396
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1397
|
+
|
|
1398
|
+
[[package]]
|
|
1399
|
+
name = "pin-project-lite"
|
|
1400
|
+
version = "0.2.16"
|
|
1401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1402
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
1403
|
+
|
|
1404
|
+
[[package]]
|
|
1405
|
+
name = "pin-utils"
|
|
1406
|
+
version = "0.1.0"
|
|
1407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1408
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1409
|
+
|
|
1410
|
+
[[package]]
|
|
1411
|
+
name = "plist"
|
|
1412
|
+
version = "1.8.0"
|
|
1413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1414
|
+
checksum = "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07"
|
|
1415
|
+
dependencies = [
|
|
1416
|
+
"base64",
|
|
1417
|
+
"indexmap",
|
|
1418
|
+
"quick-xml",
|
|
1419
|
+
"serde",
|
|
1420
|
+
"time",
|
|
1421
|
+
]
|
|
1422
|
+
|
|
1423
|
+
[[package]]
|
|
1424
|
+
name = "plotters"
|
|
1425
|
+
version = "0.3.7"
|
|
1426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1427
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
1428
|
+
dependencies = [
|
|
1429
|
+
"num-traits",
|
|
1430
|
+
"plotters-backend",
|
|
1431
|
+
"plotters-svg",
|
|
1432
|
+
"wasm-bindgen",
|
|
1433
|
+
"web-sys",
|
|
1434
|
+
]
|
|
1435
|
+
|
|
1436
|
+
[[package]]
|
|
1437
|
+
name = "plotters-backend"
|
|
1438
|
+
version = "0.3.7"
|
|
1439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1440
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
1441
|
+
|
|
1442
|
+
[[package]]
|
|
1443
|
+
name = "plotters-svg"
|
|
1444
|
+
version = "0.3.7"
|
|
1445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1446
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
1447
|
+
dependencies = [
|
|
1448
|
+
"plotters-backend",
|
|
1449
|
+
]
|
|
1450
|
+
|
|
1451
|
+
[[package]]
|
|
1452
|
+
name = "portable-atomic"
|
|
1453
|
+
version = "1.11.1"
|
|
1454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1455
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
1456
|
+
|
|
1457
|
+
[[package]]
|
|
1458
|
+
name = "portable-atomic-util"
|
|
1459
|
+
version = "0.2.4"
|
|
1460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1461
|
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
|
|
1462
|
+
dependencies = [
|
|
1463
|
+
"portable-atomic",
|
|
1464
|
+
]
|
|
1465
|
+
|
|
1466
|
+
[[package]]
|
|
1467
|
+
name = "potential_utf"
|
|
1468
|
+
version = "0.1.3"
|
|
1469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1470
|
+
checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a"
|
|
1471
|
+
dependencies = [
|
|
1472
|
+
"zerovec",
|
|
1473
|
+
]
|
|
1474
|
+
|
|
1475
|
+
[[package]]
|
|
1476
|
+
name = "powerfmt"
|
|
1477
|
+
version = "0.2.0"
|
|
1478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1479
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1480
|
+
|
|
1481
|
+
[[package]]
|
|
1482
|
+
name = "pretty_assertions"
|
|
1483
|
+
version = "1.4.1"
|
|
1484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1485
|
+
checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
|
|
1486
|
+
dependencies = [
|
|
1487
|
+
"diff",
|
|
1488
|
+
"yansi",
|
|
1489
|
+
]
|
|
1490
|
+
|
|
1491
|
+
[[package]]
|
|
1492
|
+
name = "prettyplease"
|
|
1493
|
+
version = "0.2.37"
|
|
1494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1495
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
1496
|
+
dependencies = [
|
|
1497
|
+
"proc-macro2",
|
|
1498
|
+
"syn",
|
|
1499
|
+
]
|
|
1500
|
+
|
|
1501
|
+
[[package]]
|
|
1502
|
+
name = "proc-macro-crate"
|
|
1503
|
+
version = "3.4.0"
|
|
1504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1505
|
+
checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
|
|
1506
|
+
dependencies = [
|
|
1507
|
+
"toml_edit",
|
|
1508
|
+
]
|
|
1509
|
+
|
|
1510
|
+
[[package]]
|
|
1511
|
+
name = "proc-macro2"
|
|
1512
|
+
version = "1.0.101"
|
|
1513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1514
|
+
checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
|
|
1515
|
+
dependencies = [
|
|
1516
|
+
"unicode-ident",
|
|
1517
|
+
]
|
|
1518
|
+
|
|
1519
|
+
[[package]]
|
|
1520
|
+
name = "proc-macro2-diagnostics"
|
|
1521
|
+
version = "0.10.1"
|
|
1522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1523
|
+
checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8"
|
|
1524
|
+
dependencies = [
|
|
1525
|
+
"proc-macro2",
|
|
1526
|
+
"quote",
|
|
1527
|
+
"syn",
|
|
1528
|
+
"version_check",
|
|
1529
|
+
]
|
|
1530
|
+
|
|
1531
|
+
[[package]]
|
|
1532
|
+
name = "quick-xml"
|
|
1533
|
+
version = "0.38.3"
|
|
1534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1535
|
+
checksum = "42a232e7487fc2ef313d96dde7948e7a3c05101870d8985e4fd8d26aedd27b89"
|
|
1536
|
+
dependencies = [
|
|
1537
|
+
"memchr",
|
|
1538
|
+
"serde",
|
|
1539
|
+
]
|
|
1540
|
+
|
|
1541
|
+
[[package]]
|
|
1542
|
+
name = "quote"
|
|
1543
|
+
version = "1.0.40"
|
|
1544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1545
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
1546
|
+
dependencies = [
|
|
1547
|
+
"proc-macro2",
|
|
1548
|
+
]
|
|
1549
|
+
|
|
1550
|
+
[[package]]
|
|
1551
|
+
name = "r-efi"
|
|
1552
|
+
version = "5.3.0"
|
|
1553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1554
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1555
|
+
|
|
1556
|
+
[[package]]
|
|
1557
|
+
name = "rand"
|
|
1558
|
+
version = "0.8.5"
|
|
1559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1560
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
1561
|
+
dependencies = [
|
|
1562
|
+
"rand_core",
|
|
1563
|
+
"serde",
|
|
1564
|
+
]
|
|
1565
|
+
|
|
1566
|
+
[[package]]
|
|
1567
|
+
name = "rand_core"
|
|
1568
|
+
version = "0.6.4"
|
|
1569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1570
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1571
|
+
dependencies = [
|
|
1572
|
+
"serde",
|
|
1573
|
+
]
|
|
1574
|
+
|
|
1575
|
+
[[package]]
|
|
1576
|
+
name = "rayon"
|
|
1577
|
+
version = "1.11.0"
|
|
1578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1579
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
1580
|
+
dependencies = [
|
|
1581
|
+
"either",
|
|
1582
|
+
"rayon-core",
|
|
1583
|
+
]
|
|
1584
|
+
|
|
1585
|
+
[[package]]
|
|
1586
|
+
name = "rayon-core"
|
|
1587
|
+
version = "1.13.0"
|
|
1588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1589
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1590
|
+
dependencies = [
|
|
1591
|
+
"crossbeam-deque",
|
|
1592
|
+
"crossbeam-utils",
|
|
1593
|
+
]
|
|
1594
|
+
|
|
1595
|
+
[[package]]
|
|
1596
|
+
name = "read-fonts"
|
|
1597
|
+
version = "0.36.0"
|
|
1598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1599
|
+
checksum = "5eaa2941a4c05443ee3a7b26ab076a553c343ad5995230cc2b1d3e993bdc6345"
|
|
1600
|
+
dependencies = [
|
|
1601
|
+
"bytemuck",
|
|
1602
|
+
"font-types",
|
|
1603
|
+
"serde",
|
|
1604
|
+
]
|
|
1605
|
+
|
|
1606
|
+
[[package]]
|
|
1607
|
+
name = "redox_syscall"
|
|
1608
|
+
version = "0.5.17"
|
|
1609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1610
|
+
checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77"
|
|
1611
|
+
dependencies = [
|
|
1612
|
+
"bitflags",
|
|
1613
|
+
]
|
|
1614
|
+
|
|
1615
|
+
[[package]]
|
|
1616
|
+
name = "regex"
|
|
1617
|
+
version = "1.11.2"
|
|
1618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1619
|
+
checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912"
|
|
1620
|
+
dependencies = [
|
|
1621
|
+
"aho-corasick",
|
|
1622
|
+
"memchr",
|
|
1623
|
+
"regex-automata",
|
|
1624
|
+
"regex-syntax",
|
|
1625
|
+
]
|
|
1626
|
+
|
|
1627
|
+
[[package]]
|
|
1628
|
+
name = "regex-automata"
|
|
1629
|
+
version = "0.4.10"
|
|
1630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1631
|
+
checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6"
|
|
1632
|
+
dependencies = [
|
|
1633
|
+
"aho-corasick",
|
|
1634
|
+
"memchr",
|
|
1635
|
+
"regex-syntax",
|
|
1636
|
+
]
|
|
1637
|
+
|
|
1638
|
+
[[package]]
|
|
1639
|
+
name = "regex-syntax"
|
|
1640
|
+
version = "0.8.6"
|
|
1641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1642
|
+
checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001"
|
|
1643
|
+
|
|
1644
|
+
[[package]]
|
|
1645
|
+
name = "relative-path"
|
|
1646
|
+
version = "1.9.3"
|
|
1647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1648
|
+
checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
|
|
1649
|
+
|
|
1650
|
+
[[package]]
|
|
1651
|
+
name = "ring"
|
|
1652
|
+
version = "0.17.14"
|
|
1653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1654
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1655
|
+
dependencies = [
|
|
1656
|
+
"cc",
|
|
1657
|
+
"cfg-if",
|
|
1658
|
+
"getrandom 0.2.16",
|
|
1659
|
+
"libc",
|
|
1660
|
+
"untrusted",
|
|
1661
|
+
"windows-sys 0.52.0",
|
|
1662
|
+
]
|
|
1663
|
+
|
|
1664
|
+
[[package]]
|
|
1665
|
+
name = "rstest"
|
|
1666
|
+
version = "0.26.1"
|
|
1667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1668
|
+
checksum = "f5a3193c063baaa2a95a33f03035c8a72b83d97a54916055ba22d35ed3839d49"
|
|
1669
|
+
dependencies = [
|
|
1670
|
+
"futures-timer",
|
|
1671
|
+
"futures-util",
|
|
1672
|
+
"rstest_macros",
|
|
1673
|
+
]
|
|
1674
|
+
|
|
1675
|
+
[[package]]
|
|
1676
|
+
name = "rstest_macros"
|
|
1677
|
+
version = "0.26.1"
|
|
1678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1679
|
+
checksum = "9c845311f0ff7951c5506121a9ad75aec44d083c31583b2ea5a30bcb0b0abba0"
|
|
1680
|
+
dependencies = [
|
|
1681
|
+
"cfg-if",
|
|
1682
|
+
"glob",
|
|
1683
|
+
"proc-macro-crate",
|
|
1684
|
+
"proc-macro2",
|
|
1685
|
+
"quote",
|
|
1686
|
+
"regex",
|
|
1687
|
+
"relative-path",
|
|
1688
|
+
"rustc_version",
|
|
1689
|
+
"syn",
|
|
1690
|
+
"unicode-ident",
|
|
1691
|
+
]
|
|
1692
|
+
|
|
1693
|
+
[[package]]
|
|
1694
|
+
name = "rustc-hash"
|
|
1695
|
+
version = "1.1.0"
|
|
1696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1697
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
1698
|
+
|
|
1699
|
+
[[package]]
|
|
1700
|
+
name = "rustc_version"
|
|
1701
|
+
version = "0.4.1"
|
|
1702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1703
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
1704
|
+
dependencies = [
|
|
1705
|
+
"semver",
|
|
1706
|
+
]
|
|
1707
|
+
|
|
1708
|
+
[[package]]
|
|
1709
|
+
name = "rustix"
|
|
1710
|
+
version = "1.1.2"
|
|
1711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1712
|
+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
|
|
1713
|
+
dependencies = [
|
|
1714
|
+
"bitflags",
|
|
1715
|
+
"errno",
|
|
1716
|
+
"libc",
|
|
1717
|
+
"linux-raw-sys",
|
|
1718
|
+
"windows-sys 0.61.0",
|
|
1719
|
+
]
|
|
1720
|
+
|
|
1721
|
+
[[package]]
|
|
1722
|
+
name = "rustls"
|
|
1723
|
+
version = "0.23.31"
|
|
1724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1725
|
+
checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc"
|
|
1726
|
+
dependencies = [
|
|
1727
|
+
"log",
|
|
1728
|
+
"once_cell",
|
|
1729
|
+
"ring",
|
|
1730
|
+
"rustls-pki-types",
|
|
1731
|
+
"rustls-webpki",
|
|
1732
|
+
"subtle",
|
|
1733
|
+
"zeroize",
|
|
1734
|
+
]
|
|
1735
|
+
|
|
1736
|
+
[[package]]
|
|
1737
|
+
name = "rustls-pemfile"
|
|
1738
|
+
version = "2.2.0"
|
|
1739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1740
|
+
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
|
|
1741
|
+
dependencies = [
|
|
1742
|
+
"rustls-pki-types",
|
|
1743
|
+
]
|
|
1744
|
+
|
|
1745
|
+
[[package]]
|
|
1746
|
+
name = "rustls-pki-types"
|
|
1747
|
+
version = "1.12.0"
|
|
1748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1749
|
+
checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
|
|
1750
|
+
dependencies = [
|
|
1751
|
+
"zeroize",
|
|
1752
|
+
]
|
|
1753
|
+
|
|
1754
|
+
[[package]]
|
|
1755
|
+
name = "rustls-webpki"
|
|
1756
|
+
version = "0.103.6"
|
|
1757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1758
|
+
checksum = "8572f3c2cb9934231157b45499fc41e1f58c589fdfb81a844ba873265e80f8eb"
|
|
1759
|
+
dependencies = [
|
|
1760
|
+
"ring",
|
|
1761
|
+
"rustls-pki-types",
|
|
1762
|
+
"untrusted",
|
|
1763
|
+
]
|
|
1764
|
+
|
|
1765
|
+
[[package]]
|
|
1766
|
+
name = "rustversion"
|
|
1767
|
+
version = "1.0.22"
|
|
1768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1769
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1770
|
+
|
|
1771
|
+
[[package]]
|
|
1772
|
+
name = "ryu"
|
|
1773
|
+
version = "1.0.20"
|
|
1774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1775
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
1776
|
+
|
|
1777
|
+
[[package]]
|
|
1778
|
+
name = "same-file"
|
|
1779
|
+
version = "1.0.6"
|
|
1780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1781
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1782
|
+
dependencies = [
|
|
1783
|
+
"winapi-util",
|
|
1784
|
+
]
|
|
1785
|
+
|
|
1786
|
+
[[package]]
|
|
1787
|
+
name = "scopeguard"
|
|
1788
|
+
version = "1.2.0"
|
|
1789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1790
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1791
|
+
|
|
1792
|
+
[[package]]
|
|
1793
|
+
name = "semver"
|
|
1794
|
+
version = "1.0.27"
|
|
1795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1796
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
1797
|
+
dependencies = [
|
|
1798
|
+
"serde",
|
|
1799
|
+
"serde_core",
|
|
1800
|
+
]
|
|
1801
|
+
|
|
1802
|
+
[[package]]
|
|
1803
|
+
name = "serde"
|
|
1804
|
+
version = "1.0.225"
|
|
1805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1806
|
+
checksum = "fd6c24dee235d0da097043389623fb913daddf92c76e9f5a1db88607a0bcbd1d"
|
|
1807
|
+
dependencies = [
|
|
1808
|
+
"serde_core",
|
|
1809
|
+
"serde_derive",
|
|
1810
|
+
]
|
|
1811
|
+
|
|
1812
|
+
[[package]]
|
|
1813
|
+
name = "serde_core"
|
|
1814
|
+
version = "1.0.225"
|
|
1815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1816
|
+
checksum = "659356f9a0cb1e529b24c01e43ad2bdf520ec4ceaf83047b83ddcc2251f96383"
|
|
1817
|
+
dependencies = [
|
|
1818
|
+
"serde_derive",
|
|
1819
|
+
]
|
|
1820
|
+
|
|
1821
|
+
[[package]]
|
|
1822
|
+
name = "serde_derive"
|
|
1823
|
+
version = "1.0.225"
|
|
1824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1825
|
+
checksum = "0ea936adf78b1f766949a4977b91d2f5595825bd6ec079aa9543ad2685fc4516"
|
|
1826
|
+
dependencies = [
|
|
1827
|
+
"proc-macro2",
|
|
1828
|
+
"quote",
|
|
1829
|
+
"syn",
|
|
1830
|
+
]
|
|
1831
|
+
|
|
1832
|
+
[[package]]
|
|
1833
|
+
name = "serde_json"
|
|
1834
|
+
version = "1.0.145"
|
|
1835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1836
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
1837
|
+
dependencies = [
|
|
1838
|
+
"itoa",
|
|
1839
|
+
"memchr",
|
|
1840
|
+
"ryu",
|
|
1841
|
+
"serde",
|
|
1842
|
+
"serde_core",
|
|
1843
|
+
]
|
|
1844
|
+
|
|
1845
|
+
[[package]]
|
|
1846
|
+
name = "serde_repr"
|
|
1847
|
+
version = "0.1.20"
|
|
1848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1849
|
+
checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
|
|
1850
|
+
dependencies = [
|
|
1851
|
+
"proc-macro2",
|
|
1852
|
+
"quote",
|
|
1853
|
+
"syn",
|
|
1854
|
+
]
|
|
1855
|
+
|
|
1856
|
+
[[package]]
|
|
1857
|
+
name = "serde_yaml"
|
|
1858
|
+
version = "0.9.34+deprecated"
|
|
1859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1860
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
1861
|
+
dependencies = [
|
|
1862
|
+
"indexmap",
|
|
1863
|
+
"itoa",
|
|
1864
|
+
"ryu",
|
|
1865
|
+
"serde",
|
|
1866
|
+
"unsafe-libyaml",
|
|
1867
|
+
]
|
|
1868
|
+
|
|
1869
|
+
[[package]]
|
|
1870
|
+
name = "shlex"
|
|
1871
|
+
version = "1.3.0"
|
|
1872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1873
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1874
|
+
|
|
1875
|
+
[[package]]
|
|
1876
|
+
name = "skrifa"
|
|
1877
|
+
version = "0.39.0"
|
|
1878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1879
|
+
checksum = "9c9eb0b904a04d09bd68c65d946617b8ff733009999050f3b851c32fb3cfb60e"
|
|
1880
|
+
dependencies = [
|
|
1881
|
+
"bytemuck",
|
|
1882
|
+
"read-fonts",
|
|
1883
|
+
]
|
|
1884
|
+
|
|
1885
|
+
[[package]]
|
|
1886
|
+
name = "slab"
|
|
1887
|
+
version = "0.4.11"
|
|
1888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1889
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
1890
|
+
|
|
1891
|
+
[[package]]
|
|
1892
|
+
name = "smallvec"
|
|
1893
|
+
version = "1.15.1"
|
|
1894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1895
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1896
|
+
dependencies = [
|
|
1897
|
+
"serde",
|
|
1898
|
+
]
|
|
1899
|
+
|
|
1900
|
+
[[package]]
|
|
1901
|
+
name = "smol_str"
|
|
1902
|
+
version = "0.2.2"
|
|
1903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1904
|
+
checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead"
|
|
1905
|
+
dependencies = [
|
|
1906
|
+
"serde",
|
|
1907
|
+
]
|
|
1908
|
+
|
|
1909
|
+
[[package]]
|
|
1910
|
+
name = "stable_deref_trait"
|
|
1911
|
+
version = "1.2.0"
|
|
1912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1913
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
1914
|
+
|
|
1915
|
+
[[package]]
|
|
1916
|
+
name = "strsim"
|
|
1917
|
+
version = "0.11.1"
|
|
1918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1919
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1920
|
+
|
|
1921
|
+
[[package]]
|
|
1922
|
+
name = "subtle"
|
|
1923
|
+
version = "2.6.1"
|
|
1924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1925
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1926
|
+
|
|
1927
|
+
[[package]]
|
|
1928
|
+
name = "syn"
|
|
1929
|
+
version = "2.0.106"
|
|
1930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1931
|
+
checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
|
|
1932
|
+
dependencies = [
|
|
1933
|
+
"proc-macro2",
|
|
1934
|
+
"quote",
|
|
1935
|
+
"unicode-ident",
|
|
1936
|
+
]
|
|
1937
|
+
|
|
1938
|
+
[[package]]
|
|
1939
|
+
name = "synstructure"
|
|
1940
|
+
version = "0.13.2"
|
|
1941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1942
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1943
|
+
dependencies = [
|
|
1944
|
+
"proc-macro2",
|
|
1945
|
+
"quote",
|
|
1946
|
+
"syn",
|
|
1947
|
+
]
|
|
1948
|
+
|
|
1949
|
+
[[package]]
|
|
1950
|
+
name = "temp-env"
|
|
1951
|
+
version = "0.3.6"
|
|
1952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1953
|
+
checksum = "96374855068f47402c3121c6eed88d29cb1de8f3ab27090e273e420bdabcf050"
|
|
1954
|
+
dependencies = [
|
|
1955
|
+
"parking_lot",
|
|
1956
|
+
]
|
|
1957
|
+
|
|
1958
|
+
[[package]]
|
|
1959
|
+
name = "tempfile"
|
|
1960
|
+
version = "3.22.0"
|
|
1961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1962
|
+
checksum = "84fa4d11fadde498443cca10fd3ac23c951f0dc59e080e9f4b93d4df4e4eea53"
|
|
1963
|
+
dependencies = [
|
|
1964
|
+
"fastrand",
|
|
1965
|
+
"getrandom 0.3.3",
|
|
1966
|
+
"once_cell",
|
|
1967
|
+
"rustix",
|
|
1968
|
+
"windows-sys 0.61.0",
|
|
1969
|
+
]
|
|
1970
|
+
|
|
1971
|
+
[[package]]
|
|
1972
|
+
name = "thiserror"
|
|
1973
|
+
version = "2.0.16"
|
|
1974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1975
|
+
checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0"
|
|
1976
|
+
dependencies = [
|
|
1977
|
+
"thiserror-impl",
|
|
1978
|
+
]
|
|
1979
|
+
|
|
1980
|
+
[[package]]
|
|
1981
|
+
name = "thiserror-impl"
|
|
1982
|
+
version = "2.0.16"
|
|
1983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1984
|
+
checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960"
|
|
1985
|
+
dependencies = [
|
|
1986
|
+
"proc-macro2",
|
|
1987
|
+
"quote",
|
|
1988
|
+
"syn",
|
|
1989
|
+
]
|
|
1990
|
+
|
|
1991
|
+
[[package]]
|
|
1992
|
+
name = "threadpool"
|
|
1993
|
+
version = "1.8.1"
|
|
1994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1995
|
+
checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
|
|
1996
|
+
dependencies = [
|
|
1997
|
+
"num_cpus",
|
|
1998
|
+
]
|
|
1999
|
+
|
|
2000
|
+
[[package]]
|
|
2001
|
+
name = "tidier"
|
|
2002
|
+
version = "0.5.3"
|
|
2003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2004
|
+
checksum = "a2614ebaafedfd01ea44541a834f413f597f5fa44cb04e190a926cd38b2a60c4"
|
|
2005
|
+
dependencies = [
|
|
2006
|
+
"errno",
|
|
2007
|
+
"memchr",
|
|
2008
|
+
"tidy-sys",
|
|
2009
|
+
]
|
|
2010
|
+
|
|
2011
|
+
[[package]]
|
|
2012
|
+
name = "tidy-sys"
|
|
2013
|
+
version = "0.8.2"
|
|
2014
|
+
source = "git+https://github.com/cmyr/tidy-sys.git?branch=cmake-hotfix#405e80dc01df771940cb9795228fa08ce426d5a5"
|
|
2015
|
+
dependencies = [
|
|
2016
|
+
"bindgen",
|
|
2017
|
+
"cmake",
|
|
2018
|
+
]
|
|
2019
|
+
|
|
2020
|
+
[[package]]
|
|
2021
|
+
name = "time"
|
|
2022
|
+
version = "0.3.43"
|
|
2023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2024
|
+
checksum = "83bde6f1ec10e72d583d91623c939f623002284ef622b87de38cfd546cbf2031"
|
|
2025
|
+
dependencies = [
|
|
2026
|
+
"deranged",
|
|
2027
|
+
"libc",
|
|
2028
|
+
"num-conv",
|
|
2029
|
+
"num_threads",
|
|
2030
|
+
"powerfmt",
|
|
2031
|
+
"serde",
|
|
2032
|
+
"time-core",
|
|
2033
|
+
"time-macros",
|
|
2034
|
+
]
|
|
2035
|
+
|
|
2036
|
+
[[package]]
|
|
2037
|
+
name = "time-core"
|
|
2038
|
+
version = "0.1.6"
|
|
2039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2040
|
+
checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
|
|
2041
|
+
|
|
2042
|
+
[[package]]
|
|
2043
|
+
name = "time-macros"
|
|
2044
|
+
version = "0.2.24"
|
|
2045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2046
|
+
checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3"
|
|
2047
|
+
dependencies = [
|
|
2048
|
+
"num-conv",
|
|
2049
|
+
"time-core",
|
|
2050
|
+
]
|
|
2051
|
+
|
|
2052
|
+
[[package]]
|
|
2053
|
+
name = "tinystr"
|
|
2054
|
+
version = "0.8.1"
|
|
2055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2056
|
+
checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
|
|
2057
|
+
dependencies = [
|
|
2058
|
+
"displaydoc",
|
|
2059
|
+
"serde",
|
|
2060
|
+
"zerovec",
|
|
2061
|
+
]
|
|
2062
|
+
|
|
2063
|
+
[[package]]
|
|
2064
|
+
name = "tinytemplate"
|
|
2065
|
+
version = "1.2.1"
|
|
2066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2067
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
2068
|
+
dependencies = [
|
|
2069
|
+
"serde",
|
|
2070
|
+
"serde_json",
|
|
2071
|
+
]
|
|
2072
|
+
|
|
2073
|
+
[[package]]
|
|
2074
|
+
name = "toml_datetime"
|
|
2075
|
+
version = "0.7.3"
|
|
2076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2077
|
+
checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
|
|
2078
|
+
dependencies = [
|
|
2079
|
+
"serde_core",
|
|
2080
|
+
]
|
|
2081
|
+
|
|
2082
|
+
[[package]]
|
|
2083
|
+
name = "toml_edit"
|
|
2084
|
+
version = "0.23.7"
|
|
2085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2086
|
+
checksum = "6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d"
|
|
2087
|
+
dependencies = [
|
|
2088
|
+
"indexmap",
|
|
2089
|
+
"toml_datetime",
|
|
2090
|
+
"toml_parser",
|
|
2091
|
+
"winnow",
|
|
2092
|
+
]
|
|
2093
|
+
|
|
2094
|
+
[[package]]
|
|
2095
|
+
name = "toml_parser"
|
|
2096
|
+
version = "1.0.4"
|
|
2097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2098
|
+
checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
|
|
2099
|
+
dependencies = [
|
|
2100
|
+
"winnow",
|
|
2101
|
+
]
|
|
2102
|
+
|
|
2103
|
+
[[package]]
|
|
2104
|
+
name = "ufo2fontir"
|
|
2105
|
+
version = "0.2.3"
|
|
2106
|
+
dependencies = [
|
|
2107
|
+
"chrono",
|
|
2108
|
+
"diff",
|
|
2109
|
+
"env_logger",
|
|
2110
|
+
"fontdrasil",
|
|
2111
|
+
"fontir",
|
|
2112
|
+
"indexmap",
|
|
2113
|
+
"kurbo",
|
|
2114
|
+
"log",
|
|
2115
|
+
"norad",
|
|
2116
|
+
"ordered-float",
|
|
2117
|
+
"plist",
|
|
2118
|
+
"pretty_assertions",
|
|
2119
|
+
"rstest",
|
|
2120
|
+
"serde",
|
|
2121
|
+
"serde_yaml",
|
|
2122
|
+
"tempfile",
|
|
2123
|
+
"thiserror",
|
|
2124
|
+
"write-fonts",
|
|
2125
|
+
]
|
|
2126
|
+
|
|
2127
|
+
[[package]]
|
|
2128
|
+
name = "unicode-ident"
|
|
2129
|
+
version = "1.0.19"
|
|
2130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2131
|
+
checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d"
|
|
2132
|
+
|
|
2133
|
+
[[package]]
|
|
2134
|
+
name = "unsafe-libyaml"
|
|
2135
|
+
version = "0.2.11"
|
|
2136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2137
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
2138
|
+
|
|
2139
|
+
[[package]]
|
|
2140
|
+
name = "untrusted"
|
|
2141
|
+
version = "0.9.0"
|
|
2142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2143
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
2144
|
+
|
|
2145
|
+
[[package]]
|
|
2146
|
+
name = "ureq"
|
|
2147
|
+
version = "3.1.2"
|
|
2148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2149
|
+
checksum = "99ba1025f18a4a3fc3e9b48c868e9beb4f24f4b4b1a325bada26bd4119f46537"
|
|
2150
|
+
dependencies = [
|
|
2151
|
+
"base64",
|
|
2152
|
+
"flate2",
|
|
2153
|
+
"log",
|
|
2154
|
+
"percent-encoding",
|
|
2155
|
+
"rustls",
|
|
2156
|
+
"rustls-pemfile",
|
|
2157
|
+
"rustls-pki-types",
|
|
2158
|
+
"ureq-proto",
|
|
2159
|
+
"utf-8",
|
|
2160
|
+
"webpki-roots",
|
|
2161
|
+
]
|
|
2162
|
+
|
|
2163
|
+
[[package]]
|
|
2164
|
+
name = "ureq-proto"
|
|
2165
|
+
version = "0.5.2"
|
|
2166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2167
|
+
checksum = "60b4531c118335662134346048ddb0e54cc86bd7e81866757873055f0e38f5d2"
|
|
2168
|
+
dependencies = [
|
|
2169
|
+
"base64",
|
|
2170
|
+
"http",
|
|
2171
|
+
"httparse",
|
|
2172
|
+
"log",
|
|
2173
|
+
]
|
|
2174
|
+
|
|
2175
|
+
[[package]]
|
|
2176
|
+
name = "utf-8"
|
|
2177
|
+
version = "0.7.6"
|
|
2178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2179
|
+
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
2180
|
+
|
|
2181
|
+
[[package]]
|
|
2182
|
+
name = "utf8parse"
|
|
2183
|
+
version = "0.2.2"
|
|
2184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2185
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
2186
|
+
|
|
2187
|
+
[[package]]
|
|
2188
|
+
name = "vergen"
|
|
2189
|
+
version = "9.0.6"
|
|
2190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2191
|
+
checksum = "6b2bf58be11fc9414104c6d3a2e464163db5ef74b12296bda593cac37b6e4777"
|
|
2192
|
+
dependencies = [
|
|
2193
|
+
"anyhow",
|
|
2194
|
+
"cargo_metadata",
|
|
2195
|
+
"derive_builder",
|
|
2196
|
+
"regex",
|
|
2197
|
+
"rustc_version",
|
|
2198
|
+
"rustversion",
|
|
2199
|
+
"time",
|
|
2200
|
+
"vergen-lib",
|
|
2201
|
+
]
|
|
2202
|
+
|
|
2203
|
+
[[package]]
|
|
2204
|
+
name = "vergen-gitcl"
|
|
2205
|
+
version = "1.0.8"
|
|
2206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2207
|
+
checksum = "b9dfc1de6eb2e08a4ddf152f1b179529638bedc0ea95e6d667c014506377aefe"
|
|
2208
|
+
dependencies = [
|
|
2209
|
+
"anyhow",
|
|
2210
|
+
"derive_builder",
|
|
2211
|
+
"rustversion",
|
|
2212
|
+
"time",
|
|
2213
|
+
"vergen",
|
|
2214
|
+
"vergen-lib",
|
|
2215
|
+
]
|
|
2216
|
+
|
|
2217
|
+
[[package]]
|
|
2218
|
+
name = "vergen-lib"
|
|
2219
|
+
version = "0.1.6"
|
|
2220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2221
|
+
checksum = "9b07e6010c0f3e59fcb164e0163834597da68d1f864e2b8ca49f74de01e9c166"
|
|
2222
|
+
dependencies = [
|
|
2223
|
+
"anyhow",
|
|
2224
|
+
"derive_builder",
|
|
2225
|
+
"rustversion",
|
|
2226
|
+
]
|
|
2227
|
+
|
|
2228
|
+
[[package]]
|
|
2229
|
+
name = "version_check"
|
|
2230
|
+
version = "0.9.5"
|
|
2231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2232
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
2233
|
+
|
|
2234
|
+
[[package]]
|
|
2235
|
+
name = "walkdir"
|
|
2236
|
+
version = "2.5.0"
|
|
2237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2238
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
2239
|
+
dependencies = [
|
|
2240
|
+
"same-file",
|
|
2241
|
+
"winapi-util",
|
|
2242
|
+
]
|
|
2243
|
+
|
|
2244
|
+
[[package]]
|
|
2245
|
+
name = "wasi"
|
|
2246
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
2247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2248
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
2249
|
+
|
|
2250
|
+
[[package]]
|
|
2251
|
+
name = "wasi"
|
|
2252
|
+
version = "0.14.7+wasi-0.2.4"
|
|
2253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2254
|
+
checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
|
|
2255
|
+
dependencies = [
|
|
2256
|
+
"wasip2",
|
|
2257
|
+
]
|
|
2258
|
+
|
|
2259
|
+
[[package]]
|
|
2260
|
+
name = "wasip2"
|
|
2261
|
+
version = "1.0.1+wasi-0.2.4"
|
|
2262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2263
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
2264
|
+
dependencies = [
|
|
2265
|
+
"wit-bindgen",
|
|
2266
|
+
]
|
|
2267
|
+
|
|
2268
|
+
[[package]]
|
|
2269
|
+
name = "wasm-bindgen"
|
|
2270
|
+
version = "0.2.103"
|
|
2271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2272
|
+
checksum = "ab10a69fbd0a177f5f649ad4d8d3305499c42bab9aef2f7ff592d0ec8f833819"
|
|
2273
|
+
dependencies = [
|
|
2274
|
+
"cfg-if",
|
|
2275
|
+
"once_cell",
|
|
2276
|
+
"rustversion",
|
|
2277
|
+
"wasm-bindgen-macro",
|
|
2278
|
+
"wasm-bindgen-shared",
|
|
2279
|
+
]
|
|
2280
|
+
|
|
2281
|
+
[[package]]
|
|
2282
|
+
name = "wasm-bindgen-backend"
|
|
2283
|
+
version = "0.2.103"
|
|
2284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2285
|
+
checksum = "0bb702423545a6007bbc368fde243ba47ca275e549c8a28617f56f6ba53b1d1c"
|
|
2286
|
+
dependencies = [
|
|
2287
|
+
"bumpalo",
|
|
2288
|
+
"log",
|
|
2289
|
+
"proc-macro2",
|
|
2290
|
+
"quote",
|
|
2291
|
+
"syn",
|
|
2292
|
+
"wasm-bindgen-shared",
|
|
2293
|
+
]
|
|
2294
|
+
|
|
2295
|
+
[[package]]
|
|
2296
|
+
name = "wasm-bindgen-macro"
|
|
2297
|
+
version = "0.2.103"
|
|
2298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2299
|
+
checksum = "fc65f4f411d91494355917b605e1480033152658d71f722a90647f56a70c88a0"
|
|
2300
|
+
dependencies = [
|
|
2301
|
+
"quote",
|
|
2302
|
+
"wasm-bindgen-macro-support",
|
|
2303
|
+
]
|
|
2304
|
+
|
|
2305
|
+
[[package]]
|
|
2306
|
+
name = "wasm-bindgen-macro-support"
|
|
2307
|
+
version = "0.2.103"
|
|
2308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2309
|
+
checksum = "ffc003a991398a8ee604a401e194b6b3a39677b3173d6e74495eb51b82e99a32"
|
|
2310
|
+
dependencies = [
|
|
2311
|
+
"proc-macro2",
|
|
2312
|
+
"quote",
|
|
2313
|
+
"syn",
|
|
2314
|
+
"wasm-bindgen-backend",
|
|
2315
|
+
"wasm-bindgen-shared",
|
|
2316
|
+
]
|
|
2317
|
+
|
|
2318
|
+
[[package]]
|
|
2319
|
+
name = "wasm-bindgen-shared"
|
|
2320
|
+
version = "0.2.103"
|
|
2321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2322
|
+
checksum = "293c37f4efa430ca14db3721dfbe48d8c33308096bd44d80ebaa775ab71ba1cf"
|
|
2323
|
+
dependencies = [
|
|
2324
|
+
"unicode-ident",
|
|
2325
|
+
]
|
|
2326
|
+
|
|
2327
|
+
[[package]]
|
|
2328
|
+
name = "web-sys"
|
|
2329
|
+
version = "0.3.80"
|
|
2330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2331
|
+
checksum = "fbe734895e869dc429d78c4b433f8d17d95f8d05317440b4fad5ab2d33e596dc"
|
|
2332
|
+
dependencies = [
|
|
2333
|
+
"js-sys",
|
|
2334
|
+
"wasm-bindgen",
|
|
2335
|
+
]
|
|
2336
|
+
|
|
2337
|
+
[[package]]
|
|
2338
|
+
name = "webpki-roots"
|
|
2339
|
+
version = "1.0.2"
|
|
2340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2341
|
+
checksum = "7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2"
|
|
2342
|
+
dependencies = [
|
|
2343
|
+
"rustls-pki-types",
|
|
2344
|
+
]
|
|
2345
|
+
|
|
2346
|
+
[[package]]
|
|
2347
|
+
name = "winapi"
|
|
2348
|
+
version = "0.3.9"
|
|
2349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2350
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
2351
|
+
dependencies = [
|
|
2352
|
+
"winapi-i686-pc-windows-gnu",
|
|
2353
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
2354
|
+
]
|
|
2355
|
+
|
|
2356
|
+
[[package]]
|
|
2357
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
2358
|
+
version = "0.4.0"
|
|
2359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2360
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
2361
|
+
|
|
2362
|
+
[[package]]
|
|
2363
|
+
name = "winapi-util"
|
|
2364
|
+
version = "0.1.11"
|
|
2365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2366
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
2367
|
+
dependencies = [
|
|
2368
|
+
"windows-sys 0.61.0",
|
|
2369
|
+
]
|
|
2370
|
+
|
|
2371
|
+
[[package]]
|
|
2372
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
2373
|
+
version = "0.4.0"
|
|
2374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2375
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2376
|
+
|
|
2377
|
+
[[package]]
|
|
2378
|
+
name = "windows-core"
|
|
2379
|
+
version = "0.62.0"
|
|
2380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2381
|
+
checksum = "57fe7168f7de578d2d8a05b07fd61870d2e73b4020e9f49aa00da8471723497c"
|
|
2382
|
+
dependencies = [
|
|
2383
|
+
"windows-implement",
|
|
2384
|
+
"windows-interface",
|
|
2385
|
+
"windows-link 0.2.0",
|
|
2386
|
+
"windows-result",
|
|
2387
|
+
"windows-strings",
|
|
2388
|
+
]
|
|
2389
|
+
|
|
2390
|
+
[[package]]
|
|
2391
|
+
name = "windows-implement"
|
|
2392
|
+
version = "0.60.0"
|
|
2393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2394
|
+
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
|
2395
|
+
dependencies = [
|
|
2396
|
+
"proc-macro2",
|
|
2397
|
+
"quote",
|
|
2398
|
+
"syn",
|
|
2399
|
+
]
|
|
2400
|
+
|
|
2401
|
+
[[package]]
|
|
2402
|
+
name = "windows-interface"
|
|
2403
|
+
version = "0.59.1"
|
|
2404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2405
|
+
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
|
2406
|
+
dependencies = [
|
|
2407
|
+
"proc-macro2",
|
|
2408
|
+
"quote",
|
|
2409
|
+
"syn",
|
|
2410
|
+
]
|
|
2411
|
+
|
|
2412
|
+
[[package]]
|
|
2413
|
+
name = "windows-link"
|
|
2414
|
+
version = "0.1.3"
|
|
2415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2416
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
2417
|
+
|
|
2418
|
+
[[package]]
|
|
2419
|
+
name = "windows-link"
|
|
2420
|
+
version = "0.2.0"
|
|
2421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2422
|
+
checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65"
|
|
2423
|
+
|
|
2424
|
+
[[package]]
|
|
2425
|
+
name = "windows-result"
|
|
2426
|
+
version = "0.4.0"
|
|
2427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2428
|
+
checksum = "7084dcc306f89883455a206237404d3eaf961e5bd7e0f312f7c91f57eb44167f"
|
|
2429
|
+
dependencies = [
|
|
2430
|
+
"windows-link 0.2.0",
|
|
2431
|
+
]
|
|
2432
|
+
|
|
2433
|
+
[[package]]
|
|
2434
|
+
name = "windows-strings"
|
|
2435
|
+
version = "0.5.0"
|
|
2436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2437
|
+
checksum = "7218c655a553b0bed4426cf54b20d7ba363ef543b52d515b3e48d7fd55318dda"
|
|
2438
|
+
dependencies = [
|
|
2439
|
+
"windows-link 0.2.0",
|
|
2440
|
+
]
|
|
2441
|
+
|
|
2442
|
+
[[package]]
|
|
2443
|
+
name = "windows-sys"
|
|
2444
|
+
version = "0.52.0"
|
|
2445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2446
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2447
|
+
dependencies = [
|
|
2448
|
+
"windows-targets 0.52.6",
|
|
2449
|
+
]
|
|
2450
|
+
|
|
2451
|
+
[[package]]
|
|
2452
|
+
name = "windows-sys"
|
|
2453
|
+
version = "0.60.2"
|
|
2454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2455
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
2456
|
+
dependencies = [
|
|
2457
|
+
"windows-targets 0.53.3",
|
|
2458
|
+
]
|
|
2459
|
+
|
|
2460
|
+
[[package]]
|
|
2461
|
+
name = "windows-sys"
|
|
2462
|
+
version = "0.61.0"
|
|
2463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2464
|
+
checksum = "e201184e40b2ede64bc2ea34968b28e33622acdbbf37104f0e4a33f7abe657aa"
|
|
2465
|
+
dependencies = [
|
|
2466
|
+
"windows-link 0.2.0",
|
|
2467
|
+
]
|
|
2468
|
+
|
|
2469
|
+
[[package]]
|
|
2470
|
+
name = "windows-targets"
|
|
2471
|
+
version = "0.52.6"
|
|
2472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2473
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2474
|
+
dependencies = [
|
|
2475
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
2476
|
+
"windows_aarch64_msvc 0.52.6",
|
|
2477
|
+
"windows_i686_gnu 0.52.6",
|
|
2478
|
+
"windows_i686_gnullvm 0.52.6",
|
|
2479
|
+
"windows_i686_msvc 0.52.6",
|
|
2480
|
+
"windows_x86_64_gnu 0.52.6",
|
|
2481
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
2482
|
+
"windows_x86_64_msvc 0.52.6",
|
|
2483
|
+
]
|
|
2484
|
+
|
|
2485
|
+
[[package]]
|
|
2486
|
+
name = "windows-targets"
|
|
2487
|
+
version = "0.53.3"
|
|
2488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2489
|
+
checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
|
|
2490
|
+
dependencies = [
|
|
2491
|
+
"windows-link 0.1.3",
|
|
2492
|
+
"windows_aarch64_gnullvm 0.53.0",
|
|
2493
|
+
"windows_aarch64_msvc 0.53.0",
|
|
2494
|
+
"windows_i686_gnu 0.53.0",
|
|
2495
|
+
"windows_i686_gnullvm 0.53.0",
|
|
2496
|
+
"windows_i686_msvc 0.53.0",
|
|
2497
|
+
"windows_x86_64_gnu 0.53.0",
|
|
2498
|
+
"windows_x86_64_gnullvm 0.53.0",
|
|
2499
|
+
"windows_x86_64_msvc 0.53.0",
|
|
2500
|
+
]
|
|
2501
|
+
|
|
2502
|
+
[[package]]
|
|
2503
|
+
name = "windows_aarch64_gnullvm"
|
|
2504
|
+
version = "0.52.6"
|
|
2505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2506
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2507
|
+
|
|
2508
|
+
[[package]]
|
|
2509
|
+
name = "windows_aarch64_gnullvm"
|
|
2510
|
+
version = "0.53.0"
|
|
2511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2512
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
2513
|
+
|
|
2514
|
+
[[package]]
|
|
2515
|
+
name = "windows_aarch64_msvc"
|
|
2516
|
+
version = "0.52.6"
|
|
2517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2518
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2519
|
+
|
|
2520
|
+
[[package]]
|
|
2521
|
+
name = "windows_aarch64_msvc"
|
|
2522
|
+
version = "0.53.0"
|
|
2523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2524
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
2525
|
+
|
|
2526
|
+
[[package]]
|
|
2527
|
+
name = "windows_i686_gnu"
|
|
2528
|
+
version = "0.52.6"
|
|
2529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2530
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2531
|
+
|
|
2532
|
+
[[package]]
|
|
2533
|
+
name = "windows_i686_gnu"
|
|
2534
|
+
version = "0.53.0"
|
|
2535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2536
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
|
2537
|
+
|
|
2538
|
+
[[package]]
|
|
2539
|
+
name = "windows_i686_gnullvm"
|
|
2540
|
+
version = "0.52.6"
|
|
2541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2542
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2543
|
+
|
|
2544
|
+
[[package]]
|
|
2545
|
+
name = "windows_i686_gnullvm"
|
|
2546
|
+
version = "0.53.0"
|
|
2547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2548
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
2549
|
+
|
|
2550
|
+
[[package]]
|
|
2551
|
+
name = "windows_i686_msvc"
|
|
2552
|
+
version = "0.52.6"
|
|
2553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2554
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2555
|
+
|
|
2556
|
+
[[package]]
|
|
2557
|
+
name = "windows_i686_msvc"
|
|
2558
|
+
version = "0.53.0"
|
|
2559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2560
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
2561
|
+
|
|
2562
|
+
[[package]]
|
|
2563
|
+
name = "windows_x86_64_gnu"
|
|
2564
|
+
version = "0.52.6"
|
|
2565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2566
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2567
|
+
|
|
2568
|
+
[[package]]
|
|
2569
|
+
name = "windows_x86_64_gnu"
|
|
2570
|
+
version = "0.53.0"
|
|
2571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2572
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
2573
|
+
|
|
2574
|
+
[[package]]
|
|
2575
|
+
name = "windows_x86_64_gnullvm"
|
|
2576
|
+
version = "0.52.6"
|
|
2577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2578
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2579
|
+
|
|
2580
|
+
[[package]]
|
|
2581
|
+
name = "windows_x86_64_gnullvm"
|
|
2582
|
+
version = "0.53.0"
|
|
2583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2584
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
2585
|
+
|
|
2586
|
+
[[package]]
|
|
2587
|
+
name = "windows_x86_64_msvc"
|
|
2588
|
+
version = "0.52.6"
|
|
2589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2590
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2591
|
+
|
|
2592
|
+
[[package]]
|
|
2593
|
+
name = "windows_x86_64_msvc"
|
|
2594
|
+
version = "0.53.0"
|
|
2595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2596
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
2597
|
+
|
|
2598
|
+
[[package]]
|
|
2599
|
+
name = "winnow"
|
|
2600
|
+
version = "0.7.13"
|
|
2601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2602
|
+
checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
|
|
2603
|
+
dependencies = [
|
|
2604
|
+
"memchr",
|
|
2605
|
+
]
|
|
2606
|
+
|
|
2607
|
+
[[package]]
|
|
2608
|
+
name = "wit-bindgen"
|
|
2609
|
+
version = "0.46.0"
|
|
2610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2611
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
2612
|
+
|
|
2613
|
+
[[package]]
|
|
2614
|
+
name = "write-fonts"
|
|
2615
|
+
version = "0.44.1"
|
|
2616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2617
|
+
checksum = "187aca250ee00f9d9ad3a1ebc9ed65c9c921fdd4690b095ca6e5a8df7246d871"
|
|
2618
|
+
dependencies = [
|
|
2619
|
+
"font-types",
|
|
2620
|
+
"indexmap",
|
|
2621
|
+
"kurbo",
|
|
2622
|
+
"log",
|
|
2623
|
+
"read-fonts",
|
|
2624
|
+
"serde",
|
|
2625
|
+
]
|
|
2626
|
+
|
|
2627
|
+
[[package]]
|
|
2628
|
+
name = "writeable"
|
|
2629
|
+
version = "0.6.1"
|
|
2630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2631
|
+
checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
|
|
2632
|
+
|
|
2633
|
+
[[package]]
|
|
2634
|
+
name = "yansi"
|
|
2635
|
+
version = "1.0.1"
|
|
2636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2637
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
2638
|
+
|
|
2639
|
+
[[package]]
|
|
2640
|
+
name = "yoke"
|
|
2641
|
+
version = "0.8.0"
|
|
2642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2643
|
+
checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
|
|
2644
|
+
dependencies = [
|
|
2645
|
+
"serde",
|
|
2646
|
+
"stable_deref_trait",
|
|
2647
|
+
"yoke-derive",
|
|
2648
|
+
"zerofrom",
|
|
2649
|
+
]
|
|
2650
|
+
|
|
2651
|
+
[[package]]
|
|
2652
|
+
name = "yoke-derive"
|
|
2653
|
+
version = "0.8.0"
|
|
2654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2655
|
+
checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
|
|
2656
|
+
dependencies = [
|
|
2657
|
+
"proc-macro2",
|
|
2658
|
+
"quote",
|
|
2659
|
+
"syn",
|
|
2660
|
+
"synstructure",
|
|
2661
|
+
]
|
|
2662
|
+
|
|
2663
|
+
[[package]]
|
|
2664
|
+
name = "zerofrom"
|
|
2665
|
+
version = "0.1.6"
|
|
2666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2667
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
2668
|
+
dependencies = [
|
|
2669
|
+
"zerofrom-derive",
|
|
2670
|
+
]
|
|
2671
|
+
|
|
2672
|
+
[[package]]
|
|
2673
|
+
name = "zerofrom-derive"
|
|
2674
|
+
version = "0.1.6"
|
|
2675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2676
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
2677
|
+
dependencies = [
|
|
2678
|
+
"proc-macro2",
|
|
2679
|
+
"quote",
|
|
2680
|
+
"syn",
|
|
2681
|
+
"synstructure",
|
|
2682
|
+
]
|
|
2683
|
+
|
|
2684
|
+
[[package]]
|
|
2685
|
+
name = "zeroize"
|
|
2686
|
+
version = "1.8.1"
|
|
2687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2688
|
+
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
|
2689
|
+
|
|
2690
|
+
[[package]]
|
|
2691
|
+
name = "zerotrie"
|
|
2692
|
+
version = "0.2.2"
|
|
2693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2694
|
+
checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
|
|
2695
|
+
dependencies = [
|
|
2696
|
+
"displaydoc",
|
|
2697
|
+
"yoke",
|
|
2698
|
+
"zerofrom",
|
|
2699
|
+
]
|
|
2700
|
+
|
|
2701
|
+
[[package]]
|
|
2702
|
+
name = "zerovec"
|
|
2703
|
+
version = "0.11.4"
|
|
2704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2705
|
+
checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
|
|
2706
|
+
dependencies = [
|
|
2707
|
+
"yoke",
|
|
2708
|
+
"zerofrom",
|
|
2709
|
+
"zerovec-derive",
|
|
2710
|
+
]
|
|
2711
|
+
|
|
2712
|
+
[[package]]
|
|
2713
|
+
name = "zerovec-derive"
|
|
2714
|
+
version = "0.11.1"
|
|
2715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2716
|
+
checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
|
|
2717
|
+
dependencies = [
|
|
2718
|
+
"proc-macro2",
|
|
2719
|
+
"quote",
|
|
2720
|
+
"syn",
|
|
2721
|
+
]
|