fabricatio-core 0.1.0__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.
- fabricatio_core-0.1.0/Cargo.lock +1473 -0
- fabricatio_core-0.1.0/Cargo.toml +36 -0
- fabricatio_core-0.1.0/LICENSE +21 -0
- fabricatio_core-0.1.0/PKG-INFO +19 -0
- fabricatio_core-0.1.0/README.md +0 -0
- fabricatio_core-0.1.0/pyproject.toml +27 -0
- fabricatio_core-0.1.0/python/fabricatio_core/__init__.py +25 -0
- fabricatio_core-0.1.0/python/fabricatio_core/capabilities/__init__.py +1 -0
- fabricatio_core-0.1.0/python/fabricatio_core/capabilities/propose.py +65 -0
- fabricatio_core-0.1.0/python/fabricatio_core/decorators.py +253 -0
- fabricatio_core-0.1.0/python/fabricatio_core/emitter.py +178 -0
- fabricatio_core-0.1.0/python/fabricatio_core/fs/__init__.py +35 -0
- fabricatio_core-0.1.0/python/fabricatio_core/fs/curd.py +153 -0
- fabricatio_core-0.1.0/python/fabricatio_core/fs/readers.py +61 -0
- fabricatio_core-0.1.0/python/fabricatio_core/journal.py +12 -0
- fabricatio_core-0.1.0/python/fabricatio_core/models/__init__.py +0 -0
- fabricatio_core-0.1.0/python/fabricatio_core/models/action.py +264 -0
- fabricatio_core-0.1.0/python/fabricatio_core/models/generic.py +676 -0
- fabricatio_core-0.1.0/python/fabricatio_core/models/kwargs_types.py +103 -0
- fabricatio_core-0.1.0/python/fabricatio_core/models/role.py +157 -0
- fabricatio_core-0.1.0/python/fabricatio_core/models/task.py +311 -0
- fabricatio_core-0.1.0/python/fabricatio_core/models/tool.py +329 -0
- fabricatio_core-0.1.0/python/fabricatio_core/models/usages.py +803 -0
- fabricatio_core-0.1.0/python/fabricatio_core/parser.py +116 -0
- fabricatio_core-0.1.0/python/fabricatio_core/py.typed +0 -0
- fabricatio_core-0.1.0/python/fabricatio_core/rust.pyi +639 -0
- fabricatio_core-0.1.0/python/fabricatio_core/utils.py +156 -0
- fabricatio_core-0.1.0/src/config.rs +572 -0
- fabricatio_core-0.1.0/src/constants/Cargo.toml +10 -0
- fabricatio_core-0.1.0/src/constants/src/lib.rs +14 -0
- fabricatio_core-0.1.0/src/event.rs +260 -0
- fabricatio_core-0.1.0/src/hash.rs +17 -0
- fabricatio_core-0.1.0/src/hbs_helpers.rs +27 -0
- fabricatio_core-0.1.0/src/language.rs +126 -0
- fabricatio_core-0.1.0/src/lib.rs +26 -0
- fabricatio_core-0.1.0/src/macro_utils/Cargo.toml +13 -0
- fabricatio_core-0.1.0/src/macro_utils/src/lib.rs +65 -0
- fabricatio_core-0.1.0/src/templates.rs +217 -0
- fabricatio_core-0.1.0/src/word_split.rs +86 -0
|
@@ -0,0 +1,1473 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.3"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "arc-swap"
|
|
16
|
+
version = "1.7.1"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "arrayref"
|
|
22
|
+
version = "0.3.9"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "arrayvec"
|
|
28
|
+
version = "0.7.6"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "atomic"
|
|
34
|
+
version = "0.6.0"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "8d818003e740b63afc82337e3160717f4f63078720a810b7b903e70a5d1d2994"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"bytemuck",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "autocfg"
|
|
43
|
+
version = "1.4.0"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "bincode"
|
|
49
|
+
version = "2.0.1"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
|
|
52
|
+
dependencies = [
|
|
53
|
+
"bincode_derive",
|
|
54
|
+
"serde",
|
|
55
|
+
"unty",
|
|
56
|
+
]
|
|
57
|
+
|
|
58
|
+
[[package]]
|
|
59
|
+
name = "bincode_derive"
|
|
60
|
+
version = "2.0.1"
|
|
61
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
+
checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
|
|
63
|
+
dependencies = [
|
|
64
|
+
"virtue",
|
|
65
|
+
]
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "bitflags"
|
|
69
|
+
version = "2.9.1"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "blake3"
|
|
75
|
+
version = "1.8.2"
|
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
+
checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0"
|
|
78
|
+
dependencies = [
|
|
79
|
+
"arrayref",
|
|
80
|
+
"arrayvec",
|
|
81
|
+
"cc",
|
|
82
|
+
"cfg-if",
|
|
83
|
+
"constant_time_eq",
|
|
84
|
+
]
|
|
85
|
+
|
|
86
|
+
[[package]]
|
|
87
|
+
name = "block-buffer"
|
|
88
|
+
version = "0.10.4"
|
|
89
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
91
|
+
dependencies = [
|
|
92
|
+
"generic-array",
|
|
93
|
+
]
|
|
94
|
+
|
|
95
|
+
[[package]]
|
|
96
|
+
name = "bytemuck"
|
|
97
|
+
version = "1.23.0"
|
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
+
checksum = "9134a6ef01ce4b366b50689c94f82c14bc72bc5d0386829828a2e2752ef7958c"
|
|
100
|
+
|
|
101
|
+
[[package]]
|
|
102
|
+
name = "cc"
|
|
103
|
+
version = "1.2.23"
|
|
104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
105
|
+
checksum = "5f4ac86a9e5bc1e2b3449ab9d7d3a6a405e3d1bb28d7b9be8614f55846ae3766"
|
|
106
|
+
dependencies = [
|
|
107
|
+
"shlex",
|
|
108
|
+
]
|
|
109
|
+
|
|
110
|
+
[[package]]
|
|
111
|
+
name = "cfg-if"
|
|
112
|
+
version = "1.0.0"
|
|
113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
114
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
115
|
+
|
|
116
|
+
[[package]]
|
|
117
|
+
name = "constant_time_eq"
|
|
118
|
+
version = "0.3.1"
|
|
119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
120
|
+
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
|
121
|
+
|
|
122
|
+
[[package]]
|
|
123
|
+
name = "constants"
|
|
124
|
+
version = "0.1.0"
|
|
125
|
+
dependencies = [
|
|
126
|
+
"directories-next",
|
|
127
|
+
"lazy_static",
|
|
128
|
+
]
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "cpufeatures"
|
|
132
|
+
version = "0.2.17"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
135
|
+
dependencies = [
|
|
136
|
+
"libc",
|
|
137
|
+
]
|
|
138
|
+
|
|
139
|
+
[[package]]
|
|
140
|
+
name = "crossbeam-deque"
|
|
141
|
+
version = "0.8.6"
|
|
142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
143
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
144
|
+
dependencies = [
|
|
145
|
+
"crossbeam-epoch",
|
|
146
|
+
"crossbeam-utils",
|
|
147
|
+
]
|
|
148
|
+
|
|
149
|
+
[[package]]
|
|
150
|
+
name = "crossbeam-epoch"
|
|
151
|
+
version = "0.9.18"
|
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
154
|
+
dependencies = [
|
|
155
|
+
"crossbeam-utils",
|
|
156
|
+
]
|
|
157
|
+
|
|
158
|
+
[[package]]
|
|
159
|
+
name = "crossbeam-utils"
|
|
160
|
+
version = "0.8.21"
|
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
163
|
+
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "crypto-common"
|
|
166
|
+
version = "0.1.6"
|
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
169
|
+
dependencies = [
|
|
170
|
+
"generic-array",
|
|
171
|
+
"typenum",
|
|
172
|
+
]
|
|
173
|
+
|
|
174
|
+
[[package]]
|
|
175
|
+
name = "darling"
|
|
176
|
+
version = "0.20.11"
|
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
179
|
+
dependencies = [
|
|
180
|
+
"darling_core",
|
|
181
|
+
"darling_macro",
|
|
182
|
+
]
|
|
183
|
+
|
|
184
|
+
[[package]]
|
|
185
|
+
name = "darling_core"
|
|
186
|
+
version = "0.20.11"
|
|
187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
|
189
|
+
dependencies = [
|
|
190
|
+
"fnv",
|
|
191
|
+
"ident_case",
|
|
192
|
+
"proc-macro2",
|
|
193
|
+
"quote",
|
|
194
|
+
"strsim",
|
|
195
|
+
"syn",
|
|
196
|
+
]
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "darling_macro"
|
|
200
|
+
version = "0.20.11"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
203
|
+
dependencies = [
|
|
204
|
+
"darling_core",
|
|
205
|
+
"quote",
|
|
206
|
+
"syn",
|
|
207
|
+
]
|
|
208
|
+
|
|
209
|
+
[[package]]
|
|
210
|
+
name = "derive_builder"
|
|
211
|
+
version = "0.20.2"
|
|
212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
+
checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
|
|
214
|
+
dependencies = [
|
|
215
|
+
"derive_builder_macro",
|
|
216
|
+
]
|
|
217
|
+
|
|
218
|
+
[[package]]
|
|
219
|
+
name = "derive_builder_core"
|
|
220
|
+
version = "0.20.2"
|
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
+
checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
|
|
223
|
+
dependencies = [
|
|
224
|
+
"darling",
|
|
225
|
+
"proc-macro2",
|
|
226
|
+
"quote",
|
|
227
|
+
"syn",
|
|
228
|
+
]
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "derive_builder_macro"
|
|
232
|
+
version = "0.20.2"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
|
235
|
+
dependencies = [
|
|
236
|
+
"derive_builder_core",
|
|
237
|
+
"syn",
|
|
238
|
+
]
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "digest"
|
|
242
|
+
version = "0.10.7"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
245
|
+
dependencies = [
|
|
246
|
+
"block-buffer",
|
|
247
|
+
"crypto-common",
|
|
248
|
+
]
|
|
249
|
+
|
|
250
|
+
[[package]]
|
|
251
|
+
name = "directories-next"
|
|
252
|
+
version = "2.0.0"
|
|
253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
254
|
+
checksum = "339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc"
|
|
255
|
+
dependencies = [
|
|
256
|
+
"cfg-if",
|
|
257
|
+
"dirs-sys-next",
|
|
258
|
+
]
|
|
259
|
+
|
|
260
|
+
[[package]]
|
|
261
|
+
name = "dirs-sys-next"
|
|
262
|
+
version = "0.1.2"
|
|
263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
264
|
+
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
|
|
265
|
+
dependencies = [
|
|
266
|
+
"libc",
|
|
267
|
+
"redox_users",
|
|
268
|
+
"winapi",
|
|
269
|
+
]
|
|
270
|
+
|
|
271
|
+
[[package]]
|
|
272
|
+
name = "displaydoc"
|
|
273
|
+
version = "0.2.5"
|
|
274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
276
|
+
dependencies = [
|
|
277
|
+
"proc-macro2",
|
|
278
|
+
"quote",
|
|
279
|
+
"syn",
|
|
280
|
+
]
|
|
281
|
+
|
|
282
|
+
[[package]]
|
|
283
|
+
name = "dotenvy"
|
|
284
|
+
version = "0.15.7"
|
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
286
|
+
checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
|
|
287
|
+
|
|
288
|
+
[[package]]
|
|
289
|
+
name = "either"
|
|
290
|
+
version = "1.15.0"
|
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "equivalent"
|
|
296
|
+
version = "1.0.2"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
299
|
+
|
|
300
|
+
[[package]]
|
|
301
|
+
name = "fabricatio-core"
|
|
302
|
+
version = "0.0.0"
|
|
303
|
+
dependencies = [
|
|
304
|
+
"bincode",
|
|
305
|
+
"blake3",
|
|
306
|
+
"constants",
|
|
307
|
+
"dotenvy",
|
|
308
|
+
"figment",
|
|
309
|
+
"handlebars",
|
|
310
|
+
"log",
|
|
311
|
+
"macro_utils",
|
|
312
|
+
"pyo3",
|
|
313
|
+
"pyo3-log",
|
|
314
|
+
"pythonize",
|
|
315
|
+
"rayon",
|
|
316
|
+
"serde",
|
|
317
|
+
"serde_json",
|
|
318
|
+
"strum",
|
|
319
|
+
"unicode-segmentation",
|
|
320
|
+
"validator",
|
|
321
|
+
"walkdir",
|
|
322
|
+
"whichlang",
|
|
323
|
+
]
|
|
324
|
+
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "figment"
|
|
327
|
+
version = "0.10.19"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "8cb01cd46b0cf372153850f4c6c272d9cbea2da513e07538405148f95bd789f3"
|
|
330
|
+
dependencies = [
|
|
331
|
+
"atomic",
|
|
332
|
+
"pear",
|
|
333
|
+
"serde",
|
|
334
|
+
"toml",
|
|
335
|
+
"uncased",
|
|
336
|
+
"version_check",
|
|
337
|
+
]
|
|
338
|
+
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "fnv"
|
|
341
|
+
version = "1.0.7"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
344
|
+
|
|
345
|
+
[[package]]
|
|
346
|
+
name = "form_urlencoded"
|
|
347
|
+
version = "1.2.1"
|
|
348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
349
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
350
|
+
dependencies = [
|
|
351
|
+
"percent-encoding",
|
|
352
|
+
]
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "generic-array"
|
|
356
|
+
version = "0.14.7"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
359
|
+
dependencies = [
|
|
360
|
+
"typenum",
|
|
361
|
+
"version_check",
|
|
362
|
+
]
|
|
363
|
+
|
|
364
|
+
[[package]]
|
|
365
|
+
name = "getrandom"
|
|
366
|
+
version = "0.2.16"
|
|
367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
368
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
369
|
+
dependencies = [
|
|
370
|
+
"cfg-if",
|
|
371
|
+
"libc",
|
|
372
|
+
"wasi",
|
|
373
|
+
]
|
|
374
|
+
|
|
375
|
+
[[package]]
|
|
376
|
+
name = "handlebars"
|
|
377
|
+
version = "6.3.2"
|
|
378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
379
|
+
checksum = "759e2d5aea3287cb1190c8ec394f42866cb5bf74fcbf213f354e3c856ea26098"
|
|
380
|
+
dependencies = [
|
|
381
|
+
"derive_builder",
|
|
382
|
+
"log",
|
|
383
|
+
"num-order",
|
|
384
|
+
"pest",
|
|
385
|
+
"pest_derive",
|
|
386
|
+
"serde",
|
|
387
|
+
"serde_json",
|
|
388
|
+
"thiserror 2.0.12",
|
|
389
|
+
]
|
|
390
|
+
|
|
391
|
+
[[package]]
|
|
392
|
+
name = "hashbrown"
|
|
393
|
+
version = "0.15.3"
|
|
394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
+
checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
|
|
396
|
+
|
|
397
|
+
[[package]]
|
|
398
|
+
name = "heck"
|
|
399
|
+
version = "0.5.0"
|
|
400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
401
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
402
|
+
|
|
403
|
+
[[package]]
|
|
404
|
+
name = "icu_collections"
|
|
405
|
+
version = "2.0.0"
|
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
|
+
checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
|
|
408
|
+
dependencies = [
|
|
409
|
+
"displaydoc",
|
|
410
|
+
"potential_utf",
|
|
411
|
+
"yoke",
|
|
412
|
+
"zerofrom",
|
|
413
|
+
"zerovec",
|
|
414
|
+
]
|
|
415
|
+
|
|
416
|
+
[[package]]
|
|
417
|
+
name = "icu_locale_core"
|
|
418
|
+
version = "2.0.0"
|
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
+
checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
|
|
421
|
+
dependencies = [
|
|
422
|
+
"displaydoc",
|
|
423
|
+
"litemap",
|
|
424
|
+
"tinystr",
|
|
425
|
+
"writeable",
|
|
426
|
+
"zerovec",
|
|
427
|
+
]
|
|
428
|
+
|
|
429
|
+
[[package]]
|
|
430
|
+
name = "icu_normalizer"
|
|
431
|
+
version = "2.0.0"
|
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
+
checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
|
|
434
|
+
dependencies = [
|
|
435
|
+
"displaydoc",
|
|
436
|
+
"icu_collections",
|
|
437
|
+
"icu_normalizer_data",
|
|
438
|
+
"icu_properties",
|
|
439
|
+
"icu_provider",
|
|
440
|
+
"smallvec",
|
|
441
|
+
"zerovec",
|
|
442
|
+
]
|
|
443
|
+
|
|
444
|
+
[[package]]
|
|
445
|
+
name = "icu_normalizer_data"
|
|
446
|
+
version = "2.0.0"
|
|
447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
448
|
+
checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
|
|
449
|
+
|
|
450
|
+
[[package]]
|
|
451
|
+
name = "icu_properties"
|
|
452
|
+
version = "2.0.1"
|
|
453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
|
+
checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
|
|
455
|
+
dependencies = [
|
|
456
|
+
"displaydoc",
|
|
457
|
+
"icu_collections",
|
|
458
|
+
"icu_locale_core",
|
|
459
|
+
"icu_properties_data",
|
|
460
|
+
"icu_provider",
|
|
461
|
+
"potential_utf",
|
|
462
|
+
"zerotrie",
|
|
463
|
+
"zerovec",
|
|
464
|
+
]
|
|
465
|
+
|
|
466
|
+
[[package]]
|
|
467
|
+
name = "icu_properties_data"
|
|
468
|
+
version = "2.0.1"
|
|
469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
+
checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
|
|
471
|
+
|
|
472
|
+
[[package]]
|
|
473
|
+
name = "icu_provider"
|
|
474
|
+
version = "2.0.0"
|
|
475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
+
checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
|
|
477
|
+
dependencies = [
|
|
478
|
+
"displaydoc",
|
|
479
|
+
"icu_locale_core",
|
|
480
|
+
"stable_deref_trait",
|
|
481
|
+
"tinystr",
|
|
482
|
+
"writeable",
|
|
483
|
+
"yoke",
|
|
484
|
+
"zerofrom",
|
|
485
|
+
"zerotrie",
|
|
486
|
+
"zerovec",
|
|
487
|
+
]
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "ident_case"
|
|
491
|
+
version = "1.0.1"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
494
|
+
|
|
495
|
+
[[package]]
|
|
496
|
+
name = "idna"
|
|
497
|
+
version = "1.0.3"
|
|
498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
499
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
|
500
|
+
dependencies = [
|
|
501
|
+
"idna_adapter",
|
|
502
|
+
"smallvec",
|
|
503
|
+
"utf8_iter",
|
|
504
|
+
]
|
|
505
|
+
|
|
506
|
+
[[package]]
|
|
507
|
+
name = "idna_adapter"
|
|
508
|
+
version = "1.2.1"
|
|
509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
510
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
511
|
+
dependencies = [
|
|
512
|
+
"icu_normalizer",
|
|
513
|
+
"icu_properties",
|
|
514
|
+
]
|
|
515
|
+
|
|
516
|
+
[[package]]
|
|
517
|
+
name = "indexmap"
|
|
518
|
+
version = "2.9.0"
|
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
+
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
|
521
|
+
dependencies = [
|
|
522
|
+
"equivalent",
|
|
523
|
+
"hashbrown",
|
|
524
|
+
]
|
|
525
|
+
|
|
526
|
+
[[package]]
|
|
527
|
+
name = "indoc"
|
|
528
|
+
version = "2.0.6"
|
|
529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
+
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "inlinable_string"
|
|
534
|
+
version = "0.1.15"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "c8fae54786f62fb2918dcfae3d568594e50eb9b5c25bf04371af6fe7516452fb"
|
|
537
|
+
|
|
538
|
+
[[package]]
|
|
539
|
+
name = "itoa"
|
|
540
|
+
version = "1.0.15"
|
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
543
|
+
|
|
544
|
+
[[package]]
|
|
545
|
+
name = "lazy_static"
|
|
546
|
+
version = "1.5.0"
|
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "libc"
|
|
552
|
+
version = "0.2.172"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "libredox"
|
|
558
|
+
version = "0.1.3"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
561
|
+
dependencies = [
|
|
562
|
+
"bitflags",
|
|
563
|
+
"libc",
|
|
564
|
+
]
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "litemap"
|
|
568
|
+
version = "0.8.0"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "log"
|
|
574
|
+
version = "0.4.27"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
577
|
+
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "macro_utils"
|
|
580
|
+
version = "0.0.0"
|
|
581
|
+
dependencies = [
|
|
582
|
+
"quote",
|
|
583
|
+
"syn",
|
|
584
|
+
]
|
|
585
|
+
|
|
586
|
+
[[package]]
|
|
587
|
+
name = "memchr"
|
|
588
|
+
version = "2.7.4"
|
|
589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
590
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
591
|
+
|
|
592
|
+
[[package]]
|
|
593
|
+
name = "memoffset"
|
|
594
|
+
version = "0.9.1"
|
|
595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
596
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
597
|
+
dependencies = [
|
|
598
|
+
"autocfg",
|
|
599
|
+
]
|
|
600
|
+
|
|
601
|
+
[[package]]
|
|
602
|
+
name = "num-modular"
|
|
603
|
+
version = "0.6.1"
|
|
604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
605
|
+
checksum = "17bb261bf36fa7d83f4c294f834e91256769097b3cb505d44831e0a179ac647f"
|
|
606
|
+
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "num-order"
|
|
609
|
+
version = "1.2.0"
|
|
610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
+
checksum = "537b596b97c40fcf8056d153049eb22f481c17ebce72a513ec9286e4986d1bb6"
|
|
612
|
+
dependencies = [
|
|
613
|
+
"num-modular",
|
|
614
|
+
]
|
|
615
|
+
|
|
616
|
+
[[package]]
|
|
617
|
+
name = "once_cell"
|
|
618
|
+
version = "1.21.3"
|
|
619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
620
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
621
|
+
|
|
622
|
+
[[package]]
|
|
623
|
+
name = "pear"
|
|
624
|
+
version = "0.2.9"
|
|
625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
|
+
checksum = "bdeeaa00ce488657faba8ebf44ab9361f9365a97bd39ffb8a60663f57ff4b467"
|
|
627
|
+
dependencies = [
|
|
628
|
+
"inlinable_string",
|
|
629
|
+
"pear_codegen",
|
|
630
|
+
"yansi",
|
|
631
|
+
]
|
|
632
|
+
|
|
633
|
+
[[package]]
|
|
634
|
+
name = "pear_codegen"
|
|
635
|
+
version = "0.2.9"
|
|
636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
637
|
+
checksum = "4bab5b985dc082b345f812b7df84e1bef27e7207b39e448439ba8bd69c93f147"
|
|
638
|
+
dependencies = [
|
|
639
|
+
"proc-macro2",
|
|
640
|
+
"proc-macro2-diagnostics",
|
|
641
|
+
"quote",
|
|
642
|
+
"syn",
|
|
643
|
+
]
|
|
644
|
+
|
|
645
|
+
[[package]]
|
|
646
|
+
name = "percent-encoding"
|
|
647
|
+
version = "2.3.1"
|
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
650
|
+
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "pest"
|
|
653
|
+
version = "2.8.0"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "198db74531d58c70a361c42201efde7e2591e976d518caf7662a47dc5720e7b6"
|
|
656
|
+
dependencies = [
|
|
657
|
+
"memchr",
|
|
658
|
+
"thiserror 2.0.12",
|
|
659
|
+
"ucd-trie",
|
|
660
|
+
]
|
|
661
|
+
|
|
662
|
+
[[package]]
|
|
663
|
+
name = "pest_derive"
|
|
664
|
+
version = "2.8.0"
|
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
666
|
+
checksum = "d725d9cfd79e87dccc9341a2ef39d1b6f6353d68c4b33c177febbe1a402c97c5"
|
|
667
|
+
dependencies = [
|
|
668
|
+
"pest",
|
|
669
|
+
"pest_generator",
|
|
670
|
+
]
|
|
671
|
+
|
|
672
|
+
[[package]]
|
|
673
|
+
name = "pest_generator"
|
|
674
|
+
version = "2.8.0"
|
|
675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
676
|
+
checksum = "db7d01726be8ab66ab32f9df467ae8b1148906685bbe75c82d1e65d7f5b3f841"
|
|
677
|
+
dependencies = [
|
|
678
|
+
"pest",
|
|
679
|
+
"pest_meta",
|
|
680
|
+
"proc-macro2",
|
|
681
|
+
"quote",
|
|
682
|
+
"syn",
|
|
683
|
+
]
|
|
684
|
+
|
|
685
|
+
[[package]]
|
|
686
|
+
name = "pest_meta"
|
|
687
|
+
version = "2.8.0"
|
|
688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
+
checksum = "7f9f832470494906d1fca5329f8ab5791cc60beb230c74815dff541cbd2b5ca0"
|
|
690
|
+
dependencies = [
|
|
691
|
+
"once_cell",
|
|
692
|
+
"pest",
|
|
693
|
+
"sha2",
|
|
694
|
+
]
|
|
695
|
+
|
|
696
|
+
[[package]]
|
|
697
|
+
name = "portable-atomic"
|
|
698
|
+
version = "1.11.0"
|
|
699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
+
checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
|
|
701
|
+
|
|
702
|
+
[[package]]
|
|
703
|
+
name = "potential_utf"
|
|
704
|
+
version = "0.1.2"
|
|
705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
|
+
checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
|
|
707
|
+
dependencies = [
|
|
708
|
+
"zerovec",
|
|
709
|
+
]
|
|
710
|
+
|
|
711
|
+
[[package]]
|
|
712
|
+
name = "proc-macro-error-attr2"
|
|
713
|
+
version = "2.0.0"
|
|
714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
715
|
+
checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
|
|
716
|
+
dependencies = [
|
|
717
|
+
"proc-macro2",
|
|
718
|
+
"quote",
|
|
719
|
+
]
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "proc-macro-error2"
|
|
723
|
+
version = "2.0.1"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
|
|
726
|
+
dependencies = [
|
|
727
|
+
"proc-macro-error-attr2",
|
|
728
|
+
"proc-macro2",
|
|
729
|
+
"quote",
|
|
730
|
+
"syn",
|
|
731
|
+
]
|
|
732
|
+
|
|
733
|
+
[[package]]
|
|
734
|
+
name = "proc-macro2"
|
|
735
|
+
version = "1.0.95"
|
|
736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
737
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
|
738
|
+
dependencies = [
|
|
739
|
+
"unicode-ident",
|
|
740
|
+
]
|
|
741
|
+
|
|
742
|
+
[[package]]
|
|
743
|
+
name = "proc-macro2-diagnostics"
|
|
744
|
+
version = "0.10.1"
|
|
745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
746
|
+
checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8"
|
|
747
|
+
dependencies = [
|
|
748
|
+
"proc-macro2",
|
|
749
|
+
"quote",
|
|
750
|
+
"syn",
|
|
751
|
+
"version_check",
|
|
752
|
+
"yansi",
|
|
753
|
+
]
|
|
754
|
+
|
|
755
|
+
[[package]]
|
|
756
|
+
name = "pyo3"
|
|
757
|
+
version = "0.24.2"
|
|
758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
+
checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
|
|
760
|
+
dependencies = [
|
|
761
|
+
"cfg-if",
|
|
762
|
+
"indoc",
|
|
763
|
+
"libc",
|
|
764
|
+
"memoffset",
|
|
765
|
+
"once_cell",
|
|
766
|
+
"portable-atomic",
|
|
767
|
+
"pyo3-build-config",
|
|
768
|
+
"pyo3-ffi",
|
|
769
|
+
"pyo3-macros",
|
|
770
|
+
"unindent",
|
|
771
|
+
]
|
|
772
|
+
|
|
773
|
+
[[package]]
|
|
774
|
+
name = "pyo3-build-config"
|
|
775
|
+
version = "0.24.2"
|
|
776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
+
checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
|
|
778
|
+
dependencies = [
|
|
779
|
+
"once_cell",
|
|
780
|
+
"target-lexicon",
|
|
781
|
+
]
|
|
782
|
+
|
|
783
|
+
[[package]]
|
|
784
|
+
name = "pyo3-ffi"
|
|
785
|
+
version = "0.24.2"
|
|
786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
787
|
+
checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
|
|
788
|
+
dependencies = [
|
|
789
|
+
"libc",
|
|
790
|
+
"pyo3-build-config",
|
|
791
|
+
]
|
|
792
|
+
|
|
793
|
+
[[package]]
|
|
794
|
+
name = "pyo3-log"
|
|
795
|
+
version = "0.12.4"
|
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
797
|
+
checksum = "45192e5e4a4d2505587e27806c7b710c231c40c56f3bfc19535d0bb25df52264"
|
|
798
|
+
dependencies = [
|
|
799
|
+
"arc-swap",
|
|
800
|
+
"log",
|
|
801
|
+
"pyo3",
|
|
802
|
+
]
|
|
803
|
+
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "pyo3-macros"
|
|
806
|
+
version = "0.24.2"
|
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
+
checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
|
|
809
|
+
dependencies = [
|
|
810
|
+
"proc-macro2",
|
|
811
|
+
"pyo3-macros-backend",
|
|
812
|
+
"quote",
|
|
813
|
+
"syn",
|
|
814
|
+
]
|
|
815
|
+
|
|
816
|
+
[[package]]
|
|
817
|
+
name = "pyo3-macros-backend"
|
|
818
|
+
version = "0.24.2"
|
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
+
checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
|
|
821
|
+
dependencies = [
|
|
822
|
+
"heck",
|
|
823
|
+
"proc-macro2",
|
|
824
|
+
"pyo3-build-config",
|
|
825
|
+
"quote",
|
|
826
|
+
"syn",
|
|
827
|
+
]
|
|
828
|
+
|
|
829
|
+
[[package]]
|
|
830
|
+
name = "pythonize"
|
|
831
|
+
version = "0.24.0"
|
|
832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
833
|
+
checksum = "d5bcac0d0b71821f0d69e42654f1e15e5c94b85196446c4de9588951a2117e7b"
|
|
834
|
+
dependencies = [
|
|
835
|
+
"pyo3",
|
|
836
|
+
"serde",
|
|
837
|
+
]
|
|
838
|
+
|
|
839
|
+
[[package]]
|
|
840
|
+
name = "quote"
|
|
841
|
+
version = "1.0.40"
|
|
842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
843
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
844
|
+
dependencies = [
|
|
845
|
+
"proc-macro2",
|
|
846
|
+
]
|
|
847
|
+
|
|
848
|
+
[[package]]
|
|
849
|
+
name = "rayon"
|
|
850
|
+
version = "1.10.0"
|
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
|
853
|
+
dependencies = [
|
|
854
|
+
"either",
|
|
855
|
+
"rayon-core",
|
|
856
|
+
]
|
|
857
|
+
|
|
858
|
+
[[package]]
|
|
859
|
+
name = "rayon-core"
|
|
860
|
+
version = "1.12.1"
|
|
861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
862
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
|
863
|
+
dependencies = [
|
|
864
|
+
"crossbeam-deque",
|
|
865
|
+
"crossbeam-utils",
|
|
866
|
+
]
|
|
867
|
+
|
|
868
|
+
[[package]]
|
|
869
|
+
name = "redox_users"
|
|
870
|
+
version = "0.4.6"
|
|
871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
872
|
+
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
873
|
+
dependencies = [
|
|
874
|
+
"getrandom",
|
|
875
|
+
"libredox",
|
|
876
|
+
"thiserror 1.0.69",
|
|
877
|
+
]
|
|
878
|
+
|
|
879
|
+
[[package]]
|
|
880
|
+
name = "regex"
|
|
881
|
+
version = "1.11.1"
|
|
882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
|
884
|
+
dependencies = [
|
|
885
|
+
"aho-corasick",
|
|
886
|
+
"memchr",
|
|
887
|
+
"regex-automata",
|
|
888
|
+
"regex-syntax",
|
|
889
|
+
]
|
|
890
|
+
|
|
891
|
+
[[package]]
|
|
892
|
+
name = "regex-automata"
|
|
893
|
+
version = "0.4.9"
|
|
894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
896
|
+
dependencies = [
|
|
897
|
+
"aho-corasick",
|
|
898
|
+
"memchr",
|
|
899
|
+
"regex-syntax",
|
|
900
|
+
]
|
|
901
|
+
|
|
902
|
+
[[package]]
|
|
903
|
+
name = "regex-syntax"
|
|
904
|
+
version = "0.8.5"
|
|
905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
906
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
907
|
+
|
|
908
|
+
[[package]]
|
|
909
|
+
name = "rustversion"
|
|
910
|
+
version = "1.0.20"
|
|
911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
912
|
+
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
|
|
913
|
+
|
|
914
|
+
[[package]]
|
|
915
|
+
name = "ryu"
|
|
916
|
+
version = "1.0.20"
|
|
917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
918
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "same-file"
|
|
922
|
+
version = "1.0.6"
|
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
925
|
+
dependencies = [
|
|
926
|
+
"winapi-util",
|
|
927
|
+
]
|
|
928
|
+
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "serde"
|
|
931
|
+
version = "1.0.219"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
934
|
+
dependencies = [
|
|
935
|
+
"serde_derive",
|
|
936
|
+
]
|
|
937
|
+
|
|
938
|
+
[[package]]
|
|
939
|
+
name = "serde_derive"
|
|
940
|
+
version = "1.0.219"
|
|
941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
942
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
943
|
+
dependencies = [
|
|
944
|
+
"proc-macro2",
|
|
945
|
+
"quote",
|
|
946
|
+
"syn",
|
|
947
|
+
]
|
|
948
|
+
|
|
949
|
+
[[package]]
|
|
950
|
+
name = "serde_json"
|
|
951
|
+
version = "1.0.140"
|
|
952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
953
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
|
954
|
+
dependencies = [
|
|
955
|
+
"itoa",
|
|
956
|
+
"memchr",
|
|
957
|
+
"ryu",
|
|
958
|
+
"serde",
|
|
959
|
+
]
|
|
960
|
+
|
|
961
|
+
[[package]]
|
|
962
|
+
name = "serde_spanned"
|
|
963
|
+
version = "0.6.8"
|
|
964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
965
|
+
checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
|
|
966
|
+
dependencies = [
|
|
967
|
+
"serde",
|
|
968
|
+
]
|
|
969
|
+
|
|
970
|
+
[[package]]
|
|
971
|
+
name = "sha2"
|
|
972
|
+
version = "0.10.9"
|
|
973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
974
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
975
|
+
dependencies = [
|
|
976
|
+
"cfg-if",
|
|
977
|
+
"cpufeatures",
|
|
978
|
+
"digest",
|
|
979
|
+
]
|
|
980
|
+
|
|
981
|
+
[[package]]
|
|
982
|
+
name = "shlex"
|
|
983
|
+
version = "1.3.0"
|
|
984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
985
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
986
|
+
|
|
987
|
+
[[package]]
|
|
988
|
+
name = "smallvec"
|
|
989
|
+
version = "1.15.0"
|
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
+
checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
|
|
992
|
+
|
|
993
|
+
[[package]]
|
|
994
|
+
name = "stable_deref_trait"
|
|
995
|
+
version = "1.2.0"
|
|
996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
998
|
+
|
|
999
|
+
[[package]]
|
|
1000
|
+
name = "strsim"
|
|
1001
|
+
version = "0.11.1"
|
|
1002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1003
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1004
|
+
|
|
1005
|
+
[[package]]
|
|
1006
|
+
name = "strum"
|
|
1007
|
+
version = "0.27.1"
|
|
1008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1009
|
+
checksum = "f64def088c51c9510a8579e3c5d67c65349dcf755e5479ad3d010aa6454e2c32"
|
|
1010
|
+
dependencies = [
|
|
1011
|
+
"strum_macros",
|
|
1012
|
+
]
|
|
1013
|
+
|
|
1014
|
+
[[package]]
|
|
1015
|
+
name = "strum_macros"
|
|
1016
|
+
version = "0.27.1"
|
|
1017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1018
|
+
checksum = "c77a8c5abcaf0f9ce05d62342b7d298c346515365c36b673df4ebe3ced01fde8"
|
|
1019
|
+
dependencies = [
|
|
1020
|
+
"heck",
|
|
1021
|
+
"proc-macro2",
|
|
1022
|
+
"quote",
|
|
1023
|
+
"rustversion",
|
|
1024
|
+
"syn",
|
|
1025
|
+
]
|
|
1026
|
+
|
|
1027
|
+
[[package]]
|
|
1028
|
+
name = "syn"
|
|
1029
|
+
version = "2.0.101"
|
|
1030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1031
|
+
checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
|
|
1032
|
+
dependencies = [
|
|
1033
|
+
"proc-macro2",
|
|
1034
|
+
"quote",
|
|
1035
|
+
"unicode-ident",
|
|
1036
|
+
]
|
|
1037
|
+
|
|
1038
|
+
[[package]]
|
|
1039
|
+
name = "synstructure"
|
|
1040
|
+
version = "0.13.2"
|
|
1041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1042
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1043
|
+
dependencies = [
|
|
1044
|
+
"proc-macro2",
|
|
1045
|
+
"quote",
|
|
1046
|
+
"syn",
|
|
1047
|
+
]
|
|
1048
|
+
|
|
1049
|
+
[[package]]
|
|
1050
|
+
name = "target-lexicon"
|
|
1051
|
+
version = "0.13.2"
|
|
1052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1053
|
+
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
1054
|
+
|
|
1055
|
+
[[package]]
|
|
1056
|
+
name = "thiserror"
|
|
1057
|
+
version = "1.0.69"
|
|
1058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1060
|
+
dependencies = [
|
|
1061
|
+
"thiserror-impl 1.0.69",
|
|
1062
|
+
]
|
|
1063
|
+
|
|
1064
|
+
[[package]]
|
|
1065
|
+
name = "thiserror"
|
|
1066
|
+
version = "2.0.12"
|
|
1067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
|
1069
|
+
dependencies = [
|
|
1070
|
+
"thiserror-impl 2.0.12",
|
|
1071
|
+
]
|
|
1072
|
+
|
|
1073
|
+
[[package]]
|
|
1074
|
+
name = "thiserror-impl"
|
|
1075
|
+
version = "1.0.69"
|
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1078
|
+
dependencies = [
|
|
1079
|
+
"proc-macro2",
|
|
1080
|
+
"quote",
|
|
1081
|
+
"syn",
|
|
1082
|
+
]
|
|
1083
|
+
|
|
1084
|
+
[[package]]
|
|
1085
|
+
name = "thiserror-impl"
|
|
1086
|
+
version = "2.0.12"
|
|
1087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1088
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
1089
|
+
dependencies = [
|
|
1090
|
+
"proc-macro2",
|
|
1091
|
+
"quote",
|
|
1092
|
+
"syn",
|
|
1093
|
+
]
|
|
1094
|
+
|
|
1095
|
+
[[package]]
|
|
1096
|
+
name = "tinystr"
|
|
1097
|
+
version = "0.8.1"
|
|
1098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
+
checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
|
|
1100
|
+
dependencies = [
|
|
1101
|
+
"displaydoc",
|
|
1102
|
+
"zerovec",
|
|
1103
|
+
]
|
|
1104
|
+
|
|
1105
|
+
[[package]]
|
|
1106
|
+
name = "toml"
|
|
1107
|
+
version = "0.8.22"
|
|
1108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1109
|
+
checksum = "05ae329d1f08c4d17a59bed7ff5b5a769d062e64a62d34a3261b219e62cd5aae"
|
|
1110
|
+
dependencies = [
|
|
1111
|
+
"serde",
|
|
1112
|
+
"serde_spanned",
|
|
1113
|
+
"toml_datetime",
|
|
1114
|
+
"toml_edit",
|
|
1115
|
+
]
|
|
1116
|
+
|
|
1117
|
+
[[package]]
|
|
1118
|
+
name = "toml_datetime"
|
|
1119
|
+
version = "0.6.9"
|
|
1120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1121
|
+
checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
|
|
1122
|
+
dependencies = [
|
|
1123
|
+
"serde",
|
|
1124
|
+
]
|
|
1125
|
+
|
|
1126
|
+
[[package]]
|
|
1127
|
+
name = "toml_edit"
|
|
1128
|
+
version = "0.22.26"
|
|
1129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1130
|
+
checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e"
|
|
1131
|
+
dependencies = [
|
|
1132
|
+
"indexmap",
|
|
1133
|
+
"serde",
|
|
1134
|
+
"serde_spanned",
|
|
1135
|
+
"toml_datetime",
|
|
1136
|
+
"toml_write",
|
|
1137
|
+
"winnow",
|
|
1138
|
+
]
|
|
1139
|
+
|
|
1140
|
+
[[package]]
|
|
1141
|
+
name = "toml_write"
|
|
1142
|
+
version = "0.1.1"
|
|
1143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1144
|
+
checksum = "bfb942dfe1d8e29a7ee7fcbde5bd2b9a25fb89aa70caea2eba3bee836ff41076"
|
|
1145
|
+
|
|
1146
|
+
[[package]]
|
|
1147
|
+
name = "typenum"
|
|
1148
|
+
version = "1.18.0"
|
|
1149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1150
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
|
1151
|
+
|
|
1152
|
+
[[package]]
|
|
1153
|
+
name = "ucd-trie"
|
|
1154
|
+
version = "0.1.7"
|
|
1155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
+
checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
|
|
1157
|
+
|
|
1158
|
+
[[package]]
|
|
1159
|
+
name = "uncased"
|
|
1160
|
+
version = "0.9.10"
|
|
1161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1162
|
+
checksum = "e1b88fcfe09e89d3866a5c11019378088af2d24c3fbd4f0543f96b479ec90697"
|
|
1163
|
+
dependencies = [
|
|
1164
|
+
"version_check",
|
|
1165
|
+
]
|
|
1166
|
+
|
|
1167
|
+
[[package]]
|
|
1168
|
+
name = "unicode-ident"
|
|
1169
|
+
version = "1.0.18"
|
|
1170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1171
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
1172
|
+
|
|
1173
|
+
[[package]]
|
|
1174
|
+
name = "unicode-segmentation"
|
|
1175
|
+
version = "1.12.0"
|
|
1176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1177
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
1178
|
+
|
|
1179
|
+
[[package]]
|
|
1180
|
+
name = "unindent"
|
|
1181
|
+
version = "0.2.4"
|
|
1182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1183
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
1184
|
+
|
|
1185
|
+
[[package]]
|
|
1186
|
+
name = "unty"
|
|
1187
|
+
version = "0.0.4"
|
|
1188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1189
|
+
checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
|
|
1190
|
+
|
|
1191
|
+
[[package]]
|
|
1192
|
+
name = "url"
|
|
1193
|
+
version = "2.5.4"
|
|
1194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1195
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
|
1196
|
+
dependencies = [
|
|
1197
|
+
"form_urlencoded",
|
|
1198
|
+
"idna",
|
|
1199
|
+
"percent-encoding",
|
|
1200
|
+
]
|
|
1201
|
+
|
|
1202
|
+
[[package]]
|
|
1203
|
+
name = "utf8_iter"
|
|
1204
|
+
version = "1.0.4"
|
|
1205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1206
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1207
|
+
|
|
1208
|
+
[[package]]
|
|
1209
|
+
name = "validator"
|
|
1210
|
+
version = "0.20.0"
|
|
1211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1212
|
+
checksum = "43fb22e1a008ece370ce08a3e9e4447a910e92621bb49b85d6e48a45397e7cfa"
|
|
1213
|
+
dependencies = [
|
|
1214
|
+
"idna",
|
|
1215
|
+
"once_cell",
|
|
1216
|
+
"regex",
|
|
1217
|
+
"serde",
|
|
1218
|
+
"serde_derive",
|
|
1219
|
+
"serde_json",
|
|
1220
|
+
"url",
|
|
1221
|
+
"validator_derive",
|
|
1222
|
+
]
|
|
1223
|
+
|
|
1224
|
+
[[package]]
|
|
1225
|
+
name = "validator_derive"
|
|
1226
|
+
version = "0.20.0"
|
|
1227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1228
|
+
checksum = "b7df16e474ef958526d1205f6dda359fdfab79d9aa6d54bafcb92dcd07673dca"
|
|
1229
|
+
dependencies = [
|
|
1230
|
+
"darling",
|
|
1231
|
+
"once_cell",
|
|
1232
|
+
"proc-macro-error2",
|
|
1233
|
+
"proc-macro2",
|
|
1234
|
+
"quote",
|
|
1235
|
+
"syn",
|
|
1236
|
+
]
|
|
1237
|
+
|
|
1238
|
+
[[package]]
|
|
1239
|
+
name = "version_check"
|
|
1240
|
+
version = "0.9.5"
|
|
1241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1242
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1243
|
+
|
|
1244
|
+
[[package]]
|
|
1245
|
+
name = "virtue"
|
|
1246
|
+
version = "0.0.18"
|
|
1247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1248
|
+
checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
|
|
1249
|
+
|
|
1250
|
+
[[package]]
|
|
1251
|
+
name = "walkdir"
|
|
1252
|
+
version = "2.5.0"
|
|
1253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1254
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1255
|
+
dependencies = [
|
|
1256
|
+
"same-file",
|
|
1257
|
+
"winapi-util",
|
|
1258
|
+
]
|
|
1259
|
+
|
|
1260
|
+
[[package]]
|
|
1261
|
+
name = "wasi"
|
|
1262
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
|
1263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1264
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
1265
|
+
|
|
1266
|
+
[[package]]
|
|
1267
|
+
name = "whichlang"
|
|
1268
|
+
version = "0.1.1"
|
|
1269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1270
|
+
checksum = "0b9aa3ad29c3d08283ac6b769e3ec15ad1ddb88af7d2e9bc402c574973b937e7"
|
|
1271
|
+
|
|
1272
|
+
[[package]]
|
|
1273
|
+
name = "winapi"
|
|
1274
|
+
version = "0.3.9"
|
|
1275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1276
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
1277
|
+
dependencies = [
|
|
1278
|
+
"winapi-i686-pc-windows-gnu",
|
|
1279
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
1280
|
+
]
|
|
1281
|
+
|
|
1282
|
+
[[package]]
|
|
1283
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
1284
|
+
version = "0.4.0"
|
|
1285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1286
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
1287
|
+
|
|
1288
|
+
[[package]]
|
|
1289
|
+
name = "winapi-util"
|
|
1290
|
+
version = "0.1.9"
|
|
1291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1292
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
|
1293
|
+
dependencies = [
|
|
1294
|
+
"windows-sys",
|
|
1295
|
+
]
|
|
1296
|
+
|
|
1297
|
+
[[package]]
|
|
1298
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
1299
|
+
version = "0.4.0"
|
|
1300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1301
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
1302
|
+
|
|
1303
|
+
[[package]]
|
|
1304
|
+
name = "windows-sys"
|
|
1305
|
+
version = "0.59.0"
|
|
1306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1307
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
1308
|
+
dependencies = [
|
|
1309
|
+
"windows-targets",
|
|
1310
|
+
]
|
|
1311
|
+
|
|
1312
|
+
[[package]]
|
|
1313
|
+
name = "windows-targets"
|
|
1314
|
+
version = "0.52.6"
|
|
1315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1316
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1317
|
+
dependencies = [
|
|
1318
|
+
"windows_aarch64_gnullvm",
|
|
1319
|
+
"windows_aarch64_msvc",
|
|
1320
|
+
"windows_i686_gnu",
|
|
1321
|
+
"windows_i686_gnullvm",
|
|
1322
|
+
"windows_i686_msvc",
|
|
1323
|
+
"windows_x86_64_gnu",
|
|
1324
|
+
"windows_x86_64_gnullvm",
|
|
1325
|
+
"windows_x86_64_msvc",
|
|
1326
|
+
]
|
|
1327
|
+
|
|
1328
|
+
[[package]]
|
|
1329
|
+
name = "windows_aarch64_gnullvm"
|
|
1330
|
+
version = "0.52.6"
|
|
1331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1332
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1333
|
+
|
|
1334
|
+
[[package]]
|
|
1335
|
+
name = "windows_aarch64_msvc"
|
|
1336
|
+
version = "0.52.6"
|
|
1337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1338
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1339
|
+
|
|
1340
|
+
[[package]]
|
|
1341
|
+
name = "windows_i686_gnu"
|
|
1342
|
+
version = "0.52.6"
|
|
1343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1344
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1345
|
+
|
|
1346
|
+
[[package]]
|
|
1347
|
+
name = "windows_i686_gnullvm"
|
|
1348
|
+
version = "0.52.6"
|
|
1349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1350
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1351
|
+
|
|
1352
|
+
[[package]]
|
|
1353
|
+
name = "windows_i686_msvc"
|
|
1354
|
+
version = "0.52.6"
|
|
1355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1356
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1357
|
+
|
|
1358
|
+
[[package]]
|
|
1359
|
+
name = "windows_x86_64_gnu"
|
|
1360
|
+
version = "0.52.6"
|
|
1361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1362
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1363
|
+
|
|
1364
|
+
[[package]]
|
|
1365
|
+
name = "windows_x86_64_gnullvm"
|
|
1366
|
+
version = "0.52.6"
|
|
1367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1368
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1369
|
+
|
|
1370
|
+
[[package]]
|
|
1371
|
+
name = "windows_x86_64_msvc"
|
|
1372
|
+
version = "0.52.6"
|
|
1373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1374
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1375
|
+
|
|
1376
|
+
[[package]]
|
|
1377
|
+
name = "winnow"
|
|
1378
|
+
version = "0.7.10"
|
|
1379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
+
checksum = "c06928c8748d81b05c9be96aad92e1b6ff01833332f281e8cfca3be4b35fc9ec"
|
|
1381
|
+
dependencies = [
|
|
1382
|
+
"memchr",
|
|
1383
|
+
]
|
|
1384
|
+
|
|
1385
|
+
[[package]]
|
|
1386
|
+
name = "writeable"
|
|
1387
|
+
version = "0.6.1"
|
|
1388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1389
|
+
checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
|
|
1390
|
+
|
|
1391
|
+
[[package]]
|
|
1392
|
+
name = "yansi"
|
|
1393
|
+
version = "1.0.1"
|
|
1394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1395
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
1396
|
+
|
|
1397
|
+
[[package]]
|
|
1398
|
+
name = "yoke"
|
|
1399
|
+
version = "0.8.0"
|
|
1400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
+
checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
|
|
1402
|
+
dependencies = [
|
|
1403
|
+
"serde",
|
|
1404
|
+
"stable_deref_trait",
|
|
1405
|
+
"yoke-derive",
|
|
1406
|
+
"zerofrom",
|
|
1407
|
+
]
|
|
1408
|
+
|
|
1409
|
+
[[package]]
|
|
1410
|
+
name = "yoke-derive"
|
|
1411
|
+
version = "0.8.0"
|
|
1412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1413
|
+
checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
|
|
1414
|
+
dependencies = [
|
|
1415
|
+
"proc-macro2",
|
|
1416
|
+
"quote",
|
|
1417
|
+
"syn",
|
|
1418
|
+
"synstructure",
|
|
1419
|
+
]
|
|
1420
|
+
|
|
1421
|
+
[[package]]
|
|
1422
|
+
name = "zerofrom"
|
|
1423
|
+
version = "0.1.6"
|
|
1424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1425
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
1426
|
+
dependencies = [
|
|
1427
|
+
"zerofrom-derive",
|
|
1428
|
+
]
|
|
1429
|
+
|
|
1430
|
+
[[package]]
|
|
1431
|
+
name = "zerofrom-derive"
|
|
1432
|
+
version = "0.1.6"
|
|
1433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1434
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
1435
|
+
dependencies = [
|
|
1436
|
+
"proc-macro2",
|
|
1437
|
+
"quote",
|
|
1438
|
+
"syn",
|
|
1439
|
+
"synstructure",
|
|
1440
|
+
]
|
|
1441
|
+
|
|
1442
|
+
[[package]]
|
|
1443
|
+
name = "zerotrie"
|
|
1444
|
+
version = "0.2.2"
|
|
1445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1446
|
+
checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
|
|
1447
|
+
dependencies = [
|
|
1448
|
+
"displaydoc",
|
|
1449
|
+
"yoke",
|
|
1450
|
+
"zerofrom",
|
|
1451
|
+
]
|
|
1452
|
+
|
|
1453
|
+
[[package]]
|
|
1454
|
+
name = "zerovec"
|
|
1455
|
+
version = "0.11.2"
|
|
1456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1457
|
+
checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
|
|
1458
|
+
dependencies = [
|
|
1459
|
+
"yoke",
|
|
1460
|
+
"zerofrom",
|
|
1461
|
+
"zerovec-derive",
|
|
1462
|
+
]
|
|
1463
|
+
|
|
1464
|
+
[[package]]
|
|
1465
|
+
name = "zerovec-derive"
|
|
1466
|
+
version = "0.11.1"
|
|
1467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1468
|
+
checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
|
|
1469
|
+
dependencies = [
|
|
1470
|
+
"proc-macro2",
|
|
1471
|
+
"quote",
|
|
1472
|
+
"syn",
|
|
1473
|
+
]
|