pyroscope_beta 0.1.1
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 +7 -0
- data/Gemfile +1 -0
- data/Gemfile.lock +11 -0
- data/LICENSE +202 -0
- data/README.md +9 -0
- data/Rakefile +10 -0
- data/ext/rbspy/Cargo.lock +2059 -0
- data/ext/rbspy/Cargo.toml +13 -0
- data/ext/rbspy/Rakefile +157 -0
- data/ext/rbspy/extconf.rb +11 -0
- data/ext/rbspy/src/lib.rs +156 -0
- data/ext/thread_id/Cargo.lock +16 -0
- data/ext/thread_id/Cargo.toml +11 -0
- data/ext/thread_id/Rakefile +157 -0
- data/ext/thread_id/extconf.rb +11 -0
- data/ext/thread_id/src/lib.rs +4 -0
- data/lib/pyroscope/version.rb +3 -0
- data/lib/pyroscope_beta.rb +87 -0
- metadata +90 -0
@@ -0,0 +1,2059 @@
|
|
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.17.0"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b"
|
10
|
+
dependencies = [
|
11
|
+
"cpp_demangle",
|
12
|
+
"fallible-iterator",
|
13
|
+
"gimli",
|
14
|
+
"object",
|
15
|
+
"rustc-demangle",
|
16
|
+
"smallvec",
|
17
|
+
]
|
18
|
+
|
19
|
+
[[package]]
|
20
|
+
name = "adler"
|
21
|
+
version = "1.0.2"
|
22
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
23
|
+
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
24
|
+
|
25
|
+
[[package]]
|
26
|
+
name = "ahash"
|
27
|
+
version = "0.7.6"
|
28
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
29
|
+
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
|
30
|
+
dependencies = [
|
31
|
+
"getrandom",
|
32
|
+
"once_cell",
|
33
|
+
"version_check",
|
34
|
+
]
|
35
|
+
|
36
|
+
[[package]]
|
37
|
+
name = "aho-corasick"
|
38
|
+
version = "0.7.18"
|
39
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
40
|
+
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
|
41
|
+
dependencies = [
|
42
|
+
"memchr",
|
43
|
+
]
|
44
|
+
|
45
|
+
[[package]]
|
46
|
+
name = "ansi_term"
|
47
|
+
version = "0.12.1"
|
48
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
49
|
+
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
|
50
|
+
dependencies = [
|
51
|
+
"winapi",
|
52
|
+
]
|
53
|
+
|
54
|
+
[[package]]
|
55
|
+
name = "anyhow"
|
56
|
+
version = "1.0.57"
|
57
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
58
|
+
checksum = "08f9b8508dccb7687a1d6c4ce66b2b0ecef467c94667de27d8d7fe1f8d2a9cdc"
|
59
|
+
|
60
|
+
[[package]]
|
61
|
+
name = "arrayvec"
|
62
|
+
version = "0.4.12"
|
63
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
64
|
+
checksum = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9"
|
65
|
+
dependencies = [
|
66
|
+
"nodrop",
|
67
|
+
]
|
68
|
+
|
69
|
+
[[package]]
|
70
|
+
name = "atty"
|
71
|
+
version = "0.2.14"
|
72
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
73
|
+
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
74
|
+
dependencies = [
|
75
|
+
"hermit-abi",
|
76
|
+
"libc",
|
77
|
+
"winapi",
|
78
|
+
]
|
79
|
+
|
80
|
+
[[package]]
|
81
|
+
name = "autocfg"
|
82
|
+
version = "1.1.0"
|
83
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
84
|
+
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
85
|
+
|
86
|
+
[[package]]
|
87
|
+
name = "base64"
|
88
|
+
version = "0.13.0"
|
89
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
90
|
+
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
|
91
|
+
|
92
|
+
[[package]]
|
93
|
+
name = "bindgen"
|
94
|
+
version = "0.59.2"
|
95
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
96
|
+
checksum = "2bd2a9a458e8f4304c52c43ebb0cfbd520289f8379a52e329a38afda99bf8eb8"
|
97
|
+
dependencies = [
|
98
|
+
"bitflags",
|
99
|
+
"cexpr",
|
100
|
+
"clang-sys",
|
101
|
+
"clap 2.34.0",
|
102
|
+
"env_logger",
|
103
|
+
"lazy_static",
|
104
|
+
"lazycell",
|
105
|
+
"log",
|
106
|
+
"peeking_take_while",
|
107
|
+
"proc-macro2",
|
108
|
+
"quote",
|
109
|
+
"regex",
|
110
|
+
"rustc-hash",
|
111
|
+
"shlex",
|
112
|
+
"which",
|
113
|
+
]
|
114
|
+
|
115
|
+
[[package]]
|
116
|
+
name = "bitflags"
|
117
|
+
version = "1.3.2"
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
119
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
120
|
+
|
121
|
+
[[package]]
|
122
|
+
name = "bumpalo"
|
123
|
+
version = "3.9.1"
|
124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
125
|
+
checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899"
|
126
|
+
|
127
|
+
[[package]]
|
128
|
+
name = "bytemuck"
|
129
|
+
version = "1.9.1"
|
130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
131
|
+
checksum = "cdead85bdec19c194affaeeb670c0e41fe23de31459efd1c174d049269cf02cc"
|
132
|
+
|
133
|
+
[[package]]
|
134
|
+
name = "byteorder"
|
135
|
+
version = "0.5.3"
|
136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
137
|
+
checksum = "0fc10e8cc6b2580fda3f36eb6dc5316657f812a3df879a44a66fc9f0fdbc4855"
|
138
|
+
|
139
|
+
[[package]]
|
140
|
+
name = "bytes"
|
141
|
+
version = "1.1.0"
|
142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
143
|
+
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
|
144
|
+
|
145
|
+
[[package]]
|
146
|
+
name = "cc"
|
147
|
+
version = "1.0.73"
|
148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
149
|
+
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
|
150
|
+
|
151
|
+
[[package]]
|
152
|
+
name = "cexpr"
|
153
|
+
version = "0.6.0"
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
155
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
156
|
+
dependencies = [
|
157
|
+
"nom",
|
158
|
+
]
|
159
|
+
|
160
|
+
[[package]]
|
161
|
+
name = "cfg-if"
|
162
|
+
version = "1.0.0"
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
164
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
165
|
+
|
166
|
+
[[package]]
|
167
|
+
name = "chrono"
|
168
|
+
version = "0.4.19"
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
170
|
+
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
|
171
|
+
dependencies = [
|
172
|
+
"libc",
|
173
|
+
"num-integer",
|
174
|
+
"num-traits",
|
175
|
+
"time",
|
176
|
+
"winapi",
|
177
|
+
]
|
178
|
+
|
179
|
+
[[package]]
|
180
|
+
name = "clang-sys"
|
181
|
+
version = "1.3.1"
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
183
|
+
checksum = "4cc00842eed744b858222c4c9faf7243aafc6d33f92f96935263ef4d8a41ce21"
|
184
|
+
dependencies = [
|
185
|
+
"glob",
|
186
|
+
"libc",
|
187
|
+
"libloading",
|
188
|
+
]
|
189
|
+
|
190
|
+
[[package]]
|
191
|
+
name = "clap"
|
192
|
+
version = "2.34.0"
|
193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
194
|
+
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
|
195
|
+
dependencies = [
|
196
|
+
"ansi_term",
|
197
|
+
"atty",
|
198
|
+
"bitflags",
|
199
|
+
"strsim 0.8.0",
|
200
|
+
"textwrap 0.11.0",
|
201
|
+
"unicode-width",
|
202
|
+
"vec_map",
|
203
|
+
]
|
204
|
+
|
205
|
+
[[package]]
|
206
|
+
name = "clap"
|
207
|
+
version = "3.1.14"
|
208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
209
|
+
checksum = "535434c063ced786eb04aaf529308092c5ab60889e8fe24275d15de07b01fa97"
|
210
|
+
dependencies = [
|
211
|
+
"atty",
|
212
|
+
"bitflags",
|
213
|
+
"clap_derive",
|
214
|
+
"clap_lex",
|
215
|
+
"indexmap",
|
216
|
+
"lazy_static",
|
217
|
+
"strsim 0.10.0",
|
218
|
+
"termcolor",
|
219
|
+
"textwrap 0.15.0",
|
220
|
+
]
|
221
|
+
|
222
|
+
[[package]]
|
223
|
+
name = "clap_derive"
|
224
|
+
version = "3.1.7"
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
226
|
+
checksum = "a3aab4734e083b809aaf5794e14e756d1c798d2c69c7f7de7a09a2f5214993c1"
|
227
|
+
dependencies = [
|
228
|
+
"heck",
|
229
|
+
"proc-macro-error",
|
230
|
+
"proc-macro2",
|
231
|
+
"quote",
|
232
|
+
"syn",
|
233
|
+
]
|
234
|
+
|
235
|
+
[[package]]
|
236
|
+
name = "clap_lex"
|
237
|
+
version = "0.2.0"
|
238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
239
|
+
checksum = "a37c35f1112dad5e6e0b1adaff798507497a18fceeb30cceb3bae7d1427b9213"
|
240
|
+
dependencies = [
|
241
|
+
"os_str_bytes",
|
242
|
+
]
|
243
|
+
|
244
|
+
[[package]]
|
245
|
+
name = "core-foundation"
|
246
|
+
version = "0.9.3"
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
248
|
+
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
|
249
|
+
dependencies = [
|
250
|
+
"core-foundation-sys",
|
251
|
+
"libc",
|
252
|
+
]
|
253
|
+
|
254
|
+
[[package]]
|
255
|
+
name = "core-foundation-sys"
|
256
|
+
version = "0.8.3"
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
258
|
+
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
|
259
|
+
|
260
|
+
[[package]]
|
261
|
+
name = "cpp_demangle"
|
262
|
+
version = "0.3.5"
|
263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
264
|
+
checksum = "eeaa953eaad386a53111e47172c2fedba671e5684c8dd601a5f474f4f118710f"
|
265
|
+
dependencies = [
|
266
|
+
"cfg-if",
|
267
|
+
]
|
268
|
+
|
269
|
+
[[package]]
|
270
|
+
name = "crc32fast"
|
271
|
+
version = "1.3.2"
|
272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
273
|
+
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
|
274
|
+
dependencies = [
|
275
|
+
"cfg-if",
|
276
|
+
]
|
277
|
+
|
278
|
+
[[package]]
|
279
|
+
name = "crossbeam-channel"
|
280
|
+
version = "0.5.4"
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
282
|
+
checksum = "5aaa7bd5fb665c6864b5f963dd9097905c54125909c7aa94c9e18507cdbe6c53"
|
283
|
+
dependencies = [
|
284
|
+
"cfg-if",
|
285
|
+
"crossbeam-utils",
|
286
|
+
]
|
287
|
+
|
288
|
+
[[package]]
|
289
|
+
name = "crossbeam-utils"
|
290
|
+
version = "0.8.8"
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
292
|
+
checksum = "0bf124c720b7686e3c2663cf54062ab0f68a88af2fb6a030e87e30bf721fcb38"
|
293
|
+
dependencies = [
|
294
|
+
"cfg-if",
|
295
|
+
"lazy_static",
|
296
|
+
]
|
297
|
+
|
298
|
+
[[package]]
|
299
|
+
name = "ctrlc"
|
300
|
+
version = "3.2.2"
|
301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
302
|
+
checksum = "b37feaa84e6861e00a1f5e5aa8da3ee56d605c9992d33e082786754828e20865"
|
303
|
+
dependencies = [
|
304
|
+
"nix 0.24.1",
|
305
|
+
"winapi",
|
306
|
+
]
|
307
|
+
|
308
|
+
[[package]]
|
309
|
+
name = "dashmap"
|
310
|
+
version = "5.3.2"
|
311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
312
|
+
checksum = "94b5a84352d6654d195b2365e38b5a7eacfdca4ad1b375196a1f76c6d7dd01ce"
|
313
|
+
dependencies = [
|
314
|
+
"cfg-if",
|
315
|
+
"hashbrown 0.12.0",
|
316
|
+
"lock_api",
|
317
|
+
]
|
318
|
+
|
319
|
+
[[package]]
|
320
|
+
name = "directories"
|
321
|
+
version = "4.0.1"
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
323
|
+
checksum = "f51c5d4ddabd36886dd3e1438cb358cdcb0d7c499cb99cb4ac2e38e18b5cb210"
|
324
|
+
dependencies = [
|
325
|
+
"dirs-sys",
|
326
|
+
]
|
327
|
+
|
328
|
+
[[package]]
|
329
|
+
name = "dirs-sys"
|
330
|
+
version = "0.3.7"
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
332
|
+
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
|
333
|
+
dependencies = [
|
334
|
+
"libc",
|
335
|
+
"redox_users",
|
336
|
+
"winapi",
|
337
|
+
]
|
338
|
+
|
339
|
+
[[package]]
|
340
|
+
name = "either"
|
341
|
+
version = "1.6.1"
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
343
|
+
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
|
344
|
+
|
345
|
+
[[package]]
|
346
|
+
name = "elf"
|
347
|
+
version = "0.0.10"
|
348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
349
|
+
checksum = "4841de15dbe0e49b9b62a417589299e3be0d557e0900d36acb87e6dae47197f5"
|
350
|
+
dependencies = [
|
351
|
+
"byteorder",
|
352
|
+
]
|
353
|
+
|
354
|
+
[[package]]
|
355
|
+
name = "encoding_rs"
|
356
|
+
version = "0.8.31"
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
358
|
+
checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
|
359
|
+
dependencies = [
|
360
|
+
"cfg-if",
|
361
|
+
]
|
362
|
+
|
363
|
+
[[package]]
|
364
|
+
name = "env_logger"
|
365
|
+
version = "0.9.0"
|
366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
367
|
+
checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3"
|
368
|
+
dependencies = [
|
369
|
+
"atty",
|
370
|
+
"humantime",
|
371
|
+
"log",
|
372
|
+
"regex",
|
373
|
+
"termcolor",
|
374
|
+
]
|
375
|
+
|
376
|
+
[[package]]
|
377
|
+
name = "errno"
|
378
|
+
version = "0.2.8"
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
380
|
+
checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
|
381
|
+
dependencies = [
|
382
|
+
"errno-dragonfly",
|
383
|
+
"libc",
|
384
|
+
"winapi",
|
385
|
+
]
|
386
|
+
|
387
|
+
[[package]]
|
388
|
+
name = "errno-dragonfly"
|
389
|
+
version = "0.1.2"
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
391
|
+
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
|
392
|
+
dependencies = [
|
393
|
+
"cc",
|
394
|
+
"libc",
|
395
|
+
]
|
396
|
+
|
397
|
+
[[package]]
|
398
|
+
name = "fallible-iterator"
|
399
|
+
version = "0.2.0"
|
400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
401
|
+
checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
|
402
|
+
|
403
|
+
[[package]]
|
404
|
+
name = "fastrand"
|
405
|
+
version = "1.7.0"
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
407
|
+
checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf"
|
408
|
+
dependencies = [
|
409
|
+
"instant",
|
410
|
+
]
|
411
|
+
|
412
|
+
[[package]]
|
413
|
+
name = "flate2"
|
414
|
+
version = "1.0.23"
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
416
|
+
checksum = "b39522e96686d38f4bc984b9198e3a0613264abaebaff2c5c918bfa6b6da09af"
|
417
|
+
dependencies = [
|
418
|
+
"cfg-if",
|
419
|
+
"crc32fast",
|
420
|
+
"libc",
|
421
|
+
"miniz_oxide",
|
422
|
+
]
|
423
|
+
|
424
|
+
[[package]]
|
425
|
+
name = "fnv"
|
426
|
+
version = "1.0.7"
|
427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
428
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
429
|
+
|
430
|
+
[[package]]
|
431
|
+
name = "foreign-types"
|
432
|
+
version = "0.3.2"
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
434
|
+
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
435
|
+
dependencies = [
|
436
|
+
"foreign-types-shared",
|
437
|
+
]
|
438
|
+
|
439
|
+
[[package]]
|
440
|
+
name = "foreign-types-shared"
|
441
|
+
version = "0.1.1"
|
442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
443
|
+
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
444
|
+
|
445
|
+
[[package]]
|
446
|
+
name = "form_urlencoded"
|
447
|
+
version = "1.0.1"
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
449
|
+
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
|
450
|
+
dependencies = [
|
451
|
+
"matches",
|
452
|
+
"percent-encoding",
|
453
|
+
]
|
454
|
+
|
455
|
+
[[package]]
|
456
|
+
name = "fuchsia-cprng"
|
457
|
+
version = "0.1.1"
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
459
|
+
checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
|
460
|
+
|
461
|
+
[[package]]
|
462
|
+
name = "futures-channel"
|
463
|
+
version = "0.3.21"
|
464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
465
|
+
checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
|
466
|
+
dependencies = [
|
467
|
+
"futures-core",
|
468
|
+
]
|
469
|
+
|
470
|
+
[[package]]
|
471
|
+
name = "futures-core"
|
472
|
+
version = "0.3.21"
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
474
|
+
checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
|
475
|
+
|
476
|
+
[[package]]
|
477
|
+
name = "futures-io"
|
478
|
+
version = "0.3.21"
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
480
|
+
checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
|
481
|
+
|
482
|
+
[[package]]
|
483
|
+
name = "futures-sink"
|
484
|
+
version = "0.3.21"
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
486
|
+
checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
|
487
|
+
|
488
|
+
[[package]]
|
489
|
+
name = "futures-task"
|
490
|
+
version = "0.3.21"
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
492
|
+
checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
|
493
|
+
|
494
|
+
[[package]]
|
495
|
+
name = "futures-util"
|
496
|
+
version = "0.3.21"
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
498
|
+
checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
|
499
|
+
dependencies = [
|
500
|
+
"futures-core",
|
501
|
+
"futures-io",
|
502
|
+
"futures-task",
|
503
|
+
"memchr",
|
504
|
+
"pin-project-lite",
|
505
|
+
"pin-utils",
|
506
|
+
"slab",
|
507
|
+
]
|
508
|
+
|
509
|
+
[[package]]
|
510
|
+
name = "getrandom"
|
511
|
+
version = "0.2.6"
|
512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
513
|
+
checksum = "9be70c98951c83b8d2f8f60d7065fa6d5146873094452a1008da8c2f1e4205ad"
|
514
|
+
dependencies = [
|
515
|
+
"cfg-if",
|
516
|
+
"libc",
|
517
|
+
"wasi 0.10.0+wasi-snapshot-preview1",
|
518
|
+
]
|
519
|
+
|
520
|
+
[[package]]
|
521
|
+
name = "gimli"
|
522
|
+
version = "0.26.1"
|
523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
524
|
+
checksum = "78cc372d058dcf6d5ecd98510e7fbc9e5aec4d21de70f65fea8fecebcd881bd4"
|
525
|
+
dependencies = [
|
526
|
+
"fallible-iterator",
|
527
|
+
"stable_deref_trait",
|
528
|
+
]
|
529
|
+
|
530
|
+
[[package]]
|
531
|
+
name = "glob"
|
532
|
+
version = "0.3.0"
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
534
|
+
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
|
535
|
+
|
536
|
+
[[package]]
|
537
|
+
name = "goblin"
|
538
|
+
version = "0.5.1"
|
539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
540
|
+
checksum = "c955ab4e0ad8c843ea653a3d143048b87490d9be56bd7132a435c2407846ac8f"
|
541
|
+
dependencies = [
|
542
|
+
"log",
|
543
|
+
"plain",
|
544
|
+
"scroll",
|
545
|
+
]
|
546
|
+
|
547
|
+
[[package]]
|
548
|
+
name = "h2"
|
549
|
+
version = "0.3.13"
|
550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
551
|
+
checksum = "37a82c6d637fc9515a4694bbf1cb2457b79d81ce52b3108bdeea58b07dd34a57"
|
552
|
+
dependencies = [
|
553
|
+
"bytes",
|
554
|
+
"fnv",
|
555
|
+
"futures-core",
|
556
|
+
"futures-sink",
|
557
|
+
"futures-util",
|
558
|
+
"http",
|
559
|
+
"indexmap",
|
560
|
+
"slab",
|
561
|
+
"tokio",
|
562
|
+
"tokio-util",
|
563
|
+
"tracing",
|
564
|
+
]
|
565
|
+
|
566
|
+
[[package]]
|
567
|
+
name = "hashbrown"
|
568
|
+
version = "0.11.2"
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
570
|
+
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
|
571
|
+
|
572
|
+
[[package]]
|
573
|
+
name = "hashbrown"
|
574
|
+
version = "0.12.0"
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
576
|
+
checksum = "8c21d40587b92fa6a6c6e3c1bdbf87d75511db5672f9c93175574b3a00df1758"
|
577
|
+
|
578
|
+
[[package]]
|
579
|
+
name = "heck"
|
580
|
+
version = "0.4.0"
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
582
|
+
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
|
583
|
+
|
584
|
+
[[package]]
|
585
|
+
name = "hermit-abi"
|
586
|
+
version = "0.1.19"
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
588
|
+
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
|
589
|
+
dependencies = [
|
590
|
+
"libc",
|
591
|
+
]
|
592
|
+
|
593
|
+
[[package]]
|
594
|
+
name = "http"
|
595
|
+
version = "0.2.7"
|
596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
597
|
+
checksum = "ff8670570af52249509a86f5e3e18a08c60b177071826898fde8997cf5f6bfbb"
|
598
|
+
dependencies = [
|
599
|
+
"bytes",
|
600
|
+
"fnv",
|
601
|
+
"itoa 1.0.1",
|
602
|
+
]
|
603
|
+
|
604
|
+
[[package]]
|
605
|
+
name = "http-body"
|
606
|
+
version = "0.4.4"
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
608
|
+
checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6"
|
609
|
+
dependencies = [
|
610
|
+
"bytes",
|
611
|
+
"http",
|
612
|
+
"pin-project-lite",
|
613
|
+
]
|
614
|
+
|
615
|
+
[[package]]
|
616
|
+
name = "httparse"
|
617
|
+
version = "1.7.1"
|
618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
619
|
+
checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c"
|
620
|
+
|
621
|
+
[[package]]
|
622
|
+
name = "httpdate"
|
623
|
+
version = "1.0.2"
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
625
|
+
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
|
626
|
+
|
627
|
+
[[package]]
|
628
|
+
name = "humantime"
|
629
|
+
version = "2.1.0"
|
630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
631
|
+
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
632
|
+
|
633
|
+
[[package]]
|
634
|
+
name = "hyper"
|
635
|
+
version = "0.14.18"
|
636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
637
|
+
checksum = "b26ae0a80afebe130861d90abf98e3814a4f28a4c6ffeb5ab8ebb2be311e0ef2"
|
638
|
+
dependencies = [
|
639
|
+
"bytes",
|
640
|
+
"futures-channel",
|
641
|
+
"futures-core",
|
642
|
+
"futures-util",
|
643
|
+
"h2",
|
644
|
+
"http",
|
645
|
+
"http-body",
|
646
|
+
"httparse",
|
647
|
+
"httpdate",
|
648
|
+
"itoa 1.0.1",
|
649
|
+
"pin-project-lite",
|
650
|
+
"socket2",
|
651
|
+
"tokio",
|
652
|
+
"tower-service",
|
653
|
+
"tracing",
|
654
|
+
"want",
|
655
|
+
]
|
656
|
+
|
657
|
+
[[package]]
|
658
|
+
name = "hyper-tls"
|
659
|
+
version = "0.5.0"
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
661
|
+
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
|
662
|
+
dependencies = [
|
663
|
+
"bytes",
|
664
|
+
"hyper",
|
665
|
+
"native-tls",
|
666
|
+
"tokio",
|
667
|
+
"tokio-native-tls",
|
668
|
+
]
|
669
|
+
|
670
|
+
[[package]]
|
671
|
+
name = "idna"
|
672
|
+
version = "0.2.3"
|
673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
674
|
+
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
|
675
|
+
dependencies = [
|
676
|
+
"matches",
|
677
|
+
"unicode-bidi",
|
678
|
+
"unicode-normalization",
|
679
|
+
]
|
680
|
+
|
681
|
+
[[package]]
|
682
|
+
name = "indexmap"
|
683
|
+
version = "1.8.1"
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
685
|
+
checksum = "0f647032dfaa1f8b6dc29bd3edb7bbef4861b8b8007ebb118d6db284fd59f6ee"
|
686
|
+
dependencies = [
|
687
|
+
"autocfg",
|
688
|
+
"hashbrown 0.11.2",
|
689
|
+
]
|
690
|
+
|
691
|
+
[[package]]
|
692
|
+
name = "inferno"
|
693
|
+
version = "0.11.2"
|
694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
695
|
+
checksum = "89efa0d58cc7d17076d8fcaa4ea2b408a799eaed1682e1d60b8a9e03a061be82"
|
696
|
+
dependencies = [
|
697
|
+
"ahash",
|
698
|
+
"atty",
|
699
|
+
"clap 3.1.14",
|
700
|
+
"crossbeam-channel",
|
701
|
+
"crossbeam-utils",
|
702
|
+
"dashmap",
|
703
|
+
"env_logger",
|
704
|
+
"indexmap",
|
705
|
+
"itoa 1.0.1",
|
706
|
+
"lazy_static",
|
707
|
+
"log",
|
708
|
+
"num-format",
|
709
|
+
"num_cpus",
|
710
|
+
"quick-xml",
|
711
|
+
"rgb",
|
712
|
+
"str_stack",
|
713
|
+
]
|
714
|
+
|
715
|
+
[[package]]
|
716
|
+
name = "instant"
|
717
|
+
version = "0.1.12"
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
719
|
+
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
|
720
|
+
dependencies = [
|
721
|
+
"cfg-if",
|
722
|
+
]
|
723
|
+
|
724
|
+
[[package]]
|
725
|
+
name = "ipnet"
|
726
|
+
version = "2.5.0"
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
728
|
+
checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b"
|
729
|
+
|
730
|
+
[[package]]
|
731
|
+
name = "itertools"
|
732
|
+
version = "0.10.3"
|
733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
734
|
+
checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
|
735
|
+
dependencies = [
|
736
|
+
"either",
|
737
|
+
]
|
738
|
+
|
739
|
+
[[package]]
|
740
|
+
name = "itoa"
|
741
|
+
version = "0.4.8"
|
742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
743
|
+
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
|
744
|
+
|
745
|
+
[[package]]
|
746
|
+
name = "itoa"
|
747
|
+
version = "1.0.1"
|
748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
749
|
+
checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
|
750
|
+
|
751
|
+
[[package]]
|
752
|
+
name = "js-sys"
|
753
|
+
version = "0.3.57"
|
754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
755
|
+
checksum = "671a26f820db17c2a2750743f1dd03bafd15b98c9f30c7c2628c024c05d73397"
|
756
|
+
dependencies = [
|
757
|
+
"wasm-bindgen",
|
758
|
+
]
|
759
|
+
|
760
|
+
[[package]]
|
761
|
+
name = "lazy_static"
|
762
|
+
version = "1.4.0"
|
763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
764
|
+
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
765
|
+
|
766
|
+
[[package]]
|
767
|
+
name = "lazycell"
|
768
|
+
version = "1.3.0"
|
769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
770
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
771
|
+
|
772
|
+
[[package]]
|
773
|
+
name = "libc"
|
774
|
+
version = "0.2.125"
|
775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
776
|
+
checksum = "5916d2ae698f6de9bfb891ad7a8d65c09d232dc58cc4ac433c7da3b2fd84bc2b"
|
777
|
+
|
778
|
+
[[package]]
|
779
|
+
name = "libloading"
|
780
|
+
version = "0.7.3"
|
781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
782
|
+
checksum = "efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd"
|
783
|
+
dependencies = [
|
784
|
+
"cfg-if",
|
785
|
+
"winapi",
|
786
|
+
]
|
787
|
+
|
788
|
+
[[package]]
|
789
|
+
name = "libproc"
|
790
|
+
version = "0.10.0"
|
791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
792
|
+
checksum = "6466fc1f834276563fbbd4be1c24236ef92bb9efdbd4691e07f1cf85a0b407f0"
|
793
|
+
dependencies = [
|
794
|
+
"errno",
|
795
|
+
"libc",
|
796
|
+
]
|
797
|
+
|
798
|
+
[[package]]
|
799
|
+
name = "libproc"
|
800
|
+
version = "0.12.0"
|
801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
802
|
+
checksum = "0b799ad155d75ce914c467ee5627b62247c20d4aedbd446f821484cebf3cded7"
|
803
|
+
dependencies = [
|
804
|
+
"bindgen",
|
805
|
+
"errno",
|
806
|
+
"libc",
|
807
|
+
]
|
808
|
+
|
809
|
+
[[package]]
|
810
|
+
name = "lock_api"
|
811
|
+
version = "0.4.7"
|
812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
813
|
+
checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
|
814
|
+
dependencies = [
|
815
|
+
"autocfg",
|
816
|
+
"scopeguard",
|
817
|
+
]
|
818
|
+
|
819
|
+
[[package]]
|
820
|
+
name = "log"
|
821
|
+
version = "0.4.16"
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
823
|
+
checksum = "6389c490849ff5bc16be905ae24bc913a9c8892e19b2341dbc175e14c341c2b8"
|
824
|
+
dependencies = [
|
825
|
+
"cfg-if",
|
826
|
+
]
|
827
|
+
|
828
|
+
[[package]]
|
829
|
+
name = "mach"
|
830
|
+
version = "0.3.2"
|
831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
832
|
+
checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
|
833
|
+
dependencies = [
|
834
|
+
"libc",
|
835
|
+
]
|
836
|
+
|
837
|
+
[[package]]
|
838
|
+
name = "mach_o_sys"
|
839
|
+
version = "0.1.1"
|
840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
841
|
+
checksum = "3e854583a83f20cf329bb9283366335387f7db59d640d1412167e05fedb98826"
|
842
|
+
|
843
|
+
[[package]]
|
844
|
+
name = "matches"
|
845
|
+
version = "0.1.9"
|
846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
847
|
+
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
|
848
|
+
|
849
|
+
[[package]]
|
850
|
+
name = "memchr"
|
851
|
+
version = "2.5.0"
|
852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
853
|
+
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
854
|
+
|
855
|
+
[[package]]
|
856
|
+
name = "memmap"
|
857
|
+
version = "0.7.0"
|
858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
859
|
+
checksum = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b"
|
860
|
+
dependencies = [
|
861
|
+
"libc",
|
862
|
+
"winapi",
|
863
|
+
]
|
864
|
+
|
865
|
+
[[package]]
|
866
|
+
name = "memoffset"
|
867
|
+
version = "0.6.5"
|
868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
869
|
+
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
|
870
|
+
dependencies = [
|
871
|
+
"autocfg",
|
872
|
+
]
|
873
|
+
|
874
|
+
[[package]]
|
875
|
+
name = "mime"
|
876
|
+
version = "0.3.16"
|
877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
878
|
+
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
|
879
|
+
|
880
|
+
[[package]]
|
881
|
+
name = "minimal-lexical"
|
882
|
+
version = "0.2.1"
|
883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
884
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
885
|
+
|
886
|
+
[[package]]
|
887
|
+
name = "miniz_oxide"
|
888
|
+
version = "0.5.1"
|
889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
890
|
+
checksum = "d2b29bd4bc3f33391105ebee3589c19197c4271e3e5a9ec9bfe8127eeff8f082"
|
891
|
+
dependencies = [
|
892
|
+
"adler",
|
893
|
+
]
|
894
|
+
|
895
|
+
[[package]]
|
896
|
+
name = "mio"
|
897
|
+
version = "0.8.2"
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
899
|
+
checksum = "52da4364ffb0e4fe33a9841a98a3f3014fb964045ce4f7a45a398243c8d6b0c9"
|
900
|
+
dependencies = [
|
901
|
+
"libc",
|
902
|
+
"log",
|
903
|
+
"miow",
|
904
|
+
"ntapi",
|
905
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
906
|
+
"winapi",
|
907
|
+
]
|
908
|
+
|
909
|
+
[[package]]
|
910
|
+
name = "miow"
|
911
|
+
version = "0.3.7"
|
912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
913
|
+
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
|
914
|
+
dependencies = [
|
915
|
+
"winapi",
|
916
|
+
]
|
917
|
+
|
918
|
+
[[package]]
|
919
|
+
name = "native-tls"
|
920
|
+
version = "0.2.10"
|
921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
922
|
+
checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9"
|
923
|
+
dependencies = [
|
924
|
+
"lazy_static",
|
925
|
+
"libc",
|
926
|
+
"log",
|
927
|
+
"openssl",
|
928
|
+
"openssl-probe",
|
929
|
+
"openssl-sys",
|
930
|
+
"schannel",
|
931
|
+
"security-framework",
|
932
|
+
"security-framework-sys",
|
933
|
+
"tempfile",
|
934
|
+
]
|
935
|
+
|
936
|
+
[[package]]
|
937
|
+
name = "nix"
|
938
|
+
version = "0.23.1"
|
939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
940
|
+
checksum = "9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6"
|
941
|
+
dependencies = [
|
942
|
+
"bitflags",
|
943
|
+
"cc",
|
944
|
+
"cfg-if",
|
945
|
+
"libc",
|
946
|
+
"memoffset",
|
947
|
+
]
|
948
|
+
|
949
|
+
[[package]]
|
950
|
+
name = "nix"
|
951
|
+
version = "0.24.1"
|
952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
953
|
+
checksum = "8f17df307904acd05aa8e32e97bb20f2a0df1728bbc2d771ae8f9a90463441e9"
|
954
|
+
dependencies = [
|
955
|
+
"bitflags",
|
956
|
+
"cfg-if",
|
957
|
+
"libc",
|
958
|
+
"memoffset",
|
959
|
+
]
|
960
|
+
|
961
|
+
[[package]]
|
962
|
+
name = "nodrop"
|
963
|
+
version = "0.1.14"
|
964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
965
|
+
checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
|
966
|
+
|
967
|
+
[[package]]
|
968
|
+
name = "nom"
|
969
|
+
version = "7.1.1"
|
970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
971
|
+
checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
|
972
|
+
dependencies = [
|
973
|
+
"memchr",
|
974
|
+
"minimal-lexical",
|
975
|
+
]
|
976
|
+
|
977
|
+
[[package]]
|
978
|
+
name = "ntapi"
|
979
|
+
version = "0.3.7"
|
980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
981
|
+
checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
|
982
|
+
dependencies = [
|
983
|
+
"winapi",
|
984
|
+
]
|
985
|
+
|
986
|
+
[[package]]
|
987
|
+
name = "num-format"
|
988
|
+
version = "0.4.0"
|
989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
990
|
+
checksum = "bafe4179722c2894288ee77a9f044f02811c86af699344c498b0840c698a2465"
|
991
|
+
dependencies = [
|
992
|
+
"arrayvec",
|
993
|
+
"itoa 0.4.8",
|
994
|
+
]
|
995
|
+
|
996
|
+
[[package]]
|
997
|
+
name = "num-integer"
|
998
|
+
version = "0.1.45"
|
999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1000
|
+
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
|
1001
|
+
dependencies = [
|
1002
|
+
"autocfg",
|
1003
|
+
"num-traits",
|
1004
|
+
]
|
1005
|
+
|
1006
|
+
[[package]]
|
1007
|
+
name = "num-traits"
|
1008
|
+
version = "0.2.14"
|
1009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1010
|
+
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
|
1011
|
+
dependencies = [
|
1012
|
+
"autocfg",
|
1013
|
+
]
|
1014
|
+
|
1015
|
+
[[package]]
|
1016
|
+
name = "num_cpus"
|
1017
|
+
version = "1.13.1"
|
1018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1019
|
+
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
|
1020
|
+
dependencies = [
|
1021
|
+
"hermit-abi",
|
1022
|
+
"libc",
|
1023
|
+
]
|
1024
|
+
|
1025
|
+
[[package]]
|
1026
|
+
name = "object"
|
1027
|
+
version = "0.27.1"
|
1028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1029
|
+
checksum = "67ac1d3f9a1d3616fd9a60c8d74296f22406a238b6a72f5cc1e6f314df4ffbf9"
|
1030
|
+
dependencies = [
|
1031
|
+
"flate2",
|
1032
|
+
"memchr",
|
1033
|
+
]
|
1034
|
+
|
1035
|
+
[[package]]
|
1036
|
+
name = "once_cell"
|
1037
|
+
version = "1.10.0"
|
1038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1039
|
+
checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9"
|
1040
|
+
|
1041
|
+
[[package]]
|
1042
|
+
name = "openssl"
|
1043
|
+
version = "0.10.38"
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1045
|
+
checksum = "0c7ae222234c30df141154f159066c5093ff73b63204dcda7121eb082fc56a95"
|
1046
|
+
dependencies = [
|
1047
|
+
"bitflags",
|
1048
|
+
"cfg-if",
|
1049
|
+
"foreign-types",
|
1050
|
+
"libc",
|
1051
|
+
"once_cell",
|
1052
|
+
"openssl-sys",
|
1053
|
+
]
|
1054
|
+
|
1055
|
+
[[package]]
|
1056
|
+
name = "openssl-probe"
|
1057
|
+
version = "0.1.5"
|
1058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1059
|
+
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
1060
|
+
|
1061
|
+
[[package]]
|
1062
|
+
name = "openssl-sys"
|
1063
|
+
version = "0.9.72"
|
1064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1065
|
+
checksum = "7e46109c383602735fa0a2e48dd2b7c892b048e1bf69e5c3b1d804b7d9c203cb"
|
1066
|
+
dependencies = [
|
1067
|
+
"autocfg",
|
1068
|
+
"cc",
|
1069
|
+
"libc",
|
1070
|
+
"pkg-config",
|
1071
|
+
"vcpkg",
|
1072
|
+
]
|
1073
|
+
|
1074
|
+
[[package]]
|
1075
|
+
name = "os_str_bytes"
|
1076
|
+
version = "6.0.0"
|
1077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1078
|
+
checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64"
|
1079
|
+
|
1080
|
+
[[package]]
|
1081
|
+
name = "peeking_take_while"
|
1082
|
+
version = "0.1.2"
|
1083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1084
|
+
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
1085
|
+
|
1086
|
+
[[package]]
|
1087
|
+
name = "percent-encoding"
|
1088
|
+
version = "2.1.0"
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1090
|
+
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
|
1091
|
+
|
1092
|
+
[[package]]
|
1093
|
+
name = "pin-project-lite"
|
1094
|
+
version = "0.2.9"
|
1095
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1096
|
+
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
|
1097
|
+
|
1098
|
+
[[package]]
|
1099
|
+
name = "pin-utils"
|
1100
|
+
version = "0.1.0"
|
1101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1102
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
1103
|
+
|
1104
|
+
[[package]]
|
1105
|
+
name = "pkg-config"
|
1106
|
+
version = "0.3.25"
|
1107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1108
|
+
checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
|
1109
|
+
|
1110
|
+
[[package]]
|
1111
|
+
name = "plain"
|
1112
|
+
version = "0.2.3"
|
1113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1114
|
+
checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
|
1115
|
+
|
1116
|
+
[[package]]
|
1117
|
+
name = "ppv-lite86"
|
1118
|
+
version = "0.2.16"
|
1119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1120
|
+
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
|
1121
|
+
|
1122
|
+
[[package]]
|
1123
|
+
name = "proc-macro-error"
|
1124
|
+
version = "1.0.4"
|
1125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1126
|
+
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
|
1127
|
+
dependencies = [
|
1128
|
+
"proc-macro-error-attr",
|
1129
|
+
"proc-macro2",
|
1130
|
+
"quote",
|
1131
|
+
"syn",
|
1132
|
+
"version_check",
|
1133
|
+
]
|
1134
|
+
|
1135
|
+
[[package]]
|
1136
|
+
name = "proc-macro-error-attr"
|
1137
|
+
version = "1.0.4"
|
1138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1139
|
+
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
|
1140
|
+
dependencies = [
|
1141
|
+
"proc-macro2",
|
1142
|
+
"quote",
|
1143
|
+
"version_check",
|
1144
|
+
]
|
1145
|
+
|
1146
|
+
[[package]]
|
1147
|
+
name = "proc-macro2"
|
1148
|
+
version = "1.0.37"
|
1149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1150
|
+
checksum = "ec757218438d5fda206afc041538b2f6d889286160d649a86a24d37e1235afd1"
|
1151
|
+
dependencies = [
|
1152
|
+
"unicode-xid",
|
1153
|
+
]
|
1154
|
+
|
1155
|
+
[[package]]
|
1156
|
+
name = "proc-maps"
|
1157
|
+
version = "0.2.0"
|
1158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1159
|
+
checksum = "5d01e71493938bee4c460ec61aabbf0801e08cd2714d1677365b4d7f81475353"
|
1160
|
+
dependencies = [
|
1161
|
+
"anyhow",
|
1162
|
+
"bindgen",
|
1163
|
+
"libc",
|
1164
|
+
"libproc 0.10.0",
|
1165
|
+
"mach",
|
1166
|
+
"winapi",
|
1167
|
+
]
|
1168
|
+
|
1169
|
+
[[package]]
|
1170
|
+
name = "prost"
|
1171
|
+
version = "0.10.1"
|
1172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1173
|
+
checksum = "a07b0857a71a8cb765763950499cae2413c3f9cede1133478c43600d9e146890"
|
1174
|
+
dependencies = [
|
1175
|
+
"bytes",
|
1176
|
+
"prost-derive",
|
1177
|
+
]
|
1178
|
+
|
1179
|
+
[[package]]
|
1180
|
+
name = "prost-derive"
|
1181
|
+
version = "0.10.1"
|
1182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1183
|
+
checksum = "7b670f45da57fb8542ebdbb6105a925fe571b67f9e7ed9f47a06a84e72b4e7cc"
|
1184
|
+
dependencies = [
|
1185
|
+
"anyhow",
|
1186
|
+
"itertools",
|
1187
|
+
"proc-macro2",
|
1188
|
+
"quote",
|
1189
|
+
"syn",
|
1190
|
+
]
|
1191
|
+
|
1192
|
+
[[package]]
|
1193
|
+
name = "pyroscope"
|
1194
|
+
version = "0.5.1"
|
1195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1196
|
+
checksum = "d3152c7294efc50b6b3f1a734c6a0e4b05696c68931b6c3ce2bf3da72159acda"
|
1197
|
+
dependencies = [
|
1198
|
+
"libc",
|
1199
|
+
"log",
|
1200
|
+
"reqwest",
|
1201
|
+
"thiserror",
|
1202
|
+
]
|
1203
|
+
|
1204
|
+
[[package]]
|
1205
|
+
name = "pyroscope_rbspy"
|
1206
|
+
version = "0.2.0"
|
1207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1208
|
+
checksum = "b038acb1c386903c37c27b19584d2de04b9fc3e160fd628d351f2666a86ac993"
|
1209
|
+
dependencies = [
|
1210
|
+
"anyhow",
|
1211
|
+
"log",
|
1212
|
+
"pyroscope",
|
1213
|
+
"rbspy 0.12.1",
|
1214
|
+
"thiserror",
|
1215
|
+
]
|
1216
|
+
|
1217
|
+
[[package]]
|
1218
|
+
name = "quick-xml"
|
1219
|
+
version = "0.22.0"
|
1220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1221
|
+
checksum = "8533f14c8382aaad0d592c812ac3b826162128b65662331e1127b45c3d18536b"
|
1222
|
+
dependencies = [
|
1223
|
+
"memchr",
|
1224
|
+
]
|
1225
|
+
|
1226
|
+
[[package]]
|
1227
|
+
name = "quote"
|
1228
|
+
version = "1.0.18"
|
1229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1230
|
+
checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1"
|
1231
|
+
dependencies = [
|
1232
|
+
"proc-macro2",
|
1233
|
+
]
|
1234
|
+
|
1235
|
+
[[package]]
|
1236
|
+
name = "rand"
|
1237
|
+
version = "0.4.6"
|
1238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1239
|
+
checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
|
1240
|
+
dependencies = [
|
1241
|
+
"fuchsia-cprng",
|
1242
|
+
"libc",
|
1243
|
+
"rand_core 0.3.1",
|
1244
|
+
"rdrand",
|
1245
|
+
"winapi",
|
1246
|
+
]
|
1247
|
+
|
1248
|
+
[[package]]
|
1249
|
+
name = "rand"
|
1250
|
+
version = "0.8.5"
|
1251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1252
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
1253
|
+
dependencies = [
|
1254
|
+
"libc",
|
1255
|
+
"rand_chacha",
|
1256
|
+
"rand_core 0.6.3",
|
1257
|
+
]
|
1258
|
+
|
1259
|
+
[[package]]
|
1260
|
+
name = "rand_chacha"
|
1261
|
+
version = "0.3.1"
|
1262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1263
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
1264
|
+
dependencies = [
|
1265
|
+
"ppv-lite86",
|
1266
|
+
"rand_core 0.6.3",
|
1267
|
+
]
|
1268
|
+
|
1269
|
+
[[package]]
|
1270
|
+
name = "rand_core"
|
1271
|
+
version = "0.3.1"
|
1272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1273
|
+
checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
|
1274
|
+
dependencies = [
|
1275
|
+
"rand_core 0.4.2",
|
1276
|
+
]
|
1277
|
+
|
1278
|
+
[[package]]
|
1279
|
+
name = "rand_core"
|
1280
|
+
version = "0.4.2"
|
1281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1282
|
+
checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
|
1283
|
+
|
1284
|
+
[[package]]
|
1285
|
+
name = "rand_core"
|
1286
|
+
version = "0.6.3"
|
1287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1288
|
+
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
|
1289
|
+
dependencies = [
|
1290
|
+
"getrandom",
|
1291
|
+
]
|
1292
|
+
|
1293
|
+
[[package]]
|
1294
|
+
name = "rbspy"
|
1295
|
+
version = "0.1.0"
|
1296
|
+
dependencies = [
|
1297
|
+
"pyroscope",
|
1298
|
+
"pyroscope_rbspy",
|
1299
|
+
"rutie",
|
1300
|
+
]
|
1301
|
+
|
1302
|
+
[[package]]
|
1303
|
+
name = "rbspy"
|
1304
|
+
version = "0.12.1"
|
1305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1306
|
+
checksum = "bcbebdf0037de5a92722b0bca2965ce0a76cd5c962225cf355e31ac668ea653f"
|
1307
|
+
dependencies = [
|
1308
|
+
"anyhow",
|
1309
|
+
"chrono",
|
1310
|
+
"clap 3.1.14",
|
1311
|
+
"ctrlc",
|
1312
|
+
"directories",
|
1313
|
+
"elf",
|
1314
|
+
"env_logger",
|
1315
|
+
"flate2",
|
1316
|
+
"inferno",
|
1317
|
+
"libc",
|
1318
|
+
"libproc 0.10.0",
|
1319
|
+
"log",
|
1320
|
+
"nix 0.23.1",
|
1321
|
+
"proc-maps",
|
1322
|
+
"prost",
|
1323
|
+
"rand 0.8.5",
|
1324
|
+
"rbspy-ruby-structs",
|
1325
|
+
"remoteprocess",
|
1326
|
+
"serde",
|
1327
|
+
"serde_derive",
|
1328
|
+
"serde_json",
|
1329
|
+
"tempdir",
|
1330
|
+
"term_size",
|
1331
|
+
"thiserror",
|
1332
|
+
"winapi",
|
1333
|
+
]
|
1334
|
+
|
1335
|
+
[[package]]
|
1336
|
+
name = "rbspy-ruby-structs"
|
1337
|
+
version = "0.12.1"
|
1338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1339
|
+
checksum = "321d7adbbd5dc84af13b4cacceb22973186ed1dc19d55248fa53d5277ae40e02"
|
1340
|
+
|
1341
|
+
[[package]]
|
1342
|
+
name = "rdrand"
|
1343
|
+
version = "0.4.0"
|
1344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1345
|
+
checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
|
1346
|
+
dependencies = [
|
1347
|
+
"rand_core 0.3.1",
|
1348
|
+
]
|
1349
|
+
|
1350
|
+
[[package]]
|
1351
|
+
name = "read-process-memory"
|
1352
|
+
version = "0.1.4"
|
1353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1354
|
+
checksum = "a103589f0c267c68328595f1ff45647e9d4b3ee6b9c1c51dcdc9b4b55ca504c5"
|
1355
|
+
dependencies = [
|
1356
|
+
"libc",
|
1357
|
+
"log",
|
1358
|
+
"mach",
|
1359
|
+
"winapi",
|
1360
|
+
]
|
1361
|
+
|
1362
|
+
[[package]]
|
1363
|
+
name = "redox_syscall"
|
1364
|
+
version = "0.2.13"
|
1365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1366
|
+
checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
|
1367
|
+
dependencies = [
|
1368
|
+
"bitflags",
|
1369
|
+
]
|
1370
|
+
|
1371
|
+
[[package]]
|
1372
|
+
name = "redox_users"
|
1373
|
+
version = "0.4.3"
|
1374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1375
|
+
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
|
1376
|
+
dependencies = [
|
1377
|
+
"getrandom",
|
1378
|
+
"redox_syscall",
|
1379
|
+
"thiserror",
|
1380
|
+
]
|
1381
|
+
|
1382
|
+
[[package]]
|
1383
|
+
name = "regex"
|
1384
|
+
version = "1.5.5"
|
1385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1386
|
+
checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286"
|
1387
|
+
dependencies = [
|
1388
|
+
"aho-corasick",
|
1389
|
+
"memchr",
|
1390
|
+
"regex-syntax",
|
1391
|
+
]
|
1392
|
+
|
1393
|
+
[[package]]
|
1394
|
+
name = "regex-syntax"
|
1395
|
+
version = "0.6.25"
|
1396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1397
|
+
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
|
1398
|
+
|
1399
|
+
[[package]]
|
1400
|
+
name = "remoteprocess"
|
1401
|
+
version = "0.4.9"
|
1402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1403
|
+
checksum = "d9f13e22b81d40176f4d7ed41c029fd2c7306b182db9838a44d88aeb97a7c6d6"
|
1404
|
+
dependencies = [
|
1405
|
+
"addr2line",
|
1406
|
+
"goblin",
|
1407
|
+
"lazy_static",
|
1408
|
+
"libc",
|
1409
|
+
"libproc 0.12.0",
|
1410
|
+
"log",
|
1411
|
+
"mach",
|
1412
|
+
"mach_o_sys",
|
1413
|
+
"memmap",
|
1414
|
+
"nix 0.24.1",
|
1415
|
+
"object",
|
1416
|
+
"proc-maps",
|
1417
|
+
"read-process-memory",
|
1418
|
+
"regex",
|
1419
|
+
"winapi",
|
1420
|
+
]
|
1421
|
+
|
1422
|
+
[[package]]
|
1423
|
+
name = "remove_dir_all"
|
1424
|
+
version = "0.5.3"
|
1425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1426
|
+
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
|
1427
|
+
dependencies = [
|
1428
|
+
"winapi",
|
1429
|
+
]
|
1430
|
+
|
1431
|
+
[[package]]
|
1432
|
+
name = "reqwest"
|
1433
|
+
version = "0.11.10"
|
1434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1435
|
+
checksum = "46a1f7aa4f35e5e8b4160449f51afc758f0ce6454315a9fa7d0d113e958c41eb"
|
1436
|
+
dependencies = [
|
1437
|
+
"base64",
|
1438
|
+
"bytes",
|
1439
|
+
"encoding_rs",
|
1440
|
+
"futures-core",
|
1441
|
+
"futures-util",
|
1442
|
+
"h2",
|
1443
|
+
"http",
|
1444
|
+
"http-body",
|
1445
|
+
"hyper",
|
1446
|
+
"hyper-tls",
|
1447
|
+
"ipnet",
|
1448
|
+
"js-sys",
|
1449
|
+
"lazy_static",
|
1450
|
+
"log",
|
1451
|
+
"mime",
|
1452
|
+
"native-tls",
|
1453
|
+
"percent-encoding",
|
1454
|
+
"pin-project-lite",
|
1455
|
+
"serde",
|
1456
|
+
"serde_json",
|
1457
|
+
"serde_urlencoded",
|
1458
|
+
"tokio",
|
1459
|
+
"tokio-native-tls",
|
1460
|
+
"url",
|
1461
|
+
"wasm-bindgen",
|
1462
|
+
"wasm-bindgen-futures",
|
1463
|
+
"web-sys",
|
1464
|
+
"winreg",
|
1465
|
+
]
|
1466
|
+
|
1467
|
+
[[package]]
|
1468
|
+
name = "rgb"
|
1469
|
+
version = "0.8.32"
|
1470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1471
|
+
checksum = "e74fdc210d8f24a7dbfedc13b04ba5764f5232754ccebfdf5fff1bad791ccbc6"
|
1472
|
+
dependencies = [
|
1473
|
+
"bytemuck",
|
1474
|
+
]
|
1475
|
+
|
1476
|
+
[[package]]
|
1477
|
+
name = "rustc-demangle"
|
1478
|
+
version = "0.1.21"
|
1479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1480
|
+
checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
|
1481
|
+
|
1482
|
+
[[package]]
|
1483
|
+
name = "rustc-hash"
|
1484
|
+
version = "1.1.0"
|
1485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1486
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
1487
|
+
|
1488
|
+
[[package]]
|
1489
|
+
name = "rutie"
|
1490
|
+
version = "0.8.4"
|
1491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1492
|
+
checksum = "5d97db4cbb9739b48364c38cc9a6ebabdc07b42bd87b60ab448e1f29eaebb2ac"
|
1493
|
+
dependencies = [
|
1494
|
+
"lazy_static",
|
1495
|
+
"libc",
|
1496
|
+
]
|
1497
|
+
|
1498
|
+
[[package]]
|
1499
|
+
name = "ryu"
|
1500
|
+
version = "1.0.9"
|
1501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1502
|
+
checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
|
1503
|
+
|
1504
|
+
[[package]]
|
1505
|
+
name = "schannel"
|
1506
|
+
version = "0.1.19"
|
1507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1508
|
+
checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
|
1509
|
+
dependencies = [
|
1510
|
+
"lazy_static",
|
1511
|
+
"winapi",
|
1512
|
+
]
|
1513
|
+
|
1514
|
+
[[package]]
|
1515
|
+
name = "scopeguard"
|
1516
|
+
version = "1.1.0"
|
1517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1518
|
+
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
1519
|
+
|
1520
|
+
[[package]]
|
1521
|
+
name = "scroll"
|
1522
|
+
version = "0.11.0"
|
1523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1524
|
+
checksum = "04c565b551bafbef4157586fa379538366e4385d42082f255bfd96e4fe8519da"
|
1525
|
+
dependencies = [
|
1526
|
+
"scroll_derive",
|
1527
|
+
]
|
1528
|
+
|
1529
|
+
[[package]]
|
1530
|
+
name = "scroll_derive"
|
1531
|
+
version = "0.11.0"
|
1532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1533
|
+
checksum = "bdbda6ac5cd1321e724fa9cee216f3a61885889b896f073b8f82322789c5250e"
|
1534
|
+
dependencies = [
|
1535
|
+
"proc-macro2",
|
1536
|
+
"quote",
|
1537
|
+
"syn",
|
1538
|
+
]
|
1539
|
+
|
1540
|
+
[[package]]
|
1541
|
+
name = "security-framework"
|
1542
|
+
version = "2.6.1"
|
1543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1544
|
+
checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc"
|
1545
|
+
dependencies = [
|
1546
|
+
"bitflags",
|
1547
|
+
"core-foundation",
|
1548
|
+
"core-foundation-sys",
|
1549
|
+
"libc",
|
1550
|
+
"security-framework-sys",
|
1551
|
+
]
|
1552
|
+
|
1553
|
+
[[package]]
|
1554
|
+
name = "security-framework-sys"
|
1555
|
+
version = "2.6.1"
|
1556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1557
|
+
checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
|
1558
|
+
dependencies = [
|
1559
|
+
"core-foundation-sys",
|
1560
|
+
"libc",
|
1561
|
+
]
|
1562
|
+
|
1563
|
+
[[package]]
|
1564
|
+
name = "serde"
|
1565
|
+
version = "1.0.137"
|
1566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1567
|
+
checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1"
|
1568
|
+
|
1569
|
+
[[package]]
|
1570
|
+
name = "serde_derive"
|
1571
|
+
version = "1.0.137"
|
1572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1573
|
+
checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be"
|
1574
|
+
dependencies = [
|
1575
|
+
"proc-macro2",
|
1576
|
+
"quote",
|
1577
|
+
"syn",
|
1578
|
+
]
|
1579
|
+
|
1580
|
+
[[package]]
|
1581
|
+
name = "serde_json"
|
1582
|
+
version = "1.0.80"
|
1583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1584
|
+
checksum = "f972498cf015f7c0746cac89ebe1d6ef10c293b94175a243a2d9442c163d9944"
|
1585
|
+
dependencies = [
|
1586
|
+
"itoa 1.0.1",
|
1587
|
+
"ryu",
|
1588
|
+
"serde",
|
1589
|
+
]
|
1590
|
+
|
1591
|
+
[[package]]
|
1592
|
+
name = "serde_urlencoded"
|
1593
|
+
version = "0.7.1"
|
1594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1595
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
1596
|
+
dependencies = [
|
1597
|
+
"form_urlencoded",
|
1598
|
+
"itoa 1.0.1",
|
1599
|
+
"ryu",
|
1600
|
+
"serde",
|
1601
|
+
]
|
1602
|
+
|
1603
|
+
[[package]]
|
1604
|
+
name = "shlex"
|
1605
|
+
version = "1.1.0"
|
1606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1607
|
+
checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
|
1608
|
+
|
1609
|
+
[[package]]
|
1610
|
+
name = "slab"
|
1611
|
+
version = "0.4.6"
|
1612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1613
|
+
checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
|
1614
|
+
|
1615
|
+
[[package]]
|
1616
|
+
name = "smallvec"
|
1617
|
+
version = "1.8.0"
|
1618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1619
|
+
checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
|
1620
|
+
|
1621
|
+
[[package]]
|
1622
|
+
name = "socket2"
|
1623
|
+
version = "0.4.4"
|
1624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1625
|
+
checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
|
1626
|
+
dependencies = [
|
1627
|
+
"libc",
|
1628
|
+
"winapi",
|
1629
|
+
]
|
1630
|
+
|
1631
|
+
[[package]]
|
1632
|
+
name = "stable_deref_trait"
|
1633
|
+
version = "1.2.0"
|
1634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1635
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
1636
|
+
|
1637
|
+
[[package]]
|
1638
|
+
name = "str_stack"
|
1639
|
+
version = "0.1.0"
|
1640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1641
|
+
checksum = "9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb"
|
1642
|
+
|
1643
|
+
[[package]]
|
1644
|
+
name = "strsim"
|
1645
|
+
version = "0.8.0"
|
1646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1647
|
+
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
|
1648
|
+
|
1649
|
+
[[package]]
|
1650
|
+
name = "strsim"
|
1651
|
+
version = "0.10.0"
|
1652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1653
|
+
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
1654
|
+
|
1655
|
+
[[package]]
|
1656
|
+
name = "syn"
|
1657
|
+
version = "1.0.92"
|
1658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1659
|
+
checksum = "7ff7c592601f11445996a06f8ad0c27f094a58857c2f89e97974ab9235b92c52"
|
1660
|
+
dependencies = [
|
1661
|
+
"proc-macro2",
|
1662
|
+
"quote",
|
1663
|
+
"unicode-xid",
|
1664
|
+
]
|
1665
|
+
|
1666
|
+
[[package]]
|
1667
|
+
name = "tempdir"
|
1668
|
+
version = "0.3.7"
|
1669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1670
|
+
checksum = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8"
|
1671
|
+
dependencies = [
|
1672
|
+
"rand 0.4.6",
|
1673
|
+
"remove_dir_all",
|
1674
|
+
]
|
1675
|
+
|
1676
|
+
[[package]]
|
1677
|
+
name = "tempfile"
|
1678
|
+
version = "3.3.0"
|
1679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1680
|
+
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
|
1681
|
+
dependencies = [
|
1682
|
+
"cfg-if",
|
1683
|
+
"fastrand",
|
1684
|
+
"libc",
|
1685
|
+
"redox_syscall",
|
1686
|
+
"remove_dir_all",
|
1687
|
+
"winapi",
|
1688
|
+
]
|
1689
|
+
|
1690
|
+
[[package]]
|
1691
|
+
name = "term_size"
|
1692
|
+
version = "0.3.2"
|
1693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1694
|
+
checksum = "1e4129646ca0ed8f45d09b929036bafad5377103edd06e50bf574b353d2b08d9"
|
1695
|
+
dependencies = [
|
1696
|
+
"libc",
|
1697
|
+
"winapi",
|
1698
|
+
]
|
1699
|
+
|
1700
|
+
[[package]]
|
1701
|
+
name = "termcolor"
|
1702
|
+
version = "1.1.3"
|
1703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1704
|
+
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
|
1705
|
+
dependencies = [
|
1706
|
+
"winapi-util",
|
1707
|
+
]
|
1708
|
+
|
1709
|
+
[[package]]
|
1710
|
+
name = "textwrap"
|
1711
|
+
version = "0.11.0"
|
1712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1713
|
+
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
|
1714
|
+
dependencies = [
|
1715
|
+
"unicode-width",
|
1716
|
+
]
|
1717
|
+
|
1718
|
+
[[package]]
|
1719
|
+
name = "textwrap"
|
1720
|
+
version = "0.15.0"
|
1721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1722
|
+
checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
|
1723
|
+
|
1724
|
+
[[package]]
|
1725
|
+
name = "thiserror"
|
1726
|
+
version = "1.0.31"
|
1727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1728
|
+
checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a"
|
1729
|
+
dependencies = [
|
1730
|
+
"thiserror-impl",
|
1731
|
+
]
|
1732
|
+
|
1733
|
+
[[package]]
|
1734
|
+
name = "thiserror-impl"
|
1735
|
+
version = "1.0.31"
|
1736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1737
|
+
checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a"
|
1738
|
+
dependencies = [
|
1739
|
+
"proc-macro2",
|
1740
|
+
"quote",
|
1741
|
+
"syn",
|
1742
|
+
]
|
1743
|
+
|
1744
|
+
[[package]]
|
1745
|
+
name = "time"
|
1746
|
+
version = "0.1.44"
|
1747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1748
|
+
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
|
1749
|
+
dependencies = [
|
1750
|
+
"libc",
|
1751
|
+
"wasi 0.10.0+wasi-snapshot-preview1",
|
1752
|
+
"winapi",
|
1753
|
+
]
|
1754
|
+
|
1755
|
+
[[package]]
|
1756
|
+
name = "tinyvec"
|
1757
|
+
version = "1.6.0"
|
1758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1759
|
+
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
|
1760
|
+
dependencies = [
|
1761
|
+
"tinyvec_macros",
|
1762
|
+
]
|
1763
|
+
|
1764
|
+
[[package]]
|
1765
|
+
name = "tinyvec_macros"
|
1766
|
+
version = "0.1.0"
|
1767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1768
|
+
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
1769
|
+
|
1770
|
+
[[package]]
|
1771
|
+
name = "tokio"
|
1772
|
+
version = "1.18.0"
|
1773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1774
|
+
checksum = "0f48b6d60512a392e34dbf7fd456249fd2de3c83669ab642e021903f4015185b"
|
1775
|
+
dependencies = [
|
1776
|
+
"bytes",
|
1777
|
+
"libc",
|
1778
|
+
"memchr",
|
1779
|
+
"mio",
|
1780
|
+
"num_cpus",
|
1781
|
+
"once_cell",
|
1782
|
+
"pin-project-lite",
|
1783
|
+
"socket2",
|
1784
|
+
"winapi",
|
1785
|
+
]
|
1786
|
+
|
1787
|
+
[[package]]
|
1788
|
+
name = "tokio-native-tls"
|
1789
|
+
version = "0.3.0"
|
1790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1791
|
+
checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
|
1792
|
+
dependencies = [
|
1793
|
+
"native-tls",
|
1794
|
+
"tokio",
|
1795
|
+
]
|
1796
|
+
|
1797
|
+
[[package]]
|
1798
|
+
name = "tokio-util"
|
1799
|
+
version = "0.7.1"
|
1800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1801
|
+
checksum = "0edfdeb067411dba2044da6d1cb2df793dd35add7888d73c16e3381ded401764"
|
1802
|
+
dependencies = [
|
1803
|
+
"bytes",
|
1804
|
+
"futures-core",
|
1805
|
+
"futures-sink",
|
1806
|
+
"pin-project-lite",
|
1807
|
+
"tokio",
|
1808
|
+
"tracing",
|
1809
|
+
]
|
1810
|
+
|
1811
|
+
[[package]]
|
1812
|
+
name = "tower-service"
|
1813
|
+
version = "0.3.1"
|
1814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1815
|
+
checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
|
1816
|
+
|
1817
|
+
[[package]]
|
1818
|
+
name = "tracing"
|
1819
|
+
version = "0.1.34"
|
1820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1821
|
+
checksum = "5d0ecdcb44a79f0fe9844f0c4f33a342cbcbb5117de8001e6ba0dc2351327d09"
|
1822
|
+
dependencies = [
|
1823
|
+
"cfg-if",
|
1824
|
+
"pin-project-lite",
|
1825
|
+
"tracing-attributes",
|
1826
|
+
"tracing-core",
|
1827
|
+
]
|
1828
|
+
|
1829
|
+
[[package]]
|
1830
|
+
name = "tracing-attributes"
|
1831
|
+
version = "0.1.21"
|
1832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1833
|
+
checksum = "cc6b8ad3567499f98a1db7a752b07a7c8c7c7c34c332ec00effb2b0027974b7c"
|
1834
|
+
dependencies = [
|
1835
|
+
"proc-macro2",
|
1836
|
+
"quote",
|
1837
|
+
"syn",
|
1838
|
+
]
|
1839
|
+
|
1840
|
+
[[package]]
|
1841
|
+
name = "tracing-core"
|
1842
|
+
version = "0.1.26"
|
1843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1844
|
+
checksum = "f54c8ca710e81886d498c2fd3331b56c93aa248d49de2222ad2742247c60072f"
|
1845
|
+
dependencies = [
|
1846
|
+
"lazy_static",
|
1847
|
+
]
|
1848
|
+
|
1849
|
+
[[package]]
|
1850
|
+
name = "try-lock"
|
1851
|
+
version = "0.2.3"
|
1852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1853
|
+
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
|
1854
|
+
|
1855
|
+
[[package]]
|
1856
|
+
name = "unicode-bidi"
|
1857
|
+
version = "0.3.8"
|
1858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1859
|
+
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
|
1860
|
+
|
1861
|
+
[[package]]
|
1862
|
+
name = "unicode-normalization"
|
1863
|
+
version = "0.1.19"
|
1864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1865
|
+
checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
|
1866
|
+
dependencies = [
|
1867
|
+
"tinyvec",
|
1868
|
+
]
|
1869
|
+
|
1870
|
+
[[package]]
|
1871
|
+
name = "unicode-width"
|
1872
|
+
version = "0.1.9"
|
1873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1874
|
+
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
|
1875
|
+
|
1876
|
+
[[package]]
|
1877
|
+
name = "unicode-xid"
|
1878
|
+
version = "0.2.2"
|
1879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1880
|
+
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
|
1881
|
+
|
1882
|
+
[[package]]
|
1883
|
+
name = "url"
|
1884
|
+
version = "2.2.2"
|
1885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1886
|
+
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
|
1887
|
+
dependencies = [
|
1888
|
+
"form_urlencoded",
|
1889
|
+
"idna",
|
1890
|
+
"matches",
|
1891
|
+
"percent-encoding",
|
1892
|
+
]
|
1893
|
+
|
1894
|
+
[[package]]
|
1895
|
+
name = "vcpkg"
|
1896
|
+
version = "0.2.15"
|
1897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1898
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
1899
|
+
|
1900
|
+
[[package]]
|
1901
|
+
name = "vec_map"
|
1902
|
+
version = "0.8.2"
|
1903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1904
|
+
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
|
1905
|
+
|
1906
|
+
[[package]]
|
1907
|
+
name = "version_check"
|
1908
|
+
version = "0.9.4"
|
1909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1910
|
+
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
1911
|
+
|
1912
|
+
[[package]]
|
1913
|
+
name = "want"
|
1914
|
+
version = "0.3.0"
|
1915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1916
|
+
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
|
1917
|
+
dependencies = [
|
1918
|
+
"log",
|
1919
|
+
"try-lock",
|
1920
|
+
]
|
1921
|
+
|
1922
|
+
[[package]]
|
1923
|
+
name = "wasi"
|
1924
|
+
version = "0.10.0+wasi-snapshot-preview1"
|
1925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1926
|
+
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
|
1927
|
+
|
1928
|
+
[[package]]
|
1929
|
+
name = "wasi"
|
1930
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
1931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1932
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
1933
|
+
|
1934
|
+
[[package]]
|
1935
|
+
name = "wasm-bindgen"
|
1936
|
+
version = "0.2.80"
|
1937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1938
|
+
checksum = "27370197c907c55e3f1a9fbe26f44e937fe6451368324e009cba39e139dc08ad"
|
1939
|
+
dependencies = [
|
1940
|
+
"cfg-if",
|
1941
|
+
"wasm-bindgen-macro",
|
1942
|
+
]
|
1943
|
+
|
1944
|
+
[[package]]
|
1945
|
+
name = "wasm-bindgen-backend"
|
1946
|
+
version = "0.2.80"
|
1947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1948
|
+
checksum = "53e04185bfa3a779273da532f5025e33398409573f348985af9a1cbf3774d3f4"
|
1949
|
+
dependencies = [
|
1950
|
+
"bumpalo",
|
1951
|
+
"lazy_static",
|
1952
|
+
"log",
|
1953
|
+
"proc-macro2",
|
1954
|
+
"quote",
|
1955
|
+
"syn",
|
1956
|
+
"wasm-bindgen-shared",
|
1957
|
+
]
|
1958
|
+
|
1959
|
+
[[package]]
|
1960
|
+
name = "wasm-bindgen-futures"
|
1961
|
+
version = "0.4.30"
|
1962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1963
|
+
checksum = "6f741de44b75e14c35df886aff5f1eb73aa114fa5d4d00dcd37b5e01259bf3b2"
|
1964
|
+
dependencies = [
|
1965
|
+
"cfg-if",
|
1966
|
+
"js-sys",
|
1967
|
+
"wasm-bindgen",
|
1968
|
+
"web-sys",
|
1969
|
+
]
|
1970
|
+
|
1971
|
+
[[package]]
|
1972
|
+
name = "wasm-bindgen-macro"
|
1973
|
+
version = "0.2.80"
|
1974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1975
|
+
checksum = "17cae7ff784d7e83a2fe7611cfe766ecf034111b49deb850a3dc7699c08251f5"
|
1976
|
+
dependencies = [
|
1977
|
+
"quote",
|
1978
|
+
"wasm-bindgen-macro-support",
|
1979
|
+
]
|
1980
|
+
|
1981
|
+
[[package]]
|
1982
|
+
name = "wasm-bindgen-macro-support"
|
1983
|
+
version = "0.2.80"
|
1984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1985
|
+
checksum = "99ec0dc7a4756fffc231aab1b9f2f578d23cd391390ab27f952ae0c9b3ece20b"
|
1986
|
+
dependencies = [
|
1987
|
+
"proc-macro2",
|
1988
|
+
"quote",
|
1989
|
+
"syn",
|
1990
|
+
"wasm-bindgen-backend",
|
1991
|
+
"wasm-bindgen-shared",
|
1992
|
+
]
|
1993
|
+
|
1994
|
+
[[package]]
|
1995
|
+
name = "wasm-bindgen-shared"
|
1996
|
+
version = "0.2.80"
|
1997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1998
|
+
checksum = "d554b7f530dee5964d9a9468d95c1f8b8acae4f282807e7d27d4b03099a46744"
|
1999
|
+
|
2000
|
+
[[package]]
|
2001
|
+
name = "web-sys"
|
2002
|
+
version = "0.3.57"
|
2003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2004
|
+
checksum = "7b17e741662c70c8bd24ac5c5b18de314a2c26c32bf8346ee1e6f53de919c283"
|
2005
|
+
dependencies = [
|
2006
|
+
"js-sys",
|
2007
|
+
"wasm-bindgen",
|
2008
|
+
]
|
2009
|
+
|
2010
|
+
[[package]]
|
2011
|
+
name = "which"
|
2012
|
+
version = "4.2.5"
|
2013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2014
|
+
checksum = "5c4fb54e6113b6a8772ee41c3404fb0301ac79604489467e0a9ce1f3e97c24ae"
|
2015
|
+
dependencies = [
|
2016
|
+
"either",
|
2017
|
+
"lazy_static",
|
2018
|
+
"libc",
|
2019
|
+
]
|
2020
|
+
|
2021
|
+
[[package]]
|
2022
|
+
name = "winapi"
|
2023
|
+
version = "0.3.9"
|
2024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
2026
|
+
dependencies = [
|
2027
|
+
"winapi-i686-pc-windows-gnu",
|
2028
|
+
"winapi-x86_64-pc-windows-gnu",
|
2029
|
+
]
|
2030
|
+
|
2031
|
+
[[package]]
|
2032
|
+
name = "winapi-i686-pc-windows-gnu"
|
2033
|
+
version = "0.4.0"
|
2034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2035
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
2036
|
+
|
2037
|
+
[[package]]
|
2038
|
+
name = "winapi-util"
|
2039
|
+
version = "0.1.5"
|
2040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2041
|
+
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
|
2042
|
+
dependencies = [
|
2043
|
+
"winapi",
|
2044
|
+
]
|
2045
|
+
|
2046
|
+
[[package]]
|
2047
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
2048
|
+
version = "0.4.0"
|
2049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2050
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2051
|
+
|
2052
|
+
[[package]]
|
2053
|
+
name = "winreg"
|
2054
|
+
version = "0.10.1"
|
2055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2056
|
+
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
|
2057
|
+
dependencies = [
|
2058
|
+
"winapi",
|
2059
|
+
]
|