braillify 1.0.2__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.
- braillify-1.0.2/Cargo.lock +832 -0
- braillify-1.0.2/Cargo.toml +10 -0
- braillify-1.0.2/PKG-INFO +7 -0
- braillify-1.0.2/libs/braillify/Cargo.toml +22 -0
- braillify-1.0.2/libs/braillify/README.md +46 -0
- braillify-1.0.2/libs/braillify/src/char_shortcut.rs +67 -0
- braillify-1.0.2/libs/braillify/src/char_struct.rs +150 -0
- braillify-1.0.2/libs/braillify/src/english.rs +39 -0
- braillify-1.0.2/libs/braillify/src/jauem/choseong.rs +51 -0
- braillify-1.0.2/libs/braillify/src/jauem/jongseong.rs +68 -0
- braillify-1.0.2/libs/braillify/src/jauem/mod.rs +2 -0
- braillify-1.0.2/libs/braillify/src/korean_char.rs +66 -0
- braillify-1.0.2/libs/braillify/src/korean_part.rs +47 -0
- braillify-1.0.2/libs/braillify/src/lib.rs +813 -0
- braillify-1.0.2/libs/braillify/src/math_symbol_shortcut.rs +78 -0
- braillify-1.0.2/libs/braillify/src/moeum/jungsong.rs +51 -0
- braillify-1.0.2/libs/braillify/src/moeum/mod.rs +1 -0
- braillify-1.0.2/libs/braillify/src/number.rs +25 -0
- braillify-1.0.2/libs/braillify/src/rule.rs +23 -0
- braillify-1.0.2/libs/braillify/src/rule_en.rs +61 -0
- braillify-1.0.2/libs/braillify/src/split.rs +197 -0
- braillify-1.0.2/libs/braillify/src/symbol_shortcut.rs +147 -0
- braillify-1.0.2/libs/braillify/src/unicode.rs +86 -0
- braillify-1.0.2/libs/braillify/src/utils.rs +53 -0
- braillify-1.0.2/libs/braillify/src/word_shortcut.rs +39 -0
- braillify-1.0.2/packages/python/.gitignore +72 -0
- braillify-1.0.2/packages/python/Cargo.toml +13 -0
- braillify-1.0.2/packages/python/README.md +31 -0
- braillify-1.0.2/packages/python/braillify.pyi +8 -0
- braillify-1.0.2/packages/python/src/lib.rs +27 -0
- braillify-1.0.2/pyproject.toml +16 -0
|
@@ -0,0 +1,832 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "autocfg"
|
|
7
|
+
version = "1.5.0"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "bit-set"
|
|
13
|
+
version = "0.8.0"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"bit-vec",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "bit-vec"
|
|
22
|
+
version = "0.8.0"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "bitflags"
|
|
28
|
+
version = "2.9.1"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "braillify"
|
|
34
|
+
version = "1.0.1"
|
|
35
|
+
dependencies = [
|
|
36
|
+
"csv",
|
|
37
|
+
"phf",
|
|
38
|
+
"proptest",
|
|
39
|
+
"serde_json",
|
|
40
|
+
]
|
|
41
|
+
|
|
42
|
+
[[package]]
|
|
43
|
+
name = "bumpalo"
|
|
44
|
+
version = "3.18.1"
|
|
45
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
46
|
+
checksum = "793db76d6187cd04dff33004d8e6c9cc4e05cd330500379d2394209271b4aeee"
|
|
47
|
+
|
|
48
|
+
[[package]]
|
|
49
|
+
name = "cc"
|
|
50
|
+
version = "1.2.32"
|
|
51
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
52
|
+
checksum = "2352e5597e9c544d5e6d9c95190d5d27738ade584fa8db0a16e130e5c2b5296e"
|
|
53
|
+
dependencies = [
|
|
54
|
+
"shlex",
|
|
55
|
+
]
|
|
56
|
+
|
|
57
|
+
[[package]]
|
|
58
|
+
name = "cfg-if"
|
|
59
|
+
version = "1.0.1"
|
|
60
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
61
|
+
checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
|
|
62
|
+
|
|
63
|
+
[[package]]
|
|
64
|
+
name = "console_error_panic_hook"
|
|
65
|
+
version = "0.1.7"
|
|
66
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
67
|
+
checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
|
|
68
|
+
dependencies = [
|
|
69
|
+
"cfg-if",
|
|
70
|
+
"wasm-bindgen",
|
|
71
|
+
]
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "csv"
|
|
75
|
+
version = "1.3.1"
|
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
+
checksum = "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf"
|
|
78
|
+
dependencies = [
|
|
79
|
+
"csv-core",
|
|
80
|
+
"itoa",
|
|
81
|
+
"ryu",
|
|
82
|
+
"serde",
|
|
83
|
+
]
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "csv-core"
|
|
87
|
+
version = "0.1.12"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "7d02f3b0da4c6504f86e9cd789d8dbafab48c2321be74e9987593de5a894d93d"
|
|
90
|
+
dependencies = [
|
|
91
|
+
"memchr",
|
|
92
|
+
]
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "errno"
|
|
96
|
+
version = "0.3.12"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
|
|
99
|
+
dependencies = [
|
|
100
|
+
"libc",
|
|
101
|
+
"windows-sys",
|
|
102
|
+
]
|
|
103
|
+
|
|
104
|
+
[[package]]
|
|
105
|
+
name = "fastrand"
|
|
106
|
+
version = "2.3.0"
|
|
107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
108
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
109
|
+
|
|
110
|
+
[[package]]
|
|
111
|
+
name = "fnv"
|
|
112
|
+
version = "1.0.7"
|
|
113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
114
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
115
|
+
|
|
116
|
+
[[package]]
|
|
117
|
+
name = "getrandom"
|
|
118
|
+
version = "0.3.3"
|
|
119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
120
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
|
121
|
+
dependencies = [
|
|
122
|
+
"cfg-if",
|
|
123
|
+
"libc",
|
|
124
|
+
"r-efi",
|
|
125
|
+
"wasi",
|
|
126
|
+
]
|
|
127
|
+
|
|
128
|
+
[[package]]
|
|
129
|
+
name = "heck"
|
|
130
|
+
version = "0.5.0"
|
|
131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
132
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
133
|
+
|
|
134
|
+
[[package]]
|
|
135
|
+
name = "indoc"
|
|
136
|
+
version = "2.0.6"
|
|
137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
+
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "itoa"
|
|
142
|
+
version = "1.0.15"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
145
|
+
|
|
146
|
+
[[package]]
|
|
147
|
+
name = "js-sys"
|
|
148
|
+
version = "0.3.77"
|
|
149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
|
151
|
+
dependencies = [
|
|
152
|
+
"once_cell",
|
|
153
|
+
"wasm-bindgen",
|
|
154
|
+
]
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "lazy_static"
|
|
158
|
+
version = "1.5.0"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "libc"
|
|
164
|
+
version = "0.2.175"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
|
|
167
|
+
|
|
168
|
+
[[package]]
|
|
169
|
+
name = "linux-raw-sys"
|
|
170
|
+
version = "0.9.4"
|
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
173
|
+
|
|
174
|
+
[[package]]
|
|
175
|
+
name = "log"
|
|
176
|
+
version = "0.4.27"
|
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
179
|
+
|
|
180
|
+
[[package]]
|
|
181
|
+
name = "memchr"
|
|
182
|
+
version = "2.7.5"
|
|
183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
184
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
|
185
|
+
|
|
186
|
+
[[package]]
|
|
187
|
+
name = "memoffset"
|
|
188
|
+
version = "0.9.1"
|
|
189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
191
|
+
dependencies = [
|
|
192
|
+
"autocfg",
|
|
193
|
+
]
|
|
194
|
+
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "minicov"
|
|
197
|
+
version = "0.3.7"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "f27fe9f1cc3c22e1687f9446c2083c4c5fc7f0bcf1c7a86bdbded14985895b4b"
|
|
200
|
+
dependencies = [
|
|
201
|
+
"cc",
|
|
202
|
+
"walkdir",
|
|
203
|
+
]
|
|
204
|
+
|
|
205
|
+
[[package]]
|
|
206
|
+
name = "node"
|
|
207
|
+
version = "0.1.0"
|
|
208
|
+
dependencies = [
|
|
209
|
+
"braillify",
|
|
210
|
+
"console_error_panic_hook",
|
|
211
|
+
"wasm-bindgen",
|
|
212
|
+
"wasm-bindgen-test",
|
|
213
|
+
]
|
|
214
|
+
|
|
215
|
+
[[package]]
|
|
216
|
+
name = "num-traits"
|
|
217
|
+
version = "0.2.19"
|
|
218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
220
|
+
dependencies = [
|
|
221
|
+
"autocfg",
|
|
222
|
+
]
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "once_cell"
|
|
226
|
+
version = "1.21.3"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "phf"
|
|
232
|
+
version = "0.12.1"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
|
|
235
|
+
dependencies = [
|
|
236
|
+
"phf_macros",
|
|
237
|
+
"phf_shared",
|
|
238
|
+
"serde",
|
|
239
|
+
]
|
|
240
|
+
|
|
241
|
+
[[package]]
|
|
242
|
+
name = "phf_generator"
|
|
243
|
+
version = "0.12.1"
|
|
244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
245
|
+
checksum = "2cbb1126afed61dd6368748dae63b1ee7dc480191c6262a3b4ff1e29d86a6c5b"
|
|
246
|
+
dependencies = [
|
|
247
|
+
"fastrand",
|
|
248
|
+
"phf_shared",
|
|
249
|
+
]
|
|
250
|
+
|
|
251
|
+
[[package]]
|
|
252
|
+
name = "phf_macros"
|
|
253
|
+
version = "0.12.1"
|
|
254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
255
|
+
checksum = "d713258393a82f091ead52047ca779d37e5766226d009de21696c4e667044368"
|
|
256
|
+
dependencies = [
|
|
257
|
+
"phf_generator",
|
|
258
|
+
"phf_shared",
|
|
259
|
+
"proc-macro2",
|
|
260
|
+
"quote",
|
|
261
|
+
"syn",
|
|
262
|
+
]
|
|
263
|
+
|
|
264
|
+
[[package]]
|
|
265
|
+
name = "phf_shared"
|
|
266
|
+
version = "0.12.1"
|
|
267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
268
|
+
checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
|
|
269
|
+
dependencies = [
|
|
270
|
+
"siphasher",
|
|
271
|
+
]
|
|
272
|
+
|
|
273
|
+
[[package]]
|
|
274
|
+
name = "portable-atomic"
|
|
275
|
+
version = "1.11.1"
|
|
276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
278
|
+
|
|
279
|
+
[[package]]
|
|
280
|
+
name = "ppv-lite86"
|
|
281
|
+
version = "0.2.21"
|
|
282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
283
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
284
|
+
dependencies = [
|
|
285
|
+
"zerocopy",
|
|
286
|
+
]
|
|
287
|
+
|
|
288
|
+
[[package]]
|
|
289
|
+
name = "proc-macro2"
|
|
290
|
+
version = "1.0.97"
|
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
+
checksum = "d61789d7719defeb74ea5fe81f2fdfdbd28a803847077cecce2ff14e1472f6f1"
|
|
293
|
+
dependencies = [
|
|
294
|
+
"unicode-ident",
|
|
295
|
+
]
|
|
296
|
+
|
|
297
|
+
[[package]]
|
|
298
|
+
name = "proptest"
|
|
299
|
+
version = "1.7.0"
|
|
300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
301
|
+
checksum = "6fcdab19deb5195a31cf7726a210015ff1496ba1464fd42cb4f537b8b01b471f"
|
|
302
|
+
dependencies = [
|
|
303
|
+
"bit-set",
|
|
304
|
+
"bit-vec",
|
|
305
|
+
"bitflags",
|
|
306
|
+
"lazy_static",
|
|
307
|
+
"num-traits",
|
|
308
|
+
"rand",
|
|
309
|
+
"rand_chacha",
|
|
310
|
+
"rand_xorshift",
|
|
311
|
+
"regex-syntax",
|
|
312
|
+
"rusty-fork",
|
|
313
|
+
"tempfile",
|
|
314
|
+
"unarray",
|
|
315
|
+
]
|
|
316
|
+
|
|
317
|
+
[[package]]
|
|
318
|
+
name = "pyo3"
|
|
319
|
+
version = "0.25.1"
|
|
320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
|
+
checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
|
|
322
|
+
dependencies = [
|
|
323
|
+
"indoc",
|
|
324
|
+
"libc",
|
|
325
|
+
"memoffset",
|
|
326
|
+
"once_cell",
|
|
327
|
+
"portable-atomic",
|
|
328
|
+
"pyo3-build-config",
|
|
329
|
+
"pyo3-ffi",
|
|
330
|
+
"pyo3-macros",
|
|
331
|
+
"unindent",
|
|
332
|
+
]
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "pyo3-build-config"
|
|
336
|
+
version = "0.25.1"
|
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
+
checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
|
|
339
|
+
dependencies = [
|
|
340
|
+
"once_cell",
|
|
341
|
+
"target-lexicon",
|
|
342
|
+
]
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "pyo3-ffi"
|
|
346
|
+
version = "0.25.1"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"libc",
|
|
351
|
+
"pyo3-build-config",
|
|
352
|
+
]
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "pyo3-macros"
|
|
356
|
+
version = "0.25.1"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
|
|
359
|
+
dependencies = [
|
|
360
|
+
"proc-macro2",
|
|
361
|
+
"pyo3-macros-backend",
|
|
362
|
+
"quote",
|
|
363
|
+
"syn",
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "pyo3-macros-backend"
|
|
368
|
+
version = "0.25.1"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
|
|
371
|
+
dependencies = [
|
|
372
|
+
"heck",
|
|
373
|
+
"proc-macro2",
|
|
374
|
+
"pyo3-build-config",
|
|
375
|
+
"quote",
|
|
376
|
+
"syn",
|
|
377
|
+
]
|
|
378
|
+
|
|
379
|
+
[[package]]
|
|
380
|
+
name = "python"
|
|
381
|
+
version = "1.0.2"
|
|
382
|
+
dependencies = [
|
|
383
|
+
"braillify",
|
|
384
|
+
"pyo3",
|
|
385
|
+
]
|
|
386
|
+
|
|
387
|
+
[[package]]
|
|
388
|
+
name = "quick-error"
|
|
389
|
+
version = "1.2.3"
|
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
+
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "quote"
|
|
395
|
+
version = "1.0.40"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
398
|
+
dependencies = [
|
|
399
|
+
"proc-macro2",
|
|
400
|
+
]
|
|
401
|
+
|
|
402
|
+
[[package]]
|
|
403
|
+
name = "r-efi"
|
|
404
|
+
version = "5.2.0"
|
|
405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
406
|
+
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
|
407
|
+
|
|
408
|
+
[[package]]
|
|
409
|
+
name = "rand"
|
|
410
|
+
version = "0.9.1"
|
|
411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
412
|
+
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
|
|
413
|
+
dependencies = [
|
|
414
|
+
"rand_chacha",
|
|
415
|
+
"rand_core",
|
|
416
|
+
]
|
|
417
|
+
|
|
418
|
+
[[package]]
|
|
419
|
+
name = "rand_chacha"
|
|
420
|
+
version = "0.9.0"
|
|
421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
423
|
+
dependencies = [
|
|
424
|
+
"ppv-lite86",
|
|
425
|
+
"rand_core",
|
|
426
|
+
]
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "rand_core"
|
|
430
|
+
version = "0.9.3"
|
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
433
|
+
dependencies = [
|
|
434
|
+
"getrandom",
|
|
435
|
+
]
|
|
436
|
+
|
|
437
|
+
[[package]]
|
|
438
|
+
name = "rand_xorshift"
|
|
439
|
+
version = "0.4.0"
|
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
442
|
+
dependencies = [
|
|
443
|
+
"rand_core",
|
|
444
|
+
]
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "regex-syntax"
|
|
448
|
+
version = "0.8.5"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "rustix"
|
|
454
|
+
version = "1.0.7"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
|
|
457
|
+
dependencies = [
|
|
458
|
+
"bitflags",
|
|
459
|
+
"errno",
|
|
460
|
+
"libc",
|
|
461
|
+
"linux-raw-sys",
|
|
462
|
+
"windows-sys",
|
|
463
|
+
]
|
|
464
|
+
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "rustversion"
|
|
467
|
+
version = "1.0.21"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "rusty-fork"
|
|
473
|
+
version = "0.3.0"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f"
|
|
476
|
+
dependencies = [
|
|
477
|
+
"fnv",
|
|
478
|
+
"quick-error",
|
|
479
|
+
"tempfile",
|
|
480
|
+
"wait-timeout",
|
|
481
|
+
]
|
|
482
|
+
|
|
483
|
+
[[package]]
|
|
484
|
+
name = "ryu"
|
|
485
|
+
version = "1.0.20"
|
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "same-file"
|
|
491
|
+
version = "1.0.6"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
494
|
+
dependencies = [
|
|
495
|
+
"winapi-util",
|
|
496
|
+
]
|
|
497
|
+
|
|
498
|
+
[[package]]
|
|
499
|
+
name = "serde"
|
|
500
|
+
version = "1.0.219"
|
|
501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
502
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
503
|
+
dependencies = [
|
|
504
|
+
"serde_derive",
|
|
505
|
+
]
|
|
506
|
+
|
|
507
|
+
[[package]]
|
|
508
|
+
name = "serde_derive"
|
|
509
|
+
version = "1.0.219"
|
|
510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
511
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
512
|
+
dependencies = [
|
|
513
|
+
"proc-macro2",
|
|
514
|
+
"quote",
|
|
515
|
+
"syn",
|
|
516
|
+
]
|
|
517
|
+
|
|
518
|
+
[[package]]
|
|
519
|
+
name = "serde_json"
|
|
520
|
+
version = "1.0.140"
|
|
521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
522
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
|
523
|
+
dependencies = [
|
|
524
|
+
"itoa",
|
|
525
|
+
"memchr",
|
|
526
|
+
"ryu",
|
|
527
|
+
"serde",
|
|
528
|
+
]
|
|
529
|
+
|
|
530
|
+
[[package]]
|
|
531
|
+
name = "shlex"
|
|
532
|
+
version = "1.3.0"
|
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
534
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
535
|
+
|
|
536
|
+
[[package]]
|
|
537
|
+
name = "siphasher"
|
|
538
|
+
version = "1.0.1"
|
|
539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
540
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
541
|
+
|
|
542
|
+
[[package]]
|
|
543
|
+
name = "syn"
|
|
544
|
+
version = "2.0.105"
|
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
546
|
+
checksum = "7bc3fcb250e53458e712715cf74285c1f889686520d79294a9ef3bd7aa1fc619"
|
|
547
|
+
dependencies = [
|
|
548
|
+
"proc-macro2",
|
|
549
|
+
"quote",
|
|
550
|
+
"unicode-ident",
|
|
551
|
+
]
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "target-lexicon"
|
|
555
|
+
version = "0.13.2"
|
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
+
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "tempfile"
|
|
561
|
+
version = "3.20.0"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
|
|
564
|
+
dependencies = [
|
|
565
|
+
"fastrand",
|
|
566
|
+
"getrandom",
|
|
567
|
+
"once_cell",
|
|
568
|
+
"rustix",
|
|
569
|
+
"windows-sys",
|
|
570
|
+
]
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "unarray"
|
|
574
|
+
version = "0.1.4"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
577
|
+
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "unicode-ident"
|
|
580
|
+
version = "1.0.18"
|
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "unindent"
|
|
586
|
+
version = "0.2.4"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "wait-timeout"
|
|
592
|
+
version = "0.2.1"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
595
|
+
dependencies = [
|
|
596
|
+
"libc",
|
|
597
|
+
]
|
|
598
|
+
|
|
599
|
+
[[package]]
|
|
600
|
+
name = "walkdir"
|
|
601
|
+
version = "2.5.0"
|
|
602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
604
|
+
dependencies = [
|
|
605
|
+
"same-file",
|
|
606
|
+
"winapi-util",
|
|
607
|
+
]
|
|
608
|
+
|
|
609
|
+
[[package]]
|
|
610
|
+
name = "wasi"
|
|
611
|
+
version = "0.14.2+wasi-0.2.4"
|
|
612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
|
614
|
+
dependencies = [
|
|
615
|
+
"wit-bindgen-rt",
|
|
616
|
+
]
|
|
617
|
+
|
|
618
|
+
[[package]]
|
|
619
|
+
name = "wasm-bindgen"
|
|
620
|
+
version = "0.2.100"
|
|
621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
622
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
|
623
|
+
dependencies = [
|
|
624
|
+
"cfg-if",
|
|
625
|
+
"once_cell",
|
|
626
|
+
"rustversion",
|
|
627
|
+
"wasm-bindgen-macro",
|
|
628
|
+
]
|
|
629
|
+
|
|
630
|
+
[[package]]
|
|
631
|
+
name = "wasm-bindgen-backend"
|
|
632
|
+
version = "0.2.100"
|
|
633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
635
|
+
dependencies = [
|
|
636
|
+
"bumpalo",
|
|
637
|
+
"log",
|
|
638
|
+
"proc-macro2",
|
|
639
|
+
"quote",
|
|
640
|
+
"syn",
|
|
641
|
+
"wasm-bindgen-shared",
|
|
642
|
+
]
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "wasm-bindgen-futures"
|
|
646
|
+
version = "0.4.50"
|
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
+
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
|
|
649
|
+
dependencies = [
|
|
650
|
+
"cfg-if",
|
|
651
|
+
"js-sys",
|
|
652
|
+
"once_cell",
|
|
653
|
+
"wasm-bindgen",
|
|
654
|
+
"web-sys",
|
|
655
|
+
]
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "wasm-bindgen-macro"
|
|
659
|
+
version = "0.2.100"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
|
662
|
+
dependencies = [
|
|
663
|
+
"quote",
|
|
664
|
+
"wasm-bindgen-macro-support",
|
|
665
|
+
]
|
|
666
|
+
|
|
667
|
+
[[package]]
|
|
668
|
+
name = "wasm-bindgen-macro-support"
|
|
669
|
+
version = "0.2.100"
|
|
670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
671
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
672
|
+
dependencies = [
|
|
673
|
+
"proc-macro2",
|
|
674
|
+
"quote",
|
|
675
|
+
"syn",
|
|
676
|
+
"wasm-bindgen-backend",
|
|
677
|
+
"wasm-bindgen-shared",
|
|
678
|
+
]
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "wasm-bindgen-shared"
|
|
682
|
+
version = "0.2.100"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
|
685
|
+
dependencies = [
|
|
686
|
+
"unicode-ident",
|
|
687
|
+
]
|
|
688
|
+
|
|
689
|
+
[[package]]
|
|
690
|
+
name = "wasm-bindgen-test"
|
|
691
|
+
version = "0.3.50"
|
|
692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
+
checksum = "66c8d5e33ca3b6d9fa3b4676d774c5778031d27a578c2b007f905acf816152c3"
|
|
694
|
+
dependencies = [
|
|
695
|
+
"js-sys",
|
|
696
|
+
"minicov",
|
|
697
|
+
"wasm-bindgen",
|
|
698
|
+
"wasm-bindgen-futures",
|
|
699
|
+
"wasm-bindgen-test-macro",
|
|
700
|
+
]
|
|
701
|
+
|
|
702
|
+
[[package]]
|
|
703
|
+
name = "wasm-bindgen-test-macro"
|
|
704
|
+
version = "0.3.50"
|
|
705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
|
+
checksum = "17d5042cc5fa009658f9a7333ef24291b1291a25b6382dd68862a7f3b969f69b"
|
|
707
|
+
dependencies = [
|
|
708
|
+
"proc-macro2",
|
|
709
|
+
"quote",
|
|
710
|
+
"syn",
|
|
711
|
+
]
|
|
712
|
+
|
|
713
|
+
[[package]]
|
|
714
|
+
name = "web-sys"
|
|
715
|
+
version = "0.3.77"
|
|
716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
|
718
|
+
dependencies = [
|
|
719
|
+
"js-sys",
|
|
720
|
+
"wasm-bindgen",
|
|
721
|
+
]
|
|
722
|
+
|
|
723
|
+
[[package]]
|
|
724
|
+
name = "winapi-util"
|
|
725
|
+
version = "0.1.9"
|
|
726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
727
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
|
728
|
+
dependencies = [
|
|
729
|
+
"windows-sys",
|
|
730
|
+
]
|
|
731
|
+
|
|
732
|
+
[[package]]
|
|
733
|
+
name = "windows-sys"
|
|
734
|
+
version = "0.59.0"
|
|
735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
736
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
737
|
+
dependencies = [
|
|
738
|
+
"windows-targets",
|
|
739
|
+
]
|
|
740
|
+
|
|
741
|
+
[[package]]
|
|
742
|
+
name = "windows-targets"
|
|
743
|
+
version = "0.52.6"
|
|
744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
745
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
746
|
+
dependencies = [
|
|
747
|
+
"windows_aarch64_gnullvm",
|
|
748
|
+
"windows_aarch64_msvc",
|
|
749
|
+
"windows_i686_gnu",
|
|
750
|
+
"windows_i686_gnullvm",
|
|
751
|
+
"windows_i686_msvc",
|
|
752
|
+
"windows_x86_64_gnu",
|
|
753
|
+
"windows_x86_64_gnullvm",
|
|
754
|
+
"windows_x86_64_msvc",
|
|
755
|
+
]
|
|
756
|
+
|
|
757
|
+
[[package]]
|
|
758
|
+
name = "windows_aarch64_gnullvm"
|
|
759
|
+
version = "0.52.6"
|
|
760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
762
|
+
|
|
763
|
+
[[package]]
|
|
764
|
+
name = "windows_aarch64_msvc"
|
|
765
|
+
version = "0.52.6"
|
|
766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
768
|
+
|
|
769
|
+
[[package]]
|
|
770
|
+
name = "windows_i686_gnu"
|
|
771
|
+
version = "0.52.6"
|
|
772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
773
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
774
|
+
|
|
775
|
+
[[package]]
|
|
776
|
+
name = "windows_i686_gnullvm"
|
|
777
|
+
version = "0.52.6"
|
|
778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
780
|
+
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "windows_i686_msvc"
|
|
783
|
+
version = "0.52.6"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
786
|
+
|
|
787
|
+
[[package]]
|
|
788
|
+
name = "windows_x86_64_gnu"
|
|
789
|
+
version = "0.52.6"
|
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
791
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
792
|
+
|
|
793
|
+
[[package]]
|
|
794
|
+
name = "windows_x86_64_gnullvm"
|
|
795
|
+
version = "0.52.6"
|
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
797
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
798
|
+
|
|
799
|
+
[[package]]
|
|
800
|
+
name = "windows_x86_64_msvc"
|
|
801
|
+
version = "0.52.6"
|
|
802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
804
|
+
|
|
805
|
+
[[package]]
|
|
806
|
+
name = "wit-bindgen-rt"
|
|
807
|
+
version = "0.39.0"
|
|
808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
810
|
+
dependencies = [
|
|
811
|
+
"bitflags",
|
|
812
|
+
]
|
|
813
|
+
|
|
814
|
+
[[package]]
|
|
815
|
+
name = "zerocopy"
|
|
816
|
+
version = "0.8.25"
|
|
817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
818
|
+
checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
|
|
819
|
+
dependencies = [
|
|
820
|
+
"zerocopy-derive",
|
|
821
|
+
]
|
|
822
|
+
|
|
823
|
+
[[package]]
|
|
824
|
+
name = "zerocopy-derive"
|
|
825
|
+
version = "0.8.25"
|
|
826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
827
|
+
checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
|
|
828
|
+
dependencies = [
|
|
829
|
+
"proc-macro2",
|
|
830
|
+
"quote",
|
|
831
|
+
"syn",
|
|
832
|
+
]
|