pyroscope 1.0.6-x86_64-linux → 1.0.7-x86_64-linux
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/ext/rbspy/Cargo.lock +2782 -0
- data/ext/rbspy/Cargo.toml +18 -0
- data/ext/rbspy/Rakefile +164 -0
- data/ext/rbspy/cbindgen.toml +17 -0
- data/ext/rbspy/include/rbspy.h +45 -0
- data/ext/rbspy/src/backend.rs +199 -0
- data/ext/rbspy/src/lib.rs +348 -0
- data/lib/pyroscope/version.rb +1 -1
- data/lib/rbspy/rbspy.so +0 -0
- data/pyroscope.gemspec +8 -2
- metadata +8 -1
|
@@ -0,0 +1,2782 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "addr2line"
|
|
7
|
+
version = "0.26.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "59317f77929f0e679d39364702289274de2f0f0b22cbf50b2b8cff2169a0b27a"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"cpp_demangle",
|
|
12
|
+
"fallible-iterator",
|
|
13
|
+
"gimli",
|
|
14
|
+
"memmap2",
|
|
15
|
+
"object",
|
|
16
|
+
"rustc-demangle",
|
|
17
|
+
"smallvec",
|
|
18
|
+
"typed-arena",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[[package]]
|
|
22
|
+
name = "adler2"
|
|
23
|
+
version = "2.0.1"
|
|
24
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
25
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
26
|
+
|
|
27
|
+
[[package]]
|
|
28
|
+
name = "adler32"
|
|
29
|
+
version = "1.2.0"
|
|
30
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
31
|
+
checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
|
|
32
|
+
|
|
33
|
+
[[package]]
|
|
34
|
+
name = "ahash"
|
|
35
|
+
version = "0.8.12"
|
|
36
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
37
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
38
|
+
dependencies = [
|
|
39
|
+
"cfg-if",
|
|
40
|
+
"getrandom 0.3.4",
|
|
41
|
+
"once_cell",
|
|
42
|
+
"version_check",
|
|
43
|
+
"zerocopy",
|
|
44
|
+
]
|
|
45
|
+
|
|
46
|
+
[[package]]
|
|
47
|
+
name = "aho-corasick"
|
|
48
|
+
version = "1.1.4"
|
|
49
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
50
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
51
|
+
dependencies = [
|
|
52
|
+
"memchr",
|
|
53
|
+
]
|
|
54
|
+
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "allocator-api2"
|
|
57
|
+
version = "0.2.21"
|
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "android_system_properties"
|
|
63
|
+
version = "0.1.5"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
66
|
+
dependencies = [
|
|
67
|
+
"libc",
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "anstream"
|
|
72
|
+
version = "1.0.0"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
75
|
+
dependencies = [
|
|
76
|
+
"anstyle",
|
|
77
|
+
"anstyle-parse",
|
|
78
|
+
"anstyle-query",
|
|
79
|
+
"anstyle-wincon",
|
|
80
|
+
"colorchoice",
|
|
81
|
+
"is_terminal_polyfill",
|
|
82
|
+
"utf8parse",
|
|
83
|
+
]
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "anstyle"
|
|
87
|
+
version = "1.0.14"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "anstyle-parse"
|
|
93
|
+
version = "1.0.0"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
96
|
+
dependencies = [
|
|
97
|
+
"utf8parse",
|
|
98
|
+
]
|
|
99
|
+
|
|
100
|
+
[[package]]
|
|
101
|
+
name = "anstyle-query"
|
|
102
|
+
version = "1.1.5"
|
|
103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
104
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
105
|
+
dependencies = [
|
|
106
|
+
"windows-sys",
|
|
107
|
+
]
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "anstyle-wincon"
|
|
111
|
+
version = "3.0.11"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
114
|
+
dependencies = [
|
|
115
|
+
"anstyle",
|
|
116
|
+
"once_cell_polyfill",
|
|
117
|
+
"windows-sys",
|
|
118
|
+
]
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "anyhow"
|
|
122
|
+
version = "1.0.102"
|
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
125
|
+
|
|
126
|
+
[[package]]
|
|
127
|
+
name = "arrayvec"
|
|
128
|
+
version = "0.7.6"
|
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
131
|
+
|
|
132
|
+
[[package]]
|
|
133
|
+
name = "atomic-waker"
|
|
134
|
+
version = "1.1.2"
|
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
137
|
+
|
|
138
|
+
[[package]]
|
|
139
|
+
name = "autocfg"
|
|
140
|
+
version = "1.5.0"
|
|
141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
142
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
143
|
+
|
|
144
|
+
[[package]]
|
|
145
|
+
name = "base64"
|
|
146
|
+
version = "0.22.1"
|
|
147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
148
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
149
|
+
|
|
150
|
+
[[package]]
|
|
151
|
+
name = "bindgen"
|
|
152
|
+
version = "0.70.1"
|
|
153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
+
checksum = "f49d8fed880d473ea71efb9bf597651e77201bdd4893efe54c9e5d65ae04ce6f"
|
|
155
|
+
dependencies = [
|
|
156
|
+
"bitflags",
|
|
157
|
+
"cexpr",
|
|
158
|
+
"clang-sys",
|
|
159
|
+
"itertools",
|
|
160
|
+
"log",
|
|
161
|
+
"prettyplease",
|
|
162
|
+
"proc-macro2",
|
|
163
|
+
"quote",
|
|
164
|
+
"regex",
|
|
165
|
+
"rustc-hash 1.1.0",
|
|
166
|
+
"shlex",
|
|
167
|
+
"syn",
|
|
168
|
+
]
|
|
169
|
+
|
|
170
|
+
[[package]]
|
|
171
|
+
name = "bindgen"
|
|
172
|
+
version = "0.72.1"
|
|
173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
175
|
+
dependencies = [
|
|
176
|
+
"bitflags",
|
|
177
|
+
"cexpr",
|
|
178
|
+
"clang-sys",
|
|
179
|
+
"itertools",
|
|
180
|
+
"proc-macro2",
|
|
181
|
+
"quote",
|
|
182
|
+
"regex",
|
|
183
|
+
"rustc-hash 2.1.2",
|
|
184
|
+
"shlex",
|
|
185
|
+
"syn",
|
|
186
|
+
]
|
|
187
|
+
|
|
188
|
+
[[package]]
|
|
189
|
+
name = "bitflags"
|
|
190
|
+
version = "2.11.0"
|
|
191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
193
|
+
|
|
194
|
+
[[package]]
|
|
195
|
+
name = "block2"
|
|
196
|
+
version = "0.6.2"
|
|
197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
+
checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
|
|
199
|
+
dependencies = [
|
|
200
|
+
"objc2",
|
|
201
|
+
]
|
|
202
|
+
|
|
203
|
+
[[package]]
|
|
204
|
+
name = "bumpalo"
|
|
205
|
+
version = "3.20.2"
|
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
208
|
+
|
|
209
|
+
[[package]]
|
|
210
|
+
name = "bytemuck"
|
|
211
|
+
version = "1.25.0"
|
|
212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
+
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
214
|
+
|
|
215
|
+
[[package]]
|
|
216
|
+
name = "bytes"
|
|
217
|
+
version = "1.11.1"
|
|
218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
220
|
+
|
|
221
|
+
[[package]]
|
|
222
|
+
name = "cc"
|
|
223
|
+
version = "1.2.59"
|
|
224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
225
|
+
checksum = "b7a4d3ec6524d28a329fc53654bbadc9bdd7b0431f5d65f1a56ffb28a1ee5283"
|
|
226
|
+
dependencies = [
|
|
227
|
+
"find-msvc-tools",
|
|
228
|
+
"shlex",
|
|
229
|
+
]
|
|
230
|
+
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "cexpr"
|
|
233
|
+
version = "0.6.0"
|
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
236
|
+
dependencies = [
|
|
237
|
+
"nom",
|
|
238
|
+
]
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "cfg-if"
|
|
242
|
+
version = "1.0.4"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
245
|
+
|
|
246
|
+
[[package]]
|
|
247
|
+
name = "cfg_aliases"
|
|
248
|
+
version = "0.2.1"
|
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
251
|
+
|
|
252
|
+
[[package]]
|
|
253
|
+
name = "chacha20"
|
|
254
|
+
version = "0.10.0"
|
|
255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
256
|
+
checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
|
|
257
|
+
dependencies = [
|
|
258
|
+
"cfg-if",
|
|
259
|
+
"cpufeatures",
|
|
260
|
+
"rand_core 0.10.0",
|
|
261
|
+
]
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "chrono"
|
|
265
|
+
version = "0.4.44"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
268
|
+
dependencies = [
|
|
269
|
+
"iana-time-zone",
|
|
270
|
+
"num-traits",
|
|
271
|
+
"windows-link",
|
|
272
|
+
]
|
|
273
|
+
|
|
274
|
+
[[package]]
|
|
275
|
+
name = "clang-sys"
|
|
276
|
+
version = "1.8.1"
|
|
277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
279
|
+
dependencies = [
|
|
280
|
+
"glob",
|
|
281
|
+
"libc",
|
|
282
|
+
"libloading",
|
|
283
|
+
]
|
|
284
|
+
|
|
285
|
+
[[package]]
|
|
286
|
+
name = "clap"
|
|
287
|
+
version = "4.6.0"
|
|
288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
289
|
+
checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
|
|
290
|
+
dependencies = [
|
|
291
|
+
"clap_builder",
|
|
292
|
+
"clap_derive",
|
|
293
|
+
]
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "clap_builder"
|
|
297
|
+
version = "4.6.0"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
300
|
+
dependencies = [
|
|
301
|
+
"anstream",
|
|
302
|
+
"anstyle",
|
|
303
|
+
"clap_lex",
|
|
304
|
+
"strsim",
|
|
305
|
+
]
|
|
306
|
+
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "clap_derive"
|
|
309
|
+
version = "4.6.0"
|
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
+
checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
|
|
312
|
+
dependencies = [
|
|
313
|
+
"heck",
|
|
314
|
+
"proc-macro2",
|
|
315
|
+
"quote",
|
|
316
|
+
"syn",
|
|
317
|
+
]
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "clap_lex"
|
|
321
|
+
version = "1.1.0"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
324
|
+
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "colorchoice"
|
|
327
|
+
version = "1.0.5"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
330
|
+
|
|
331
|
+
[[package]]
|
|
332
|
+
name = "core-foundation"
|
|
333
|
+
version = "0.10.1"
|
|
334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
336
|
+
dependencies = [
|
|
337
|
+
"core-foundation-sys",
|
|
338
|
+
"libc",
|
|
339
|
+
]
|
|
340
|
+
|
|
341
|
+
[[package]]
|
|
342
|
+
name = "core-foundation-sys"
|
|
343
|
+
version = "0.8.7"
|
|
344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
346
|
+
|
|
347
|
+
[[package]]
|
|
348
|
+
name = "core2"
|
|
349
|
+
version = "0.4.0"
|
|
350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
351
|
+
checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
|
|
352
|
+
dependencies = [
|
|
353
|
+
"memchr",
|
|
354
|
+
]
|
|
355
|
+
|
|
356
|
+
[[package]]
|
|
357
|
+
name = "cpp_demangle"
|
|
358
|
+
version = "0.5.1"
|
|
359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
360
|
+
checksum = "0667304c32ea56cb4cd6d2d7c0cfe9a2f8041229db8c033af7f8d69492429def"
|
|
361
|
+
dependencies = [
|
|
362
|
+
"cfg-if",
|
|
363
|
+
]
|
|
364
|
+
|
|
365
|
+
[[package]]
|
|
366
|
+
name = "cpufeatures"
|
|
367
|
+
version = "0.3.0"
|
|
368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
369
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
370
|
+
dependencies = [
|
|
371
|
+
"libc",
|
|
372
|
+
]
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "crc32fast"
|
|
376
|
+
version = "1.5.0"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
379
|
+
dependencies = [
|
|
380
|
+
"cfg-if",
|
|
381
|
+
]
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "crossbeam-channel"
|
|
385
|
+
version = "0.5.15"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
388
|
+
dependencies = [
|
|
389
|
+
"crossbeam-utils",
|
|
390
|
+
]
|
|
391
|
+
|
|
392
|
+
[[package]]
|
|
393
|
+
name = "crossbeam-utils"
|
|
394
|
+
version = "0.8.21"
|
|
395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
397
|
+
|
|
398
|
+
[[package]]
|
|
399
|
+
name = "ctrlc"
|
|
400
|
+
version = "3.5.2"
|
|
401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
+
checksum = "e0b1fab2ae45819af2d0731d60f2afe17227ebb1a1538a236da84c93e9a60162"
|
|
403
|
+
dependencies = [
|
|
404
|
+
"dispatch2",
|
|
405
|
+
"nix",
|
|
406
|
+
"windows-sys",
|
|
407
|
+
]
|
|
408
|
+
|
|
409
|
+
[[package]]
|
|
410
|
+
name = "dary_heap"
|
|
411
|
+
version = "0.3.8"
|
|
412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
+
checksum = "06d2e3287df1c007e74221c49ca10a95d557349e54b3a75dc2fb14712c751f04"
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "dashmap"
|
|
417
|
+
version = "6.1.0"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
|
|
420
|
+
dependencies = [
|
|
421
|
+
"cfg-if",
|
|
422
|
+
"crossbeam-utils",
|
|
423
|
+
"hashbrown 0.14.5",
|
|
424
|
+
"lock_api",
|
|
425
|
+
"once_cell",
|
|
426
|
+
"parking_lot_core",
|
|
427
|
+
]
|
|
428
|
+
|
|
429
|
+
[[package]]
|
|
430
|
+
name = "directories"
|
|
431
|
+
version = "6.0.0"
|
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
+
checksum = "16f5094c54661b38d03bd7e50df373292118db60b585c08a411c6d840017fe7d"
|
|
434
|
+
dependencies = [
|
|
435
|
+
"dirs-sys",
|
|
436
|
+
]
|
|
437
|
+
|
|
438
|
+
[[package]]
|
|
439
|
+
name = "dirs-sys"
|
|
440
|
+
version = "0.5.0"
|
|
441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
442
|
+
checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
|
|
443
|
+
dependencies = [
|
|
444
|
+
"libc",
|
|
445
|
+
"option-ext",
|
|
446
|
+
"redox_users",
|
|
447
|
+
"windows-sys",
|
|
448
|
+
]
|
|
449
|
+
|
|
450
|
+
[[package]]
|
|
451
|
+
name = "dispatch2"
|
|
452
|
+
version = "0.3.1"
|
|
453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
|
+
checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
|
|
455
|
+
dependencies = [
|
|
456
|
+
"bitflags",
|
|
457
|
+
"block2",
|
|
458
|
+
"libc",
|
|
459
|
+
"objc2",
|
|
460
|
+
]
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "displaydoc"
|
|
464
|
+
version = "0.2.5"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
467
|
+
dependencies = [
|
|
468
|
+
"proc-macro2",
|
|
469
|
+
"quote",
|
|
470
|
+
"syn",
|
|
471
|
+
]
|
|
472
|
+
|
|
473
|
+
[[package]]
|
|
474
|
+
name = "either"
|
|
475
|
+
version = "1.15.0"
|
|
476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "env_filter"
|
|
481
|
+
version = "1.0.1"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "32e90c2accc4b07a8456ea0debdc2e7587bdd890680d71173a15d4ae604f6eef"
|
|
484
|
+
dependencies = [
|
|
485
|
+
"log",
|
|
486
|
+
"regex",
|
|
487
|
+
]
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "env_logger"
|
|
491
|
+
version = "0.10.2"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580"
|
|
494
|
+
dependencies = [
|
|
495
|
+
"humantime",
|
|
496
|
+
"is-terminal",
|
|
497
|
+
"log",
|
|
498
|
+
"regex",
|
|
499
|
+
"termcolor",
|
|
500
|
+
]
|
|
501
|
+
|
|
502
|
+
[[package]]
|
|
503
|
+
name = "env_logger"
|
|
504
|
+
version = "0.11.10"
|
|
505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
506
|
+
checksum = "0621c04f2196ac3f488dd583365b9c09be011a4ab8b9f37248ffcc8f6198b56a"
|
|
507
|
+
dependencies = [
|
|
508
|
+
"anstream",
|
|
509
|
+
"anstyle",
|
|
510
|
+
"env_filter",
|
|
511
|
+
"jiff",
|
|
512
|
+
"log",
|
|
513
|
+
]
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "equivalent"
|
|
517
|
+
version = "1.0.2"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "errno"
|
|
523
|
+
version = "0.3.14"
|
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
526
|
+
dependencies = [
|
|
527
|
+
"libc",
|
|
528
|
+
"windows-sys",
|
|
529
|
+
]
|
|
530
|
+
|
|
531
|
+
[[package]]
|
|
532
|
+
name = "fallible-iterator"
|
|
533
|
+
version = "0.3.0"
|
|
534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
+
checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
|
|
536
|
+
|
|
537
|
+
[[package]]
|
|
538
|
+
name = "fastrand"
|
|
539
|
+
version = "2.4.0"
|
|
540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
541
|
+
checksum = "a043dc74da1e37d6afe657061213aa6f425f855399a11d3463c6ecccc4dfda1f"
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "ffiruby"
|
|
545
|
+
version = "1.0.7"
|
|
546
|
+
dependencies = [
|
|
547
|
+
"anyhow",
|
|
548
|
+
"libc",
|
|
549
|
+
"log",
|
|
550
|
+
"pretty_env_logger",
|
|
551
|
+
"pyroscope",
|
|
552
|
+
"rbspy",
|
|
553
|
+
"remoteprocess",
|
|
554
|
+
]
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "find-msvc-tools"
|
|
558
|
+
version = "0.1.9"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
561
|
+
|
|
562
|
+
[[package]]
|
|
563
|
+
name = "flate2"
|
|
564
|
+
version = "1.1.9"
|
|
565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
566
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
567
|
+
dependencies = [
|
|
568
|
+
"crc32fast",
|
|
569
|
+
"miniz_oxide",
|
|
570
|
+
]
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "foldhash"
|
|
574
|
+
version = "0.1.5"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
577
|
+
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "foldhash"
|
|
580
|
+
version = "0.2.0"
|
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "foreign-types"
|
|
586
|
+
version = "0.3.2"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
589
|
+
dependencies = [
|
|
590
|
+
"foreign-types-shared",
|
|
591
|
+
]
|
|
592
|
+
|
|
593
|
+
[[package]]
|
|
594
|
+
name = "foreign-types-shared"
|
|
595
|
+
version = "0.1.1"
|
|
596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
|
+
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
598
|
+
|
|
599
|
+
[[package]]
|
|
600
|
+
name = "form_urlencoded"
|
|
601
|
+
version = "1.2.2"
|
|
602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
604
|
+
dependencies = [
|
|
605
|
+
"percent-encoding",
|
|
606
|
+
]
|
|
607
|
+
|
|
608
|
+
[[package]]
|
|
609
|
+
name = "futures-channel"
|
|
610
|
+
version = "0.3.32"
|
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
613
|
+
dependencies = [
|
|
614
|
+
"futures-core",
|
|
615
|
+
"futures-sink",
|
|
616
|
+
]
|
|
617
|
+
|
|
618
|
+
[[package]]
|
|
619
|
+
name = "futures-core"
|
|
620
|
+
version = "0.3.32"
|
|
621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
622
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "futures-io"
|
|
626
|
+
version = "0.3.32"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
629
|
+
|
|
630
|
+
[[package]]
|
|
631
|
+
name = "futures-sink"
|
|
632
|
+
version = "0.3.32"
|
|
633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
635
|
+
|
|
636
|
+
[[package]]
|
|
637
|
+
name = "futures-task"
|
|
638
|
+
version = "0.3.32"
|
|
639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
641
|
+
|
|
642
|
+
[[package]]
|
|
643
|
+
name = "futures-util"
|
|
644
|
+
version = "0.3.32"
|
|
645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
646
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
647
|
+
dependencies = [
|
|
648
|
+
"futures-core",
|
|
649
|
+
"futures-io",
|
|
650
|
+
"futures-sink",
|
|
651
|
+
"futures-task",
|
|
652
|
+
"memchr",
|
|
653
|
+
"pin-project-lite",
|
|
654
|
+
"slab",
|
|
655
|
+
]
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "getrandom"
|
|
659
|
+
version = "0.2.17"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
662
|
+
dependencies = [
|
|
663
|
+
"cfg-if",
|
|
664
|
+
"libc",
|
|
665
|
+
"wasi",
|
|
666
|
+
]
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "getrandom"
|
|
670
|
+
version = "0.3.4"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
673
|
+
dependencies = [
|
|
674
|
+
"cfg-if",
|
|
675
|
+
"libc",
|
|
676
|
+
"r-efi 5.3.0",
|
|
677
|
+
"wasip2",
|
|
678
|
+
]
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "getrandom"
|
|
682
|
+
version = "0.4.2"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
685
|
+
dependencies = [
|
|
686
|
+
"cfg-if",
|
|
687
|
+
"libc",
|
|
688
|
+
"r-efi 6.0.0",
|
|
689
|
+
"rand_core 0.10.0",
|
|
690
|
+
"wasip2",
|
|
691
|
+
"wasip3",
|
|
692
|
+
]
|
|
693
|
+
|
|
694
|
+
[[package]]
|
|
695
|
+
name = "gimli"
|
|
696
|
+
version = "0.33.0"
|
|
697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
698
|
+
checksum = "0bf7f043f89559805f8c7cacc432749b2fa0d0a0a9ee46ce47164ed5ba7f126c"
|
|
699
|
+
dependencies = [
|
|
700
|
+
"stable_deref_trait",
|
|
701
|
+
]
|
|
702
|
+
|
|
703
|
+
[[package]]
|
|
704
|
+
name = "glob"
|
|
705
|
+
version = "0.3.3"
|
|
706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
708
|
+
|
|
709
|
+
[[package]]
|
|
710
|
+
name = "goblin"
|
|
711
|
+
version = "0.10.5"
|
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
+
checksum = "983a6aafb3b12d4c41ea78d39e189af4298ce747353945ff5105b54a056e5cd9"
|
|
714
|
+
dependencies = [
|
|
715
|
+
"log",
|
|
716
|
+
"plain",
|
|
717
|
+
"scroll",
|
|
718
|
+
]
|
|
719
|
+
|
|
720
|
+
[[package]]
|
|
721
|
+
name = "hashbrown"
|
|
722
|
+
version = "0.14.5"
|
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
725
|
+
|
|
726
|
+
[[package]]
|
|
727
|
+
name = "hashbrown"
|
|
728
|
+
version = "0.15.5"
|
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
731
|
+
dependencies = [
|
|
732
|
+
"foldhash 0.1.5",
|
|
733
|
+
]
|
|
734
|
+
|
|
735
|
+
[[package]]
|
|
736
|
+
name = "hashbrown"
|
|
737
|
+
version = "0.16.1"
|
|
738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
739
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
740
|
+
dependencies = [
|
|
741
|
+
"allocator-api2",
|
|
742
|
+
"equivalent",
|
|
743
|
+
"foldhash 0.2.0",
|
|
744
|
+
]
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "heck"
|
|
748
|
+
version = "0.5.0"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "hermit-abi"
|
|
754
|
+
version = "0.5.2"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
757
|
+
|
|
758
|
+
[[package]]
|
|
759
|
+
name = "http"
|
|
760
|
+
version = "1.4.0"
|
|
761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
762
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
763
|
+
dependencies = [
|
|
764
|
+
"bytes",
|
|
765
|
+
"itoa",
|
|
766
|
+
]
|
|
767
|
+
|
|
768
|
+
[[package]]
|
|
769
|
+
name = "http-body"
|
|
770
|
+
version = "1.0.1"
|
|
771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
772
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
773
|
+
dependencies = [
|
|
774
|
+
"bytes",
|
|
775
|
+
"http",
|
|
776
|
+
]
|
|
777
|
+
|
|
778
|
+
[[package]]
|
|
779
|
+
name = "http-body-util"
|
|
780
|
+
version = "0.1.3"
|
|
781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
783
|
+
dependencies = [
|
|
784
|
+
"bytes",
|
|
785
|
+
"futures-core",
|
|
786
|
+
"http",
|
|
787
|
+
"http-body",
|
|
788
|
+
"pin-project-lite",
|
|
789
|
+
]
|
|
790
|
+
|
|
791
|
+
[[package]]
|
|
792
|
+
name = "httparse"
|
|
793
|
+
version = "1.10.1"
|
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
796
|
+
|
|
797
|
+
[[package]]
|
|
798
|
+
name = "humantime"
|
|
799
|
+
version = "2.3.0"
|
|
800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
801
|
+
checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
|
|
802
|
+
|
|
803
|
+
[[package]]
|
|
804
|
+
name = "hyper"
|
|
805
|
+
version = "1.9.0"
|
|
806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
807
|
+
checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
|
|
808
|
+
dependencies = [
|
|
809
|
+
"atomic-waker",
|
|
810
|
+
"bytes",
|
|
811
|
+
"futures-channel",
|
|
812
|
+
"futures-core",
|
|
813
|
+
"http",
|
|
814
|
+
"http-body",
|
|
815
|
+
"httparse",
|
|
816
|
+
"itoa",
|
|
817
|
+
"pin-project-lite",
|
|
818
|
+
"smallvec",
|
|
819
|
+
"tokio",
|
|
820
|
+
"want",
|
|
821
|
+
]
|
|
822
|
+
|
|
823
|
+
[[package]]
|
|
824
|
+
name = "hyper-tls"
|
|
825
|
+
version = "0.6.0"
|
|
826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
827
|
+
checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
|
|
828
|
+
dependencies = [
|
|
829
|
+
"bytes",
|
|
830
|
+
"http-body-util",
|
|
831
|
+
"hyper",
|
|
832
|
+
"hyper-util",
|
|
833
|
+
"native-tls",
|
|
834
|
+
"tokio",
|
|
835
|
+
"tokio-native-tls",
|
|
836
|
+
"tower-service",
|
|
837
|
+
]
|
|
838
|
+
|
|
839
|
+
[[package]]
|
|
840
|
+
name = "hyper-util"
|
|
841
|
+
version = "0.1.20"
|
|
842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
843
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
844
|
+
dependencies = [
|
|
845
|
+
"base64",
|
|
846
|
+
"bytes",
|
|
847
|
+
"futures-channel",
|
|
848
|
+
"futures-util",
|
|
849
|
+
"http",
|
|
850
|
+
"http-body",
|
|
851
|
+
"hyper",
|
|
852
|
+
"ipnet",
|
|
853
|
+
"libc",
|
|
854
|
+
"percent-encoding",
|
|
855
|
+
"pin-project-lite",
|
|
856
|
+
"socket2",
|
|
857
|
+
"tokio",
|
|
858
|
+
"tower-service",
|
|
859
|
+
"tracing",
|
|
860
|
+
]
|
|
861
|
+
|
|
862
|
+
[[package]]
|
|
863
|
+
name = "iana-time-zone"
|
|
864
|
+
version = "0.1.65"
|
|
865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
866
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
867
|
+
dependencies = [
|
|
868
|
+
"android_system_properties",
|
|
869
|
+
"core-foundation-sys",
|
|
870
|
+
"iana-time-zone-haiku",
|
|
871
|
+
"js-sys",
|
|
872
|
+
"log",
|
|
873
|
+
"wasm-bindgen",
|
|
874
|
+
"windows-core",
|
|
875
|
+
]
|
|
876
|
+
|
|
877
|
+
[[package]]
|
|
878
|
+
name = "iana-time-zone-haiku"
|
|
879
|
+
version = "0.1.2"
|
|
880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
881
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
882
|
+
dependencies = [
|
|
883
|
+
"cc",
|
|
884
|
+
]
|
|
885
|
+
|
|
886
|
+
[[package]]
|
|
887
|
+
name = "icu_collections"
|
|
888
|
+
version = "2.2.0"
|
|
889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
890
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
891
|
+
dependencies = [
|
|
892
|
+
"displaydoc",
|
|
893
|
+
"potential_utf",
|
|
894
|
+
"utf8_iter",
|
|
895
|
+
"yoke",
|
|
896
|
+
"zerofrom",
|
|
897
|
+
"zerovec",
|
|
898
|
+
]
|
|
899
|
+
|
|
900
|
+
[[package]]
|
|
901
|
+
name = "icu_locale_core"
|
|
902
|
+
version = "2.2.0"
|
|
903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
905
|
+
dependencies = [
|
|
906
|
+
"displaydoc",
|
|
907
|
+
"litemap",
|
|
908
|
+
"tinystr",
|
|
909
|
+
"writeable",
|
|
910
|
+
"zerovec",
|
|
911
|
+
]
|
|
912
|
+
|
|
913
|
+
[[package]]
|
|
914
|
+
name = "icu_normalizer"
|
|
915
|
+
version = "2.2.0"
|
|
916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
917
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
918
|
+
dependencies = [
|
|
919
|
+
"icu_collections",
|
|
920
|
+
"icu_normalizer_data",
|
|
921
|
+
"icu_properties",
|
|
922
|
+
"icu_provider",
|
|
923
|
+
"smallvec",
|
|
924
|
+
"zerovec",
|
|
925
|
+
]
|
|
926
|
+
|
|
927
|
+
[[package]]
|
|
928
|
+
name = "icu_normalizer_data"
|
|
929
|
+
version = "2.2.0"
|
|
930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
931
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
932
|
+
|
|
933
|
+
[[package]]
|
|
934
|
+
name = "icu_properties"
|
|
935
|
+
version = "2.2.0"
|
|
936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
937
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
938
|
+
dependencies = [
|
|
939
|
+
"icu_collections",
|
|
940
|
+
"icu_locale_core",
|
|
941
|
+
"icu_properties_data",
|
|
942
|
+
"icu_provider",
|
|
943
|
+
"zerotrie",
|
|
944
|
+
"zerovec",
|
|
945
|
+
]
|
|
946
|
+
|
|
947
|
+
[[package]]
|
|
948
|
+
name = "icu_properties_data"
|
|
949
|
+
version = "2.2.0"
|
|
950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
952
|
+
|
|
953
|
+
[[package]]
|
|
954
|
+
name = "icu_provider"
|
|
955
|
+
version = "2.2.0"
|
|
956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
957
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
958
|
+
dependencies = [
|
|
959
|
+
"displaydoc",
|
|
960
|
+
"icu_locale_core",
|
|
961
|
+
"writeable",
|
|
962
|
+
"yoke",
|
|
963
|
+
"zerofrom",
|
|
964
|
+
"zerotrie",
|
|
965
|
+
"zerovec",
|
|
966
|
+
]
|
|
967
|
+
|
|
968
|
+
[[package]]
|
|
969
|
+
name = "id-arena"
|
|
970
|
+
version = "2.3.0"
|
|
971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
972
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
973
|
+
|
|
974
|
+
[[package]]
|
|
975
|
+
name = "idna"
|
|
976
|
+
version = "1.1.0"
|
|
977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
978
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
979
|
+
dependencies = [
|
|
980
|
+
"idna_adapter",
|
|
981
|
+
"smallvec",
|
|
982
|
+
"utf8_iter",
|
|
983
|
+
]
|
|
984
|
+
|
|
985
|
+
[[package]]
|
|
986
|
+
name = "idna_adapter"
|
|
987
|
+
version = "1.2.1"
|
|
988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
989
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
990
|
+
dependencies = [
|
|
991
|
+
"icu_normalizer",
|
|
992
|
+
"icu_properties",
|
|
993
|
+
]
|
|
994
|
+
|
|
995
|
+
[[package]]
|
|
996
|
+
name = "indexmap"
|
|
997
|
+
version = "2.13.1"
|
|
998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
999
|
+
checksum = "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff"
|
|
1000
|
+
dependencies = [
|
|
1001
|
+
"equivalent",
|
|
1002
|
+
"hashbrown 0.16.1",
|
|
1003
|
+
"serde",
|
|
1004
|
+
"serde_core",
|
|
1005
|
+
]
|
|
1006
|
+
|
|
1007
|
+
[[package]]
|
|
1008
|
+
name = "inferno"
|
|
1009
|
+
version = "0.12.6"
|
|
1010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1011
|
+
checksum = "90807d610575744524d9bdc69f3885d96f0e6c3354565b0828354a7ff2a262b8"
|
|
1012
|
+
dependencies = [
|
|
1013
|
+
"ahash",
|
|
1014
|
+
"clap",
|
|
1015
|
+
"crossbeam-channel",
|
|
1016
|
+
"crossbeam-utils",
|
|
1017
|
+
"dashmap",
|
|
1018
|
+
"env_logger 0.11.10",
|
|
1019
|
+
"indexmap",
|
|
1020
|
+
"itoa",
|
|
1021
|
+
"log",
|
|
1022
|
+
"num-format",
|
|
1023
|
+
"once_cell",
|
|
1024
|
+
"quick-xml",
|
|
1025
|
+
"rgb",
|
|
1026
|
+
"str_stack",
|
|
1027
|
+
]
|
|
1028
|
+
|
|
1029
|
+
[[package]]
|
|
1030
|
+
name = "ipnet"
|
|
1031
|
+
version = "2.12.0"
|
|
1032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1033
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
1034
|
+
|
|
1035
|
+
[[package]]
|
|
1036
|
+
name = "iri-string"
|
|
1037
|
+
version = "0.7.12"
|
|
1038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1039
|
+
checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
|
|
1040
|
+
dependencies = [
|
|
1041
|
+
"memchr",
|
|
1042
|
+
"serde",
|
|
1043
|
+
]
|
|
1044
|
+
|
|
1045
|
+
[[package]]
|
|
1046
|
+
name = "is-terminal"
|
|
1047
|
+
version = "0.4.17"
|
|
1048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1049
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
1050
|
+
dependencies = [
|
|
1051
|
+
"hermit-abi",
|
|
1052
|
+
"libc",
|
|
1053
|
+
"windows-sys",
|
|
1054
|
+
]
|
|
1055
|
+
|
|
1056
|
+
[[package]]
|
|
1057
|
+
name = "is_terminal_polyfill"
|
|
1058
|
+
version = "1.70.2"
|
|
1059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1060
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1061
|
+
|
|
1062
|
+
[[package]]
|
|
1063
|
+
name = "itertools"
|
|
1064
|
+
version = "0.13.0"
|
|
1065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
1067
|
+
dependencies = [
|
|
1068
|
+
"either",
|
|
1069
|
+
]
|
|
1070
|
+
|
|
1071
|
+
[[package]]
|
|
1072
|
+
name = "itoa"
|
|
1073
|
+
version = "1.0.18"
|
|
1074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1075
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1076
|
+
|
|
1077
|
+
[[package]]
|
|
1078
|
+
name = "jiff"
|
|
1079
|
+
version = "0.2.23"
|
|
1080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
+
checksum = "1a3546dc96b6d42c5f24902af9e2538e82e39ad350b0c766eb3fbf2d8f3d8359"
|
|
1082
|
+
dependencies = [
|
|
1083
|
+
"jiff-static",
|
|
1084
|
+
"log",
|
|
1085
|
+
"portable-atomic",
|
|
1086
|
+
"portable-atomic-util",
|
|
1087
|
+
"serde_core",
|
|
1088
|
+
]
|
|
1089
|
+
|
|
1090
|
+
[[package]]
|
|
1091
|
+
name = "jiff-static"
|
|
1092
|
+
version = "0.2.23"
|
|
1093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1094
|
+
checksum = "2a8c8b344124222efd714b73bb41f8b5120b27a7cc1c75593a6ff768d9d05aa4"
|
|
1095
|
+
dependencies = [
|
|
1096
|
+
"proc-macro2",
|
|
1097
|
+
"quote",
|
|
1098
|
+
"syn",
|
|
1099
|
+
]
|
|
1100
|
+
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "js-sys"
|
|
1103
|
+
version = "0.3.94"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
|
|
1106
|
+
dependencies = [
|
|
1107
|
+
"cfg-if",
|
|
1108
|
+
"futures-util",
|
|
1109
|
+
"once_cell",
|
|
1110
|
+
"wasm-bindgen",
|
|
1111
|
+
]
|
|
1112
|
+
|
|
1113
|
+
[[package]]
|
|
1114
|
+
name = "lazy_static"
|
|
1115
|
+
version = "1.5.0"
|
|
1116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1117
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1118
|
+
|
|
1119
|
+
[[package]]
|
|
1120
|
+
name = "leb128fmt"
|
|
1121
|
+
version = "0.1.0"
|
|
1122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1123
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
1124
|
+
|
|
1125
|
+
[[package]]
|
|
1126
|
+
name = "libc"
|
|
1127
|
+
version = "0.2.186"
|
|
1128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1129
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
1130
|
+
|
|
1131
|
+
[[package]]
|
|
1132
|
+
name = "libflate"
|
|
1133
|
+
version = "2.2.1"
|
|
1134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1135
|
+
checksum = "e3248b8d211bd23a104a42d81b4fa8bb8ac4a3b75e7a43d85d2c9ccb6179cd74"
|
|
1136
|
+
dependencies = [
|
|
1137
|
+
"adler32",
|
|
1138
|
+
"core2",
|
|
1139
|
+
"crc32fast",
|
|
1140
|
+
"dary_heap",
|
|
1141
|
+
"libflate_lz77",
|
|
1142
|
+
]
|
|
1143
|
+
|
|
1144
|
+
[[package]]
|
|
1145
|
+
name = "libflate_lz77"
|
|
1146
|
+
version = "2.2.0"
|
|
1147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1148
|
+
checksum = "a599cb10a9cd92b1300debcef28da8f70b935ec937f44fcd1b70a7c986a11c5c"
|
|
1149
|
+
dependencies = [
|
|
1150
|
+
"core2",
|
|
1151
|
+
"hashbrown 0.16.1",
|
|
1152
|
+
"rle-decode-fast",
|
|
1153
|
+
]
|
|
1154
|
+
|
|
1155
|
+
[[package]]
|
|
1156
|
+
name = "libloading"
|
|
1157
|
+
version = "0.8.9"
|
|
1158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1159
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
1160
|
+
dependencies = [
|
|
1161
|
+
"cfg-if",
|
|
1162
|
+
"windows-link",
|
|
1163
|
+
]
|
|
1164
|
+
|
|
1165
|
+
[[package]]
|
|
1166
|
+
name = "libproc"
|
|
1167
|
+
version = "0.14.11"
|
|
1168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1169
|
+
checksum = "a54ad7278b8bc5301d5ffd2a94251c004feb971feba96c971ea4063645990757"
|
|
1170
|
+
dependencies = [
|
|
1171
|
+
"bindgen 0.72.1",
|
|
1172
|
+
"errno",
|
|
1173
|
+
"libc",
|
|
1174
|
+
]
|
|
1175
|
+
|
|
1176
|
+
[[package]]
|
|
1177
|
+
name = "libredox"
|
|
1178
|
+
version = "0.1.15"
|
|
1179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1180
|
+
checksum = "7ddbf48fd451246b1f8c2610bd3b4ac0cc6e149d89832867093ab69a17194f08"
|
|
1181
|
+
dependencies = [
|
|
1182
|
+
"libc",
|
|
1183
|
+
]
|
|
1184
|
+
|
|
1185
|
+
[[package]]
|
|
1186
|
+
name = "linux-raw-sys"
|
|
1187
|
+
version = "0.12.1"
|
|
1188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1189
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
1190
|
+
|
|
1191
|
+
[[package]]
|
|
1192
|
+
name = "litemap"
|
|
1193
|
+
version = "0.8.2"
|
|
1194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1195
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
1196
|
+
|
|
1197
|
+
[[package]]
|
|
1198
|
+
name = "lock_api"
|
|
1199
|
+
version = "0.4.14"
|
|
1200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1201
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1202
|
+
dependencies = [
|
|
1203
|
+
"scopeguard",
|
|
1204
|
+
]
|
|
1205
|
+
|
|
1206
|
+
[[package]]
|
|
1207
|
+
name = "log"
|
|
1208
|
+
version = "0.4.29"
|
|
1209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1210
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1211
|
+
|
|
1212
|
+
[[package]]
|
|
1213
|
+
name = "mach"
|
|
1214
|
+
version = "0.3.2"
|
|
1215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1216
|
+
checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
|
|
1217
|
+
dependencies = [
|
|
1218
|
+
"libc",
|
|
1219
|
+
]
|
|
1220
|
+
|
|
1221
|
+
[[package]]
|
|
1222
|
+
name = "mach2"
|
|
1223
|
+
version = "0.4.3"
|
|
1224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1225
|
+
checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44"
|
|
1226
|
+
dependencies = [
|
|
1227
|
+
"libc",
|
|
1228
|
+
]
|
|
1229
|
+
|
|
1230
|
+
[[package]]
|
|
1231
|
+
name = "mach_o_sys"
|
|
1232
|
+
version = "0.1.1"
|
|
1233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1234
|
+
checksum = "3e854583a83f20cf329bb9283366335387f7db59d640d1412167e05fedb98826"
|
|
1235
|
+
|
|
1236
|
+
[[package]]
|
|
1237
|
+
name = "memchr"
|
|
1238
|
+
version = "2.8.0"
|
|
1239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1240
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
1241
|
+
|
|
1242
|
+
[[package]]
|
|
1243
|
+
name = "memmap2"
|
|
1244
|
+
version = "0.9.10"
|
|
1245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1246
|
+
checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
|
|
1247
|
+
dependencies = [
|
|
1248
|
+
"libc",
|
|
1249
|
+
]
|
|
1250
|
+
|
|
1251
|
+
[[package]]
|
|
1252
|
+
name = "minimal-lexical"
|
|
1253
|
+
version = "0.2.1"
|
|
1254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1255
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1256
|
+
|
|
1257
|
+
[[package]]
|
|
1258
|
+
name = "miniz_oxide"
|
|
1259
|
+
version = "0.8.9"
|
|
1260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1261
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1262
|
+
dependencies = [
|
|
1263
|
+
"adler2",
|
|
1264
|
+
"simd-adler32",
|
|
1265
|
+
]
|
|
1266
|
+
|
|
1267
|
+
[[package]]
|
|
1268
|
+
name = "mio"
|
|
1269
|
+
version = "1.2.0"
|
|
1270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1271
|
+
checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
|
|
1272
|
+
dependencies = [
|
|
1273
|
+
"libc",
|
|
1274
|
+
"wasi",
|
|
1275
|
+
"windows-sys",
|
|
1276
|
+
]
|
|
1277
|
+
|
|
1278
|
+
[[package]]
|
|
1279
|
+
name = "names"
|
|
1280
|
+
version = "0.14.0"
|
|
1281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1282
|
+
checksum = "7bddcd3bf5144b6392de80e04c347cd7fab2508f6df16a85fc496ecd5cec39bc"
|
|
1283
|
+
dependencies = [
|
|
1284
|
+
"rand 0.8.6",
|
|
1285
|
+
]
|
|
1286
|
+
|
|
1287
|
+
[[package]]
|
|
1288
|
+
name = "native-tls"
|
|
1289
|
+
version = "0.2.18"
|
|
1290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1291
|
+
checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
|
|
1292
|
+
dependencies = [
|
|
1293
|
+
"libc",
|
|
1294
|
+
"log",
|
|
1295
|
+
"openssl",
|
|
1296
|
+
"openssl-probe",
|
|
1297
|
+
"openssl-sys",
|
|
1298
|
+
"schannel",
|
|
1299
|
+
"security-framework",
|
|
1300
|
+
"security-framework-sys",
|
|
1301
|
+
"tempfile",
|
|
1302
|
+
]
|
|
1303
|
+
|
|
1304
|
+
[[package]]
|
|
1305
|
+
name = "nix"
|
|
1306
|
+
version = "0.31.3"
|
|
1307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1308
|
+
checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
|
|
1309
|
+
dependencies = [
|
|
1310
|
+
"bitflags",
|
|
1311
|
+
"cfg-if",
|
|
1312
|
+
"cfg_aliases",
|
|
1313
|
+
"libc",
|
|
1314
|
+
]
|
|
1315
|
+
|
|
1316
|
+
[[package]]
|
|
1317
|
+
name = "nom"
|
|
1318
|
+
version = "7.1.3"
|
|
1319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1320
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
1321
|
+
dependencies = [
|
|
1322
|
+
"memchr",
|
|
1323
|
+
"minimal-lexical",
|
|
1324
|
+
]
|
|
1325
|
+
|
|
1326
|
+
[[package]]
|
|
1327
|
+
name = "num-format"
|
|
1328
|
+
version = "0.4.4"
|
|
1329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1330
|
+
checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3"
|
|
1331
|
+
dependencies = [
|
|
1332
|
+
"arrayvec",
|
|
1333
|
+
"itoa",
|
|
1334
|
+
]
|
|
1335
|
+
|
|
1336
|
+
[[package]]
|
|
1337
|
+
name = "num-traits"
|
|
1338
|
+
version = "0.2.19"
|
|
1339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1340
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1341
|
+
dependencies = [
|
|
1342
|
+
"autocfg",
|
|
1343
|
+
]
|
|
1344
|
+
|
|
1345
|
+
[[package]]
|
|
1346
|
+
name = "objc2"
|
|
1347
|
+
version = "0.6.4"
|
|
1348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1349
|
+
checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
|
|
1350
|
+
dependencies = [
|
|
1351
|
+
"objc2-encode",
|
|
1352
|
+
]
|
|
1353
|
+
|
|
1354
|
+
[[package]]
|
|
1355
|
+
name = "objc2-encode"
|
|
1356
|
+
version = "4.1.0"
|
|
1357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1358
|
+
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
|
|
1359
|
+
|
|
1360
|
+
[[package]]
|
|
1361
|
+
name = "object"
|
|
1362
|
+
version = "0.39.1"
|
|
1363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1364
|
+
checksum = "2e5a6c098c7a3b6547378093f5cc30bc54fd361ce711e05293a5cc589562739b"
|
|
1365
|
+
dependencies = [
|
|
1366
|
+
"flate2",
|
|
1367
|
+
"memchr",
|
|
1368
|
+
"ruzstd",
|
|
1369
|
+
]
|
|
1370
|
+
|
|
1371
|
+
[[package]]
|
|
1372
|
+
name = "once_cell"
|
|
1373
|
+
version = "1.21.4"
|
|
1374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1375
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1376
|
+
|
|
1377
|
+
[[package]]
|
|
1378
|
+
name = "once_cell_polyfill"
|
|
1379
|
+
version = "1.70.2"
|
|
1380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1381
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
1382
|
+
|
|
1383
|
+
[[package]]
|
|
1384
|
+
name = "openssl"
|
|
1385
|
+
version = "0.10.79"
|
|
1386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1387
|
+
checksum = "bf0b434746ee2832f4f0baf10137e1cabb18cbe6912c69e2e33263c45250f542"
|
|
1388
|
+
dependencies = [
|
|
1389
|
+
"bitflags",
|
|
1390
|
+
"cfg-if",
|
|
1391
|
+
"foreign-types",
|
|
1392
|
+
"libc",
|
|
1393
|
+
"openssl-macros",
|
|
1394
|
+
"openssl-sys",
|
|
1395
|
+
]
|
|
1396
|
+
|
|
1397
|
+
[[package]]
|
|
1398
|
+
name = "openssl-macros"
|
|
1399
|
+
version = "0.1.1"
|
|
1400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
1402
|
+
dependencies = [
|
|
1403
|
+
"proc-macro2",
|
|
1404
|
+
"quote",
|
|
1405
|
+
"syn",
|
|
1406
|
+
]
|
|
1407
|
+
|
|
1408
|
+
[[package]]
|
|
1409
|
+
name = "openssl-probe"
|
|
1410
|
+
version = "0.2.1"
|
|
1411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1412
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
1413
|
+
|
|
1414
|
+
[[package]]
|
|
1415
|
+
name = "openssl-sys"
|
|
1416
|
+
version = "0.9.115"
|
|
1417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1418
|
+
checksum = "158fe5b292746440aa6e7a7e690e55aeb72d41505e2804c23c6973ad0e9c9781"
|
|
1419
|
+
dependencies = [
|
|
1420
|
+
"cc",
|
|
1421
|
+
"libc",
|
|
1422
|
+
"pkg-config",
|
|
1423
|
+
"vcpkg",
|
|
1424
|
+
]
|
|
1425
|
+
|
|
1426
|
+
[[package]]
|
|
1427
|
+
name = "option-ext"
|
|
1428
|
+
version = "0.2.0"
|
|
1429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1430
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
1431
|
+
|
|
1432
|
+
[[package]]
|
|
1433
|
+
name = "parking_lot_core"
|
|
1434
|
+
version = "0.9.12"
|
|
1435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1436
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1437
|
+
dependencies = [
|
|
1438
|
+
"cfg-if",
|
|
1439
|
+
"libc",
|
|
1440
|
+
"redox_syscall",
|
|
1441
|
+
"smallvec",
|
|
1442
|
+
"windows-link",
|
|
1443
|
+
]
|
|
1444
|
+
|
|
1445
|
+
[[package]]
|
|
1446
|
+
name = "percent-encoding"
|
|
1447
|
+
version = "2.3.2"
|
|
1448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1449
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1450
|
+
|
|
1451
|
+
[[package]]
|
|
1452
|
+
name = "pin-project-lite"
|
|
1453
|
+
version = "0.2.17"
|
|
1454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1455
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1456
|
+
|
|
1457
|
+
[[package]]
|
|
1458
|
+
name = "pkg-config"
|
|
1459
|
+
version = "0.3.32"
|
|
1460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1461
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
1462
|
+
|
|
1463
|
+
[[package]]
|
|
1464
|
+
name = "plain"
|
|
1465
|
+
version = "0.2.3"
|
|
1466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1467
|
+
checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
|
|
1468
|
+
|
|
1469
|
+
[[package]]
|
|
1470
|
+
name = "portable-atomic"
|
|
1471
|
+
version = "1.13.1"
|
|
1472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1473
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
1474
|
+
|
|
1475
|
+
[[package]]
|
|
1476
|
+
name = "portable-atomic-util"
|
|
1477
|
+
version = "0.2.6"
|
|
1478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1479
|
+
checksum = "091397be61a01d4be58e7841595bd4bfedb15f1cd54977d79b8271e94ed799a3"
|
|
1480
|
+
dependencies = [
|
|
1481
|
+
"portable-atomic",
|
|
1482
|
+
]
|
|
1483
|
+
|
|
1484
|
+
[[package]]
|
|
1485
|
+
name = "potential_utf"
|
|
1486
|
+
version = "0.1.5"
|
|
1487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1488
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
1489
|
+
dependencies = [
|
|
1490
|
+
"zerovec",
|
|
1491
|
+
]
|
|
1492
|
+
|
|
1493
|
+
[[package]]
|
|
1494
|
+
name = "ppv-lite86"
|
|
1495
|
+
version = "0.2.21"
|
|
1496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1497
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1498
|
+
dependencies = [
|
|
1499
|
+
"zerocopy",
|
|
1500
|
+
]
|
|
1501
|
+
|
|
1502
|
+
[[package]]
|
|
1503
|
+
name = "pretty_env_logger"
|
|
1504
|
+
version = "0.5.0"
|
|
1505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1506
|
+
checksum = "865724d4dbe39d9f3dd3b52b88d859d66bcb2d6a0acfd5ea68a65fb66d4bdc1c"
|
|
1507
|
+
dependencies = [
|
|
1508
|
+
"env_logger 0.10.2",
|
|
1509
|
+
"log",
|
|
1510
|
+
]
|
|
1511
|
+
|
|
1512
|
+
[[package]]
|
|
1513
|
+
name = "prettyplease"
|
|
1514
|
+
version = "0.2.37"
|
|
1515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1516
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
1517
|
+
dependencies = [
|
|
1518
|
+
"proc-macro2",
|
|
1519
|
+
"syn",
|
|
1520
|
+
]
|
|
1521
|
+
|
|
1522
|
+
[[package]]
|
|
1523
|
+
name = "proc-macro2"
|
|
1524
|
+
version = "1.0.106"
|
|
1525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1526
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1527
|
+
dependencies = [
|
|
1528
|
+
"unicode-ident",
|
|
1529
|
+
]
|
|
1530
|
+
|
|
1531
|
+
[[package]]
|
|
1532
|
+
name = "proc-maps"
|
|
1533
|
+
version = "0.4.0"
|
|
1534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1535
|
+
checksum = "3db44c5aa60e193a25fcd93bb9ed27423827e8f118897866f946e2cf936c44fb"
|
|
1536
|
+
dependencies = [
|
|
1537
|
+
"anyhow",
|
|
1538
|
+
"bindgen 0.70.1",
|
|
1539
|
+
"libc",
|
|
1540
|
+
"libproc",
|
|
1541
|
+
"mach2",
|
|
1542
|
+
"winapi",
|
|
1543
|
+
]
|
|
1544
|
+
|
|
1545
|
+
[[package]]
|
|
1546
|
+
name = "prost"
|
|
1547
|
+
version = "0.14.3"
|
|
1548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1549
|
+
checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568"
|
|
1550
|
+
dependencies = [
|
|
1551
|
+
"bytes",
|
|
1552
|
+
"prost-derive",
|
|
1553
|
+
]
|
|
1554
|
+
|
|
1555
|
+
[[package]]
|
|
1556
|
+
name = "prost-derive"
|
|
1557
|
+
version = "0.14.3"
|
|
1558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1559
|
+
checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b"
|
|
1560
|
+
dependencies = [
|
|
1561
|
+
"anyhow",
|
|
1562
|
+
"itertools",
|
|
1563
|
+
"proc-macro2",
|
|
1564
|
+
"quote",
|
|
1565
|
+
"syn",
|
|
1566
|
+
]
|
|
1567
|
+
|
|
1568
|
+
[[package]]
|
|
1569
|
+
name = "pyroscope"
|
|
1570
|
+
version = "2.0.3"
|
|
1571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1572
|
+
checksum = "fc050356140f6c47dcaab95b6554ce12d461e4902c0a5baf4e888fcc86dcfaf4"
|
|
1573
|
+
dependencies = [
|
|
1574
|
+
"lazy_static",
|
|
1575
|
+
"libc",
|
|
1576
|
+
"libflate",
|
|
1577
|
+
"log",
|
|
1578
|
+
"names",
|
|
1579
|
+
"prost",
|
|
1580
|
+
"reqwest",
|
|
1581
|
+
"serde_json",
|
|
1582
|
+
"thiserror",
|
|
1583
|
+
"url",
|
|
1584
|
+
"uuid",
|
|
1585
|
+
]
|
|
1586
|
+
|
|
1587
|
+
[[package]]
|
|
1588
|
+
name = "quick-xml"
|
|
1589
|
+
version = "0.39.2"
|
|
1590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1591
|
+
checksum = "958f21e8e7ceb5a1aa7fa87fab28e7c75976e0bfe7e23ff069e0a260f894067d"
|
|
1592
|
+
dependencies = [
|
|
1593
|
+
"memchr",
|
|
1594
|
+
]
|
|
1595
|
+
|
|
1596
|
+
[[package]]
|
|
1597
|
+
name = "quote"
|
|
1598
|
+
version = "1.0.45"
|
|
1599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1600
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
1601
|
+
dependencies = [
|
|
1602
|
+
"proc-macro2",
|
|
1603
|
+
]
|
|
1604
|
+
|
|
1605
|
+
[[package]]
|
|
1606
|
+
name = "r-efi"
|
|
1607
|
+
version = "5.3.0"
|
|
1608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1609
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1610
|
+
|
|
1611
|
+
[[package]]
|
|
1612
|
+
name = "r-efi"
|
|
1613
|
+
version = "6.0.0"
|
|
1614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1615
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1616
|
+
|
|
1617
|
+
[[package]]
|
|
1618
|
+
name = "rand"
|
|
1619
|
+
version = "0.8.6"
|
|
1620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1621
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
1622
|
+
dependencies = [
|
|
1623
|
+
"libc",
|
|
1624
|
+
"rand_chacha",
|
|
1625
|
+
"rand_core 0.6.4",
|
|
1626
|
+
]
|
|
1627
|
+
|
|
1628
|
+
[[package]]
|
|
1629
|
+
name = "rand"
|
|
1630
|
+
version = "0.10.0"
|
|
1631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1632
|
+
checksum = "bc266eb313df6c5c09c1c7b1fbe2510961e5bcd3add930c1e31f7ed9da0feff8"
|
|
1633
|
+
dependencies = [
|
|
1634
|
+
"chacha20",
|
|
1635
|
+
"getrandom 0.4.2",
|
|
1636
|
+
"rand_core 0.10.0",
|
|
1637
|
+
]
|
|
1638
|
+
|
|
1639
|
+
[[package]]
|
|
1640
|
+
name = "rand_chacha"
|
|
1641
|
+
version = "0.3.1"
|
|
1642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1643
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1644
|
+
dependencies = [
|
|
1645
|
+
"ppv-lite86",
|
|
1646
|
+
"rand_core 0.6.4",
|
|
1647
|
+
]
|
|
1648
|
+
|
|
1649
|
+
[[package]]
|
|
1650
|
+
name = "rand_core"
|
|
1651
|
+
version = "0.6.4"
|
|
1652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1653
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1654
|
+
dependencies = [
|
|
1655
|
+
"getrandom 0.2.17",
|
|
1656
|
+
]
|
|
1657
|
+
|
|
1658
|
+
[[package]]
|
|
1659
|
+
name = "rand_core"
|
|
1660
|
+
version = "0.10.0"
|
|
1661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1662
|
+
checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba"
|
|
1663
|
+
|
|
1664
|
+
[[package]]
|
|
1665
|
+
name = "rbspy"
|
|
1666
|
+
version = "0.47.0"
|
|
1667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1668
|
+
checksum = "b6ec6d06da00c4e2be52258c4ca95aee1be88f28c6f952ac70f10ab911eaa2cd"
|
|
1669
|
+
dependencies = [
|
|
1670
|
+
"anyhow",
|
|
1671
|
+
"chrono",
|
|
1672
|
+
"clap",
|
|
1673
|
+
"ctrlc",
|
|
1674
|
+
"directories",
|
|
1675
|
+
"env_logger 0.11.10",
|
|
1676
|
+
"flate2",
|
|
1677
|
+
"inferno",
|
|
1678
|
+
"lazy_static",
|
|
1679
|
+
"libc",
|
|
1680
|
+
"libproc",
|
|
1681
|
+
"log",
|
|
1682
|
+
"memmap2",
|
|
1683
|
+
"nix",
|
|
1684
|
+
"proc-maps",
|
|
1685
|
+
"prost",
|
|
1686
|
+
"rand 0.10.0",
|
|
1687
|
+
"rbspy-ruby-structs",
|
|
1688
|
+
"remoteprocess",
|
|
1689
|
+
"semver",
|
|
1690
|
+
"serde",
|
|
1691
|
+
"serde_derive",
|
|
1692
|
+
"serde_json",
|
|
1693
|
+
"spytools",
|
|
1694
|
+
"tempfile",
|
|
1695
|
+
"terminal_size",
|
|
1696
|
+
"thiserror",
|
|
1697
|
+
"winapi",
|
|
1698
|
+
]
|
|
1699
|
+
|
|
1700
|
+
[[package]]
|
|
1701
|
+
name = "rbspy-ruby-structs"
|
|
1702
|
+
version = "0.47.0"
|
|
1703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1704
|
+
checksum = "a0c41fc85149e6f02599cbb59c183ae82658080a35e17663160c6ecdf4ef0c3a"
|
|
1705
|
+
|
|
1706
|
+
[[package]]
|
|
1707
|
+
name = "read-process-memory"
|
|
1708
|
+
version = "0.1.6"
|
|
1709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1710
|
+
checksum = "8497683b2f0b6887786f1928c118f26ecc6bb3d78bbb6ed23e8e7ba110af3bb0"
|
|
1711
|
+
dependencies = [
|
|
1712
|
+
"libc",
|
|
1713
|
+
"log",
|
|
1714
|
+
"mach",
|
|
1715
|
+
"winapi",
|
|
1716
|
+
]
|
|
1717
|
+
|
|
1718
|
+
[[package]]
|
|
1719
|
+
name = "redox_syscall"
|
|
1720
|
+
version = "0.5.18"
|
|
1721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1722
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1723
|
+
dependencies = [
|
|
1724
|
+
"bitflags",
|
|
1725
|
+
]
|
|
1726
|
+
|
|
1727
|
+
[[package]]
|
|
1728
|
+
name = "redox_users"
|
|
1729
|
+
version = "0.5.2"
|
|
1730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
+
checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
|
|
1732
|
+
dependencies = [
|
|
1733
|
+
"getrandom 0.2.17",
|
|
1734
|
+
"libredox",
|
|
1735
|
+
"thiserror",
|
|
1736
|
+
]
|
|
1737
|
+
|
|
1738
|
+
[[package]]
|
|
1739
|
+
name = "regex"
|
|
1740
|
+
version = "1.12.3"
|
|
1741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1742
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
1743
|
+
dependencies = [
|
|
1744
|
+
"aho-corasick",
|
|
1745
|
+
"memchr",
|
|
1746
|
+
"regex-automata",
|
|
1747
|
+
"regex-syntax",
|
|
1748
|
+
]
|
|
1749
|
+
|
|
1750
|
+
[[package]]
|
|
1751
|
+
name = "regex-automata"
|
|
1752
|
+
version = "0.4.14"
|
|
1753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1754
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
1755
|
+
dependencies = [
|
|
1756
|
+
"aho-corasick",
|
|
1757
|
+
"memchr",
|
|
1758
|
+
"regex-syntax",
|
|
1759
|
+
]
|
|
1760
|
+
|
|
1761
|
+
[[package]]
|
|
1762
|
+
name = "regex-syntax"
|
|
1763
|
+
version = "0.8.10"
|
|
1764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1765
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
1766
|
+
|
|
1767
|
+
[[package]]
|
|
1768
|
+
name = "remoteprocess"
|
|
1769
|
+
version = "0.5.2"
|
|
1770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1771
|
+
checksum = "1861c221cfbe6c963fd804eb56c64c0fa25d133b06537ac6cba7ca56085ae556"
|
|
1772
|
+
dependencies = [
|
|
1773
|
+
"addr2line",
|
|
1774
|
+
"cfg-if",
|
|
1775
|
+
"goblin",
|
|
1776
|
+
"lazy_static",
|
|
1777
|
+
"libc",
|
|
1778
|
+
"libproc",
|
|
1779
|
+
"log",
|
|
1780
|
+
"mach",
|
|
1781
|
+
"mach_o_sys",
|
|
1782
|
+
"memmap2",
|
|
1783
|
+
"nix",
|
|
1784
|
+
"object",
|
|
1785
|
+
"proc-maps",
|
|
1786
|
+
"read-process-memory",
|
|
1787
|
+
"regex",
|
|
1788
|
+
"winapi",
|
|
1789
|
+
]
|
|
1790
|
+
|
|
1791
|
+
[[package]]
|
|
1792
|
+
name = "reqwest"
|
|
1793
|
+
version = "0.13.2"
|
|
1794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1795
|
+
checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801"
|
|
1796
|
+
dependencies = [
|
|
1797
|
+
"base64",
|
|
1798
|
+
"bytes",
|
|
1799
|
+
"futures-channel",
|
|
1800
|
+
"futures-core",
|
|
1801
|
+
"futures-util",
|
|
1802
|
+
"http",
|
|
1803
|
+
"http-body",
|
|
1804
|
+
"http-body-util",
|
|
1805
|
+
"hyper",
|
|
1806
|
+
"hyper-tls",
|
|
1807
|
+
"hyper-util",
|
|
1808
|
+
"js-sys",
|
|
1809
|
+
"log",
|
|
1810
|
+
"native-tls",
|
|
1811
|
+
"percent-encoding",
|
|
1812
|
+
"pin-project-lite",
|
|
1813
|
+
"rustls-pki-types",
|
|
1814
|
+
"serde",
|
|
1815
|
+
"serde_urlencoded",
|
|
1816
|
+
"sync_wrapper",
|
|
1817
|
+
"tokio",
|
|
1818
|
+
"tokio-native-tls",
|
|
1819
|
+
"tower",
|
|
1820
|
+
"tower-http",
|
|
1821
|
+
"tower-service",
|
|
1822
|
+
"url",
|
|
1823
|
+
"wasm-bindgen",
|
|
1824
|
+
"wasm-bindgen-futures",
|
|
1825
|
+
"web-sys",
|
|
1826
|
+
]
|
|
1827
|
+
|
|
1828
|
+
[[package]]
|
|
1829
|
+
name = "rgb"
|
|
1830
|
+
version = "0.8.53"
|
|
1831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1832
|
+
checksum = "47b34b781b31e5d73e9fbc8689c70551fd1ade9a19e3e28cfec8580a79290cc4"
|
|
1833
|
+
dependencies = [
|
|
1834
|
+
"bytemuck",
|
|
1835
|
+
]
|
|
1836
|
+
|
|
1837
|
+
[[package]]
|
|
1838
|
+
name = "rle-decode-fast"
|
|
1839
|
+
version = "1.0.3"
|
|
1840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1841
|
+
checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422"
|
|
1842
|
+
|
|
1843
|
+
[[package]]
|
|
1844
|
+
name = "rustc-demangle"
|
|
1845
|
+
version = "0.1.27"
|
|
1846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1847
|
+
checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d"
|
|
1848
|
+
|
|
1849
|
+
[[package]]
|
|
1850
|
+
name = "rustc-hash"
|
|
1851
|
+
version = "1.1.0"
|
|
1852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1853
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
1854
|
+
|
|
1855
|
+
[[package]]
|
|
1856
|
+
name = "rustc-hash"
|
|
1857
|
+
version = "2.1.2"
|
|
1858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1859
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
1860
|
+
|
|
1861
|
+
[[package]]
|
|
1862
|
+
name = "rustix"
|
|
1863
|
+
version = "1.1.4"
|
|
1864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1865
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1866
|
+
dependencies = [
|
|
1867
|
+
"bitflags",
|
|
1868
|
+
"errno",
|
|
1869
|
+
"libc",
|
|
1870
|
+
"linux-raw-sys",
|
|
1871
|
+
"windows-sys",
|
|
1872
|
+
]
|
|
1873
|
+
|
|
1874
|
+
[[package]]
|
|
1875
|
+
name = "rustls-pki-types"
|
|
1876
|
+
version = "1.14.0"
|
|
1877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1878
|
+
checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
|
|
1879
|
+
dependencies = [
|
|
1880
|
+
"zeroize",
|
|
1881
|
+
]
|
|
1882
|
+
|
|
1883
|
+
[[package]]
|
|
1884
|
+
name = "rustversion"
|
|
1885
|
+
version = "1.0.22"
|
|
1886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1887
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1888
|
+
|
|
1889
|
+
[[package]]
|
|
1890
|
+
name = "ruzstd"
|
|
1891
|
+
version = "0.8.2"
|
|
1892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1893
|
+
checksum = "e5ff0cc5e135c8870a775d3320910cd9b564ec036b4dc0b8741629020be63f01"
|
|
1894
|
+
dependencies = [
|
|
1895
|
+
"twox-hash",
|
|
1896
|
+
]
|
|
1897
|
+
|
|
1898
|
+
[[package]]
|
|
1899
|
+
name = "ryu"
|
|
1900
|
+
version = "1.0.23"
|
|
1901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1902
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1903
|
+
|
|
1904
|
+
[[package]]
|
|
1905
|
+
name = "schannel"
|
|
1906
|
+
version = "0.1.29"
|
|
1907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1908
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
1909
|
+
dependencies = [
|
|
1910
|
+
"windows-sys",
|
|
1911
|
+
]
|
|
1912
|
+
|
|
1913
|
+
[[package]]
|
|
1914
|
+
name = "scopeguard"
|
|
1915
|
+
version = "1.2.0"
|
|
1916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1917
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1918
|
+
|
|
1919
|
+
[[package]]
|
|
1920
|
+
name = "scroll"
|
|
1921
|
+
version = "0.13.0"
|
|
1922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1923
|
+
checksum = "c1257cd4248b4132760d6524d6dda4e053bc648c9070b960929bf50cfb1e7add"
|
|
1924
|
+
dependencies = [
|
|
1925
|
+
"scroll_derive",
|
|
1926
|
+
]
|
|
1927
|
+
|
|
1928
|
+
[[package]]
|
|
1929
|
+
name = "scroll_derive"
|
|
1930
|
+
version = "0.13.1"
|
|
1931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1932
|
+
checksum = "ed76efe62313ab6610570951494bdaa81568026e0318eaa55f167de70eeea67d"
|
|
1933
|
+
dependencies = [
|
|
1934
|
+
"proc-macro2",
|
|
1935
|
+
"quote",
|
|
1936
|
+
"syn",
|
|
1937
|
+
]
|
|
1938
|
+
|
|
1939
|
+
[[package]]
|
|
1940
|
+
name = "security-framework"
|
|
1941
|
+
version = "3.7.0"
|
|
1942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1943
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
1944
|
+
dependencies = [
|
|
1945
|
+
"bitflags",
|
|
1946
|
+
"core-foundation",
|
|
1947
|
+
"core-foundation-sys",
|
|
1948
|
+
"libc",
|
|
1949
|
+
"security-framework-sys",
|
|
1950
|
+
]
|
|
1951
|
+
|
|
1952
|
+
[[package]]
|
|
1953
|
+
name = "security-framework-sys"
|
|
1954
|
+
version = "2.17.0"
|
|
1955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1956
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
1957
|
+
dependencies = [
|
|
1958
|
+
"core-foundation-sys",
|
|
1959
|
+
"libc",
|
|
1960
|
+
]
|
|
1961
|
+
|
|
1962
|
+
[[package]]
|
|
1963
|
+
name = "semver"
|
|
1964
|
+
version = "1.0.28"
|
|
1965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1966
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1967
|
+
|
|
1968
|
+
[[package]]
|
|
1969
|
+
name = "serde"
|
|
1970
|
+
version = "1.0.228"
|
|
1971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1972
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1973
|
+
dependencies = [
|
|
1974
|
+
"serde_core",
|
|
1975
|
+
"serde_derive",
|
|
1976
|
+
]
|
|
1977
|
+
|
|
1978
|
+
[[package]]
|
|
1979
|
+
name = "serde_core"
|
|
1980
|
+
version = "1.0.228"
|
|
1981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1982
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1983
|
+
dependencies = [
|
|
1984
|
+
"serde_derive",
|
|
1985
|
+
]
|
|
1986
|
+
|
|
1987
|
+
[[package]]
|
|
1988
|
+
name = "serde_derive"
|
|
1989
|
+
version = "1.0.228"
|
|
1990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1991
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1992
|
+
dependencies = [
|
|
1993
|
+
"proc-macro2",
|
|
1994
|
+
"quote",
|
|
1995
|
+
"syn",
|
|
1996
|
+
]
|
|
1997
|
+
|
|
1998
|
+
[[package]]
|
|
1999
|
+
name = "serde_json"
|
|
2000
|
+
version = "1.0.149"
|
|
2001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2002
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
2003
|
+
dependencies = [
|
|
2004
|
+
"itoa",
|
|
2005
|
+
"memchr",
|
|
2006
|
+
"serde",
|
|
2007
|
+
"serde_core",
|
|
2008
|
+
"zmij",
|
|
2009
|
+
]
|
|
2010
|
+
|
|
2011
|
+
[[package]]
|
|
2012
|
+
name = "serde_urlencoded"
|
|
2013
|
+
version = "0.7.1"
|
|
2014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2015
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
2016
|
+
dependencies = [
|
|
2017
|
+
"form_urlencoded",
|
|
2018
|
+
"itoa",
|
|
2019
|
+
"ryu",
|
|
2020
|
+
"serde",
|
|
2021
|
+
]
|
|
2022
|
+
|
|
2023
|
+
[[package]]
|
|
2024
|
+
name = "shlex"
|
|
2025
|
+
version = "1.3.0"
|
|
2026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2027
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2028
|
+
|
|
2029
|
+
[[package]]
|
|
2030
|
+
name = "simd-adler32"
|
|
2031
|
+
version = "0.3.9"
|
|
2032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2033
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
2034
|
+
|
|
2035
|
+
[[package]]
|
|
2036
|
+
name = "slab"
|
|
2037
|
+
version = "0.4.12"
|
|
2038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2039
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
2040
|
+
|
|
2041
|
+
[[package]]
|
|
2042
|
+
name = "smallvec"
|
|
2043
|
+
version = "1.15.1"
|
|
2044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2045
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
2046
|
+
|
|
2047
|
+
[[package]]
|
|
2048
|
+
name = "socket2"
|
|
2049
|
+
version = "0.6.3"
|
|
2050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2051
|
+
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
|
|
2052
|
+
dependencies = [
|
|
2053
|
+
"libc",
|
|
2054
|
+
"windows-sys",
|
|
2055
|
+
]
|
|
2056
|
+
|
|
2057
|
+
[[package]]
|
|
2058
|
+
name = "spytools"
|
|
2059
|
+
version = "0.4.0"
|
|
2060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2061
|
+
checksum = "585cd3cb3ff82ef35c878f2111d6e4ac1ad42c5c3c7c90b386738a03b8e5f32f"
|
|
2062
|
+
dependencies = [
|
|
2063
|
+
"anyhow",
|
|
2064
|
+
"goblin",
|
|
2065
|
+
"lazy_static",
|
|
2066
|
+
"libc",
|
|
2067
|
+
"log",
|
|
2068
|
+
"memmap2",
|
|
2069
|
+
"proc-maps",
|
|
2070
|
+
"regex",
|
|
2071
|
+
"remoteprocess",
|
|
2072
|
+
]
|
|
2073
|
+
|
|
2074
|
+
[[package]]
|
|
2075
|
+
name = "stable_deref_trait"
|
|
2076
|
+
version = "1.2.1"
|
|
2077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2078
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2079
|
+
|
|
2080
|
+
[[package]]
|
|
2081
|
+
name = "str_stack"
|
|
2082
|
+
version = "0.1.0"
|
|
2083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2084
|
+
checksum = "9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb"
|
|
2085
|
+
|
|
2086
|
+
[[package]]
|
|
2087
|
+
name = "strsim"
|
|
2088
|
+
version = "0.11.1"
|
|
2089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2090
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
2091
|
+
|
|
2092
|
+
[[package]]
|
|
2093
|
+
name = "syn"
|
|
2094
|
+
version = "2.0.117"
|
|
2095
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2096
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
2097
|
+
dependencies = [
|
|
2098
|
+
"proc-macro2",
|
|
2099
|
+
"quote",
|
|
2100
|
+
"unicode-ident",
|
|
2101
|
+
]
|
|
2102
|
+
|
|
2103
|
+
[[package]]
|
|
2104
|
+
name = "sync_wrapper"
|
|
2105
|
+
version = "1.0.2"
|
|
2106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2107
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
2108
|
+
dependencies = [
|
|
2109
|
+
"futures-core",
|
|
2110
|
+
]
|
|
2111
|
+
|
|
2112
|
+
[[package]]
|
|
2113
|
+
name = "synstructure"
|
|
2114
|
+
version = "0.13.2"
|
|
2115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2116
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2117
|
+
dependencies = [
|
|
2118
|
+
"proc-macro2",
|
|
2119
|
+
"quote",
|
|
2120
|
+
"syn",
|
|
2121
|
+
]
|
|
2122
|
+
|
|
2123
|
+
[[package]]
|
|
2124
|
+
name = "tempfile"
|
|
2125
|
+
version = "3.27.0"
|
|
2126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2127
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
2128
|
+
dependencies = [
|
|
2129
|
+
"fastrand",
|
|
2130
|
+
"getrandom 0.4.2",
|
|
2131
|
+
"once_cell",
|
|
2132
|
+
"rustix",
|
|
2133
|
+
"windows-sys",
|
|
2134
|
+
]
|
|
2135
|
+
|
|
2136
|
+
[[package]]
|
|
2137
|
+
name = "termcolor"
|
|
2138
|
+
version = "1.4.1"
|
|
2139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2140
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
2141
|
+
dependencies = [
|
|
2142
|
+
"winapi-util",
|
|
2143
|
+
]
|
|
2144
|
+
|
|
2145
|
+
[[package]]
|
|
2146
|
+
name = "terminal_size"
|
|
2147
|
+
version = "0.4.4"
|
|
2148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2149
|
+
checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874"
|
|
2150
|
+
dependencies = [
|
|
2151
|
+
"rustix",
|
|
2152
|
+
"windows-sys",
|
|
2153
|
+
]
|
|
2154
|
+
|
|
2155
|
+
[[package]]
|
|
2156
|
+
name = "thiserror"
|
|
2157
|
+
version = "2.0.18"
|
|
2158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2159
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
2160
|
+
dependencies = [
|
|
2161
|
+
"thiserror-impl",
|
|
2162
|
+
]
|
|
2163
|
+
|
|
2164
|
+
[[package]]
|
|
2165
|
+
name = "thiserror-impl"
|
|
2166
|
+
version = "2.0.18"
|
|
2167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2168
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
2169
|
+
dependencies = [
|
|
2170
|
+
"proc-macro2",
|
|
2171
|
+
"quote",
|
|
2172
|
+
"syn",
|
|
2173
|
+
]
|
|
2174
|
+
|
|
2175
|
+
[[package]]
|
|
2176
|
+
name = "tinystr"
|
|
2177
|
+
version = "0.8.3"
|
|
2178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2179
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
2180
|
+
dependencies = [
|
|
2181
|
+
"displaydoc",
|
|
2182
|
+
"zerovec",
|
|
2183
|
+
]
|
|
2184
|
+
|
|
2185
|
+
[[package]]
|
|
2186
|
+
name = "tokio"
|
|
2187
|
+
version = "1.51.0"
|
|
2188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2189
|
+
checksum = "2bd1c4c0fc4a7ab90fc15ef6daaa3ec3b893f004f915f2392557ed23237820cd"
|
|
2190
|
+
dependencies = [
|
|
2191
|
+
"bytes",
|
|
2192
|
+
"libc",
|
|
2193
|
+
"mio",
|
|
2194
|
+
"pin-project-lite",
|
|
2195
|
+
"socket2",
|
|
2196
|
+
"windows-sys",
|
|
2197
|
+
]
|
|
2198
|
+
|
|
2199
|
+
[[package]]
|
|
2200
|
+
name = "tokio-native-tls"
|
|
2201
|
+
version = "0.3.1"
|
|
2202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2203
|
+
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
|
|
2204
|
+
dependencies = [
|
|
2205
|
+
"native-tls",
|
|
2206
|
+
"tokio",
|
|
2207
|
+
]
|
|
2208
|
+
|
|
2209
|
+
[[package]]
|
|
2210
|
+
name = "tower"
|
|
2211
|
+
version = "0.5.3"
|
|
2212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2213
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
2214
|
+
dependencies = [
|
|
2215
|
+
"futures-core",
|
|
2216
|
+
"futures-util",
|
|
2217
|
+
"pin-project-lite",
|
|
2218
|
+
"sync_wrapper",
|
|
2219
|
+
"tokio",
|
|
2220
|
+
"tower-layer",
|
|
2221
|
+
"tower-service",
|
|
2222
|
+
]
|
|
2223
|
+
|
|
2224
|
+
[[package]]
|
|
2225
|
+
name = "tower-http"
|
|
2226
|
+
version = "0.6.8"
|
|
2227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2228
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
2229
|
+
dependencies = [
|
|
2230
|
+
"bitflags",
|
|
2231
|
+
"bytes",
|
|
2232
|
+
"futures-util",
|
|
2233
|
+
"http",
|
|
2234
|
+
"http-body",
|
|
2235
|
+
"iri-string",
|
|
2236
|
+
"pin-project-lite",
|
|
2237
|
+
"tower",
|
|
2238
|
+
"tower-layer",
|
|
2239
|
+
"tower-service",
|
|
2240
|
+
]
|
|
2241
|
+
|
|
2242
|
+
[[package]]
|
|
2243
|
+
name = "tower-layer"
|
|
2244
|
+
version = "0.3.3"
|
|
2245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2246
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
2247
|
+
|
|
2248
|
+
[[package]]
|
|
2249
|
+
name = "tower-service"
|
|
2250
|
+
version = "0.3.3"
|
|
2251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2252
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
2253
|
+
|
|
2254
|
+
[[package]]
|
|
2255
|
+
name = "tracing"
|
|
2256
|
+
version = "0.1.44"
|
|
2257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2258
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
2259
|
+
dependencies = [
|
|
2260
|
+
"pin-project-lite",
|
|
2261
|
+
"tracing-core",
|
|
2262
|
+
]
|
|
2263
|
+
|
|
2264
|
+
[[package]]
|
|
2265
|
+
name = "tracing-core"
|
|
2266
|
+
version = "0.1.36"
|
|
2267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2268
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
2269
|
+
dependencies = [
|
|
2270
|
+
"once_cell",
|
|
2271
|
+
]
|
|
2272
|
+
|
|
2273
|
+
[[package]]
|
|
2274
|
+
name = "try-lock"
|
|
2275
|
+
version = "0.2.5"
|
|
2276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2277
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
2278
|
+
|
|
2279
|
+
[[package]]
|
|
2280
|
+
name = "twox-hash"
|
|
2281
|
+
version = "2.1.2"
|
|
2282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2283
|
+
checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
|
|
2284
|
+
|
|
2285
|
+
[[package]]
|
|
2286
|
+
name = "typed-arena"
|
|
2287
|
+
version = "2.0.2"
|
|
2288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2289
|
+
checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
|
2290
|
+
|
|
2291
|
+
[[package]]
|
|
2292
|
+
name = "unicode-ident"
|
|
2293
|
+
version = "1.0.24"
|
|
2294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2295
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
2296
|
+
|
|
2297
|
+
[[package]]
|
|
2298
|
+
name = "unicode-xid"
|
|
2299
|
+
version = "0.2.6"
|
|
2300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2301
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
2302
|
+
|
|
2303
|
+
[[package]]
|
|
2304
|
+
name = "url"
|
|
2305
|
+
version = "2.5.8"
|
|
2306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2307
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
2308
|
+
dependencies = [
|
|
2309
|
+
"form_urlencoded",
|
|
2310
|
+
"idna",
|
|
2311
|
+
"percent-encoding",
|
|
2312
|
+
"serde",
|
|
2313
|
+
]
|
|
2314
|
+
|
|
2315
|
+
[[package]]
|
|
2316
|
+
name = "utf8_iter"
|
|
2317
|
+
version = "1.0.4"
|
|
2318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2319
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
2320
|
+
|
|
2321
|
+
[[package]]
|
|
2322
|
+
name = "utf8parse"
|
|
2323
|
+
version = "0.2.2"
|
|
2324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2325
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
2326
|
+
|
|
2327
|
+
[[package]]
|
|
2328
|
+
name = "uuid"
|
|
2329
|
+
version = "1.23.0"
|
|
2330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2331
|
+
checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9"
|
|
2332
|
+
dependencies = [
|
|
2333
|
+
"getrandom 0.4.2",
|
|
2334
|
+
"js-sys",
|
|
2335
|
+
"wasm-bindgen",
|
|
2336
|
+
]
|
|
2337
|
+
|
|
2338
|
+
[[package]]
|
|
2339
|
+
name = "vcpkg"
|
|
2340
|
+
version = "0.2.15"
|
|
2341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2342
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
2343
|
+
|
|
2344
|
+
[[package]]
|
|
2345
|
+
name = "version_check"
|
|
2346
|
+
version = "0.9.5"
|
|
2347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2348
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
2349
|
+
|
|
2350
|
+
[[package]]
|
|
2351
|
+
name = "want"
|
|
2352
|
+
version = "0.3.1"
|
|
2353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2354
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
2355
|
+
dependencies = [
|
|
2356
|
+
"try-lock",
|
|
2357
|
+
]
|
|
2358
|
+
|
|
2359
|
+
[[package]]
|
|
2360
|
+
name = "wasi"
|
|
2361
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
2362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2363
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
2364
|
+
|
|
2365
|
+
[[package]]
|
|
2366
|
+
name = "wasip2"
|
|
2367
|
+
version = "1.0.2+wasi-0.2.9"
|
|
2368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2369
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
2370
|
+
dependencies = [
|
|
2371
|
+
"wit-bindgen",
|
|
2372
|
+
]
|
|
2373
|
+
|
|
2374
|
+
[[package]]
|
|
2375
|
+
name = "wasip3"
|
|
2376
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
2377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2378
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
2379
|
+
dependencies = [
|
|
2380
|
+
"wit-bindgen",
|
|
2381
|
+
]
|
|
2382
|
+
|
|
2383
|
+
[[package]]
|
|
2384
|
+
name = "wasm-bindgen"
|
|
2385
|
+
version = "0.2.117"
|
|
2386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2387
|
+
checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
|
|
2388
|
+
dependencies = [
|
|
2389
|
+
"cfg-if",
|
|
2390
|
+
"once_cell",
|
|
2391
|
+
"rustversion",
|
|
2392
|
+
"wasm-bindgen-macro",
|
|
2393
|
+
"wasm-bindgen-shared",
|
|
2394
|
+
]
|
|
2395
|
+
|
|
2396
|
+
[[package]]
|
|
2397
|
+
name = "wasm-bindgen-futures"
|
|
2398
|
+
version = "0.4.67"
|
|
2399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2400
|
+
checksum = "03623de6905b7206edd0a75f69f747f134b7f0a2323392d664448bf2d3c5d87e"
|
|
2401
|
+
dependencies = [
|
|
2402
|
+
"js-sys",
|
|
2403
|
+
"wasm-bindgen",
|
|
2404
|
+
]
|
|
2405
|
+
|
|
2406
|
+
[[package]]
|
|
2407
|
+
name = "wasm-bindgen-macro"
|
|
2408
|
+
version = "0.2.117"
|
|
2409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2410
|
+
checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
|
|
2411
|
+
dependencies = [
|
|
2412
|
+
"quote",
|
|
2413
|
+
"wasm-bindgen-macro-support",
|
|
2414
|
+
]
|
|
2415
|
+
|
|
2416
|
+
[[package]]
|
|
2417
|
+
name = "wasm-bindgen-macro-support"
|
|
2418
|
+
version = "0.2.117"
|
|
2419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2420
|
+
checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
|
|
2421
|
+
dependencies = [
|
|
2422
|
+
"bumpalo",
|
|
2423
|
+
"proc-macro2",
|
|
2424
|
+
"quote",
|
|
2425
|
+
"syn",
|
|
2426
|
+
"wasm-bindgen-shared",
|
|
2427
|
+
]
|
|
2428
|
+
|
|
2429
|
+
[[package]]
|
|
2430
|
+
name = "wasm-bindgen-shared"
|
|
2431
|
+
version = "0.2.117"
|
|
2432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2433
|
+
checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
|
|
2434
|
+
dependencies = [
|
|
2435
|
+
"unicode-ident",
|
|
2436
|
+
]
|
|
2437
|
+
|
|
2438
|
+
[[package]]
|
|
2439
|
+
name = "wasm-encoder"
|
|
2440
|
+
version = "0.244.0"
|
|
2441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2442
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
2443
|
+
dependencies = [
|
|
2444
|
+
"leb128fmt",
|
|
2445
|
+
"wasmparser",
|
|
2446
|
+
]
|
|
2447
|
+
|
|
2448
|
+
[[package]]
|
|
2449
|
+
name = "wasm-metadata"
|
|
2450
|
+
version = "0.244.0"
|
|
2451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2452
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
2453
|
+
dependencies = [
|
|
2454
|
+
"anyhow",
|
|
2455
|
+
"indexmap",
|
|
2456
|
+
"wasm-encoder",
|
|
2457
|
+
"wasmparser",
|
|
2458
|
+
]
|
|
2459
|
+
|
|
2460
|
+
[[package]]
|
|
2461
|
+
name = "wasmparser"
|
|
2462
|
+
version = "0.244.0"
|
|
2463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2464
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
2465
|
+
dependencies = [
|
|
2466
|
+
"bitflags",
|
|
2467
|
+
"hashbrown 0.15.5",
|
|
2468
|
+
"indexmap",
|
|
2469
|
+
"semver",
|
|
2470
|
+
]
|
|
2471
|
+
|
|
2472
|
+
[[package]]
|
|
2473
|
+
name = "web-sys"
|
|
2474
|
+
version = "0.3.94"
|
|
2475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2476
|
+
checksum = "cd70027e39b12f0849461e08ffc50b9cd7688d942c1c8e3c7b22273236b4dd0a"
|
|
2477
|
+
dependencies = [
|
|
2478
|
+
"js-sys",
|
|
2479
|
+
"wasm-bindgen",
|
|
2480
|
+
]
|
|
2481
|
+
|
|
2482
|
+
[[package]]
|
|
2483
|
+
name = "winapi"
|
|
2484
|
+
version = "0.3.9"
|
|
2485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2486
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
2487
|
+
dependencies = [
|
|
2488
|
+
"winapi-i686-pc-windows-gnu",
|
|
2489
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
2490
|
+
]
|
|
2491
|
+
|
|
2492
|
+
[[package]]
|
|
2493
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
2494
|
+
version = "0.4.0"
|
|
2495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2496
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
2497
|
+
|
|
2498
|
+
[[package]]
|
|
2499
|
+
name = "winapi-util"
|
|
2500
|
+
version = "0.1.11"
|
|
2501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2502
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
2503
|
+
dependencies = [
|
|
2504
|
+
"windows-sys",
|
|
2505
|
+
]
|
|
2506
|
+
|
|
2507
|
+
[[package]]
|
|
2508
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
2509
|
+
version = "0.4.0"
|
|
2510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2511
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2512
|
+
|
|
2513
|
+
[[package]]
|
|
2514
|
+
name = "windows-core"
|
|
2515
|
+
version = "0.62.2"
|
|
2516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2517
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
2518
|
+
dependencies = [
|
|
2519
|
+
"windows-implement",
|
|
2520
|
+
"windows-interface",
|
|
2521
|
+
"windows-link",
|
|
2522
|
+
"windows-result",
|
|
2523
|
+
"windows-strings",
|
|
2524
|
+
]
|
|
2525
|
+
|
|
2526
|
+
[[package]]
|
|
2527
|
+
name = "windows-implement"
|
|
2528
|
+
version = "0.60.2"
|
|
2529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2530
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
2531
|
+
dependencies = [
|
|
2532
|
+
"proc-macro2",
|
|
2533
|
+
"quote",
|
|
2534
|
+
"syn",
|
|
2535
|
+
]
|
|
2536
|
+
|
|
2537
|
+
[[package]]
|
|
2538
|
+
name = "windows-interface"
|
|
2539
|
+
version = "0.59.3"
|
|
2540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2541
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
2542
|
+
dependencies = [
|
|
2543
|
+
"proc-macro2",
|
|
2544
|
+
"quote",
|
|
2545
|
+
"syn",
|
|
2546
|
+
]
|
|
2547
|
+
|
|
2548
|
+
[[package]]
|
|
2549
|
+
name = "windows-link"
|
|
2550
|
+
version = "0.2.1"
|
|
2551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2552
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
2553
|
+
|
|
2554
|
+
[[package]]
|
|
2555
|
+
name = "windows-result"
|
|
2556
|
+
version = "0.4.1"
|
|
2557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2558
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
2559
|
+
dependencies = [
|
|
2560
|
+
"windows-link",
|
|
2561
|
+
]
|
|
2562
|
+
|
|
2563
|
+
[[package]]
|
|
2564
|
+
name = "windows-strings"
|
|
2565
|
+
version = "0.5.1"
|
|
2566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2567
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
2568
|
+
dependencies = [
|
|
2569
|
+
"windows-link",
|
|
2570
|
+
]
|
|
2571
|
+
|
|
2572
|
+
[[package]]
|
|
2573
|
+
name = "windows-sys"
|
|
2574
|
+
version = "0.61.2"
|
|
2575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2576
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
2577
|
+
dependencies = [
|
|
2578
|
+
"windows-link",
|
|
2579
|
+
]
|
|
2580
|
+
|
|
2581
|
+
[[package]]
|
|
2582
|
+
name = "wit-bindgen"
|
|
2583
|
+
version = "0.51.0"
|
|
2584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2585
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
2586
|
+
dependencies = [
|
|
2587
|
+
"wit-bindgen-rust-macro",
|
|
2588
|
+
]
|
|
2589
|
+
|
|
2590
|
+
[[package]]
|
|
2591
|
+
name = "wit-bindgen-core"
|
|
2592
|
+
version = "0.51.0"
|
|
2593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2594
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
2595
|
+
dependencies = [
|
|
2596
|
+
"anyhow",
|
|
2597
|
+
"heck",
|
|
2598
|
+
"wit-parser",
|
|
2599
|
+
]
|
|
2600
|
+
|
|
2601
|
+
[[package]]
|
|
2602
|
+
name = "wit-bindgen-rust"
|
|
2603
|
+
version = "0.51.0"
|
|
2604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2605
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
2606
|
+
dependencies = [
|
|
2607
|
+
"anyhow",
|
|
2608
|
+
"heck",
|
|
2609
|
+
"indexmap",
|
|
2610
|
+
"prettyplease",
|
|
2611
|
+
"syn",
|
|
2612
|
+
"wasm-metadata",
|
|
2613
|
+
"wit-bindgen-core",
|
|
2614
|
+
"wit-component",
|
|
2615
|
+
]
|
|
2616
|
+
|
|
2617
|
+
[[package]]
|
|
2618
|
+
name = "wit-bindgen-rust-macro"
|
|
2619
|
+
version = "0.51.0"
|
|
2620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2621
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
2622
|
+
dependencies = [
|
|
2623
|
+
"anyhow",
|
|
2624
|
+
"prettyplease",
|
|
2625
|
+
"proc-macro2",
|
|
2626
|
+
"quote",
|
|
2627
|
+
"syn",
|
|
2628
|
+
"wit-bindgen-core",
|
|
2629
|
+
"wit-bindgen-rust",
|
|
2630
|
+
]
|
|
2631
|
+
|
|
2632
|
+
[[package]]
|
|
2633
|
+
name = "wit-component"
|
|
2634
|
+
version = "0.244.0"
|
|
2635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2636
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
2637
|
+
dependencies = [
|
|
2638
|
+
"anyhow",
|
|
2639
|
+
"bitflags",
|
|
2640
|
+
"indexmap",
|
|
2641
|
+
"log",
|
|
2642
|
+
"serde",
|
|
2643
|
+
"serde_derive",
|
|
2644
|
+
"serde_json",
|
|
2645
|
+
"wasm-encoder",
|
|
2646
|
+
"wasm-metadata",
|
|
2647
|
+
"wasmparser",
|
|
2648
|
+
"wit-parser",
|
|
2649
|
+
]
|
|
2650
|
+
|
|
2651
|
+
[[package]]
|
|
2652
|
+
name = "wit-parser"
|
|
2653
|
+
version = "0.244.0"
|
|
2654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2655
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
2656
|
+
dependencies = [
|
|
2657
|
+
"anyhow",
|
|
2658
|
+
"id-arena",
|
|
2659
|
+
"indexmap",
|
|
2660
|
+
"log",
|
|
2661
|
+
"semver",
|
|
2662
|
+
"serde",
|
|
2663
|
+
"serde_derive",
|
|
2664
|
+
"serde_json",
|
|
2665
|
+
"unicode-xid",
|
|
2666
|
+
"wasmparser",
|
|
2667
|
+
]
|
|
2668
|
+
|
|
2669
|
+
[[package]]
|
|
2670
|
+
name = "writeable"
|
|
2671
|
+
version = "0.6.3"
|
|
2672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2673
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
2674
|
+
|
|
2675
|
+
[[package]]
|
|
2676
|
+
name = "yoke"
|
|
2677
|
+
version = "0.8.2"
|
|
2678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2679
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
2680
|
+
dependencies = [
|
|
2681
|
+
"stable_deref_trait",
|
|
2682
|
+
"yoke-derive",
|
|
2683
|
+
"zerofrom",
|
|
2684
|
+
]
|
|
2685
|
+
|
|
2686
|
+
[[package]]
|
|
2687
|
+
name = "yoke-derive"
|
|
2688
|
+
version = "0.8.2"
|
|
2689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2690
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
2691
|
+
dependencies = [
|
|
2692
|
+
"proc-macro2",
|
|
2693
|
+
"quote",
|
|
2694
|
+
"syn",
|
|
2695
|
+
"synstructure",
|
|
2696
|
+
]
|
|
2697
|
+
|
|
2698
|
+
[[package]]
|
|
2699
|
+
name = "zerocopy"
|
|
2700
|
+
version = "0.8.48"
|
|
2701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2702
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
2703
|
+
dependencies = [
|
|
2704
|
+
"zerocopy-derive",
|
|
2705
|
+
]
|
|
2706
|
+
|
|
2707
|
+
[[package]]
|
|
2708
|
+
name = "zerocopy-derive"
|
|
2709
|
+
version = "0.8.48"
|
|
2710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2711
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
2712
|
+
dependencies = [
|
|
2713
|
+
"proc-macro2",
|
|
2714
|
+
"quote",
|
|
2715
|
+
"syn",
|
|
2716
|
+
]
|
|
2717
|
+
|
|
2718
|
+
[[package]]
|
|
2719
|
+
name = "zerofrom"
|
|
2720
|
+
version = "0.1.7"
|
|
2721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2722
|
+
checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
|
|
2723
|
+
dependencies = [
|
|
2724
|
+
"zerofrom-derive",
|
|
2725
|
+
]
|
|
2726
|
+
|
|
2727
|
+
[[package]]
|
|
2728
|
+
name = "zerofrom-derive"
|
|
2729
|
+
version = "0.1.7"
|
|
2730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2731
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
2732
|
+
dependencies = [
|
|
2733
|
+
"proc-macro2",
|
|
2734
|
+
"quote",
|
|
2735
|
+
"syn",
|
|
2736
|
+
"synstructure",
|
|
2737
|
+
]
|
|
2738
|
+
|
|
2739
|
+
[[package]]
|
|
2740
|
+
name = "zeroize"
|
|
2741
|
+
version = "1.8.2"
|
|
2742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2743
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
2744
|
+
|
|
2745
|
+
[[package]]
|
|
2746
|
+
name = "zerotrie"
|
|
2747
|
+
version = "0.2.4"
|
|
2748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2749
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
2750
|
+
dependencies = [
|
|
2751
|
+
"displaydoc",
|
|
2752
|
+
"yoke",
|
|
2753
|
+
"zerofrom",
|
|
2754
|
+
]
|
|
2755
|
+
|
|
2756
|
+
[[package]]
|
|
2757
|
+
name = "zerovec"
|
|
2758
|
+
version = "0.11.6"
|
|
2759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2760
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
2761
|
+
dependencies = [
|
|
2762
|
+
"yoke",
|
|
2763
|
+
"zerofrom",
|
|
2764
|
+
"zerovec-derive",
|
|
2765
|
+
]
|
|
2766
|
+
|
|
2767
|
+
[[package]]
|
|
2768
|
+
name = "zerovec-derive"
|
|
2769
|
+
version = "0.11.3"
|
|
2770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2771
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
2772
|
+
dependencies = [
|
|
2773
|
+
"proc-macro2",
|
|
2774
|
+
"quote",
|
|
2775
|
+
"syn",
|
|
2776
|
+
]
|
|
2777
|
+
|
|
2778
|
+
[[package]]
|
|
2779
|
+
name = "zmij"
|
|
2780
|
+
version = "1.0.21"
|
|
2781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2782
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|