rehuman 0.1.3__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.
- rehuman-0.1.3/Cargo.lock +1149 -0
- rehuman-0.1.3/Cargo.toml +84 -0
- rehuman-0.1.3/LICENSE +21 -0
- rehuman-0.1.3/PKG-INFO +78 -0
- rehuman-0.1.3/README.md +86 -0
- rehuman-0.1.3/build.rs +150 -0
- rehuman-0.1.3/config.example.toml +25 -0
- rehuman-0.1.3/docs/api.md +206 -0
- rehuman-0.1.3/docs/cli.md +177 -0
- rehuman-0.1.3/docs/development.md +25 -0
- rehuman-0.1.3/docs/examples.md +72 -0
- rehuman-0.1.3/examples/basic.rs +28 -0
- rehuman-0.1.3/pyproject.toml +38 -0
- rehuman-0.1.3/python/Cargo.toml +21 -0
- rehuman-0.1.3/python/README.md +55 -0
- rehuman-0.1.3/python/src/lib.rs +465 -0
- rehuman-0.1.3/rehuman/__init__.py +28 -0
- rehuman-0.1.3/rehuman/__init__.pyi +68 -0
- rehuman-0.1.3/rehuman/py.typed +1 -0
- rehuman-0.1.3/src/bin/common/mod.rs +747 -0
- rehuman-0.1.3/src/bin/ishuman.rs +100 -0
- rehuman-0.1.3/src/bin/rehuman.rs +378 -0
- rehuman-0.1.3/src/generated.rs +3 -0
- rehuman-0.1.3/src/lib.rs +1961 -0
- rehuman-0.1.3/src/sets.rs +48 -0
- rehuman-0.1.3/tests/cli_contract.rs +562 -0
- rehuman-0.1.3/tests/property_tests.proptest-regressions +7 -0
- rehuman-0.1.3/tests/property_tests.rs +222 -0
rehuman-0.1.3/Cargo.lock
ADDED
|
@@ -0,0 +1,1149 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "anstream"
|
|
7
|
+
version = "0.6.21"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"anstyle",
|
|
12
|
+
"anstyle-parse",
|
|
13
|
+
"anstyle-query",
|
|
14
|
+
"anstyle-wincon",
|
|
15
|
+
"colorchoice",
|
|
16
|
+
"is_terminal_polyfill",
|
|
17
|
+
"utf8parse",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "anstyle"
|
|
22
|
+
version = "1.0.13"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "anstyle-parse"
|
|
28
|
+
version = "0.2.7"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"utf8parse",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "anstyle-query"
|
|
37
|
+
version = "1.1.4"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"windows-sys 0.60.2",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "anstyle-wincon"
|
|
46
|
+
version = "3.0.10"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
|
|
49
|
+
dependencies = [
|
|
50
|
+
"anstyle",
|
|
51
|
+
"once_cell_polyfill",
|
|
52
|
+
"windows-sys 0.60.2",
|
|
53
|
+
]
|
|
54
|
+
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "anyhow"
|
|
57
|
+
version = "1.0.100"
|
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "autocfg"
|
|
63
|
+
version = "1.5.0"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "bit-set"
|
|
69
|
+
version = "0.8.0"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
72
|
+
dependencies = [
|
|
73
|
+
"bit-vec",
|
|
74
|
+
]
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "bit-vec"
|
|
78
|
+
version = "0.8.0"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "bitflags"
|
|
84
|
+
version = "2.10.0"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
87
|
+
|
|
88
|
+
[[package]]
|
|
89
|
+
name = "cfg-if"
|
|
90
|
+
version = "1.0.4"
|
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "clap"
|
|
96
|
+
version = "4.5.50"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "0c2cfd7bf8a6017ddaa4e32ffe7403d547790db06bd171c1c53926faab501623"
|
|
99
|
+
dependencies = [
|
|
100
|
+
"clap_builder",
|
|
101
|
+
"clap_derive",
|
|
102
|
+
]
|
|
103
|
+
|
|
104
|
+
[[package]]
|
|
105
|
+
name = "clap_builder"
|
|
106
|
+
version = "4.5.50"
|
|
107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
108
|
+
checksum = "0a4c05b9e80c5ccd3a7ef080ad7b6ba7d6fc00a985b8b157197075677c82c7a0"
|
|
109
|
+
dependencies = [
|
|
110
|
+
"anstream",
|
|
111
|
+
"anstyle",
|
|
112
|
+
"clap_lex",
|
|
113
|
+
"strsim",
|
|
114
|
+
]
|
|
115
|
+
|
|
116
|
+
[[package]]
|
|
117
|
+
name = "clap_derive"
|
|
118
|
+
version = "4.5.49"
|
|
119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
120
|
+
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
|
|
121
|
+
dependencies = [
|
|
122
|
+
"heck",
|
|
123
|
+
"proc-macro2",
|
|
124
|
+
"quote",
|
|
125
|
+
"syn",
|
|
126
|
+
]
|
|
127
|
+
|
|
128
|
+
[[package]]
|
|
129
|
+
name = "clap_lex"
|
|
130
|
+
version = "0.7.6"
|
|
131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
132
|
+
checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
|
|
133
|
+
|
|
134
|
+
[[package]]
|
|
135
|
+
name = "colorchoice"
|
|
136
|
+
version = "1.0.4"
|
|
137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "deunicode"
|
|
142
|
+
version = "1.6.2"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "abd57806937c9cc163efc8ea3910e00a62e2aeb0b8119f1793a978088f8f6b04"
|
|
145
|
+
|
|
146
|
+
[[package]]
|
|
147
|
+
name = "directories"
|
|
148
|
+
version = "6.0.0"
|
|
149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
+
checksum = "16f5094c54661b38d03bd7e50df373292118db60b585c08a411c6d840017fe7d"
|
|
151
|
+
dependencies = [
|
|
152
|
+
"dirs-sys",
|
|
153
|
+
]
|
|
154
|
+
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "dirs-sys"
|
|
157
|
+
version = "0.5.0"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
|
|
160
|
+
dependencies = [
|
|
161
|
+
"libc",
|
|
162
|
+
"option-ext",
|
|
163
|
+
"redox_users",
|
|
164
|
+
"windows-sys 0.61.2",
|
|
165
|
+
]
|
|
166
|
+
|
|
167
|
+
[[package]]
|
|
168
|
+
name = "displaydoc"
|
|
169
|
+
version = "0.2.5"
|
|
170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
171
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
172
|
+
dependencies = [
|
|
173
|
+
"proc-macro2",
|
|
174
|
+
"quote",
|
|
175
|
+
"syn",
|
|
176
|
+
]
|
|
177
|
+
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "equivalent"
|
|
180
|
+
version = "1.0.2"
|
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
183
|
+
|
|
184
|
+
[[package]]
|
|
185
|
+
name = "errno"
|
|
186
|
+
version = "0.3.14"
|
|
187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
189
|
+
dependencies = [
|
|
190
|
+
"libc",
|
|
191
|
+
"windows-sys 0.61.2",
|
|
192
|
+
]
|
|
193
|
+
|
|
194
|
+
[[package]]
|
|
195
|
+
name = "fastrand"
|
|
196
|
+
version = "2.3.0"
|
|
197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
199
|
+
|
|
200
|
+
[[package]]
|
|
201
|
+
name = "fnv"
|
|
202
|
+
version = "1.0.7"
|
|
203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "getrandom"
|
|
208
|
+
version = "0.2.16"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
211
|
+
dependencies = [
|
|
212
|
+
"cfg-if",
|
|
213
|
+
"libc",
|
|
214
|
+
"wasi",
|
|
215
|
+
]
|
|
216
|
+
|
|
217
|
+
[[package]]
|
|
218
|
+
name = "getrandom"
|
|
219
|
+
version = "0.3.4"
|
|
220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
221
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
222
|
+
dependencies = [
|
|
223
|
+
"cfg-if",
|
|
224
|
+
"libc",
|
|
225
|
+
"r-efi",
|
|
226
|
+
"wasip2",
|
|
227
|
+
]
|
|
228
|
+
|
|
229
|
+
[[package]]
|
|
230
|
+
name = "hashbrown"
|
|
231
|
+
version = "0.16.0"
|
|
232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
|
+
checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
|
|
234
|
+
|
|
235
|
+
[[package]]
|
|
236
|
+
name = "heck"
|
|
237
|
+
version = "0.5.0"
|
|
238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
240
|
+
|
|
241
|
+
[[package]]
|
|
242
|
+
name = "icu_collections"
|
|
243
|
+
version = "2.0.0"
|
|
244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
245
|
+
checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
|
|
246
|
+
dependencies = [
|
|
247
|
+
"displaydoc",
|
|
248
|
+
"potential_utf",
|
|
249
|
+
"yoke",
|
|
250
|
+
"zerofrom",
|
|
251
|
+
"zerovec",
|
|
252
|
+
]
|
|
253
|
+
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "icu_locale_core"
|
|
256
|
+
version = "2.0.0"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
|
|
259
|
+
dependencies = [
|
|
260
|
+
"displaydoc",
|
|
261
|
+
"litemap",
|
|
262
|
+
"tinystr",
|
|
263
|
+
"writeable",
|
|
264
|
+
"zerovec",
|
|
265
|
+
]
|
|
266
|
+
|
|
267
|
+
[[package]]
|
|
268
|
+
name = "icu_properties"
|
|
269
|
+
version = "2.0.1"
|
|
270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
+
checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
|
|
272
|
+
dependencies = [
|
|
273
|
+
"displaydoc",
|
|
274
|
+
"icu_collections",
|
|
275
|
+
"icu_locale_core",
|
|
276
|
+
"icu_properties_data",
|
|
277
|
+
"icu_provider",
|
|
278
|
+
"potential_utf",
|
|
279
|
+
"zerotrie",
|
|
280
|
+
"zerovec",
|
|
281
|
+
]
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "icu_properties_data"
|
|
285
|
+
version = "2.0.1"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "icu_provider"
|
|
291
|
+
version = "2.0.0"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
|
|
294
|
+
dependencies = [
|
|
295
|
+
"displaydoc",
|
|
296
|
+
"icu_locale_core",
|
|
297
|
+
"stable_deref_trait",
|
|
298
|
+
"tinystr",
|
|
299
|
+
"writeable",
|
|
300
|
+
"yoke",
|
|
301
|
+
"zerofrom",
|
|
302
|
+
"zerotrie",
|
|
303
|
+
"zerovec",
|
|
304
|
+
]
|
|
305
|
+
|
|
306
|
+
[[package]]
|
|
307
|
+
name = "indexmap"
|
|
308
|
+
version = "2.12.0"
|
|
309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
+
checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
|
|
311
|
+
dependencies = [
|
|
312
|
+
"equivalent",
|
|
313
|
+
"hashbrown",
|
|
314
|
+
]
|
|
315
|
+
|
|
316
|
+
[[package]]
|
|
317
|
+
name = "is_terminal_polyfill"
|
|
318
|
+
version = "1.70.2"
|
|
319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
321
|
+
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "itoa"
|
|
324
|
+
version = "1.0.15"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "lazy_static"
|
|
330
|
+
version = "1.5.0"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "libc"
|
|
336
|
+
version = "0.2.177"
|
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
+
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
|
|
339
|
+
|
|
340
|
+
[[package]]
|
|
341
|
+
name = "libredox"
|
|
342
|
+
version = "0.1.10"
|
|
343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
+
checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
|
|
345
|
+
dependencies = [
|
|
346
|
+
"bitflags",
|
|
347
|
+
"libc",
|
|
348
|
+
]
|
|
349
|
+
|
|
350
|
+
[[package]]
|
|
351
|
+
name = "linux-raw-sys"
|
|
352
|
+
version = "0.11.0"
|
|
353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
354
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
355
|
+
|
|
356
|
+
[[package]]
|
|
357
|
+
name = "litemap"
|
|
358
|
+
version = "0.8.0"
|
|
359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
360
|
+
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "memchr"
|
|
364
|
+
version = "2.7.6"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "num-traits"
|
|
370
|
+
version = "0.2.19"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
373
|
+
dependencies = [
|
|
374
|
+
"autocfg",
|
|
375
|
+
]
|
|
376
|
+
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "once_cell"
|
|
379
|
+
version = "1.21.3"
|
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "once_cell_polyfill"
|
|
385
|
+
version = "1.70.2"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
388
|
+
|
|
389
|
+
[[package]]
|
|
390
|
+
name = "option-ext"
|
|
391
|
+
version = "0.2.0"
|
|
392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
394
|
+
|
|
395
|
+
[[package]]
|
|
396
|
+
name = "phf"
|
|
397
|
+
version = "0.13.1"
|
|
398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
+
checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
|
|
400
|
+
dependencies = [
|
|
401
|
+
"phf_macros",
|
|
402
|
+
"phf_shared",
|
|
403
|
+
"serde",
|
|
404
|
+
]
|
|
405
|
+
|
|
406
|
+
[[package]]
|
|
407
|
+
name = "phf_codegen"
|
|
408
|
+
version = "0.13.1"
|
|
409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
+
checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1"
|
|
411
|
+
dependencies = [
|
|
412
|
+
"phf_generator",
|
|
413
|
+
"phf_shared",
|
|
414
|
+
]
|
|
415
|
+
|
|
416
|
+
[[package]]
|
|
417
|
+
name = "phf_generator"
|
|
418
|
+
version = "0.13.1"
|
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
+
checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
|
|
421
|
+
dependencies = [
|
|
422
|
+
"fastrand",
|
|
423
|
+
"phf_shared",
|
|
424
|
+
]
|
|
425
|
+
|
|
426
|
+
[[package]]
|
|
427
|
+
name = "phf_macros"
|
|
428
|
+
version = "0.13.1"
|
|
429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
+
checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
|
|
431
|
+
dependencies = [
|
|
432
|
+
"phf_generator",
|
|
433
|
+
"phf_shared",
|
|
434
|
+
"proc-macro2",
|
|
435
|
+
"quote",
|
|
436
|
+
"syn",
|
|
437
|
+
]
|
|
438
|
+
|
|
439
|
+
[[package]]
|
|
440
|
+
name = "phf_shared"
|
|
441
|
+
version = "0.13.1"
|
|
442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
443
|
+
checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
|
|
444
|
+
dependencies = [
|
|
445
|
+
"siphasher",
|
|
446
|
+
]
|
|
447
|
+
|
|
448
|
+
[[package]]
|
|
449
|
+
name = "portable-atomic"
|
|
450
|
+
version = "1.13.1"
|
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
453
|
+
|
|
454
|
+
[[package]]
|
|
455
|
+
name = "potential_utf"
|
|
456
|
+
version = "0.1.3"
|
|
457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
458
|
+
checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a"
|
|
459
|
+
dependencies = [
|
|
460
|
+
"zerovec",
|
|
461
|
+
]
|
|
462
|
+
|
|
463
|
+
[[package]]
|
|
464
|
+
name = "ppv-lite86"
|
|
465
|
+
version = "0.2.21"
|
|
466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
467
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
468
|
+
dependencies = [
|
|
469
|
+
"zerocopy",
|
|
470
|
+
]
|
|
471
|
+
|
|
472
|
+
[[package]]
|
|
473
|
+
name = "proc-macro2"
|
|
474
|
+
version = "1.0.103"
|
|
475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
477
|
+
dependencies = [
|
|
478
|
+
"unicode-ident",
|
|
479
|
+
]
|
|
480
|
+
|
|
481
|
+
[[package]]
|
|
482
|
+
name = "proptest"
|
|
483
|
+
version = "1.8.0"
|
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
+
checksum = "2bb0be07becd10686a0bb407298fb425360a5c44a663774406340c59a22de4ce"
|
|
486
|
+
dependencies = [
|
|
487
|
+
"bit-set",
|
|
488
|
+
"bit-vec",
|
|
489
|
+
"bitflags",
|
|
490
|
+
"lazy_static",
|
|
491
|
+
"num-traits",
|
|
492
|
+
"rand",
|
|
493
|
+
"rand_chacha",
|
|
494
|
+
"rand_xorshift",
|
|
495
|
+
"regex-syntax",
|
|
496
|
+
"rusty-fork",
|
|
497
|
+
"tempfile",
|
|
498
|
+
"unarray",
|
|
499
|
+
]
|
|
500
|
+
|
|
501
|
+
[[package]]
|
|
502
|
+
name = "pyo3"
|
|
503
|
+
version = "0.28.2"
|
|
504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
505
|
+
checksum = "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1"
|
|
506
|
+
dependencies = [
|
|
507
|
+
"libc",
|
|
508
|
+
"once_cell",
|
|
509
|
+
"portable-atomic",
|
|
510
|
+
"pyo3-build-config",
|
|
511
|
+
"pyo3-ffi",
|
|
512
|
+
"pyo3-macros",
|
|
513
|
+
]
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "pyo3-build-config"
|
|
517
|
+
version = "0.28.2"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7"
|
|
520
|
+
dependencies = [
|
|
521
|
+
"target-lexicon",
|
|
522
|
+
]
|
|
523
|
+
|
|
524
|
+
[[package]]
|
|
525
|
+
name = "pyo3-ffi"
|
|
526
|
+
version = "0.28.2"
|
|
527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
528
|
+
checksum = "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc"
|
|
529
|
+
dependencies = [
|
|
530
|
+
"libc",
|
|
531
|
+
"pyo3-build-config",
|
|
532
|
+
]
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "pyo3-macros"
|
|
536
|
+
version = "0.28.2"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e"
|
|
539
|
+
dependencies = [
|
|
540
|
+
"proc-macro2",
|
|
541
|
+
"pyo3-macros-backend",
|
|
542
|
+
"quote",
|
|
543
|
+
"syn",
|
|
544
|
+
]
|
|
545
|
+
|
|
546
|
+
[[package]]
|
|
547
|
+
name = "pyo3-macros-backend"
|
|
548
|
+
version = "0.28.2"
|
|
549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
+
checksum = "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a"
|
|
551
|
+
dependencies = [
|
|
552
|
+
"heck",
|
|
553
|
+
"proc-macro2",
|
|
554
|
+
"pyo3-build-config",
|
|
555
|
+
"quote",
|
|
556
|
+
"syn",
|
|
557
|
+
]
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "quick-error"
|
|
561
|
+
version = "1.2.3"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
564
|
+
|
|
565
|
+
[[package]]
|
|
566
|
+
name = "quote"
|
|
567
|
+
version = "1.0.41"
|
|
568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
569
|
+
checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
|
|
570
|
+
dependencies = [
|
|
571
|
+
"proc-macro2",
|
|
572
|
+
]
|
|
573
|
+
|
|
574
|
+
[[package]]
|
|
575
|
+
name = "r-efi"
|
|
576
|
+
version = "5.3.0"
|
|
577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
579
|
+
|
|
580
|
+
[[package]]
|
|
581
|
+
name = "rand"
|
|
582
|
+
version = "0.9.2"
|
|
583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
584
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
585
|
+
dependencies = [
|
|
586
|
+
"rand_chacha",
|
|
587
|
+
"rand_core",
|
|
588
|
+
]
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "rand_chacha"
|
|
592
|
+
version = "0.9.0"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
595
|
+
dependencies = [
|
|
596
|
+
"ppv-lite86",
|
|
597
|
+
"rand_core",
|
|
598
|
+
]
|
|
599
|
+
|
|
600
|
+
[[package]]
|
|
601
|
+
name = "rand_core"
|
|
602
|
+
version = "0.9.3"
|
|
603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
605
|
+
dependencies = [
|
|
606
|
+
"getrandom 0.3.4",
|
|
607
|
+
]
|
|
608
|
+
|
|
609
|
+
[[package]]
|
|
610
|
+
name = "rand_xorshift"
|
|
611
|
+
version = "0.4.0"
|
|
612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
614
|
+
dependencies = [
|
|
615
|
+
"rand_core",
|
|
616
|
+
]
|
|
617
|
+
|
|
618
|
+
[[package]]
|
|
619
|
+
name = "redox_users"
|
|
620
|
+
version = "0.5.2"
|
|
621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
622
|
+
checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
|
|
623
|
+
dependencies = [
|
|
624
|
+
"getrandom 0.2.16",
|
|
625
|
+
"libredox",
|
|
626
|
+
"thiserror",
|
|
627
|
+
]
|
|
628
|
+
|
|
629
|
+
[[package]]
|
|
630
|
+
name = "regex-syntax"
|
|
631
|
+
version = "0.8.8"
|
|
632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
634
|
+
|
|
635
|
+
[[package]]
|
|
636
|
+
name = "rehuman"
|
|
637
|
+
version = "0.1.3"
|
|
638
|
+
dependencies = [
|
|
639
|
+
"anyhow",
|
|
640
|
+
"clap",
|
|
641
|
+
"deunicode",
|
|
642
|
+
"directories",
|
|
643
|
+
"icu_properties",
|
|
644
|
+
"phf",
|
|
645
|
+
"phf_codegen",
|
|
646
|
+
"proptest",
|
|
647
|
+
"serde",
|
|
648
|
+
"serde_json",
|
|
649
|
+
"tempfile",
|
|
650
|
+
"toml",
|
|
651
|
+
"unicode-normalization",
|
|
652
|
+
"unicode-segmentation",
|
|
653
|
+
]
|
|
654
|
+
|
|
655
|
+
[[package]]
|
|
656
|
+
name = "rehuman-python"
|
|
657
|
+
version = "0.1.3"
|
|
658
|
+
dependencies = [
|
|
659
|
+
"pyo3",
|
|
660
|
+
"rehuman",
|
|
661
|
+
]
|
|
662
|
+
|
|
663
|
+
[[package]]
|
|
664
|
+
name = "rustix"
|
|
665
|
+
version = "1.1.2"
|
|
666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
667
|
+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
|
|
668
|
+
dependencies = [
|
|
669
|
+
"bitflags",
|
|
670
|
+
"errno",
|
|
671
|
+
"libc",
|
|
672
|
+
"linux-raw-sys",
|
|
673
|
+
"windows-sys 0.61.2",
|
|
674
|
+
]
|
|
675
|
+
|
|
676
|
+
[[package]]
|
|
677
|
+
name = "rusty-fork"
|
|
678
|
+
version = "0.3.1"
|
|
679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
680
|
+
checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
|
|
681
|
+
dependencies = [
|
|
682
|
+
"fnv",
|
|
683
|
+
"quick-error",
|
|
684
|
+
"tempfile",
|
|
685
|
+
"wait-timeout",
|
|
686
|
+
]
|
|
687
|
+
|
|
688
|
+
[[package]]
|
|
689
|
+
name = "ryu"
|
|
690
|
+
version = "1.0.20"
|
|
691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
693
|
+
|
|
694
|
+
[[package]]
|
|
695
|
+
name = "serde"
|
|
696
|
+
version = "1.0.228"
|
|
697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
698
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
699
|
+
dependencies = [
|
|
700
|
+
"serde_core",
|
|
701
|
+
"serde_derive",
|
|
702
|
+
]
|
|
703
|
+
|
|
704
|
+
[[package]]
|
|
705
|
+
name = "serde_core"
|
|
706
|
+
version = "1.0.228"
|
|
707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
708
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
709
|
+
dependencies = [
|
|
710
|
+
"serde_derive",
|
|
711
|
+
]
|
|
712
|
+
|
|
713
|
+
[[package]]
|
|
714
|
+
name = "serde_derive"
|
|
715
|
+
version = "1.0.228"
|
|
716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
718
|
+
dependencies = [
|
|
719
|
+
"proc-macro2",
|
|
720
|
+
"quote",
|
|
721
|
+
"syn",
|
|
722
|
+
]
|
|
723
|
+
|
|
724
|
+
[[package]]
|
|
725
|
+
name = "serde_json"
|
|
726
|
+
version = "1.0.145"
|
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
729
|
+
dependencies = [
|
|
730
|
+
"itoa",
|
|
731
|
+
"memchr",
|
|
732
|
+
"ryu",
|
|
733
|
+
"serde",
|
|
734
|
+
"serde_core",
|
|
735
|
+
]
|
|
736
|
+
|
|
737
|
+
[[package]]
|
|
738
|
+
name = "serde_spanned"
|
|
739
|
+
version = "1.0.3"
|
|
740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
+
checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392"
|
|
742
|
+
dependencies = [
|
|
743
|
+
"serde_core",
|
|
744
|
+
]
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "siphasher"
|
|
748
|
+
version = "1.0.1"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "stable_deref_trait"
|
|
754
|
+
version = "1.2.1"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
757
|
+
|
|
758
|
+
[[package]]
|
|
759
|
+
name = "strsim"
|
|
760
|
+
version = "0.11.1"
|
|
761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
762
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
763
|
+
|
|
764
|
+
[[package]]
|
|
765
|
+
name = "syn"
|
|
766
|
+
version = "2.0.108"
|
|
767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
768
|
+
checksum = "da58917d35242480a05c2897064da0a80589a2a0476c9a3f2fdc83b53502e917"
|
|
769
|
+
dependencies = [
|
|
770
|
+
"proc-macro2",
|
|
771
|
+
"quote",
|
|
772
|
+
"unicode-ident",
|
|
773
|
+
]
|
|
774
|
+
|
|
775
|
+
[[package]]
|
|
776
|
+
name = "synstructure"
|
|
777
|
+
version = "0.13.2"
|
|
778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
780
|
+
dependencies = [
|
|
781
|
+
"proc-macro2",
|
|
782
|
+
"quote",
|
|
783
|
+
"syn",
|
|
784
|
+
]
|
|
785
|
+
|
|
786
|
+
[[package]]
|
|
787
|
+
name = "target-lexicon"
|
|
788
|
+
version = "0.13.5"
|
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
791
|
+
|
|
792
|
+
[[package]]
|
|
793
|
+
name = "tempfile"
|
|
794
|
+
version = "3.23.0"
|
|
795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
796
|
+
checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
|
|
797
|
+
dependencies = [
|
|
798
|
+
"fastrand",
|
|
799
|
+
"getrandom 0.3.4",
|
|
800
|
+
"once_cell",
|
|
801
|
+
"rustix",
|
|
802
|
+
"windows-sys 0.61.2",
|
|
803
|
+
]
|
|
804
|
+
|
|
805
|
+
[[package]]
|
|
806
|
+
name = "thiserror"
|
|
807
|
+
version = "2.0.17"
|
|
808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
810
|
+
dependencies = [
|
|
811
|
+
"thiserror-impl",
|
|
812
|
+
]
|
|
813
|
+
|
|
814
|
+
[[package]]
|
|
815
|
+
name = "thiserror-impl"
|
|
816
|
+
version = "2.0.17"
|
|
817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
818
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
819
|
+
dependencies = [
|
|
820
|
+
"proc-macro2",
|
|
821
|
+
"quote",
|
|
822
|
+
"syn",
|
|
823
|
+
]
|
|
824
|
+
|
|
825
|
+
[[package]]
|
|
826
|
+
name = "tinystr"
|
|
827
|
+
version = "0.8.1"
|
|
828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
829
|
+
checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
|
|
830
|
+
dependencies = [
|
|
831
|
+
"displaydoc",
|
|
832
|
+
"zerovec",
|
|
833
|
+
]
|
|
834
|
+
|
|
835
|
+
[[package]]
|
|
836
|
+
name = "tinyvec"
|
|
837
|
+
version = "1.10.0"
|
|
838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
840
|
+
dependencies = [
|
|
841
|
+
"tinyvec_macros",
|
|
842
|
+
]
|
|
843
|
+
|
|
844
|
+
[[package]]
|
|
845
|
+
name = "tinyvec_macros"
|
|
846
|
+
version = "0.1.1"
|
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
849
|
+
|
|
850
|
+
[[package]]
|
|
851
|
+
name = "toml"
|
|
852
|
+
version = "0.9.8"
|
|
853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
854
|
+
checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8"
|
|
855
|
+
dependencies = [
|
|
856
|
+
"indexmap",
|
|
857
|
+
"serde_core",
|
|
858
|
+
"serde_spanned",
|
|
859
|
+
"toml_datetime",
|
|
860
|
+
"toml_parser",
|
|
861
|
+
"toml_writer",
|
|
862
|
+
"winnow",
|
|
863
|
+
]
|
|
864
|
+
|
|
865
|
+
[[package]]
|
|
866
|
+
name = "toml_datetime"
|
|
867
|
+
version = "0.7.3"
|
|
868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
+
checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
|
|
870
|
+
dependencies = [
|
|
871
|
+
"serde_core",
|
|
872
|
+
]
|
|
873
|
+
|
|
874
|
+
[[package]]
|
|
875
|
+
name = "toml_parser"
|
|
876
|
+
version = "1.0.4"
|
|
877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
+
checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
|
|
879
|
+
dependencies = [
|
|
880
|
+
"winnow",
|
|
881
|
+
]
|
|
882
|
+
|
|
883
|
+
[[package]]
|
|
884
|
+
name = "toml_writer"
|
|
885
|
+
version = "1.0.4"
|
|
886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
+
checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2"
|
|
888
|
+
|
|
889
|
+
[[package]]
|
|
890
|
+
name = "unarray"
|
|
891
|
+
version = "0.1.4"
|
|
892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
893
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
894
|
+
|
|
895
|
+
[[package]]
|
|
896
|
+
name = "unicode-ident"
|
|
897
|
+
version = "1.0.20"
|
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
+
checksum = "462eeb75aeb73aea900253ce739c8e18a67423fadf006037cd3ff27e82748a06"
|
|
900
|
+
|
|
901
|
+
[[package]]
|
|
902
|
+
name = "unicode-normalization"
|
|
903
|
+
version = "0.1.24"
|
|
904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
+
checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
|
|
906
|
+
dependencies = [
|
|
907
|
+
"tinyvec",
|
|
908
|
+
]
|
|
909
|
+
|
|
910
|
+
[[package]]
|
|
911
|
+
name = "unicode-segmentation"
|
|
912
|
+
version = "1.12.0"
|
|
913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
915
|
+
|
|
916
|
+
[[package]]
|
|
917
|
+
name = "utf8parse"
|
|
918
|
+
version = "0.2.2"
|
|
919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
920
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
921
|
+
|
|
922
|
+
[[package]]
|
|
923
|
+
name = "wait-timeout"
|
|
924
|
+
version = "0.2.1"
|
|
925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
926
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
927
|
+
dependencies = [
|
|
928
|
+
"libc",
|
|
929
|
+
]
|
|
930
|
+
|
|
931
|
+
[[package]]
|
|
932
|
+
name = "wasi"
|
|
933
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
936
|
+
|
|
937
|
+
[[package]]
|
|
938
|
+
name = "wasip2"
|
|
939
|
+
version = "1.0.1+wasi-0.2.4"
|
|
940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
941
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
942
|
+
dependencies = [
|
|
943
|
+
"wit-bindgen",
|
|
944
|
+
]
|
|
945
|
+
|
|
946
|
+
[[package]]
|
|
947
|
+
name = "windows-link"
|
|
948
|
+
version = "0.2.1"
|
|
949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
950
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
951
|
+
|
|
952
|
+
[[package]]
|
|
953
|
+
name = "windows-sys"
|
|
954
|
+
version = "0.60.2"
|
|
955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
956
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
957
|
+
dependencies = [
|
|
958
|
+
"windows-targets",
|
|
959
|
+
]
|
|
960
|
+
|
|
961
|
+
[[package]]
|
|
962
|
+
name = "windows-sys"
|
|
963
|
+
version = "0.61.2"
|
|
964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
965
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
966
|
+
dependencies = [
|
|
967
|
+
"windows-link",
|
|
968
|
+
]
|
|
969
|
+
|
|
970
|
+
[[package]]
|
|
971
|
+
name = "windows-targets"
|
|
972
|
+
version = "0.53.5"
|
|
973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
974
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
975
|
+
dependencies = [
|
|
976
|
+
"windows-link",
|
|
977
|
+
"windows_aarch64_gnullvm",
|
|
978
|
+
"windows_aarch64_msvc",
|
|
979
|
+
"windows_i686_gnu",
|
|
980
|
+
"windows_i686_gnullvm",
|
|
981
|
+
"windows_i686_msvc",
|
|
982
|
+
"windows_x86_64_gnu",
|
|
983
|
+
"windows_x86_64_gnullvm",
|
|
984
|
+
"windows_x86_64_msvc",
|
|
985
|
+
]
|
|
986
|
+
|
|
987
|
+
[[package]]
|
|
988
|
+
name = "windows_aarch64_gnullvm"
|
|
989
|
+
version = "0.53.1"
|
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
992
|
+
|
|
993
|
+
[[package]]
|
|
994
|
+
name = "windows_aarch64_msvc"
|
|
995
|
+
version = "0.53.1"
|
|
996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
998
|
+
|
|
999
|
+
[[package]]
|
|
1000
|
+
name = "windows_i686_gnu"
|
|
1001
|
+
version = "0.53.1"
|
|
1002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1003
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
1004
|
+
|
|
1005
|
+
[[package]]
|
|
1006
|
+
name = "windows_i686_gnullvm"
|
|
1007
|
+
version = "0.53.1"
|
|
1008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1009
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
1010
|
+
|
|
1011
|
+
[[package]]
|
|
1012
|
+
name = "windows_i686_msvc"
|
|
1013
|
+
version = "0.53.1"
|
|
1014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1015
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
1016
|
+
|
|
1017
|
+
[[package]]
|
|
1018
|
+
name = "windows_x86_64_gnu"
|
|
1019
|
+
version = "0.53.1"
|
|
1020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1021
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
1022
|
+
|
|
1023
|
+
[[package]]
|
|
1024
|
+
name = "windows_x86_64_gnullvm"
|
|
1025
|
+
version = "0.53.1"
|
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
1028
|
+
|
|
1029
|
+
[[package]]
|
|
1030
|
+
name = "windows_x86_64_msvc"
|
|
1031
|
+
version = "0.53.1"
|
|
1032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1033
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
1034
|
+
|
|
1035
|
+
[[package]]
|
|
1036
|
+
name = "winnow"
|
|
1037
|
+
version = "0.7.13"
|
|
1038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1039
|
+
checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
|
|
1040
|
+
|
|
1041
|
+
[[package]]
|
|
1042
|
+
name = "wit-bindgen"
|
|
1043
|
+
version = "0.46.0"
|
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
1046
|
+
|
|
1047
|
+
[[package]]
|
|
1048
|
+
name = "writeable"
|
|
1049
|
+
version = "0.6.1"
|
|
1050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
+
checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
|
|
1052
|
+
|
|
1053
|
+
[[package]]
|
|
1054
|
+
name = "yoke"
|
|
1055
|
+
version = "0.8.0"
|
|
1056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1057
|
+
checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
|
|
1058
|
+
dependencies = [
|
|
1059
|
+
"serde",
|
|
1060
|
+
"stable_deref_trait",
|
|
1061
|
+
"yoke-derive",
|
|
1062
|
+
"zerofrom",
|
|
1063
|
+
]
|
|
1064
|
+
|
|
1065
|
+
[[package]]
|
|
1066
|
+
name = "yoke-derive"
|
|
1067
|
+
version = "0.8.0"
|
|
1068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1069
|
+
checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
|
|
1070
|
+
dependencies = [
|
|
1071
|
+
"proc-macro2",
|
|
1072
|
+
"quote",
|
|
1073
|
+
"syn",
|
|
1074
|
+
"synstructure",
|
|
1075
|
+
]
|
|
1076
|
+
|
|
1077
|
+
[[package]]
|
|
1078
|
+
name = "zerocopy"
|
|
1079
|
+
version = "0.8.27"
|
|
1080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
+
checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
|
|
1082
|
+
dependencies = [
|
|
1083
|
+
"zerocopy-derive",
|
|
1084
|
+
]
|
|
1085
|
+
|
|
1086
|
+
[[package]]
|
|
1087
|
+
name = "zerocopy-derive"
|
|
1088
|
+
version = "0.8.27"
|
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
+
checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
|
|
1091
|
+
dependencies = [
|
|
1092
|
+
"proc-macro2",
|
|
1093
|
+
"quote",
|
|
1094
|
+
"syn",
|
|
1095
|
+
]
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "zerofrom"
|
|
1099
|
+
version = "0.1.6"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
1102
|
+
dependencies = [
|
|
1103
|
+
"zerofrom-derive",
|
|
1104
|
+
]
|
|
1105
|
+
|
|
1106
|
+
[[package]]
|
|
1107
|
+
name = "zerofrom-derive"
|
|
1108
|
+
version = "0.1.6"
|
|
1109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1110
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
1111
|
+
dependencies = [
|
|
1112
|
+
"proc-macro2",
|
|
1113
|
+
"quote",
|
|
1114
|
+
"syn",
|
|
1115
|
+
"synstructure",
|
|
1116
|
+
]
|
|
1117
|
+
|
|
1118
|
+
[[package]]
|
|
1119
|
+
name = "zerotrie"
|
|
1120
|
+
version = "0.2.2"
|
|
1121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
+
checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
|
|
1123
|
+
dependencies = [
|
|
1124
|
+
"displaydoc",
|
|
1125
|
+
"yoke",
|
|
1126
|
+
"zerofrom",
|
|
1127
|
+
]
|
|
1128
|
+
|
|
1129
|
+
[[package]]
|
|
1130
|
+
name = "zerovec"
|
|
1131
|
+
version = "0.11.4"
|
|
1132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
+
checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
|
|
1134
|
+
dependencies = [
|
|
1135
|
+
"yoke",
|
|
1136
|
+
"zerofrom",
|
|
1137
|
+
"zerovec-derive",
|
|
1138
|
+
]
|
|
1139
|
+
|
|
1140
|
+
[[package]]
|
|
1141
|
+
name = "zerovec-derive"
|
|
1142
|
+
version = "0.11.1"
|
|
1143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1144
|
+
checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
|
|
1145
|
+
dependencies = [
|
|
1146
|
+
"proc-macro2",
|
|
1147
|
+
"quote",
|
|
1148
|
+
"syn",
|
|
1149
|
+
]
|