mawsitsit 0.1.7
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/.rspec +3 -0
- data/.ruby-version +1 -0
- data/.standard.yml +3 -0
- data/Cargo.lock +1756 -0
- data/Cargo.toml +7 -0
- data/README.md +31 -0
- data/Rakefile +36 -0
- data/ext/mawsitsit/Cargo.toml +25 -0
- data/ext/mawsitsit/extconf.rb +6 -0
- data/ext/mawsitsit/src/lib.rs +39 -0
- data/ext/mawsitsit/src/parser/manipulators.rs +108 -0
- data/ext/mawsitsit/src/parser/mod.rs +3 -0
- data/ext/mawsitsit/src/parser/parser.rs +146 -0
- data/ext/mawsitsit/src/parser/utils/application_option.rs +109 -0
- data/ext/mawsitsit/src/parser/utils/custom_exceptions.rs +26 -0
- data/ext/mawsitsit/src/parser/utils/helpers.rs +41 -0
- data/ext/mawsitsit/src/parser/utils/mod.rs +3 -0
- data/lib/mawsitsit/version.rb +5 -0
- data/lib/mawsitsit.rb +16 -0
- data/sig/mawsitsit.rbs +4 -0
- data/var/destination.Identifier +2 -0
- data/var/destination.json +41 -0
- data/var/expected.identifier +2 -0
- data/var/expected.json +12 -0
- data/var/expected_test_1.identifier +3 -0
- data/var/expected_test_1.json +51 -0
- data/var/origin.Identifier +2 -0
- data/var/origin.json +109 -0
- data/var/test_1.identifier +2 -0
- data/var/test_1.json +41 -0
- metadata +75 -0
data/Cargo.lock
ADDED
|
@@ -0,0 +1,1756 @@
|
|
|
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.22.0"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"gimli",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "adler"
|
|
16
|
+
version = "1.0.2"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "aho-corasick"
|
|
22
|
+
version = "1.1.3"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"memchr",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "async-recursion"
|
|
31
|
+
version = "1.1.1"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
|
|
34
|
+
dependencies = [
|
|
35
|
+
"proc-macro2",
|
|
36
|
+
"quote",
|
|
37
|
+
"syn 2.0.66",
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
[[package]]
|
|
41
|
+
name = "atomic-waker"
|
|
42
|
+
version = "1.1.2"
|
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
45
|
+
|
|
46
|
+
[[package]]
|
|
47
|
+
name = "autocfg"
|
|
48
|
+
version = "1.3.0"
|
|
49
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
50
|
+
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
|
|
51
|
+
|
|
52
|
+
[[package]]
|
|
53
|
+
name = "backtrace"
|
|
54
|
+
version = "0.3.73"
|
|
55
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
56
|
+
checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a"
|
|
57
|
+
dependencies = [
|
|
58
|
+
"addr2line",
|
|
59
|
+
"cc",
|
|
60
|
+
"cfg-if",
|
|
61
|
+
"libc",
|
|
62
|
+
"miniz_oxide",
|
|
63
|
+
"object",
|
|
64
|
+
"rustc-demangle",
|
|
65
|
+
]
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "base64"
|
|
69
|
+
version = "0.22.1"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "bindgen"
|
|
75
|
+
version = "0.69.4"
|
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
+
checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0"
|
|
78
|
+
dependencies = [
|
|
79
|
+
"bitflags 2.5.0",
|
|
80
|
+
"cexpr",
|
|
81
|
+
"clang-sys",
|
|
82
|
+
"itertools",
|
|
83
|
+
"lazy_static",
|
|
84
|
+
"lazycell",
|
|
85
|
+
"proc-macro2",
|
|
86
|
+
"quote",
|
|
87
|
+
"regex",
|
|
88
|
+
"rustc-hash",
|
|
89
|
+
"shlex",
|
|
90
|
+
"syn 2.0.66",
|
|
91
|
+
]
|
|
92
|
+
|
|
93
|
+
[[package]]
|
|
94
|
+
name = "bitflags"
|
|
95
|
+
version = "1.3.2"
|
|
96
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
97
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
98
|
+
|
|
99
|
+
[[package]]
|
|
100
|
+
name = "bitflags"
|
|
101
|
+
version = "2.5.0"
|
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
+
checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "bumpalo"
|
|
107
|
+
version = "3.16.0"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "bytes"
|
|
113
|
+
version = "1.6.0"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "cc"
|
|
119
|
+
version = "1.0.99"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "96c51067fd44124faa7f870b4b1c969379ad32b2ba805aa959430ceaa384f695"
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "cexpr"
|
|
125
|
+
version = "0.6.0"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
128
|
+
dependencies = [
|
|
129
|
+
"nom",
|
|
130
|
+
]
|
|
131
|
+
|
|
132
|
+
[[package]]
|
|
133
|
+
name = "cfg-if"
|
|
134
|
+
version = "1.0.0"
|
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
137
|
+
|
|
138
|
+
[[package]]
|
|
139
|
+
name = "clang-sys"
|
|
140
|
+
version = "1.8.1"
|
|
141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
142
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
143
|
+
dependencies = [
|
|
144
|
+
"glob",
|
|
145
|
+
"libc",
|
|
146
|
+
"libloading",
|
|
147
|
+
]
|
|
148
|
+
|
|
149
|
+
[[package]]
|
|
150
|
+
name = "core-foundation"
|
|
151
|
+
version = "0.9.4"
|
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
154
|
+
dependencies = [
|
|
155
|
+
"core-foundation-sys",
|
|
156
|
+
"libc",
|
|
157
|
+
]
|
|
158
|
+
|
|
159
|
+
[[package]]
|
|
160
|
+
name = "core-foundation-sys"
|
|
161
|
+
version = "0.8.6"
|
|
162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
163
|
+
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
|
|
164
|
+
|
|
165
|
+
[[package]]
|
|
166
|
+
name = "either"
|
|
167
|
+
version = "1.12.0"
|
|
168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
169
|
+
checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b"
|
|
170
|
+
|
|
171
|
+
[[package]]
|
|
172
|
+
name = "encoding_rs"
|
|
173
|
+
version = "0.8.34"
|
|
174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
+
checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
|
|
176
|
+
dependencies = [
|
|
177
|
+
"cfg-if",
|
|
178
|
+
]
|
|
179
|
+
|
|
180
|
+
[[package]]
|
|
181
|
+
name = "equivalent"
|
|
182
|
+
version = "1.0.1"
|
|
183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
184
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
185
|
+
|
|
186
|
+
[[package]]
|
|
187
|
+
name = "errno"
|
|
188
|
+
version = "0.3.9"
|
|
189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
+
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
|
191
|
+
dependencies = [
|
|
192
|
+
"libc",
|
|
193
|
+
"windows-sys 0.52.0",
|
|
194
|
+
]
|
|
195
|
+
|
|
196
|
+
[[package]]
|
|
197
|
+
name = "exitfailure"
|
|
198
|
+
version = "0.5.1"
|
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
+
checksum = "2ff5bd832af37f366c6c194d813a11cd90ac484f124f079294f28e357ae40515"
|
|
201
|
+
dependencies = [
|
|
202
|
+
"failure",
|
|
203
|
+
]
|
|
204
|
+
|
|
205
|
+
[[package]]
|
|
206
|
+
name = "failure"
|
|
207
|
+
version = "0.1.8"
|
|
208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
+
checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86"
|
|
210
|
+
dependencies = [
|
|
211
|
+
"backtrace",
|
|
212
|
+
"failure_derive",
|
|
213
|
+
]
|
|
214
|
+
|
|
215
|
+
[[package]]
|
|
216
|
+
name = "failure_derive"
|
|
217
|
+
version = "0.1.8"
|
|
218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
+
checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4"
|
|
220
|
+
dependencies = [
|
|
221
|
+
"proc-macro2",
|
|
222
|
+
"quote",
|
|
223
|
+
"syn 1.0.109",
|
|
224
|
+
"synstructure",
|
|
225
|
+
]
|
|
226
|
+
|
|
227
|
+
[[package]]
|
|
228
|
+
name = "fastrand"
|
|
229
|
+
version = "2.1.0"
|
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
+
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "fnv"
|
|
235
|
+
version = "1.0.7"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
238
|
+
|
|
239
|
+
[[package]]
|
|
240
|
+
name = "foreign-types"
|
|
241
|
+
version = "0.3.2"
|
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
+
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
244
|
+
dependencies = [
|
|
245
|
+
"foreign-types-shared",
|
|
246
|
+
]
|
|
247
|
+
|
|
248
|
+
[[package]]
|
|
249
|
+
name = "foreign-types-shared"
|
|
250
|
+
version = "0.1.1"
|
|
251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
+
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
253
|
+
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "form_urlencoded"
|
|
256
|
+
version = "1.2.1"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
259
|
+
dependencies = [
|
|
260
|
+
"percent-encoding",
|
|
261
|
+
]
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "futures"
|
|
265
|
+
version = "0.3.30"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
|
|
268
|
+
dependencies = [
|
|
269
|
+
"futures-channel",
|
|
270
|
+
"futures-core",
|
|
271
|
+
"futures-executor",
|
|
272
|
+
"futures-io",
|
|
273
|
+
"futures-sink",
|
|
274
|
+
"futures-task",
|
|
275
|
+
"futures-util",
|
|
276
|
+
]
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "futures-channel"
|
|
280
|
+
version = "0.3.30"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
|
|
283
|
+
dependencies = [
|
|
284
|
+
"futures-core",
|
|
285
|
+
"futures-sink",
|
|
286
|
+
]
|
|
287
|
+
|
|
288
|
+
[[package]]
|
|
289
|
+
name = "futures-core"
|
|
290
|
+
version = "0.3.30"
|
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
+
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "futures-executor"
|
|
296
|
+
version = "0.3.30"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
|
|
299
|
+
dependencies = [
|
|
300
|
+
"futures-core",
|
|
301
|
+
"futures-task",
|
|
302
|
+
"futures-util",
|
|
303
|
+
]
|
|
304
|
+
|
|
305
|
+
[[package]]
|
|
306
|
+
name = "futures-io"
|
|
307
|
+
version = "0.3.30"
|
|
308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
309
|
+
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
|
|
310
|
+
|
|
311
|
+
[[package]]
|
|
312
|
+
name = "futures-macro"
|
|
313
|
+
version = "0.3.30"
|
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
315
|
+
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
|
316
|
+
dependencies = [
|
|
317
|
+
"proc-macro2",
|
|
318
|
+
"quote",
|
|
319
|
+
"syn 2.0.66",
|
|
320
|
+
]
|
|
321
|
+
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "futures-sink"
|
|
324
|
+
version = "0.3.30"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "futures-task"
|
|
330
|
+
version = "0.3.30"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "futures-util"
|
|
336
|
+
version = "0.3.30"
|
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
+
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
|
|
339
|
+
dependencies = [
|
|
340
|
+
"futures-channel",
|
|
341
|
+
"futures-core",
|
|
342
|
+
"futures-io",
|
|
343
|
+
"futures-macro",
|
|
344
|
+
"futures-sink",
|
|
345
|
+
"futures-task",
|
|
346
|
+
"memchr",
|
|
347
|
+
"pin-project-lite",
|
|
348
|
+
"pin-utils",
|
|
349
|
+
"slab",
|
|
350
|
+
]
|
|
351
|
+
|
|
352
|
+
[[package]]
|
|
353
|
+
name = "getrandom"
|
|
354
|
+
version = "0.2.15"
|
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
357
|
+
dependencies = [
|
|
358
|
+
"cfg-if",
|
|
359
|
+
"libc",
|
|
360
|
+
"wasi",
|
|
361
|
+
]
|
|
362
|
+
|
|
363
|
+
[[package]]
|
|
364
|
+
name = "gimli"
|
|
365
|
+
version = "0.29.0"
|
|
366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
+
checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
|
|
368
|
+
|
|
369
|
+
[[package]]
|
|
370
|
+
name = "glob"
|
|
371
|
+
version = "0.3.1"
|
|
372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
373
|
+
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
374
|
+
|
|
375
|
+
[[package]]
|
|
376
|
+
name = "h2"
|
|
377
|
+
version = "0.4.5"
|
|
378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
379
|
+
checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab"
|
|
380
|
+
dependencies = [
|
|
381
|
+
"atomic-waker",
|
|
382
|
+
"bytes",
|
|
383
|
+
"fnv",
|
|
384
|
+
"futures-core",
|
|
385
|
+
"futures-sink",
|
|
386
|
+
"http",
|
|
387
|
+
"indexmap",
|
|
388
|
+
"slab",
|
|
389
|
+
"tokio",
|
|
390
|
+
"tokio-util",
|
|
391
|
+
"tracing",
|
|
392
|
+
]
|
|
393
|
+
|
|
394
|
+
[[package]]
|
|
395
|
+
name = "hashbrown"
|
|
396
|
+
version = "0.14.5"
|
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
399
|
+
|
|
400
|
+
[[package]]
|
|
401
|
+
name = "hermit-abi"
|
|
402
|
+
version = "0.3.9"
|
|
403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
404
|
+
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
|
405
|
+
|
|
406
|
+
[[package]]
|
|
407
|
+
name = "http"
|
|
408
|
+
version = "1.1.0"
|
|
409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
+
checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
|
|
411
|
+
dependencies = [
|
|
412
|
+
"bytes",
|
|
413
|
+
"fnv",
|
|
414
|
+
"itoa",
|
|
415
|
+
]
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "http-body"
|
|
419
|
+
version = "1.0.0"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643"
|
|
422
|
+
dependencies = [
|
|
423
|
+
"bytes",
|
|
424
|
+
"http",
|
|
425
|
+
]
|
|
426
|
+
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "http-body-util"
|
|
429
|
+
version = "0.1.2"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
|
|
432
|
+
dependencies = [
|
|
433
|
+
"bytes",
|
|
434
|
+
"futures-util",
|
|
435
|
+
"http",
|
|
436
|
+
"http-body",
|
|
437
|
+
"pin-project-lite",
|
|
438
|
+
]
|
|
439
|
+
|
|
440
|
+
[[package]]
|
|
441
|
+
name = "httparse"
|
|
442
|
+
version = "1.9.4"
|
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
+
checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9"
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "hyper"
|
|
448
|
+
version = "1.3.1"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "fe575dd17d0862a9a33781c8c4696a55c320909004a67a00fb286ba8b1bc496d"
|
|
451
|
+
dependencies = [
|
|
452
|
+
"bytes",
|
|
453
|
+
"futures-channel",
|
|
454
|
+
"futures-util",
|
|
455
|
+
"h2",
|
|
456
|
+
"http",
|
|
457
|
+
"http-body",
|
|
458
|
+
"httparse",
|
|
459
|
+
"itoa",
|
|
460
|
+
"pin-project-lite",
|
|
461
|
+
"smallvec",
|
|
462
|
+
"tokio",
|
|
463
|
+
"want",
|
|
464
|
+
]
|
|
465
|
+
|
|
466
|
+
[[package]]
|
|
467
|
+
name = "hyper-rustls"
|
|
468
|
+
version = "0.27.2"
|
|
469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
+
checksum = "5ee4be2c948921a1a5320b629c4193916ed787a7f7f293fd3f7f5a6c9de74155"
|
|
471
|
+
dependencies = [
|
|
472
|
+
"futures-util",
|
|
473
|
+
"http",
|
|
474
|
+
"hyper",
|
|
475
|
+
"hyper-util",
|
|
476
|
+
"rustls",
|
|
477
|
+
"rustls-pki-types",
|
|
478
|
+
"tokio",
|
|
479
|
+
"tokio-rustls",
|
|
480
|
+
"tower-service",
|
|
481
|
+
]
|
|
482
|
+
|
|
483
|
+
[[package]]
|
|
484
|
+
name = "hyper-tls"
|
|
485
|
+
version = "0.6.0"
|
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
|
+
checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
|
|
488
|
+
dependencies = [
|
|
489
|
+
"bytes",
|
|
490
|
+
"http-body-util",
|
|
491
|
+
"hyper",
|
|
492
|
+
"hyper-util",
|
|
493
|
+
"native-tls",
|
|
494
|
+
"tokio",
|
|
495
|
+
"tokio-native-tls",
|
|
496
|
+
"tower-service",
|
|
497
|
+
]
|
|
498
|
+
|
|
499
|
+
[[package]]
|
|
500
|
+
name = "hyper-util"
|
|
501
|
+
version = "0.1.5"
|
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
+
checksum = "7b875924a60b96e5d7b9ae7b066540b1dd1cbd90d1828f54c92e02a283351c56"
|
|
504
|
+
dependencies = [
|
|
505
|
+
"bytes",
|
|
506
|
+
"futures-channel",
|
|
507
|
+
"futures-util",
|
|
508
|
+
"http",
|
|
509
|
+
"http-body",
|
|
510
|
+
"hyper",
|
|
511
|
+
"pin-project-lite",
|
|
512
|
+
"socket2",
|
|
513
|
+
"tokio",
|
|
514
|
+
"tower",
|
|
515
|
+
"tower-service",
|
|
516
|
+
"tracing",
|
|
517
|
+
]
|
|
518
|
+
|
|
519
|
+
[[package]]
|
|
520
|
+
name = "idna"
|
|
521
|
+
version = "0.5.0"
|
|
522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
+
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
|
|
524
|
+
dependencies = [
|
|
525
|
+
"unicode-bidi",
|
|
526
|
+
"unicode-normalization",
|
|
527
|
+
]
|
|
528
|
+
|
|
529
|
+
[[package]]
|
|
530
|
+
name = "indexmap"
|
|
531
|
+
version = "2.2.6"
|
|
532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
533
|
+
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
|
|
534
|
+
dependencies = [
|
|
535
|
+
"equivalent",
|
|
536
|
+
"hashbrown",
|
|
537
|
+
]
|
|
538
|
+
|
|
539
|
+
[[package]]
|
|
540
|
+
name = "ipnet"
|
|
541
|
+
version = "2.9.0"
|
|
542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
|
+
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
|
|
544
|
+
|
|
545
|
+
[[package]]
|
|
546
|
+
name = "itertools"
|
|
547
|
+
version = "0.12.1"
|
|
548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
550
|
+
dependencies = [
|
|
551
|
+
"either",
|
|
552
|
+
]
|
|
553
|
+
|
|
554
|
+
[[package]]
|
|
555
|
+
name = "itoa"
|
|
556
|
+
version = "1.0.11"
|
|
557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
558
|
+
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
|
559
|
+
|
|
560
|
+
[[package]]
|
|
561
|
+
name = "js-sys"
|
|
562
|
+
version = "0.3.69"
|
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
+
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
|
|
565
|
+
dependencies = [
|
|
566
|
+
"wasm-bindgen",
|
|
567
|
+
]
|
|
568
|
+
|
|
569
|
+
[[package]]
|
|
570
|
+
name = "lazy_static"
|
|
571
|
+
version = "1.4.0"
|
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
+
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
574
|
+
|
|
575
|
+
[[package]]
|
|
576
|
+
name = "lazycell"
|
|
577
|
+
version = "1.3.0"
|
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
580
|
+
|
|
581
|
+
[[package]]
|
|
582
|
+
name = "libc"
|
|
583
|
+
version = "0.2.155"
|
|
584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
+
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
|
|
586
|
+
|
|
587
|
+
[[package]]
|
|
588
|
+
name = "libloading"
|
|
589
|
+
version = "0.8.3"
|
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
+
checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19"
|
|
592
|
+
dependencies = [
|
|
593
|
+
"cfg-if",
|
|
594
|
+
"windows-targets 0.52.5",
|
|
595
|
+
]
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "linux-raw-sys"
|
|
599
|
+
version = "0.4.14"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
|
602
|
+
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "lock_api"
|
|
605
|
+
version = "0.4.12"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
|
608
|
+
dependencies = [
|
|
609
|
+
"autocfg",
|
|
610
|
+
"scopeguard",
|
|
611
|
+
]
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "log"
|
|
615
|
+
version = "0.4.21"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
|
|
618
|
+
|
|
619
|
+
[[package]]
|
|
620
|
+
name = "magnus"
|
|
621
|
+
version = "0.6.4"
|
|
622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
+
checksum = "b1597ef40aa8c36be098249e82c9a20cf7199278ac1c1a1a995eeead6a184479"
|
|
624
|
+
dependencies = [
|
|
625
|
+
"magnus-macros",
|
|
626
|
+
"rb-sys",
|
|
627
|
+
"rb-sys-env",
|
|
628
|
+
"seq-macro",
|
|
629
|
+
]
|
|
630
|
+
|
|
631
|
+
[[package]]
|
|
632
|
+
name = "magnus-macros"
|
|
633
|
+
version = "0.6.0"
|
|
634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
635
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
|
636
|
+
dependencies = [
|
|
637
|
+
"proc-macro2",
|
|
638
|
+
"quote",
|
|
639
|
+
"syn 2.0.66",
|
|
640
|
+
]
|
|
641
|
+
|
|
642
|
+
[[package]]
|
|
643
|
+
name = "mawsitsit"
|
|
644
|
+
version = "0.1.0"
|
|
645
|
+
dependencies = [
|
|
646
|
+
"async-recursion",
|
|
647
|
+
"base64",
|
|
648
|
+
"exitfailure",
|
|
649
|
+
"futures",
|
|
650
|
+
"magnus",
|
|
651
|
+
"reqwest",
|
|
652
|
+
"serde",
|
|
653
|
+
"serde_derive",
|
|
654
|
+
"serde_json",
|
|
655
|
+
"serde_magnus",
|
|
656
|
+
"thiserror",
|
|
657
|
+
"tokio",
|
|
658
|
+
]
|
|
659
|
+
|
|
660
|
+
[[package]]
|
|
661
|
+
name = "memchr"
|
|
662
|
+
version = "2.7.4"
|
|
663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
665
|
+
|
|
666
|
+
[[package]]
|
|
667
|
+
name = "mime"
|
|
668
|
+
version = "0.3.17"
|
|
669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
671
|
+
|
|
672
|
+
[[package]]
|
|
673
|
+
name = "minimal-lexical"
|
|
674
|
+
version = "0.2.1"
|
|
675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
676
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "miniz_oxide"
|
|
680
|
+
version = "0.7.4"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
|
|
683
|
+
dependencies = [
|
|
684
|
+
"adler",
|
|
685
|
+
]
|
|
686
|
+
|
|
687
|
+
[[package]]
|
|
688
|
+
name = "mio"
|
|
689
|
+
version = "0.8.11"
|
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
+
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
|
|
692
|
+
dependencies = [
|
|
693
|
+
"libc",
|
|
694
|
+
"wasi",
|
|
695
|
+
"windows-sys 0.48.0",
|
|
696
|
+
]
|
|
697
|
+
|
|
698
|
+
[[package]]
|
|
699
|
+
name = "native-tls"
|
|
700
|
+
version = "0.2.12"
|
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
+
checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466"
|
|
703
|
+
dependencies = [
|
|
704
|
+
"libc",
|
|
705
|
+
"log",
|
|
706
|
+
"openssl",
|
|
707
|
+
"openssl-probe",
|
|
708
|
+
"openssl-sys",
|
|
709
|
+
"schannel",
|
|
710
|
+
"security-framework",
|
|
711
|
+
"security-framework-sys",
|
|
712
|
+
"tempfile",
|
|
713
|
+
]
|
|
714
|
+
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "nom"
|
|
717
|
+
version = "7.1.3"
|
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
720
|
+
dependencies = [
|
|
721
|
+
"memchr",
|
|
722
|
+
"minimal-lexical",
|
|
723
|
+
]
|
|
724
|
+
|
|
725
|
+
[[package]]
|
|
726
|
+
name = "num_cpus"
|
|
727
|
+
version = "1.16.0"
|
|
728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
+
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
|
730
|
+
dependencies = [
|
|
731
|
+
"hermit-abi",
|
|
732
|
+
"libc",
|
|
733
|
+
]
|
|
734
|
+
|
|
735
|
+
[[package]]
|
|
736
|
+
name = "object"
|
|
737
|
+
version = "0.36.0"
|
|
738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
739
|
+
checksum = "576dfe1fc8f9df304abb159d767a29d0476f7750fbf8aa7ad07816004a207434"
|
|
740
|
+
dependencies = [
|
|
741
|
+
"memchr",
|
|
742
|
+
]
|
|
743
|
+
|
|
744
|
+
[[package]]
|
|
745
|
+
name = "once_cell"
|
|
746
|
+
version = "1.19.0"
|
|
747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
|
749
|
+
|
|
750
|
+
[[package]]
|
|
751
|
+
name = "openssl"
|
|
752
|
+
version = "0.10.64"
|
|
753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
754
|
+
checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f"
|
|
755
|
+
dependencies = [
|
|
756
|
+
"bitflags 2.5.0",
|
|
757
|
+
"cfg-if",
|
|
758
|
+
"foreign-types",
|
|
759
|
+
"libc",
|
|
760
|
+
"once_cell",
|
|
761
|
+
"openssl-macros",
|
|
762
|
+
"openssl-sys",
|
|
763
|
+
]
|
|
764
|
+
|
|
765
|
+
[[package]]
|
|
766
|
+
name = "openssl-macros"
|
|
767
|
+
version = "0.1.1"
|
|
768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
769
|
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
770
|
+
dependencies = [
|
|
771
|
+
"proc-macro2",
|
|
772
|
+
"quote",
|
|
773
|
+
"syn 2.0.66",
|
|
774
|
+
]
|
|
775
|
+
|
|
776
|
+
[[package]]
|
|
777
|
+
name = "openssl-probe"
|
|
778
|
+
version = "0.1.5"
|
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
+
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
|
781
|
+
|
|
782
|
+
[[package]]
|
|
783
|
+
name = "openssl-sys"
|
|
784
|
+
version = "0.9.102"
|
|
785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
+
checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2"
|
|
787
|
+
dependencies = [
|
|
788
|
+
"cc",
|
|
789
|
+
"libc",
|
|
790
|
+
"pkg-config",
|
|
791
|
+
"vcpkg",
|
|
792
|
+
]
|
|
793
|
+
|
|
794
|
+
[[package]]
|
|
795
|
+
name = "parking_lot"
|
|
796
|
+
version = "0.12.3"
|
|
797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
798
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
|
799
|
+
dependencies = [
|
|
800
|
+
"lock_api",
|
|
801
|
+
"parking_lot_core",
|
|
802
|
+
]
|
|
803
|
+
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "parking_lot_core"
|
|
806
|
+
version = "0.9.10"
|
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
809
|
+
dependencies = [
|
|
810
|
+
"cfg-if",
|
|
811
|
+
"libc",
|
|
812
|
+
"redox_syscall",
|
|
813
|
+
"smallvec",
|
|
814
|
+
"windows-targets 0.52.5",
|
|
815
|
+
]
|
|
816
|
+
|
|
817
|
+
[[package]]
|
|
818
|
+
name = "percent-encoding"
|
|
819
|
+
version = "2.3.1"
|
|
820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
821
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
822
|
+
|
|
823
|
+
[[package]]
|
|
824
|
+
name = "pin-project"
|
|
825
|
+
version = "1.1.5"
|
|
826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
827
|
+
checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
|
|
828
|
+
dependencies = [
|
|
829
|
+
"pin-project-internal",
|
|
830
|
+
]
|
|
831
|
+
|
|
832
|
+
[[package]]
|
|
833
|
+
name = "pin-project-internal"
|
|
834
|
+
version = "1.1.5"
|
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
+
checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
|
|
837
|
+
dependencies = [
|
|
838
|
+
"proc-macro2",
|
|
839
|
+
"quote",
|
|
840
|
+
"syn 2.0.66",
|
|
841
|
+
]
|
|
842
|
+
|
|
843
|
+
[[package]]
|
|
844
|
+
name = "pin-project-lite"
|
|
845
|
+
version = "0.2.14"
|
|
846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
+
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
|
|
848
|
+
|
|
849
|
+
[[package]]
|
|
850
|
+
name = "pin-utils"
|
|
851
|
+
version = "0.1.0"
|
|
852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
853
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
854
|
+
|
|
855
|
+
[[package]]
|
|
856
|
+
name = "pkg-config"
|
|
857
|
+
version = "0.3.30"
|
|
858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
859
|
+
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
|
|
860
|
+
|
|
861
|
+
[[package]]
|
|
862
|
+
name = "proc-macro2"
|
|
863
|
+
version = "1.0.85"
|
|
864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
+
checksum = "22244ce15aa966053a896d1accb3a6e68469b97c7f33f284b99f0d576879fc23"
|
|
866
|
+
dependencies = [
|
|
867
|
+
"unicode-ident",
|
|
868
|
+
]
|
|
869
|
+
|
|
870
|
+
[[package]]
|
|
871
|
+
name = "quote"
|
|
872
|
+
version = "1.0.36"
|
|
873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
874
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
|
875
|
+
dependencies = [
|
|
876
|
+
"proc-macro2",
|
|
877
|
+
]
|
|
878
|
+
|
|
879
|
+
[[package]]
|
|
880
|
+
name = "rb-sys"
|
|
881
|
+
version = "0.9.97"
|
|
882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
+
checksum = "47d30bcad206b51f2f66121190ca678dce1fdf3a2eae0ac5d838d1818b19bdf5"
|
|
884
|
+
dependencies = [
|
|
885
|
+
"rb-sys-build",
|
|
886
|
+
]
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "rb-sys-build"
|
|
890
|
+
version = "0.9.97"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "3cbd92f281615f3c2dcb9dcb0f0576624752afbf9a7f99173b37c4b55b62dd8a"
|
|
893
|
+
dependencies = [
|
|
894
|
+
"bindgen",
|
|
895
|
+
"lazy_static",
|
|
896
|
+
"proc-macro2",
|
|
897
|
+
"quote",
|
|
898
|
+
"regex",
|
|
899
|
+
"shell-words",
|
|
900
|
+
"syn 2.0.66",
|
|
901
|
+
]
|
|
902
|
+
|
|
903
|
+
[[package]]
|
|
904
|
+
name = "rb-sys-env"
|
|
905
|
+
version = "0.1.2"
|
|
906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
|
+
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
|
908
|
+
|
|
909
|
+
[[package]]
|
|
910
|
+
name = "redox_syscall"
|
|
911
|
+
version = "0.5.2"
|
|
912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
+
checksum = "c82cf8cff14456045f55ec4241383baeff27af886adb72ffb2162f99911de0fd"
|
|
914
|
+
dependencies = [
|
|
915
|
+
"bitflags 2.5.0",
|
|
916
|
+
]
|
|
917
|
+
|
|
918
|
+
[[package]]
|
|
919
|
+
name = "regex"
|
|
920
|
+
version = "1.10.5"
|
|
921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
922
|
+
checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f"
|
|
923
|
+
dependencies = [
|
|
924
|
+
"aho-corasick",
|
|
925
|
+
"memchr",
|
|
926
|
+
"regex-automata",
|
|
927
|
+
"regex-syntax",
|
|
928
|
+
]
|
|
929
|
+
|
|
930
|
+
[[package]]
|
|
931
|
+
name = "regex-automata"
|
|
932
|
+
version = "0.4.7"
|
|
933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
934
|
+
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
|
|
935
|
+
dependencies = [
|
|
936
|
+
"aho-corasick",
|
|
937
|
+
"memchr",
|
|
938
|
+
"regex-syntax",
|
|
939
|
+
]
|
|
940
|
+
|
|
941
|
+
[[package]]
|
|
942
|
+
name = "regex-syntax"
|
|
943
|
+
version = "0.8.4"
|
|
944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
945
|
+
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
|
|
946
|
+
|
|
947
|
+
[[package]]
|
|
948
|
+
name = "reqwest"
|
|
949
|
+
version = "0.12.5"
|
|
950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
+
checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37"
|
|
952
|
+
dependencies = [
|
|
953
|
+
"base64",
|
|
954
|
+
"bytes",
|
|
955
|
+
"encoding_rs",
|
|
956
|
+
"futures-core",
|
|
957
|
+
"futures-util",
|
|
958
|
+
"h2",
|
|
959
|
+
"http",
|
|
960
|
+
"http-body",
|
|
961
|
+
"http-body-util",
|
|
962
|
+
"hyper",
|
|
963
|
+
"hyper-rustls",
|
|
964
|
+
"hyper-tls",
|
|
965
|
+
"hyper-util",
|
|
966
|
+
"ipnet",
|
|
967
|
+
"js-sys",
|
|
968
|
+
"log",
|
|
969
|
+
"mime",
|
|
970
|
+
"native-tls",
|
|
971
|
+
"once_cell",
|
|
972
|
+
"percent-encoding",
|
|
973
|
+
"pin-project-lite",
|
|
974
|
+
"rustls-pemfile",
|
|
975
|
+
"serde",
|
|
976
|
+
"serde_json",
|
|
977
|
+
"serde_urlencoded",
|
|
978
|
+
"sync_wrapper",
|
|
979
|
+
"system-configuration",
|
|
980
|
+
"tokio",
|
|
981
|
+
"tokio-native-tls",
|
|
982
|
+
"tower-service",
|
|
983
|
+
"url",
|
|
984
|
+
"wasm-bindgen",
|
|
985
|
+
"wasm-bindgen-futures",
|
|
986
|
+
"web-sys",
|
|
987
|
+
"winreg",
|
|
988
|
+
]
|
|
989
|
+
|
|
990
|
+
[[package]]
|
|
991
|
+
name = "ring"
|
|
992
|
+
version = "0.17.8"
|
|
993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
994
|
+
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
|
|
995
|
+
dependencies = [
|
|
996
|
+
"cc",
|
|
997
|
+
"cfg-if",
|
|
998
|
+
"getrandom",
|
|
999
|
+
"libc",
|
|
1000
|
+
"spin",
|
|
1001
|
+
"untrusted",
|
|
1002
|
+
"windows-sys 0.52.0",
|
|
1003
|
+
]
|
|
1004
|
+
|
|
1005
|
+
[[package]]
|
|
1006
|
+
name = "rustc-demangle"
|
|
1007
|
+
version = "0.1.24"
|
|
1008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1009
|
+
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
1010
|
+
|
|
1011
|
+
[[package]]
|
|
1012
|
+
name = "rustc-hash"
|
|
1013
|
+
version = "1.1.0"
|
|
1014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1015
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
1016
|
+
|
|
1017
|
+
[[package]]
|
|
1018
|
+
name = "rustix"
|
|
1019
|
+
version = "0.38.34"
|
|
1020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1021
|
+
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
|
|
1022
|
+
dependencies = [
|
|
1023
|
+
"bitflags 2.5.0",
|
|
1024
|
+
"errno",
|
|
1025
|
+
"libc",
|
|
1026
|
+
"linux-raw-sys",
|
|
1027
|
+
"windows-sys 0.52.0",
|
|
1028
|
+
]
|
|
1029
|
+
|
|
1030
|
+
[[package]]
|
|
1031
|
+
name = "rustls"
|
|
1032
|
+
version = "0.23.10"
|
|
1033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1034
|
+
checksum = "05cff451f60db80f490f3c182b77c35260baace73209e9cdbbe526bfe3a4d402"
|
|
1035
|
+
dependencies = [
|
|
1036
|
+
"once_cell",
|
|
1037
|
+
"rustls-pki-types",
|
|
1038
|
+
"rustls-webpki",
|
|
1039
|
+
"subtle",
|
|
1040
|
+
"zeroize",
|
|
1041
|
+
]
|
|
1042
|
+
|
|
1043
|
+
[[package]]
|
|
1044
|
+
name = "rustls-pemfile"
|
|
1045
|
+
version = "2.1.2"
|
|
1046
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1047
|
+
checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d"
|
|
1048
|
+
dependencies = [
|
|
1049
|
+
"base64",
|
|
1050
|
+
"rustls-pki-types",
|
|
1051
|
+
]
|
|
1052
|
+
|
|
1053
|
+
[[package]]
|
|
1054
|
+
name = "rustls-pki-types"
|
|
1055
|
+
version = "1.7.0"
|
|
1056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1057
|
+
checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d"
|
|
1058
|
+
|
|
1059
|
+
[[package]]
|
|
1060
|
+
name = "rustls-webpki"
|
|
1061
|
+
version = "0.102.4"
|
|
1062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1063
|
+
checksum = "ff448f7e92e913c4b7d4c6d8e4540a1724b319b4152b8aef6d4cf8339712b33e"
|
|
1064
|
+
dependencies = [
|
|
1065
|
+
"ring",
|
|
1066
|
+
"rustls-pki-types",
|
|
1067
|
+
"untrusted",
|
|
1068
|
+
]
|
|
1069
|
+
|
|
1070
|
+
[[package]]
|
|
1071
|
+
name = "ryu"
|
|
1072
|
+
version = "1.0.18"
|
|
1073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1074
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
|
1075
|
+
|
|
1076
|
+
[[package]]
|
|
1077
|
+
name = "schannel"
|
|
1078
|
+
version = "0.1.23"
|
|
1079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1080
|
+
checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
|
|
1081
|
+
dependencies = [
|
|
1082
|
+
"windows-sys 0.52.0",
|
|
1083
|
+
]
|
|
1084
|
+
|
|
1085
|
+
[[package]]
|
|
1086
|
+
name = "scopeguard"
|
|
1087
|
+
version = "1.2.0"
|
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1090
|
+
|
|
1091
|
+
[[package]]
|
|
1092
|
+
name = "security-framework"
|
|
1093
|
+
version = "2.11.0"
|
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
+
checksum = "c627723fd09706bacdb5cf41499e95098555af3c3c29d014dc3c458ef6be11c0"
|
|
1096
|
+
dependencies = [
|
|
1097
|
+
"bitflags 2.5.0",
|
|
1098
|
+
"core-foundation",
|
|
1099
|
+
"core-foundation-sys",
|
|
1100
|
+
"libc",
|
|
1101
|
+
"security-framework-sys",
|
|
1102
|
+
]
|
|
1103
|
+
|
|
1104
|
+
[[package]]
|
|
1105
|
+
name = "security-framework-sys"
|
|
1106
|
+
version = "2.11.0"
|
|
1107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1108
|
+
checksum = "317936bbbd05227752583946b9e66d7ce3b489f84e11a94a510b4437fef407d7"
|
|
1109
|
+
dependencies = [
|
|
1110
|
+
"core-foundation-sys",
|
|
1111
|
+
"libc",
|
|
1112
|
+
]
|
|
1113
|
+
|
|
1114
|
+
[[package]]
|
|
1115
|
+
name = "seq-macro"
|
|
1116
|
+
version = "0.3.5"
|
|
1117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1118
|
+
checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
|
1119
|
+
|
|
1120
|
+
[[package]]
|
|
1121
|
+
name = "serde"
|
|
1122
|
+
version = "1.0.203"
|
|
1123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1124
|
+
checksum = "7253ab4de971e72fb7be983802300c30b5a7f0c2e56fab8abfc6a214307c0094"
|
|
1125
|
+
dependencies = [
|
|
1126
|
+
"serde_derive",
|
|
1127
|
+
]
|
|
1128
|
+
|
|
1129
|
+
[[package]]
|
|
1130
|
+
name = "serde_derive"
|
|
1131
|
+
version = "1.0.203"
|
|
1132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
+
checksum = "500cbc0ebeb6f46627f50f3f5811ccf6bf00643be300b4c3eabc0ef55dc5b5ba"
|
|
1134
|
+
dependencies = [
|
|
1135
|
+
"proc-macro2",
|
|
1136
|
+
"quote",
|
|
1137
|
+
"syn 2.0.66",
|
|
1138
|
+
]
|
|
1139
|
+
|
|
1140
|
+
[[package]]
|
|
1141
|
+
name = "serde_json"
|
|
1142
|
+
version = "1.0.117"
|
|
1143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1144
|
+
checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3"
|
|
1145
|
+
dependencies = [
|
|
1146
|
+
"itoa",
|
|
1147
|
+
"ryu",
|
|
1148
|
+
"serde",
|
|
1149
|
+
]
|
|
1150
|
+
|
|
1151
|
+
[[package]]
|
|
1152
|
+
name = "serde_magnus"
|
|
1153
|
+
version = "0.8.1"
|
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
+
checksum = "76c20da583b5e1016e9199ef5f3260f7a8d1b253307d232600f6b12737262dbd"
|
|
1156
|
+
dependencies = [
|
|
1157
|
+
"magnus",
|
|
1158
|
+
"serde",
|
|
1159
|
+
"tap",
|
|
1160
|
+
]
|
|
1161
|
+
|
|
1162
|
+
[[package]]
|
|
1163
|
+
name = "serde_urlencoded"
|
|
1164
|
+
version = "0.7.1"
|
|
1165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1166
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
1167
|
+
dependencies = [
|
|
1168
|
+
"form_urlencoded",
|
|
1169
|
+
"itoa",
|
|
1170
|
+
"ryu",
|
|
1171
|
+
"serde",
|
|
1172
|
+
]
|
|
1173
|
+
|
|
1174
|
+
[[package]]
|
|
1175
|
+
name = "shell-words"
|
|
1176
|
+
version = "1.1.0"
|
|
1177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1178
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
|
1179
|
+
|
|
1180
|
+
[[package]]
|
|
1181
|
+
name = "shlex"
|
|
1182
|
+
version = "1.3.0"
|
|
1183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1184
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1185
|
+
|
|
1186
|
+
[[package]]
|
|
1187
|
+
name = "signal-hook-registry"
|
|
1188
|
+
version = "1.4.2"
|
|
1189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1190
|
+
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
|
|
1191
|
+
dependencies = [
|
|
1192
|
+
"libc",
|
|
1193
|
+
]
|
|
1194
|
+
|
|
1195
|
+
[[package]]
|
|
1196
|
+
name = "slab"
|
|
1197
|
+
version = "0.4.9"
|
|
1198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1199
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
|
1200
|
+
dependencies = [
|
|
1201
|
+
"autocfg",
|
|
1202
|
+
]
|
|
1203
|
+
|
|
1204
|
+
[[package]]
|
|
1205
|
+
name = "smallvec"
|
|
1206
|
+
version = "1.13.2"
|
|
1207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1208
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
1209
|
+
|
|
1210
|
+
[[package]]
|
|
1211
|
+
name = "socket2"
|
|
1212
|
+
version = "0.5.7"
|
|
1213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1214
|
+
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
|
|
1215
|
+
dependencies = [
|
|
1216
|
+
"libc",
|
|
1217
|
+
"windows-sys 0.52.0",
|
|
1218
|
+
]
|
|
1219
|
+
|
|
1220
|
+
[[package]]
|
|
1221
|
+
name = "spin"
|
|
1222
|
+
version = "0.9.8"
|
|
1223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1224
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
1225
|
+
|
|
1226
|
+
[[package]]
|
|
1227
|
+
name = "subtle"
|
|
1228
|
+
version = "2.6.0"
|
|
1229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1230
|
+
checksum = "0d0208408ba0c3df17ed26eb06992cb1a1268d41b2c0e12e65203fbe3972cee5"
|
|
1231
|
+
|
|
1232
|
+
[[package]]
|
|
1233
|
+
name = "syn"
|
|
1234
|
+
version = "1.0.109"
|
|
1235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1236
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
1237
|
+
dependencies = [
|
|
1238
|
+
"proc-macro2",
|
|
1239
|
+
"quote",
|
|
1240
|
+
"unicode-ident",
|
|
1241
|
+
]
|
|
1242
|
+
|
|
1243
|
+
[[package]]
|
|
1244
|
+
name = "syn"
|
|
1245
|
+
version = "2.0.66"
|
|
1246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1247
|
+
checksum = "c42f3f41a2de00b01c0aaad383c5a45241efc8b2d1eda5661812fda5f3cdcff5"
|
|
1248
|
+
dependencies = [
|
|
1249
|
+
"proc-macro2",
|
|
1250
|
+
"quote",
|
|
1251
|
+
"unicode-ident",
|
|
1252
|
+
]
|
|
1253
|
+
|
|
1254
|
+
[[package]]
|
|
1255
|
+
name = "sync_wrapper"
|
|
1256
|
+
version = "1.0.1"
|
|
1257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1258
|
+
checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394"
|
|
1259
|
+
|
|
1260
|
+
[[package]]
|
|
1261
|
+
name = "synstructure"
|
|
1262
|
+
version = "0.12.6"
|
|
1263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1264
|
+
checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
|
|
1265
|
+
dependencies = [
|
|
1266
|
+
"proc-macro2",
|
|
1267
|
+
"quote",
|
|
1268
|
+
"syn 1.0.109",
|
|
1269
|
+
"unicode-xid",
|
|
1270
|
+
]
|
|
1271
|
+
|
|
1272
|
+
[[package]]
|
|
1273
|
+
name = "system-configuration"
|
|
1274
|
+
version = "0.5.1"
|
|
1275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1276
|
+
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
|
|
1277
|
+
dependencies = [
|
|
1278
|
+
"bitflags 1.3.2",
|
|
1279
|
+
"core-foundation",
|
|
1280
|
+
"system-configuration-sys",
|
|
1281
|
+
]
|
|
1282
|
+
|
|
1283
|
+
[[package]]
|
|
1284
|
+
name = "system-configuration-sys"
|
|
1285
|
+
version = "0.5.0"
|
|
1286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1287
|
+
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
|
|
1288
|
+
dependencies = [
|
|
1289
|
+
"core-foundation-sys",
|
|
1290
|
+
"libc",
|
|
1291
|
+
]
|
|
1292
|
+
|
|
1293
|
+
[[package]]
|
|
1294
|
+
name = "tap"
|
|
1295
|
+
version = "1.0.1"
|
|
1296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1297
|
+
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
1298
|
+
|
|
1299
|
+
[[package]]
|
|
1300
|
+
name = "tempfile"
|
|
1301
|
+
version = "3.10.1"
|
|
1302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1303
|
+
checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
|
|
1304
|
+
dependencies = [
|
|
1305
|
+
"cfg-if",
|
|
1306
|
+
"fastrand",
|
|
1307
|
+
"rustix",
|
|
1308
|
+
"windows-sys 0.52.0",
|
|
1309
|
+
]
|
|
1310
|
+
|
|
1311
|
+
[[package]]
|
|
1312
|
+
name = "thiserror"
|
|
1313
|
+
version = "1.0.61"
|
|
1314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1315
|
+
checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709"
|
|
1316
|
+
dependencies = [
|
|
1317
|
+
"thiserror-impl",
|
|
1318
|
+
]
|
|
1319
|
+
|
|
1320
|
+
[[package]]
|
|
1321
|
+
name = "thiserror-impl"
|
|
1322
|
+
version = "1.0.61"
|
|
1323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
+
checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533"
|
|
1325
|
+
dependencies = [
|
|
1326
|
+
"proc-macro2",
|
|
1327
|
+
"quote",
|
|
1328
|
+
"syn 2.0.66",
|
|
1329
|
+
]
|
|
1330
|
+
|
|
1331
|
+
[[package]]
|
|
1332
|
+
name = "tinyvec"
|
|
1333
|
+
version = "1.6.0"
|
|
1334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1335
|
+
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
|
|
1336
|
+
dependencies = [
|
|
1337
|
+
"tinyvec_macros",
|
|
1338
|
+
]
|
|
1339
|
+
|
|
1340
|
+
[[package]]
|
|
1341
|
+
name = "tinyvec_macros"
|
|
1342
|
+
version = "0.1.1"
|
|
1343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1344
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1345
|
+
|
|
1346
|
+
[[package]]
|
|
1347
|
+
name = "tokio"
|
|
1348
|
+
version = "1.38.0"
|
|
1349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1350
|
+
checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a"
|
|
1351
|
+
dependencies = [
|
|
1352
|
+
"backtrace",
|
|
1353
|
+
"bytes",
|
|
1354
|
+
"libc",
|
|
1355
|
+
"mio",
|
|
1356
|
+
"num_cpus",
|
|
1357
|
+
"parking_lot",
|
|
1358
|
+
"pin-project-lite",
|
|
1359
|
+
"signal-hook-registry",
|
|
1360
|
+
"socket2",
|
|
1361
|
+
"tokio-macros",
|
|
1362
|
+
"windows-sys 0.48.0",
|
|
1363
|
+
]
|
|
1364
|
+
|
|
1365
|
+
[[package]]
|
|
1366
|
+
name = "tokio-macros"
|
|
1367
|
+
version = "2.3.0"
|
|
1368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1369
|
+
checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a"
|
|
1370
|
+
dependencies = [
|
|
1371
|
+
"proc-macro2",
|
|
1372
|
+
"quote",
|
|
1373
|
+
"syn 2.0.66",
|
|
1374
|
+
]
|
|
1375
|
+
|
|
1376
|
+
[[package]]
|
|
1377
|
+
name = "tokio-native-tls"
|
|
1378
|
+
version = "0.3.1"
|
|
1379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
+
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
|
|
1381
|
+
dependencies = [
|
|
1382
|
+
"native-tls",
|
|
1383
|
+
"tokio",
|
|
1384
|
+
]
|
|
1385
|
+
|
|
1386
|
+
[[package]]
|
|
1387
|
+
name = "tokio-rustls"
|
|
1388
|
+
version = "0.26.0"
|
|
1389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1390
|
+
checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4"
|
|
1391
|
+
dependencies = [
|
|
1392
|
+
"rustls",
|
|
1393
|
+
"rustls-pki-types",
|
|
1394
|
+
"tokio",
|
|
1395
|
+
]
|
|
1396
|
+
|
|
1397
|
+
[[package]]
|
|
1398
|
+
name = "tokio-util"
|
|
1399
|
+
version = "0.7.11"
|
|
1400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
+
checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
|
|
1402
|
+
dependencies = [
|
|
1403
|
+
"bytes",
|
|
1404
|
+
"futures-core",
|
|
1405
|
+
"futures-sink",
|
|
1406
|
+
"pin-project-lite",
|
|
1407
|
+
"tokio",
|
|
1408
|
+
]
|
|
1409
|
+
|
|
1410
|
+
[[package]]
|
|
1411
|
+
name = "tower"
|
|
1412
|
+
version = "0.4.13"
|
|
1413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1414
|
+
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
|
|
1415
|
+
dependencies = [
|
|
1416
|
+
"futures-core",
|
|
1417
|
+
"futures-util",
|
|
1418
|
+
"pin-project",
|
|
1419
|
+
"pin-project-lite",
|
|
1420
|
+
"tokio",
|
|
1421
|
+
"tower-layer",
|
|
1422
|
+
"tower-service",
|
|
1423
|
+
]
|
|
1424
|
+
|
|
1425
|
+
[[package]]
|
|
1426
|
+
name = "tower-layer"
|
|
1427
|
+
version = "0.3.2"
|
|
1428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1429
|
+
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
|
|
1430
|
+
|
|
1431
|
+
[[package]]
|
|
1432
|
+
name = "tower-service"
|
|
1433
|
+
version = "0.3.2"
|
|
1434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
+
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
|
|
1436
|
+
|
|
1437
|
+
[[package]]
|
|
1438
|
+
name = "tracing"
|
|
1439
|
+
version = "0.1.40"
|
|
1440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1441
|
+
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
|
|
1442
|
+
dependencies = [
|
|
1443
|
+
"pin-project-lite",
|
|
1444
|
+
"tracing-core",
|
|
1445
|
+
]
|
|
1446
|
+
|
|
1447
|
+
[[package]]
|
|
1448
|
+
name = "tracing-core"
|
|
1449
|
+
version = "0.1.32"
|
|
1450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1451
|
+
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
|
|
1452
|
+
dependencies = [
|
|
1453
|
+
"once_cell",
|
|
1454
|
+
]
|
|
1455
|
+
|
|
1456
|
+
[[package]]
|
|
1457
|
+
name = "try-lock"
|
|
1458
|
+
version = "0.2.5"
|
|
1459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1460
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
1461
|
+
|
|
1462
|
+
[[package]]
|
|
1463
|
+
name = "unicode-bidi"
|
|
1464
|
+
version = "0.3.15"
|
|
1465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
|
+
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
|
|
1467
|
+
|
|
1468
|
+
[[package]]
|
|
1469
|
+
name = "unicode-ident"
|
|
1470
|
+
version = "1.0.12"
|
|
1471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1472
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
1473
|
+
|
|
1474
|
+
[[package]]
|
|
1475
|
+
name = "unicode-normalization"
|
|
1476
|
+
version = "0.1.23"
|
|
1477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1478
|
+
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
|
|
1479
|
+
dependencies = [
|
|
1480
|
+
"tinyvec",
|
|
1481
|
+
]
|
|
1482
|
+
|
|
1483
|
+
[[package]]
|
|
1484
|
+
name = "unicode-xid"
|
|
1485
|
+
version = "0.2.4"
|
|
1486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1487
|
+
checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
|
|
1488
|
+
|
|
1489
|
+
[[package]]
|
|
1490
|
+
name = "untrusted"
|
|
1491
|
+
version = "0.9.0"
|
|
1492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1493
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
1494
|
+
|
|
1495
|
+
[[package]]
|
|
1496
|
+
name = "url"
|
|
1497
|
+
version = "2.5.2"
|
|
1498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1499
|
+
checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
|
|
1500
|
+
dependencies = [
|
|
1501
|
+
"form_urlencoded",
|
|
1502
|
+
"idna",
|
|
1503
|
+
"percent-encoding",
|
|
1504
|
+
]
|
|
1505
|
+
|
|
1506
|
+
[[package]]
|
|
1507
|
+
name = "vcpkg"
|
|
1508
|
+
version = "0.2.15"
|
|
1509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1510
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
1511
|
+
|
|
1512
|
+
[[package]]
|
|
1513
|
+
name = "want"
|
|
1514
|
+
version = "0.3.1"
|
|
1515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1516
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
1517
|
+
dependencies = [
|
|
1518
|
+
"try-lock",
|
|
1519
|
+
]
|
|
1520
|
+
|
|
1521
|
+
[[package]]
|
|
1522
|
+
name = "wasi"
|
|
1523
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
|
1524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1525
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
1526
|
+
|
|
1527
|
+
[[package]]
|
|
1528
|
+
name = "wasm-bindgen"
|
|
1529
|
+
version = "0.2.92"
|
|
1530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1531
|
+
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
|
|
1532
|
+
dependencies = [
|
|
1533
|
+
"cfg-if",
|
|
1534
|
+
"wasm-bindgen-macro",
|
|
1535
|
+
]
|
|
1536
|
+
|
|
1537
|
+
[[package]]
|
|
1538
|
+
name = "wasm-bindgen-backend"
|
|
1539
|
+
version = "0.2.92"
|
|
1540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1541
|
+
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
|
|
1542
|
+
dependencies = [
|
|
1543
|
+
"bumpalo",
|
|
1544
|
+
"log",
|
|
1545
|
+
"once_cell",
|
|
1546
|
+
"proc-macro2",
|
|
1547
|
+
"quote",
|
|
1548
|
+
"syn 2.0.66",
|
|
1549
|
+
"wasm-bindgen-shared",
|
|
1550
|
+
]
|
|
1551
|
+
|
|
1552
|
+
[[package]]
|
|
1553
|
+
name = "wasm-bindgen-futures"
|
|
1554
|
+
version = "0.4.42"
|
|
1555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1556
|
+
checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
|
|
1557
|
+
dependencies = [
|
|
1558
|
+
"cfg-if",
|
|
1559
|
+
"js-sys",
|
|
1560
|
+
"wasm-bindgen",
|
|
1561
|
+
"web-sys",
|
|
1562
|
+
]
|
|
1563
|
+
|
|
1564
|
+
[[package]]
|
|
1565
|
+
name = "wasm-bindgen-macro"
|
|
1566
|
+
version = "0.2.92"
|
|
1567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1568
|
+
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
|
|
1569
|
+
dependencies = [
|
|
1570
|
+
"quote",
|
|
1571
|
+
"wasm-bindgen-macro-support",
|
|
1572
|
+
]
|
|
1573
|
+
|
|
1574
|
+
[[package]]
|
|
1575
|
+
name = "wasm-bindgen-macro-support"
|
|
1576
|
+
version = "0.2.92"
|
|
1577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1578
|
+
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
|
|
1579
|
+
dependencies = [
|
|
1580
|
+
"proc-macro2",
|
|
1581
|
+
"quote",
|
|
1582
|
+
"syn 2.0.66",
|
|
1583
|
+
"wasm-bindgen-backend",
|
|
1584
|
+
"wasm-bindgen-shared",
|
|
1585
|
+
]
|
|
1586
|
+
|
|
1587
|
+
[[package]]
|
|
1588
|
+
name = "wasm-bindgen-shared"
|
|
1589
|
+
version = "0.2.92"
|
|
1590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1591
|
+
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
|
|
1592
|
+
|
|
1593
|
+
[[package]]
|
|
1594
|
+
name = "web-sys"
|
|
1595
|
+
version = "0.3.69"
|
|
1596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1597
|
+
checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
|
|
1598
|
+
dependencies = [
|
|
1599
|
+
"js-sys",
|
|
1600
|
+
"wasm-bindgen",
|
|
1601
|
+
]
|
|
1602
|
+
|
|
1603
|
+
[[package]]
|
|
1604
|
+
name = "windows-sys"
|
|
1605
|
+
version = "0.48.0"
|
|
1606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1607
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
1608
|
+
dependencies = [
|
|
1609
|
+
"windows-targets 0.48.5",
|
|
1610
|
+
]
|
|
1611
|
+
|
|
1612
|
+
[[package]]
|
|
1613
|
+
name = "windows-sys"
|
|
1614
|
+
version = "0.52.0"
|
|
1615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1616
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
1617
|
+
dependencies = [
|
|
1618
|
+
"windows-targets 0.52.5",
|
|
1619
|
+
]
|
|
1620
|
+
|
|
1621
|
+
[[package]]
|
|
1622
|
+
name = "windows-targets"
|
|
1623
|
+
version = "0.48.5"
|
|
1624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1625
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
1626
|
+
dependencies = [
|
|
1627
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
1628
|
+
"windows_aarch64_msvc 0.48.5",
|
|
1629
|
+
"windows_i686_gnu 0.48.5",
|
|
1630
|
+
"windows_i686_msvc 0.48.5",
|
|
1631
|
+
"windows_x86_64_gnu 0.48.5",
|
|
1632
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
1633
|
+
"windows_x86_64_msvc 0.48.5",
|
|
1634
|
+
]
|
|
1635
|
+
|
|
1636
|
+
[[package]]
|
|
1637
|
+
name = "windows-targets"
|
|
1638
|
+
version = "0.52.5"
|
|
1639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1640
|
+
checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
|
|
1641
|
+
dependencies = [
|
|
1642
|
+
"windows_aarch64_gnullvm 0.52.5",
|
|
1643
|
+
"windows_aarch64_msvc 0.52.5",
|
|
1644
|
+
"windows_i686_gnu 0.52.5",
|
|
1645
|
+
"windows_i686_gnullvm",
|
|
1646
|
+
"windows_i686_msvc 0.52.5",
|
|
1647
|
+
"windows_x86_64_gnu 0.52.5",
|
|
1648
|
+
"windows_x86_64_gnullvm 0.52.5",
|
|
1649
|
+
"windows_x86_64_msvc 0.52.5",
|
|
1650
|
+
]
|
|
1651
|
+
|
|
1652
|
+
[[package]]
|
|
1653
|
+
name = "windows_aarch64_gnullvm"
|
|
1654
|
+
version = "0.48.5"
|
|
1655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1656
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
1657
|
+
|
|
1658
|
+
[[package]]
|
|
1659
|
+
name = "windows_aarch64_gnullvm"
|
|
1660
|
+
version = "0.52.5"
|
|
1661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1662
|
+
checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
|
|
1663
|
+
|
|
1664
|
+
[[package]]
|
|
1665
|
+
name = "windows_aarch64_msvc"
|
|
1666
|
+
version = "0.48.5"
|
|
1667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1668
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
1669
|
+
|
|
1670
|
+
[[package]]
|
|
1671
|
+
name = "windows_aarch64_msvc"
|
|
1672
|
+
version = "0.52.5"
|
|
1673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1674
|
+
checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
|
|
1675
|
+
|
|
1676
|
+
[[package]]
|
|
1677
|
+
name = "windows_i686_gnu"
|
|
1678
|
+
version = "0.48.5"
|
|
1679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1680
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
1681
|
+
|
|
1682
|
+
[[package]]
|
|
1683
|
+
name = "windows_i686_gnu"
|
|
1684
|
+
version = "0.52.5"
|
|
1685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1686
|
+
checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
|
|
1687
|
+
|
|
1688
|
+
[[package]]
|
|
1689
|
+
name = "windows_i686_gnullvm"
|
|
1690
|
+
version = "0.52.5"
|
|
1691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1692
|
+
checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
|
|
1693
|
+
|
|
1694
|
+
[[package]]
|
|
1695
|
+
name = "windows_i686_msvc"
|
|
1696
|
+
version = "0.48.5"
|
|
1697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1698
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
1699
|
+
|
|
1700
|
+
[[package]]
|
|
1701
|
+
name = "windows_i686_msvc"
|
|
1702
|
+
version = "0.52.5"
|
|
1703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1704
|
+
checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
|
|
1705
|
+
|
|
1706
|
+
[[package]]
|
|
1707
|
+
name = "windows_x86_64_gnu"
|
|
1708
|
+
version = "0.48.5"
|
|
1709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1710
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
1711
|
+
|
|
1712
|
+
[[package]]
|
|
1713
|
+
name = "windows_x86_64_gnu"
|
|
1714
|
+
version = "0.52.5"
|
|
1715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1716
|
+
checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
|
|
1717
|
+
|
|
1718
|
+
[[package]]
|
|
1719
|
+
name = "windows_x86_64_gnullvm"
|
|
1720
|
+
version = "0.48.5"
|
|
1721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1722
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
1723
|
+
|
|
1724
|
+
[[package]]
|
|
1725
|
+
name = "windows_x86_64_gnullvm"
|
|
1726
|
+
version = "0.52.5"
|
|
1727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1728
|
+
checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
|
|
1729
|
+
|
|
1730
|
+
[[package]]
|
|
1731
|
+
name = "windows_x86_64_msvc"
|
|
1732
|
+
version = "0.48.5"
|
|
1733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1734
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
1735
|
+
|
|
1736
|
+
[[package]]
|
|
1737
|
+
name = "windows_x86_64_msvc"
|
|
1738
|
+
version = "0.52.5"
|
|
1739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1740
|
+
checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
|
|
1741
|
+
|
|
1742
|
+
[[package]]
|
|
1743
|
+
name = "winreg"
|
|
1744
|
+
version = "0.52.0"
|
|
1745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1746
|
+
checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
|
|
1747
|
+
dependencies = [
|
|
1748
|
+
"cfg-if",
|
|
1749
|
+
"windows-sys 0.48.0",
|
|
1750
|
+
]
|
|
1751
|
+
|
|
1752
|
+
[[package]]
|
|
1753
|
+
name = "zeroize"
|
|
1754
|
+
version = "1.8.1"
|
|
1755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1756
|
+
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|