prylint 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.
- prylint-0.1.0/Cargo.lock +1457 -0
- prylint-0.1.0/Cargo.toml +52 -0
- prylint-0.1.0/LICENSE +339 -0
- prylint-0.1.0/MANIFEST.in +30 -0
- prylint-0.1.0/PKG-INFO +156 -0
- prylint-0.1.0/README.md +120 -0
- prylint-0.1.0/prylint.egg-info/PKG-INFO +156 -0
- prylint-0.1.0/prylint.egg-info/SOURCES.txt +32 -0
- prylint-0.1.0/prylint.egg-info/dependency_links.txt +1 -0
- prylint-0.1.0/prylint.egg-info/entry_points.txt +2 -0
- prylint-0.1.0/prylint.egg-info/not-zip-safe +1 -0
- prylint-0.1.0/prylint.egg-info/requires.txt +4 -0
- prylint-0.1.0/prylint.egg-info/top_level.txt +1 -0
- prylint-0.1.0/prylint_package/__init__.py +13 -0
- prylint-0.1.0/prylint_package/bin/prylint +0 -0
- prylint-0.1.0/prylint_package/cli.py +108 -0
- prylint-0.1.0/prylint_package/linter.py +206 -0
- prylint-0.1.0/pyproject.toml +51 -0
- prylint-0.1.0/setup.cfg +4 -0
- prylint-0.1.0/setup.py +69 -0
- prylint-0.1.0/setup_simple.py +136 -0
- prylint-0.1.0/src/ast_visitor.rs +1438 -0
- prylint-0.1.0/src/checkers/call_errors.rs +146 -0
- prylint-0.1.0/src/checkers/control_flow.rs +15 -0
- prylint-0.1.0/src/checkers/function_errors.rs +12 -0
- prylint-0.1.0/src/checkers/mod.rs +11 -0
- prylint-0.1.0/src/checkers/scope_errors.rs +16 -0
- prylint-0.1.0/src/checkers/syntax_errors.rs +37 -0
- prylint-0.1.0/src/config.rs +108 -0
- prylint-0.1.0/src/errors.rs +319 -0
- prylint-0.1.0/src/lib.rs +37 -0
- prylint-0.1.0/src/linter.rs +116 -0
- prylint-0.1.0/src/main.rs +37 -0
- prylint-0.1.0/src/reporter.rs +132 -0
prylint-0.1.0/Cargo.lock
ADDED
|
@@ -0,0 +1,1457 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ahash"
|
|
7
|
+
version = "0.8.12"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"cfg-if",
|
|
12
|
+
"once_cell",
|
|
13
|
+
"version_check",
|
|
14
|
+
"zerocopy",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[[package]]
|
|
18
|
+
name = "aho-corasick"
|
|
19
|
+
version = "1.1.4"
|
|
20
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
21
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
22
|
+
dependencies = [
|
|
23
|
+
"memchr",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "anes"
|
|
28
|
+
version = "0.1.6"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "anstream"
|
|
34
|
+
version = "0.6.21"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"anstyle",
|
|
39
|
+
"anstyle-parse",
|
|
40
|
+
"anstyle-query",
|
|
41
|
+
"anstyle-wincon",
|
|
42
|
+
"colorchoice",
|
|
43
|
+
"is_terminal_polyfill",
|
|
44
|
+
"utf8parse",
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "anstyle"
|
|
49
|
+
version = "1.0.13"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "anstyle-parse"
|
|
55
|
+
version = "0.2.7"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
58
|
+
dependencies = [
|
|
59
|
+
"utf8parse",
|
|
60
|
+
]
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "anstyle-query"
|
|
64
|
+
version = "1.1.5"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
67
|
+
dependencies = [
|
|
68
|
+
"windows-sys 0.61.2",
|
|
69
|
+
]
|
|
70
|
+
|
|
71
|
+
[[package]]
|
|
72
|
+
name = "anstyle-wincon"
|
|
73
|
+
version = "3.0.11"
|
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
76
|
+
dependencies = [
|
|
77
|
+
"anstyle",
|
|
78
|
+
"once_cell_polyfill",
|
|
79
|
+
"windows-sys 0.61.2",
|
|
80
|
+
]
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "anyhow"
|
|
84
|
+
version = "1.0.100"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
87
|
+
|
|
88
|
+
[[package]]
|
|
89
|
+
name = "autocfg"
|
|
90
|
+
version = "1.5.0"
|
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "bitflags"
|
|
96
|
+
version = "2.10.0"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
99
|
+
|
|
100
|
+
[[package]]
|
|
101
|
+
name = "bumpalo"
|
|
102
|
+
version = "3.19.0"
|
|
103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
104
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
105
|
+
|
|
106
|
+
[[package]]
|
|
107
|
+
name = "cast"
|
|
108
|
+
version = "0.3.0"
|
|
109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
110
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
111
|
+
|
|
112
|
+
[[package]]
|
|
113
|
+
name = "cc"
|
|
114
|
+
version = "1.2.48"
|
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
+
checksum = "c481bdbf0ed3b892f6f806287d72acd515b352a4ec27a208489b8c1bc839633a"
|
|
117
|
+
dependencies = [
|
|
118
|
+
"find-msvc-tools",
|
|
119
|
+
"shlex",
|
|
120
|
+
]
|
|
121
|
+
|
|
122
|
+
[[package]]
|
|
123
|
+
name = "cfg-if"
|
|
124
|
+
version = "1.0.4"
|
|
125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
126
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
127
|
+
|
|
128
|
+
[[package]]
|
|
129
|
+
name = "ciborium"
|
|
130
|
+
version = "0.2.2"
|
|
131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
132
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
133
|
+
dependencies = [
|
|
134
|
+
"ciborium-io",
|
|
135
|
+
"ciborium-ll",
|
|
136
|
+
"serde",
|
|
137
|
+
]
|
|
138
|
+
|
|
139
|
+
[[package]]
|
|
140
|
+
name = "ciborium-io"
|
|
141
|
+
version = "0.2.2"
|
|
142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
143
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
144
|
+
|
|
145
|
+
[[package]]
|
|
146
|
+
name = "ciborium-ll"
|
|
147
|
+
version = "0.2.2"
|
|
148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
149
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
150
|
+
dependencies = [
|
|
151
|
+
"ciborium-io",
|
|
152
|
+
"half",
|
|
153
|
+
]
|
|
154
|
+
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "clap"
|
|
157
|
+
version = "4.5.53"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
|
|
160
|
+
dependencies = [
|
|
161
|
+
"clap_builder",
|
|
162
|
+
"clap_derive",
|
|
163
|
+
]
|
|
164
|
+
|
|
165
|
+
[[package]]
|
|
166
|
+
name = "clap_builder"
|
|
167
|
+
version = "4.5.53"
|
|
168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
169
|
+
checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
|
|
170
|
+
dependencies = [
|
|
171
|
+
"anstream",
|
|
172
|
+
"anstyle",
|
|
173
|
+
"clap_lex",
|
|
174
|
+
"strsim",
|
|
175
|
+
]
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "clap_derive"
|
|
179
|
+
version = "4.5.49"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
|
|
182
|
+
dependencies = [
|
|
183
|
+
"heck",
|
|
184
|
+
"proc-macro2",
|
|
185
|
+
"quote",
|
|
186
|
+
"syn",
|
|
187
|
+
]
|
|
188
|
+
|
|
189
|
+
[[package]]
|
|
190
|
+
name = "clap_lex"
|
|
191
|
+
version = "0.7.6"
|
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
+
checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
|
|
194
|
+
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "colorchoice"
|
|
197
|
+
version = "1.0.4"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
200
|
+
|
|
201
|
+
[[package]]
|
|
202
|
+
name = "colored"
|
|
203
|
+
version = "2.2.0"
|
|
204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
+
checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
|
|
206
|
+
dependencies = [
|
|
207
|
+
"lazy_static",
|
|
208
|
+
"windows-sys 0.59.0",
|
|
209
|
+
]
|
|
210
|
+
|
|
211
|
+
[[package]]
|
|
212
|
+
name = "criterion"
|
|
213
|
+
version = "0.5.1"
|
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
216
|
+
dependencies = [
|
|
217
|
+
"anes",
|
|
218
|
+
"cast",
|
|
219
|
+
"ciborium",
|
|
220
|
+
"clap",
|
|
221
|
+
"criterion-plot",
|
|
222
|
+
"is-terminal",
|
|
223
|
+
"itertools 0.10.5",
|
|
224
|
+
"num-traits",
|
|
225
|
+
"once_cell",
|
|
226
|
+
"oorandom",
|
|
227
|
+
"plotters",
|
|
228
|
+
"rayon",
|
|
229
|
+
"regex",
|
|
230
|
+
"serde",
|
|
231
|
+
"serde_derive",
|
|
232
|
+
"serde_json",
|
|
233
|
+
"tinytemplate",
|
|
234
|
+
"walkdir",
|
|
235
|
+
]
|
|
236
|
+
|
|
237
|
+
[[package]]
|
|
238
|
+
name = "criterion-plot"
|
|
239
|
+
version = "0.5.0"
|
|
240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
241
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
242
|
+
dependencies = [
|
|
243
|
+
"cast",
|
|
244
|
+
"itertools 0.10.5",
|
|
245
|
+
]
|
|
246
|
+
|
|
247
|
+
[[package]]
|
|
248
|
+
name = "crossbeam-deque"
|
|
249
|
+
version = "0.8.6"
|
|
250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
251
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
252
|
+
dependencies = [
|
|
253
|
+
"crossbeam-epoch",
|
|
254
|
+
"crossbeam-utils",
|
|
255
|
+
]
|
|
256
|
+
|
|
257
|
+
[[package]]
|
|
258
|
+
name = "crossbeam-epoch"
|
|
259
|
+
version = "0.9.18"
|
|
260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
261
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
262
|
+
dependencies = [
|
|
263
|
+
"crossbeam-utils",
|
|
264
|
+
]
|
|
265
|
+
|
|
266
|
+
[[package]]
|
|
267
|
+
name = "crossbeam-utils"
|
|
268
|
+
version = "0.8.21"
|
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
271
|
+
|
|
272
|
+
[[package]]
|
|
273
|
+
name = "crunchy"
|
|
274
|
+
version = "0.2.4"
|
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
276
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "derive_more"
|
|
280
|
+
version = "1.0.0"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05"
|
|
283
|
+
dependencies = [
|
|
284
|
+
"derive_more-impl",
|
|
285
|
+
]
|
|
286
|
+
|
|
287
|
+
[[package]]
|
|
288
|
+
name = "derive_more-impl"
|
|
289
|
+
version = "1.0.0"
|
|
290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
291
|
+
checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22"
|
|
292
|
+
dependencies = [
|
|
293
|
+
"proc-macro2",
|
|
294
|
+
"quote",
|
|
295
|
+
"syn",
|
|
296
|
+
"unicode-xid",
|
|
297
|
+
]
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "diff"
|
|
301
|
+
version = "0.1.13"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
304
|
+
|
|
305
|
+
[[package]]
|
|
306
|
+
name = "either"
|
|
307
|
+
version = "1.15.0"
|
|
308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
309
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
310
|
+
|
|
311
|
+
[[package]]
|
|
312
|
+
name = "equivalent"
|
|
313
|
+
version = "1.0.2"
|
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
315
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
316
|
+
|
|
317
|
+
[[package]]
|
|
318
|
+
name = "errno"
|
|
319
|
+
version = "0.3.14"
|
|
320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
322
|
+
dependencies = [
|
|
323
|
+
"libc",
|
|
324
|
+
"windows-sys 0.61.2",
|
|
325
|
+
]
|
|
326
|
+
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "fastrand"
|
|
329
|
+
version = "2.3.0"
|
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
332
|
+
|
|
333
|
+
[[package]]
|
|
334
|
+
name = "find-msvc-tools"
|
|
335
|
+
version = "0.1.5"
|
|
336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
+
checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
|
|
338
|
+
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "getopts"
|
|
341
|
+
version = "0.2.24"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
|
|
344
|
+
dependencies = [
|
|
345
|
+
"unicode-width",
|
|
346
|
+
]
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "getrandom"
|
|
350
|
+
version = "0.2.16"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
353
|
+
dependencies = [
|
|
354
|
+
"cfg-if",
|
|
355
|
+
"libc",
|
|
356
|
+
"wasi",
|
|
357
|
+
]
|
|
358
|
+
|
|
359
|
+
[[package]]
|
|
360
|
+
name = "getrandom"
|
|
361
|
+
version = "0.3.4"
|
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
364
|
+
dependencies = [
|
|
365
|
+
"cfg-if",
|
|
366
|
+
"libc",
|
|
367
|
+
"r-efi",
|
|
368
|
+
"wasip2",
|
|
369
|
+
]
|
|
370
|
+
|
|
371
|
+
[[package]]
|
|
372
|
+
name = "glob"
|
|
373
|
+
version = "0.3.3"
|
|
374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
376
|
+
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "half"
|
|
379
|
+
version = "2.7.1"
|
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
382
|
+
dependencies = [
|
|
383
|
+
"cfg-if",
|
|
384
|
+
"crunchy",
|
|
385
|
+
"zerocopy",
|
|
386
|
+
]
|
|
387
|
+
|
|
388
|
+
[[package]]
|
|
389
|
+
name = "hashbrown"
|
|
390
|
+
version = "0.14.5"
|
|
391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
393
|
+
dependencies = [
|
|
394
|
+
"ahash",
|
|
395
|
+
]
|
|
396
|
+
|
|
397
|
+
[[package]]
|
|
398
|
+
name = "hashbrown"
|
|
399
|
+
version = "0.16.1"
|
|
400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
401
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
402
|
+
|
|
403
|
+
[[package]]
|
|
404
|
+
name = "heck"
|
|
405
|
+
version = "0.5.0"
|
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
408
|
+
|
|
409
|
+
[[package]]
|
|
410
|
+
name = "hermit-abi"
|
|
411
|
+
version = "0.5.2"
|
|
412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "indexmap"
|
|
417
|
+
version = "2.12.1"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
|
|
420
|
+
dependencies = [
|
|
421
|
+
"equivalent",
|
|
422
|
+
"hashbrown 0.16.1",
|
|
423
|
+
]
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "is-macro"
|
|
427
|
+
version = "0.3.7"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
|
|
430
|
+
dependencies = [
|
|
431
|
+
"heck",
|
|
432
|
+
"proc-macro2",
|
|
433
|
+
"quote",
|
|
434
|
+
"syn",
|
|
435
|
+
]
|
|
436
|
+
|
|
437
|
+
[[package]]
|
|
438
|
+
name = "is-terminal"
|
|
439
|
+
version = "0.4.17"
|
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
442
|
+
dependencies = [
|
|
443
|
+
"hermit-abi",
|
|
444
|
+
"libc",
|
|
445
|
+
"windows-sys 0.61.2",
|
|
446
|
+
]
|
|
447
|
+
|
|
448
|
+
[[package]]
|
|
449
|
+
name = "is_terminal_polyfill"
|
|
450
|
+
version = "1.70.2"
|
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
453
|
+
|
|
454
|
+
[[package]]
|
|
455
|
+
name = "itertools"
|
|
456
|
+
version = "0.10.5"
|
|
457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
458
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
459
|
+
dependencies = [
|
|
460
|
+
"either",
|
|
461
|
+
]
|
|
462
|
+
|
|
463
|
+
[[package]]
|
|
464
|
+
name = "itertools"
|
|
465
|
+
version = "0.11.0"
|
|
466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
467
|
+
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
|
|
468
|
+
dependencies = [
|
|
469
|
+
"either",
|
|
470
|
+
]
|
|
471
|
+
|
|
472
|
+
[[package]]
|
|
473
|
+
name = "itoa"
|
|
474
|
+
version = "1.0.15"
|
|
475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
477
|
+
|
|
478
|
+
[[package]]
|
|
479
|
+
name = "js-sys"
|
|
480
|
+
version = "0.3.83"
|
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
+
checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
|
|
483
|
+
dependencies = [
|
|
484
|
+
"once_cell",
|
|
485
|
+
"wasm-bindgen",
|
|
486
|
+
]
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "lalrpop-util"
|
|
490
|
+
version = "0.20.2"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553"
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "lazy_static"
|
|
496
|
+
version = "1.5.0"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
499
|
+
|
|
500
|
+
[[package]]
|
|
501
|
+
name = "libc"
|
|
502
|
+
version = "0.2.178"
|
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
+
checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
|
|
505
|
+
|
|
506
|
+
[[package]]
|
|
507
|
+
name = "libm"
|
|
508
|
+
version = "0.2.15"
|
|
509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
510
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
511
|
+
|
|
512
|
+
[[package]]
|
|
513
|
+
name = "libmimalloc-sys"
|
|
514
|
+
version = "0.1.44"
|
|
515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
516
|
+
checksum = "667f4fec20f29dfc6bc7357c582d91796c169ad7e2fce709468aefeb2c099870"
|
|
517
|
+
dependencies = [
|
|
518
|
+
"cc",
|
|
519
|
+
"libc",
|
|
520
|
+
]
|
|
521
|
+
|
|
522
|
+
[[package]]
|
|
523
|
+
name = "linux-raw-sys"
|
|
524
|
+
version = "0.11.0"
|
|
525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "log"
|
|
530
|
+
version = "0.4.29"
|
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "malachite"
|
|
536
|
+
version = "0.4.22"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "2fbdf9cb251732db30a7200ebb6ae5d22fe8e11397364416617d2c2cf0c51cb5"
|
|
539
|
+
dependencies = [
|
|
540
|
+
"malachite-base",
|
|
541
|
+
"malachite-nz",
|
|
542
|
+
"malachite-q",
|
|
543
|
+
]
|
|
544
|
+
|
|
545
|
+
[[package]]
|
|
546
|
+
name = "malachite-base"
|
|
547
|
+
version = "0.4.22"
|
|
548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
+
checksum = "5ea0ed76adf7defc1a92240b5c36d5368cfe9251640dcce5bd2d0b7c1fd87aeb"
|
|
550
|
+
dependencies = [
|
|
551
|
+
"hashbrown 0.14.5",
|
|
552
|
+
"itertools 0.11.0",
|
|
553
|
+
"libm",
|
|
554
|
+
"ryu",
|
|
555
|
+
]
|
|
556
|
+
|
|
557
|
+
[[package]]
|
|
558
|
+
name = "malachite-bigint"
|
|
559
|
+
version = "0.2.3"
|
|
560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
+
checksum = "d149aaa2965d70381709d9df4c7ee1fc0de1c614a4efc2ee356f5e43d68749f8"
|
|
562
|
+
dependencies = [
|
|
563
|
+
"derive_more",
|
|
564
|
+
"malachite",
|
|
565
|
+
"num-integer",
|
|
566
|
+
"num-traits",
|
|
567
|
+
"paste",
|
|
568
|
+
]
|
|
569
|
+
|
|
570
|
+
[[package]]
|
|
571
|
+
name = "malachite-nz"
|
|
572
|
+
version = "0.4.22"
|
|
573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
|
+
checksum = "34a79feebb2bc9aa7762047c8e5495269a367da6b5a90a99882a0aeeac1841f7"
|
|
575
|
+
dependencies = [
|
|
576
|
+
"itertools 0.11.0",
|
|
577
|
+
"libm",
|
|
578
|
+
"malachite-base",
|
|
579
|
+
]
|
|
580
|
+
|
|
581
|
+
[[package]]
|
|
582
|
+
name = "malachite-q"
|
|
583
|
+
version = "0.4.22"
|
|
584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
+
checksum = "50f235d5747b1256b47620f5640c2a17a88c7569eebdf27cd9cb130e1a619191"
|
|
586
|
+
dependencies = [
|
|
587
|
+
"itertools 0.11.0",
|
|
588
|
+
"malachite-base",
|
|
589
|
+
"malachite-nz",
|
|
590
|
+
]
|
|
591
|
+
|
|
592
|
+
[[package]]
|
|
593
|
+
name = "memchr"
|
|
594
|
+
version = "2.7.6"
|
|
595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
596
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
597
|
+
|
|
598
|
+
[[package]]
|
|
599
|
+
name = "mimalloc"
|
|
600
|
+
version = "0.1.48"
|
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
+
checksum = "e1ee66a4b64c74f4ef288bcbb9192ad9c3feaad75193129ac8509af543894fd8"
|
|
603
|
+
dependencies = [
|
|
604
|
+
"libmimalloc-sys",
|
|
605
|
+
]
|
|
606
|
+
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "num-integer"
|
|
609
|
+
version = "0.1.46"
|
|
610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
612
|
+
dependencies = [
|
|
613
|
+
"num-traits",
|
|
614
|
+
]
|
|
615
|
+
|
|
616
|
+
[[package]]
|
|
617
|
+
name = "num-traits"
|
|
618
|
+
version = "0.2.19"
|
|
619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
620
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
621
|
+
dependencies = [
|
|
622
|
+
"autocfg",
|
|
623
|
+
]
|
|
624
|
+
|
|
625
|
+
[[package]]
|
|
626
|
+
name = "once_cell"
|
|
627
|
+
version = "1.21.3"
|
|
628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
630
|
+
|
|
631
|
+
[[package]]
|
|
632
|
+
name = "once_cell_polyfill"
|
|
633
|
+
version = "1.70.2"
|
|
634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
635
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
636
|
+
|
|
637
|
+
[[package]]
|
|
638
|
+
name = "oorandom"
|
|
639
|
+
version = "11.1.5"
|
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
641
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
642
|
+
|
|
643
|
+
[[package]]
|
|
644
|
+
name = "paste"
|
|
645
|
+
version = "1.0.15"
|
|
646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
648
|
+
|
|
649
|
+
[[package]]
|
|
650
|
+
name = "phf"
|
|
651
|
+
version = "0.11.3"
|
|
652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
653
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
654
|
+
dependencies = [
|
|
655
|
+
"phf_shared",
|
|
656
|
+
]
|
|
657
|
+
|
|
658
|
+
[[package]]
|
|
659
|
+
name = "phf_codegen"
|
|
660
|
+
version = "0.11.3"
|
|
661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
662
|
+
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
|
663
|
+
dependencies = [
|
|
664
|
+
"phf_generator",
|
|
665
|
+
"phf_shared",
|
|
666
|
+
]
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "phf_generator"
|
|
670
|
+
version = "0.11.3"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
673
|
+
dependencies = [
|
|
674
|
+
"phf_shared",
|
|
675
|
+
"rand",
|
|
676
|
+
]
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "phf_shared"
|
|
680
|
+
version = "0.11.3"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
683
|
+
dependencies = [
|
|
684
|
+
"siphasher",
|
|
685
|
+
]
|
|
686
|
+
|
|
687
|
+
[[package]]
|
|
688
|
+
name = "plotters"
|
|
689
|
+
version = "0.3.7"
|
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
692
|
+
dependencies = [
|
|
693
|
+
"num-traits",
|
|
694
|
+
"plotters-backend",
|
|
695
|
+
"plotters-svg",
|
|
696
|
+
"wasm-bindgen",
|
|
697
|
+
"web-sys",
|
|
698
|
+
]
|
|
699
|
+
|
|
700
|
+
[[package]]
|
|
701
|
+
name = "plotters-backend"
|
|
702
|
+
version = "0.3.7"
|
|
703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
704
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "plotters-svg"
|
|
708
|
+
version = "0.3.7"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
711
|
+
dependencies = [
|
|
712
|
+
"plotters-backend",
|
|
713
|
+
]
|
|
714
|
+
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "ppv-lite86"
|
|
717
|
+
version = "0.2.21"
|
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
720
|
+
dependencies = [
|
|
721
|
+
"zerocopy",
|
|
722
|
+
]
|
|
723
|
+
|
|
724
|
+
[[package]]
|
|
725
|
+
name = "pretty_assertions"
|
|
726
|
+
version = "1.4.1"
|
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
+
checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
|
|
729
|
+
dependencies = [
|
|
730
|
+
"diff",
|
|
731
|
+
"yansi",
|
|
732
|
+
]
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "proc-macro2"
|
|
736
|
+
version = "1.0.103"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
739
|
+
dependencies = [
|
|
740
|
+
"unicode-ident",
|
|
741
|
+
]
|
|
742
|
+
|
|
743
|
+
[[package]]
|
|
744
|
+
name = "prylint"
|
|
745
|
+
version = "0.1.0"
|
|
746
|
+
dependencies = [
|
|
747
|
+
"anyhow",
|
|
748
|
+
"clap",
|
|
749
|
+
"colored",
|
|
750
|
+
"criterion",
|
|
751
|
+
"glob",
|
|
752
|
+
"mimalloc",
|
|
753
|
+
"pretty_assertions",
|
|
754
|
+
"rayon",
|
|
755
|
+
"regex",
|
|
756
|
+
"rustpython-ast",
|
|
757
|
+
"rustpython-parser",
|
|
758
|
+
"serde",
|
|
759
|
+
"serde_json",
|
|
760
|
+
"tempfile",
|
|
761
|
+
"thiserror",
|
|
762
|
+
"toml",
|
|
763
|
+
"walkdir",
|
|
764
|
+
]
|
|
765
|
+
|
|
766
|
+
[[package]]
|
|
767
|
+
name = "quote"
|
|
768
|
+
version = "1.0.42"
|
|
769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
770
|
+
checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
|
|
771
|
+
dependencies = [
|
|
772
|
+
"proc-macro2",
|
|
773
|
+
]
|
|
774
|
+
|
|
775
|
+
[[package]]
|
|
776
|
+
name = "r-efi"
|
|
777
|
+
version = "5.3.0"
|
|
778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
780
|
+
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "rand"
|
|
783
|
+
version = "0.8.5"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
786
|
+
dependencies = [
|
|
787
|
+
"libc",
|
|
788
|
+
"rand_chacha",
|
|
789
|
+
"rand_core",
|
|
790
|
+
]
|
|
791
|
+
|
|
792
|
+
[[package]]
|
|
793
|
+
name = "rand_chacha"
|
|
794
|
+
version = "0.3.1"
|
|
795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
796
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
797
|
+
dependencies = [
|
|
798
|
+
"ppv-lite86",
|
|
799
|
+
"rand_core",
|
|
800
|
+
]
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "rand_core"
|
|
804
|
+
version = "0.6.4"
|
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
807
|
+
dependencies = [
|
|
808
|
+
"getrandom 0.2.16",
|
|
809
|
+
]
|
|
810
|
+
|
|
811
|
+
[[package]]
|
|
812
|
+
name = "rayon"
|
|
813
|
+
version = "1.11.0"
|
|
814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
815
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
816
|
+
dependencies = [
|
|
817
|
+
"either",
|
|
818
|
+
"rayon-core",
|
|
819
|
+
]
|
|
820
|
+
|
|
821
|
+
[[package]]
|
|
822
|
+
name = "rayon-core"
|
|
823
|
+
version = "1.13.0"
|
|
824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
826
|
+
dependencies = [
|
|
827
|
+
"crossbeam-deque",
|
|
828
|
+
"crossbeam-utils",
|
|
829
|
+
]
|
|
830
|
+
|
|
831
|
+
[[package]]
|
|
832
|
+
name = "regex"
|
|
833
|
+
version = "1.12.2"
|
|
834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
835
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
836
|
+
dependencies = [
|
|
837
|
+
"aho-corasick",
|
|
838
|
+
"memchr",
|
|
839
|
+
"regex-automata",
|
|
840
|
+
"regex-syntax",
|
|
841
|
+
]
|
|
842
|
+
|
|
843
|
+
[[package]]
|
|
844
|
+
name = "regex-automata"
|
|
845
|
+
version = "0.4.13"
|
|
846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
848
|
+
dependencies = [
|
|
849
|
+
"aho-corasick",
|
|
850
|
+
"memchr",
|
|
851
|
+
"regex-syntax",
|
|
852
|
+
]
|
|
853
|
+
|
|
854
|
+
[[package]]
|
|
855
|
+
name = "regex-syntax"
|
|
856
|
+
version = "0.8.8"
|
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
859
|
+
|
|
860
|
+
[[package]]
|
|
861
|
+
name = "rustc-hash"
|
|
862
|
+
version = "1.1.0"
|
|
863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
864
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
865
|
+
|
|
866
|
+
[[package]]
|
|
867
|
+
name = "rustix"
|
|
868
|
+
version = "1.1.2"
|
|
869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
|
|
871
|
+
dependencies = [
|
|
872
|
+
"bitflags",
|
|
873
|
+
"errno",
|
|
874
|
+
"libc",
|
|
875
|
+
"linux-raw-sys",
|
|
876
|
+
"windows-sys 0.61.2",
|
|
877
|
+
]
|
|
878
|
+
|
|
879
|
+
[[package]]
|
|
880
|
+
name = "rustpython-ast"
|
|
881
|
+
version = "0.3.1"
|
|
882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
+
checksum = "c2c72612d246194023a643d342ac53e4118c300cbc3ada31ff1245e7636db860"
|
|
884
|
+
dependencies = [
|
|
885
|
+
"is-macro",
|
|
886
|
+
"malachite-bigint",
|
|
887
|
+
"rustpython-parser-core",
|
|
888
|
+
"static_assertions",
|
|
889
|
+
]
|
|
890
|
+
|
|
891
|
+
[[package]]
|
|
892
|
+
name = "rustpython-parser"
|
|
893
|
+
version = "0.3.1"
|
|
894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
|
+
checksum = "51e73421499eff08722b979d8494c3f1bc035908931a28607a9f17be6143ac11"
|
|
896
|
+
dependencies = [
|
|
897
|
+
"anyhow",
|
|
898
|
+
"is-macro",
|
|
899
|
+
"itertools 0.11.0",
|
|
900
|
+
"lalrpop-util",
|
|
901
|
+
"log",
|
|
902
|
+
"malachite-bigint",
|
|
903
|
+
"num-traits",
|
|
904
|
+
"phf",
|
|
905
|
+
"phf_codegen",
|
|
906
|
+
"rustc-hash",
|
|
907
|
+
"rustpython-ast",
|
|
908
|
+
"rustpython-parser-core",
|
|
909
|
+
"tiny-keccak",
|
|
910
|
+
"unic-emoji-char",
|
|
911
|
+
"unic-ucd-ident",
|
|
912
|
+
"unicode_names2",
|
|
913
|
+
]
|
|
914
|
+
|
|
915
|
+
[[package]]
|
|
916
|
+
name = "rustpython-parser-core"
|
|
917
|
+
version = "0.3.1"
|
|
918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
919
|
+
checksum = "47f9465e822d45e05304c08f168dd1ffea05d8d95b7a4e18651ef1acb4df097f"
|
|
920
|
+
dependencies = [
|
|
921
|
+
"is-macro",
|
|
922
|
+
"memchr",
|
|
923
|
+
"rustpython-parser-vendored",
|
|
924
|
+
]
|
|
925
|
+
|
|
926
|
+
[[package]]
|
|
927
|
+
name = "rustpython-parser-vendored"
|
|
928
|
+
version = "0.3.1"
|
|
929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
+
checksum = "f6e43398f39b5e4ce129cb95a8d7b87c6378b056d66c978da86ea2296d861c8f"
|
|
931
|
+
dependencies = [
|
|
932
|
+
"memchr",
|
|
933
|
+
"once_cell",
|
|
934
|
+
]
|
|
935
|
+
|
|
936
|
+
[[package]]
|
|
937
|
+
name = "rustversion"
|
|
938
|
+
version = "1.0.22"
|
|
939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
940
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
941
|
+
|
|
942
|
+
[[package]]
|
|
943
|
+
name = "ryu"
|
|
944
|
+
version = "1.0.20"
|
|
945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
946
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
947
|
+
|
|
948
|
+
[[package]]
|
|
949
|
+
name = "same-file"
|
|
950
|
+
version = "1.0.6"
|
|
951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
952
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
953
|
+
dependencies = [
|
|
954
|
+
"winapi-util",
|
|
955
|
+
]
|
|
956
|
+
|
|
957
|
+
[[package]]
|
|
958
|
+
name = "serde"
|
|
959
|
+
version = "1.0.228"
|
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
962
|
+
dependencies = [
|
|
963
|
+
"serde_core",
|
|
964
|
+
"serde_derive",
|
|
965
|
+
]
|
|
966
|
+
|
|
967
|
+
[[package]]
|
|
968
|
+
name = "serde_core"
|
|
969
|
+
version = "1.0.228"
|
|
970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
971
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
972
|
+
dependencies = [
|
|
973
|
+
"serde_derive",
|
|
974
|
+
]
|
|
975
|
+
|
|
976
|
+
[[package]]
|
|
977
|
+
name = "serde_derive"
|
|
978
|
+
version = "1.0.228"
|
|
979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
980
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
981
|
+
dependencies = [
|
|
982
|
+
"proc-macro2",
|
|
983
|
+
"quote",
|
|
984
|
+
"syn",
|
|
985
|
+
]
|
|
986
|
+
|
|
987
|
+
[[package]]
|
|
988
|
+
name = "serde_json"
|
|
989
|
+
version = "1.0.145"
|
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
992
|
+
dependencies = [
|
|
993
|
+
"itoa",
|
|
994
|
+
"memchr",
|
|
995
|
+
"ryu",
|
|
996
|
+
"serde",
|
|
997
|
+
"serde_core",
|
|
998
|
+
]
|
|
999
|
+
|
|
1000
|
+
[[package]]
|
|
1001
|
+
name = "serde_spanned"
|
|
1002
|
+
version = "0.6.9"
|
|
1003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
1005
|
+
dependencies = [
|
|
1006
|
+
"serde",
|
|
1007
|
+
]
|
|
1008
|
+
|
|
1009
|
+
[[package]]
|
|
1010
|
+
name = "shlex"
|
|
1011
|
+
version = "1.3.0"
|
|
1012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1014
|
+
|
|
1015
|
+
[[package]]
|
|
1016
|
+
name = "siphasher"
|
|
1017
|
+
version = "1.0.1"
|
|
1018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
1020
|
+
|
|
1021
|
+
[[package]]
|
|
1022
|
+
name = "static_assertions"
|
|
1023
|
+
version = "1.1.0"
|
|
1024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1025
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
1026
|
+
|
|
1027
|
+
[[package]]
|
|
1028
|
+
name = "strsim"
|
|
1029
|
+
version = "0.11.1"
|
|
1030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1031
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1032
|
+
|
|
1033
|
+
[[package]]
|
|
1034
|
+
name = "syn"
|
|
1035
|
+
version = "2.0.111"
|
|
1036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
+
checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
|
|
1038
|
+
dependencies = [
|
|
1039
|
+
"proc-macro2",
|
|
1040
|
+
"quote",
|
|
1041
|
+
"unicode-ident",
|
|
1042
|
+
]
|
|
1043
|
+
|
|
1044
|
+
[[package]]
|
|
1045
|
+
name = "tempfile"
|
|
1046
|
+
version = "3.23.0"
|
|
1047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1048
|
+
checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
|
|
1049
|
+
dependencies = [
|
|
1050
|
+
"fastrand",
|
|
1051
|
+
"getrandom 0.3.4",
|
|
1052
|
+
"once_cell",
|
|
1053
|
+
"rustix",
|
|
1054
|
+
"windows-sys 0.61.2",
|
|
1055
|
+
]
|
|
1056
|
+
|
|
1057
|
+
[[package]]
|
|
1058
|
+
name = "thiserror"
|
|
1059
|
+
version = "1.0.69"
|
|
1060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1061
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1062
|
+
dependencies = [
|
|
1063
|
+
"thiserror-impl",
|
|
1064
|
+
]
|
|
1065
|
+
|
|
1066
|
+
[[package]]
|
|
1067
|
+
name = "thiserror-impl"
|
|
1068
|
+
version = "1.0.69"
|
|
1069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1070
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1071
|
+
dependencies = [
|
|
1072
|
+
"proc-macro2",
|
|
1073
|
+
"quote",
|
|
1074
|
+
"syn",
|
|
1075
|
+
]
|
|
1076
|
+
|
|
1077
|
+
[[package]]
|
|
1078
|
+
name = "tiny-keccak"
|
|
1079
|
+
version = "2.0.2"
|
|
1080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
1082
|
+
dependencies = [
|
|
1083
|
+
"crunchy",
|
|
1084
|
+
]
|
|
1085
|
+
|
|
1086
|
+
[[package]]
|
|
1087
|
+
name = "tinytemplate"
|
|
1088
|
+
version = "1.2.1"
|
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
1091
|
+
dependencies = [
|
|
1092
|
+
"serde",
|
|
1093
|
+
"serde_json",
|
|
1094
|
+
]
|
|
1095
|
+
|
|
1096
|
+
[[package]]
|
|
1097
|
+
name = "toml"
|
|
1098
|
+
version = "0.8.23"
|
|
1099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1100
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
1101
|
+
dependencies = [
|
|
1102
|
+
"serde",
|
|
1103
|
+
"serde_spanned",
|
|
1104
|
+
"toml_datetime",
|
|
1105
|
+
"toml_edit",
|
|
1106
|
+
]
|
|
1107
|
+
|
|
1108
|
+
[[package]]
|
|
1109
|
+
name = "toml_datetime"
|
|
1110
|
+
version = "0.6.11"
|
|
1111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1112
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
1113
|
+
dependencies = [
|
|
1114
|
+
"serde",
|
|
1115
|
+
]
|
|
1116
|
+
|
|
1117
|
+
[[package]]
|
|
1118
|
+
name = "toml_edit"
|
|
1119
|
+
version = "0.22.27"
|
|
1120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1121
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
1122
|
+
dependencies = [
|
|
1123
|
+
"indexmap",
|
|
1124
|
+
"serde",
|
|
1125
|
+
"serde_spanned",
|
|
1126
|
+
"toml_datetime",
|
|
1127
|
+
"toml_write",
|
|
1128
|
+
"winnow",
|
|
1129
|
+
]
|
|
1130
|
+
|
|
1131
|
+
[[package]]
|
|
1132
|
+
name = "toml_write"
|
|
1133
|
+
version = "0.1.2"
|
|
1134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1135
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
1136
|
+
|
|
1137
|
+
[[package]]
|
|
1138
|
+
name = "unic-char-property"
|
|
1139
|
+
version = "0.9.0"
|
|
1140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1141
|
+
checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
|
|
1142
|
+
dependencies = [
|
|
1143
|
+
"unic-char-range",
|
|
1144
|
+
]
|
|
1145
|
+
|
|
1146
|
+
[[package]]
|
|
1147
|
+
name = "unic-char-range"
|
|
1148
|
+
version = "0.9.0"
|
|
1149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1150
|
+
checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
|
|
1151
|
+
|
|
1152
|
+
[[package]]
|
|
1153
|
+
name = "unic-common"
|
|
1154
|
+
version = "0.9.0"
|
|
1155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
+
checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
|
|
1157
|
+
|
|
1158
|
+
[[package]]
|
|
1159
|
+
name = "unic-emoji-char"
|
|
1160
|
+
version = "0.9.0"
|
|
1161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1162
|
+
checksum = "0b07221e68897210270a38bde4babb655869637af0f69407f96053a34f76494d"
|
|
1163
|
+
dependencies = [
|
|
1164
|
+
"unic-char-property",
|
|
1165
|
+
"unic-char-range",
|
|
1166
|
+
"unic-ucd-version",
|
|
1167
|
+
]
|
|
1168
|
+
|
|
1169
|
+
[[package]]
|
|
1170
|
+
name = "unic-ucd-ident"
|
|
1171
|
+
version = "0.9.0"
|
|
1172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1173
|
+
checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987"
|
|
1174
|
+
dependencies = [
|
|
1175
|
+
"unic-char-property",
|
|
1176
|
+
"unic-char-range",
|
|
1177
|
+
"unic-ucd-version",
|
|
1178
|
+
]
|
|
1179
|
+
|
|
1180
|
+
[[package]]
|
|
1181
|
+
name = "unic-ucd-version"
|
|
1182
|
+
version = "0.9.0"
|
|
1183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1184
|
+
checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
|
|
1185
|
+
dependencies = [
|
|
1186
|
+
"unic-common",
|
|
1187
|
+
]
|
|
1188
|
+
|
|
1189
|
+
[[package]]
|
|
1190
|
+
name = "unicode-ident"
|
|
1191
|
+
version = "1.0.22"
|
|
1192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1193
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
1194
|
+
|
|
1195
|
+
[[package]]
|
|
1196
|
+
name = "unicode-width"
|
|
1197
|
+
version = "0.2.2"
|
|
1198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1199
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
1200
|
+
|
|
1201
|
+
[[package]]
|
|
1202
|
+
name = "unicode-xid"
|
|
1203
|
+
version = "0.2.6"
|
|
1204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1205
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
1206
|
+
|
|
1207
|
+
[[package]]
|
|
1208
|
+
name = "unicode_names2"
|
|
1209
|
+
version = "1.3.0"
|
|
1210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1211
|
+
checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
|
|
1212
|
+
dependencies = [
|
|
1213
|
+
"phf",
|
|
1214
|
+
"unicode_names2_generator",
|
|
1215
|
+
]
|
|
1216
|
+
|
|
1217
|
+
[[package]]
|
|
1218
|
+
name = "unicode_names2_generator"
|
|
1219
|
+
version = "1.3.0"
|
|
1220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1221
|
+
checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
|
|
1222
|
+
dependencies = [
|
|
1223
|
+
"getopts",
|
|
1224
|
+
"log",
|
|
1225
|
+
"phf_codegen",
|
|
1226
|
+
"rand",
|
|
1227
|
+
]
|
|
1228
|
+
|
|
1229
|
+
[[package]]
|
|
1230
|
+
name = "utf8parse"
|
|
1231
|
+
version = "0.2.2"
|
|
1232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1233
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1234
|
+
|
|
1235
|
+
[[package]]
|
|
1236
|
+
name = "version_check"
|
|
1237
|
+
version = "0.9.5"
|
|
1238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1239
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1240
|
+
|
|
1241
|
+
[[package]]
|
|
1242
|
+
name = "walkdir"
|
|
1243
|
+
version = "2.5.0"
|
|
1244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1245
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1246
|
+
dependencies = [
|
|
1247
|
+
"same-file",
|
|
1248
|
+
"winapi-util",
|
|
1249
|
+
]
|
|
1250
|
+
|
|
1251
|
+
[[package]]
|
|
1252
|
+
name = "wasi"
|
|
1253
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1255
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1256
|
+
|
|
1257
|
+
[[package]]
|
|
1258
|
+
name = "wasip2"
|
|
1259
|
+
version = "1.0.1+wasi-0.2.4"
|
|
1260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1261
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
1262
|
+
dependencies = [
|
|
1263
|
+
"wit-bindgen",
|
|
1264
|
+
]
|
|
1265
|
+
|
|
1266
|
+
[[package]]
|
|
1267
|
+
name = "wasm-bindgen"
|
|
1268
|
+
version = "0.2.106"
|
|
1269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1270
|
+
checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
|
|
1271
|
+
dependencies = [
|
|
1272
|
+
"cfg-if",
|
|
1273
|
+
"once_cell",
|
|
1274
|
+
"rustversion",
|
|
1275
|
+
"wasm-bindgen-macro",
|
|
1276
|
+
"wasm-bindgen-shared",
|
|
1277
|
+
]
|
|
1278
|
+
|
|
1279
|
+
[[package]]
|
|
1280
|
+
name = "wasm-bindgen-macro"
|
|
1281
|
+
version = "0.2.106"
|
|
1282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1283
|
+
checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
|
|
1284
|
+
dependencies = [
|
|
1285
|
+
"quote",
|
|
1286
|
+
"wasm-bindgen-macro-support",
|
|
1287
|
+
]
|
|
1288
|
+
|
|
1289
|
+
[[package]]
|
|
1290
|
+
name = "wasm-bindgen-macro-support"
|
|
1291
|
+
version = "0.2.106"
|
|
1292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1293
|
+
checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
|
|
1294
|
+
dependencies = [
|
|
1295
|
+
"bumpalo",
|
|
1296
|
+
"proc-macro2",
|
|
1297
|
+
"quote",
|
|
1298
|
+
"syn",
|
|
1299
|
+
"wasm-bindgen-shared",
|
|
1300
|
+
]
|
|
1301
|
+
|
|
1302
|
+
[[package]]
|
|
1303
|
+
name = "wasm-bindgen-shared"
|
|
1304
|
+
version = "0.2.106"
|
|
1305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1306
|
+
checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
|
|
1307
|
+
dependencies = [
|
|
1308
|
+
"unicode-ident",
|
|
1309
|
+
]
|
|
1310
|
+
|
|
1311
|
+
[[package]]
|
|
1312
|
+
name = "web-sys"
|
|
1313
|
+
version = "0.3.83"
|
|
1314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1315
|
+
checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
|
|
1316
|
+
dependencies = [
|
|
1317
|
+
"js-sys",
|
|
1318
|
+
"wasm-bindgen",
|
|
1319
|
+
]
|
|
1320
|
+
|
|
1321
|
+
[[package]]
|
|
1322
|
+
name = "winapi-util"
|
|
1323
|
+
version = "0.1.11"
|
|
1324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1325
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1326
|
+
dependencies = [
|
|
1327
|
+
"windows-sys 0.61.2",
|
|
1328
|
+
]
|
|
1329
|
+
|
|
1330
|
+
[[package]]
|
|
1331
|
+
name = "windows-link"
|
|
1332
|
+
version = "0.2.1"
|
|
1333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1335
|
+
|
|
1336
|
+
[[package]]
|
|
1337
|
+
name = "windows-sys"
|
|
1338
|
+
version = "0.59.0"
|
|
1339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1340
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
1341
|
+
dependencies = [
|
|
1342
|
+
"windows-targets",
|
|
1343
|
+
]
|
|
1344
|
+
|
|
1345
|
+
[[package]]
|
|
1346
|
+
name = "windows-sys"
|
|
1347
|
+
version = "0.61.2"
|
|
1348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1349
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1350
|
+
dependencies = [
|
|
1351
|
+
"windows-link",
|
|
1352
|
+
]
|
|
1353
|
+
|
|
1354
|
+
[[package]]
|
|
1355
|
+
name = "windows-targets"
|
|
1356
|
+
version = "0.52.6"
|
|
1357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1358
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1359
|
+
dependencies = [
|
|
1360
|
+
"windows_aarch64_gnullvm",
|
|
1361
|
+
"windows_aarch64_msvc",
|
|
1362
|
+
"windows_i686_gnu",
|
|
1363
|
+
"windows_i686_gnullvm",
|
|
1364
|
+
"windows_i686_msvc",
|
|
1365
|
+
"windows_x86_64_gnu",
|
|
1366
|
+
"windows_x86_64_gnullvm",
|
|
1367
|
+
"windows_x86_64_msvc",
|
|
1368
|
+
]
|
|
1369
|
+
|
|
1370
|
+
[[package]]
|
|
1371
|
+
name = "windows_aarch64_gnullvm"
|
|
1372
|
+
version = "0.52.6"
|
|
1373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1374
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1375
|
+
|
|
1376
|
+
[[package]]
|
|
1377
|
+
name = "windows_aarch64_msvc"
|
|
1378
|
+
version = "0.52.6"
|
|
1379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1381
|
+
|
|
1382
|
+
[[package]]
|
|
1383
|
+
name = "windows_i686_gnu"
|
|
1384
|
+
version = "0.52.6"
|
|
1385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1386
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1387
|
+
|
|
1388
|
+
[[package]]
|
|
1389
|
+
name = "windows_i686_gnullvm"
|
|
1390
|
+
version = "0.52.6"
|
|
1391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1392
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1393
|
+
|
|
1394
|
+
[[package]]
|
|
1395
|
+
name = "windows_i686_msvc"
|
|
1396
|
+
version = "0.52.6"
|
|
1397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1398
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1399
|
+
|
|
1400
|
+
[[package]]
|
|
1401
|
+
name = "windows_x86_64_gnu"
|
|
1402
|
+
version = "0.52.6"
|
|
1403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1404
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1405
|
+
|
|
1406
|
+
[[package]]
|
|
1407
|
+
name = "windows_x86_64_gnullvm"
|
|
1408
|
+
version = "0.52.6"
|
|
1409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1410
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1411
|
+
|
|
1412
|
+
[[package]]
|
|
1413
|
+
name = "windows_x86_64_msvc"
|
|
1414
|
+
version = "0.52.6"
|
|
1415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1416
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1417
|
+
|
|
1418
|
+
[[package]]
|
|
1419
|
+
name = "winnow"
|
|
1420
|
+
version = "0.7.14"
|
|
1421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1422
|
+
checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
|
|
1423
|
+
dependencies = [
|
|
1424
|
+
"memchr",
|
|
1425
|
+
]
|
|
1426
|
+
|
|
1427
|
+
[[package]]
|
|
1428
|
+
name = "wit-bindgen"
|
|
1429
|
+
version = "0.46.0"
|
|
1430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1431
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
1432
|
+
|
|
1433
|
+
[[package]]
|
|
1434
|
+
name = "yansi"
|
|
1435
|
+
version = "1.0.1"
|
|
1436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1437
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
1438
|
+
|
|
1439
|
+
[[package]]
|
|
1440
|
+
name = "zerocopy"
|
|
1441
|
+
version = "0.8.31"
|
|
1442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1443
|
+
checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
|
|
1444
|
+
dependencies = [
|
|
1445
|
+
"zerocopy-derive",
|
|
1446
|
+
]
|
|
1447
|
+
|
|
1448
|
+
[[package]]
|
|
1449
|
+
name = "zerocopy-derive"
|
|
1450
|
+
version = "0.8.31"
|
|
1451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1452
|
+
checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
|
|
1453
|
+
dependencies = [
|
|
1454
|
+
"proc-macro2",
|
|
1455
|
+
"quote",
|
|
1456
|
+
"syn",
|
|
1457
|
+
]
|