mq-ruby 0.1.0
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/Cargo.lock +1238 -0
- data/Cargo.toml +23 -0
- data/LICENSE +21 -0
- data/README.md +51 -0
- data/extconf.rb +6 -0
- data/lib/mq.rb +70 -0
- data/src/lib.rs +106 -0
- data/src/result.rs +99 -0
- data/src/value.rs +124 -0
- metadata +110 -0
data/Cargo.lock
ADDED
|
@@ -0,0 +1,1238 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.4"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "android_system_properties"
|
|
16
|
+
version = "0.1.5"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
19
|
+
dependencies = [
|
|
20
|
+
"libc",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[[package]]
|
|
24
|
+
name = "autocfg"
|
|
25
|
+
version = "1.5.0"
|
|
26
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "base64"
|
|
31
|
+
version = "0.22.1"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "bindgen"
|
|
37
|
+
version = "0.69.5"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"bitflags",
|
|
42
|
+
"cexpr",
|
|
43
|
+
"clang-sys",
|
|
44
|
+
"itertools 0.12.1",
|
|
45
|
+
"lazy_static",
|
|
46
|
+
"lazycell",
|
|
47
|
+
"proc-macro2",
|
|
48
|
+
"quote",
|
|
49
|
+
"regex",
|
|
50
|
+
"rustc-hash 1.1.0",
|
|
51
|
+
"shlex",
|
|
52
|
+
"syn",
|
|
53
|
+
]
|
|
54
|
+
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "bitflags"
|
|
57
|
+
version = "2.10.0"
|
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "borsh"
|
|
63
|
+
version = "1.6.0"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f"
|
|
66
|
+
dependencies = [
|
|
67
|
+
"cfg_aliases",
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "bumpalo"
|
|
72
|
+
version = "3.19.1"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "bytecount"
|
|
78
|
+
version = "0.6.9"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "cc"
|
|
84
|
+
version = "1.2.50"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "9f50d563227a1c37cc0a263f64eca3334388c01c5e4c4861a9def205c614383c"
|
|
87
|
+
dependencies = [
|
|
88
|
+
"find-msvc-tools",
|
|
89
|
+
"shlex",
|
|
90
|
+
]
|
|
91
|
+
|
|
92
|
+
[[package]]
|
|
93
|
+
name = "cexpr"
|
|
94
|
+
version = "0.6.0"
|
|
95
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
96
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
97
|
+
dependencies = [
|
|
98
|
+
"nom 7.1.3",
|
|
99
|
+
]
|
|
100
|
+
|
|
101
|
+
[[package]]
|
|
102
|
+
name = "cfg-if"
|
|
103
|
+
version = "1.0.4"
|
|
104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
105
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
106
|
+
|
|
107
|
+
[[package]]
|
|
108
|
+
name = "cfg_aliases"
|
|
109
|
+
version = "0.2.1"
|
|
110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
111
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
112
|
+
|
|
113
|
+
[[package]]
|
|
114
|
+
name = "chrono"
|
|
115
|
+
version = "0.4.42"
|
|
116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
+
checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
|
|
118
|
+
dependencies = [
|
|
119
|
+
"iana-time-zone",
|
|
120
|
+
"js-sys",
|
|
121
|
+
"num-traits",
|
|
122
|
+
"wasm-bindgen",
|
|
123
|
+
"windows-link",
|
|
124
|
+
]
|
|
125
|
+
|
|
126
|
+
[[package]]
|
|
127
|
+
name = "clang-sys"
|
|
128
|
+
version = "1.8.1"
|
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
131
|
+
dependencies = [
|
|
132
|
+
"glob",
|
|
133
|
+
"libc",
|
|
134
|
+
"libloading",
|
|
135
|
+
]
|
|
136
|
+
|
|
137
|
+
[[package]]
|
|
138
|
+
name = "core-foundation-sys"
|
|
139
|
+
version = "0.8.7"
|
|
140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
141
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
142
|
+
|
|
143
|
+
[[package]]
|
|
144
|
+
name = "cssparser"
|
|
145
|
+
version = "0.36.0"
|
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
+
checksum = "dae61cf9c0abb83bd659dab65b7e4e38d8236824c85f0f804f173567bda257d2"
|
|
148
|
+
dependencies = [
|
|
149
|
+
"cssparser-macros",
|
|
150
|
+
"dtoa-short",
|
|
151
|
+
"itoa",
|
|
152
|
+
"phf",
|
|
153
|
+
"smallvec",
|
|
154
|
+
]
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "cssparser-macros"
|
|
158
|
+
version = "0.6.1"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
|
|
161
|
+
dependencies = [
|
|
162
|
+
"quote",
|
|
163
|
+
"syn",
|
|
164
|
+
]
|
|
165
|
+
|
|
166
|
+
[[package]]
|
|
167
|
+
name = "derive_more"
|
|
168
|
+
version = "2.1.1"
|
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
+
checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
|
|
171
|
+
dependencies = [
|
|
172
|
+
"derive_more-impl",
|
|
173
|
+
]
|
|
174
|
+
|
|
175
|
+
[[package]]
|
|
176
|
+
name = "derive_more-impl"
|
|
177
|
+
version = "2.1.1"
|
|
178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
+
checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
|
|
180
|
+
dependencies = [
|
|
181
|
+
"proc-macro2",
|
|
182
|
+
"quote",
|
|
183
|
+
"rustc_version",
|
|
184
|
+
"syn",
|
|
185
|
+
]
|
|
186
|
+
|
|
187
|
+
[[package]]
|
|
188
|
+
name = "dirs"
|
|
189
|
+
version = "6.0.0"
|
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
+
checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
|
|
192
|
+
dependencies = [
|
|
193
|
+
"dirs-sys",
|
|
194
|
+
]
|
|
195
|
+
|
|
196
|
+
[[package]]
|
|
197
|
+
name = "dirs-sys"
|
|
198
|
+
version = "0.5.0"
|
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
+
checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
|
|
201
|
+
dependencies = [
|
|
202
|
+
"libc",
|
|
203
|
+
"option-ext",
|
|
204
|
+
"redox_users",
|
|
205
|
+
"windows-sys",
|
|
206
|
+
]
|
|
207
|
+
|
|
208
|
+
[[package]]
|
|
209
|
+
name = "dtoa"
|
|
210
|
+
version = "1.0.10"
|
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
+
checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04"
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "dtoa-short"
|
|
216
|
+
version = "0.3.5"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
|
|
219
|
+
dependencies = [
|
|
220
|
+
"dtoa",
|
|
221
|
+
]
|
|
222
|
+
|
|
223
|
+
[[package]]
|
|
224
|
+
name = "ego-tree"
|
|
225
|
+
version = "0.10.0"
|
|
226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
+
checksum = "b2972feb8dffe7bc8c5463b1dacda1b0dfbed3710e50f977d965429692d74cd8"
|
|
228
|
+
|
|
229
|
+
[[package]]
|
|
230
|
+
name = "either"
|
|
231
|
+
version = "1.15.0"
|
|
232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
234
|
+
|
|
235
|
+
[[package]]
|
|
236
|
+
name = "equivalent"
|
|
237
|
+
version = "1.0.2"
|
|
238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
240
|
+
|
|
241
|
+
[[package]]
|
|
242
|
+
name = "fastrand"
|
|
243
|
+
version = "2.3.0"
|
|
244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
245
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
246
|
+
|
|
247
|
+
[[package]]
|
|
248
|
+
name = "find-msvc-tools"
|
|
249
|
+
version = "0.1.5"
|
|
250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
251
|
+
checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "foldhash"
|
|
255
|
+
version = "0.1.5"
|
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
258
|
+
|
|
259
|
+
[[package]]
|
|
260
|
+
name = "futf"
|
|
261
|
+
version = "0.1.5"
|
|
262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
263
|
+
checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
|
|
264
|
+
dependencies = [
|
|
265
|
+
"mac",
|
|
266
|
+
"new_debug_unreachable",
|
|
267
|
+
]
|
|
268
|
+
|
|
269
|
+
[[package]]
|
|
270
|
+
name = "getopts"
|
|
271
|
+
version = "0.2.24"
|
|
272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
+
checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
|
|
274
|
+
dependencies = [
|
|
275
|
+
"unicode-width 0.2.2",
|
|
276
|
+
]
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "getrandom"
|
|
280
|
+
version = "0.2.16"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
283
|
+
dependencies = [
|
|
284
|
+
"cfg-if",
|
|
285
|
+
"libc",
|
|
286
|
+
"wasi",
|
|
287
|
+
]
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "glob"
|
|
291
|
+
version = "0.3.3"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "hashbrown"
|
|
297
|
+
version = "0.15.5"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
300
|
+
dependencies = [
|
|
301
|
+
"foldhash",
|
|
302
|
+
]
|
|
303
|
+
|
|
304
|
+
[[package]]
|
|
305
|
+
name = "hashbrown"
|
|
306
|
+
version = "0.16.1"
|
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
309
|
+
|
|
310
|
+
[[package]]
|
|
311
|
+
name = "html5ever"
|
|
312
|
+
version = "0.36.1"
|
|
313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
314
|
+
checksum = "6452c4751a24e1b99c3260d505eaeee76a050573e61f30ac2c924ddc7236f01e"
|
|
315
|
+
dependencies = [
|
|
316
|
+
"log",
|
|
317
|
+
"markup5ever",
|
|
318
|
+
]
|
|
319
|
+
|
|
320
|
+
[[package]]
|
|
321
|
+
name = "iana-time-zone"
|
|
322
|
+
version = "0.1.64"
|
|
323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
324
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
|
325
|
+
dependencies = [
|
|
326
|
+
"android_system_properties",
|
|
327
|
+
"core-foundation-sys",
|
|
328
|
+
"iana-time-zone-haiku",
|
|
329
|
+
"js-sys",
|
|
330
|
+
"log",
|
|
331
|
+
"wasm-bindgen",
|
|
332
|
+
"windows-core",
|
|
333
|
+
]
|
|
334
|
+
|
|
335
|
+
[[package]]
|
|
336
|
+
name = "iana-time-zone-haiku"
|
|
337
|
+
version = "0.1.2"
|
|
338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
340
|
+
dependencies = [
|
|
341
|
+
"cc",
|
|
342
|
+
]
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "indexmap"
|
|
346
|
+
version = "2.12.1"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"equivalent",
|
|
351
|
+
"hashbrown 0.16.1",
|
|
352
|
+
]
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "itertools"
|
|
356
|
+
version = "0.12.1"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
359
|
+
dependencies = [
|
|
360
|
+
"either",
|
|
361
|
+
]
|
|
362
|
+
|
|
363
|
+
[[package]]
|
|
364
|
+
name = "itertools"
|
|
365
|
+
version = "0.14.0"
|
|
366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
368
|
+
dependencies = [
|
|
369
|
+
"either",
|
|
370
|
+
]
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "itoa"
|
|
374
|
+
version = "1.0.16"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "7ee5b5339afb4c41626dde77b7a611bd4f2c202b897852b4bcf5d03eddc61010"
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "js-sys"
|
|
380
|
+
version = "0.3.83"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
|
|
383
|
+
dependencies = [
|
|
384
|
+
"once_cell",
|
|
385
|
+
"wasm-bindgen",
|
|
386
|
+
]
|
|
387
|
+
|
|
388
|
+
[[package]]
|
|
389
|
+
name = "lazy_static"
|
|
390
|
+
version = "1.5.0"
|
|
391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
393
|
+
|
|
394
|
+
[[package]]
|
|
395
|
+
name = "lazycell"
|
|
396
|
+
version = "1.3.0"
|
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
399
|
+
|
|
400
|
+
[[package]]
|
|
401
|
+
name = "libc"
|
|
402
|
+
version = "0.2.178"
|
|
403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
404
|
+
checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
|
|
405
|
+
|
|
406
|
+
[[package]]
|
|
407
|
+
name = "libloading"
|
|
408
|
+
version = "0.8.9"
|
|
409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
411
|
+
dependencies = [
|
|
412
|
+
"cfg-if",
|
|
413
|
+
"windows-link",
|
|
414
|
+
]
|
|
415
|
+
|
|
416
|
+
[[package]]
|
|
417
|
+
name = "libredox"
|
|
418
|
+
version = "0.1.11"
|
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
+
checksum = "df15f6eac291ed1cf25865b1ee60399f57e7c227e7f51bdbd4c5270396a9ed50"
|
|
421
|
+
dependencies = [
|
|
422
|
+
"bitflags",
|
|
423
|
+
"libc",
|
|
424
|
+
]
|
|
425
|
+
|
|
426
|
+
[[package]]
|
|
427
|
+
name = "lock_api"
|
|
428
|
+
version = "0.4.14"
|
|
429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
431
|
+
dependencies = [
|
|
432
|
+
"scopeguard",
|
|
433
|
+
]
|
|
434
|
+
|
|
435
|
+
[[package]]
|
|
436
|
+
name = "log"
|
|
437
|
+
version = "0.4.29"
|
|
438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
440
|
+
|
|
441
|
+
[[package]]
|
|
442
|
+
name = "mac"
|
|
443
|
+
version = "0.1.1"
|
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
+
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
|
|
446
|
+
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "magnus"
|
|
449
|
+
version = "0.8.2"
|
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
452
|
+
dependencies = [
|
|
453
|
+
"magnus-macros",
|
|
454
|
+
"rb-sys",
|
|
455
|
+
"rb-sys-env",
|
|
456
|
+
"seq-macro",
|
|
457
|
+
]
|
|
458
|
+
|
|
459
|
+
[[package]]
|
|
460
|
+
name = "magnus-macros"
|
|
461
|
+
version = "0.8.0"
|
|
462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
464
|
+
dependencies = [
|
|
465
|
+
"proc-macro2",
|
|
466
|
+
"quote",
|
|
467
|
+
"syn",
|
|
468
|
+
]
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "markdown"
|
|
472
|
+
version = "1.0.0"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "a5cab8f2cadc416a82d2e783a1946388b31654d391d1c7d92cc1f03e295b1deb"
|
|
475
|
+
dependencies = [
|
|
476
|
+
"unicode-id",
|
|
477
|
+
]
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "markup5ever"
|
|
481
|
+
version = "0.36.1"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "6c3294c4d74d0742910f8c7b466f44dda9eb2d5742c1e430138df290a1e8451c"
|
|
484
|
+
dependencies = [
|
|
485
|
+
"log",
|
|
486
|
+
"tendril",
|
|
487
|
+
"web_atoms",
|
|
488
|
+
]
|
|
489
|
+
|
|
490
|
+
[[package]]
|
|
491
|
+
name = "memchr"
|
|
492
|
+
version = "2.7.6"
|
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
495
|
+
|
|
496
|
+
[[package]]
|
|
497
|
+
name = "miette"
|
|
498
|
+
version = "7.6.0"
|
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
+
checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
|
|
501
|
+
dependencies = [
|
|
502
|
+
"cfg-if",
|
|
503
|
+
"miette-derive",
|
|
504
|
+
"unicode-width 0.1.14",
|
|
505
|
+
]
|
|
506
|
+
|
|
507
|
+
[[package]]
|
|
508
|
+
name = "miette-derive"
|
|
509
|
+
version = "7.6.0"
|
|
510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
511
|
+
checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
|
|
512
|
+
dependencies = [
|
|
513
|
+
"proc-macro2",
|
|
514
|
+
"quote",
|
|
515
|
+
"syn",
|
|
516
|
+
]
|
|
517
|
+
|
|
518
|
+
[[package]]
|
|
519
|
+
name = "minimal-lexical"
|
|
520
|
+
version = "0.2.1"
|
|
521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
522
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
523
|
+
|
|
524
|
+
[[package]]
|
|
525
|
+
name = "mq-lang"
|
|
526
|
+
version = "0.5.9"
|
|
527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
528
|
+
checksum = "e3a87b0bbe05db5779e06d08a4e4ca1d84a4ef2a22a63fd79297a6235398cf90"
|
|
529
|
+
dependencies = [
|
|
530
|
+
"base64",
|
|
531
|
+
"chrono",
|
|
532
|
+
"dirs",
|
|
533
|
+
"itertools 0.14.0",
|
|
534
|
+
"miette",
|
|
535
|
+
"mq-markdown",
|
|
536
|
+
"nom 8.0.0",
|
|
537
|
+
"nom_locate",
|
|
538
|
+
"percent-encoding",
|
|
539
|
+
"regex-lite",
|
|
540
|
+
"rustc-hash 2.1.1",
|
|
541
|
+
"smallvec",
|
|
542
|
+
"smol_str",
|
|
543
|
+
"string-interner",
|
|
544
|
+
"thiserror",
|
|
545
|
+
]
|
|
546
|
+
|
|
547
|
+
[[package]]
|
|
548
|
+
name = "mq-markdown"
|
|
549
|
+
version = "0.5.9"
|
|
550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
551
|
+
checksum = "a81c5a655e32c6200e76fac1f9d5f2c1d366730a8da0b31c098c3ce9f23db906"
|
|
552
|
+
dependencies = [
|
|
553
|
+
"ego-tree",
|
|
554
|
+
"itertools 0.14.0",
|
|
555
|
+
"markdown",
|
|
556
|
+
"miette",
|
|
557
|
+
"rustc-hash 2.1.1",
|
|
558
|
+
"scraper",
|
|
559
|
+
"serde_yaml",
|
|
560
|
+
"smol_str",
|
|
561
|
+
]
|
|
562
|
+
|
|
563
|
+
[[package]]
|
|
564
|
+
name = "mq-ruby"
|
|
565
|
+
version = "0.1.0"
|
|
566
|
+
dependencies = [
|
|
567
|
+
"magnus",
|
|
568
|
+
"mq-lang",
|
|
569
|
+
"mq-markdown",
|
|
570
|
+
]
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "new_debug_unreachable"
|
|
574
|
+
version = "1.0.6"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
577
|
+
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "nom"
|
|
580
|
+
version = "7.1.3"
|
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
583
|
+
dependencies = [
|
|
584
|
+
"memchr",
|
|
585
|
+
"minimal-lexical",
|
|
586
|
+
]
|
|
587
|
+
|
|
588
|
+
[[package]]
|
|
589
|
+
name = "nom"
|
|
590
|
+
version = "8.0.0"
|
|
591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
592
|
+
checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
|
|
593
|
+
dependencies = [
|
|
594
|
+
"memchr",
|
|
595
|
+
]
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "nom_locate"
|
|
599
|
+
version = "5.0.0"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "0b577e2d69827c4740cba2b52efaad1c4cc7c73042860b199710b3575c68438d"
|
|
602
|
+
dependencies = [
|
|
603
|
+
"bytecount",
|
|
604
|
+
"memchr",
|
|
605
|
+
"nom 8.0.0",
|
|
606
|
+
]
|
|
607
|
+
|
|
608
|
+
[[package]]
|
|
609
|
+
name = "num-traits"
|
|
610
|
+
version = "0.2.19"
|
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
613
|
+
dependencies = [
|
|
614
|
+
"autocfg",
|
|
615
|
+
]
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "once_cell"
|
|
619
|
+
version = "1.21.3"
|
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
622
|
+
|
|
623
|
+
[[package]]
|
|
624
|
+
name = "option-ext"
|
|
625
|
+
version = "0.2.0"
|
|
626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
627
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
628
|
+
|
|
629
|
+
[[package]]
|
|
630
|
+
name = "parking_lot"
|
|
631
|
+
version = "0.12.5"
|
|
632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
634
|
+
dependencies = [
|
|
635
|
+
"lock_api",
|
|
636
|
+
"parking_lot_core",
|
|
637
|
+
]
|
|
638
|
+
|
|
639
|
+
[[package]]
|
|
640
|
+
name = "parking_lot_core"
|
|
641
|
+
version = "0.9.12"
|
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
644
|
+
dependencies = [
|
|
645
|
+
"cfg-if",
|
|
646
|
+
"libc",
|
|
647
|
+
"redox_syscall",
|
|
648
|
+
"smallvec",
|
|
649
|
+
"windows-link",
|
|
650
|
+
]
|
|
651
|
+
|
|
652
|
+
[[package]]
|
|
653
|
+
name = "percent-encoding"
|
|
654
|
+
version = "2.3.2"
|
|
655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
656
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
657
|
+
|
|
658
|
+
[[package]]
|
|
659
|
+
name = "phf"
|
|
660
|
+
version = "0.13.1"
|
|
661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
662
|
+
checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
|
|
663
|
+
dependencies = [
|
|
664
|
+
"phf_macros",
|
|
665
|
+
"phf_shared",
|
|
666
|
+
"serde",
|
|
667
|
+
]
|
|
668
|
+
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "phf_codegen"
|
|
671
|
+
version = "0.13.1"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1"
|
|
674
|
+
dependencies = [
|
|
675
|
+
"phf_generator",
|
|
676
|
+
"phf_shared",
|
|
677
|
+
]
|
|
678
|
+
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "phf_generator"
|
|
681
|
+
version = "0.13.1"
|
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
+
checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
|
|
684
|
+
dependencies = [
|
|
685
|
+
"fastrand",
|
|
686
|
+
"phf_shared",
|
|
687
|
+
]
|
|
688
|
+
|
|
689
|
+
[[package]]
|
|
690
|
+
name = "phf_macros"
|
|
691
|
+
version = "0.13.1"
|
|
692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
+
checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
|
|
694
|
+
dependencies = [
|
|
695
|
+
"phf_generator",
|
|
696
|
+
"phf_shared",
|
|
697
|
+
"proc-macro2",
|
|
698
|
+
"quote",
|
|
699
|
+
"syn",
|
|
700
|
+
]
|
|
701
|
+
|
|
702
|
+
[[package]]
|
|
703
|
+
name = "phf_shared"
|
|
704
|
+
version = "0.13.1"
|
|
705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
|
+
checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
|
|
707
|
+
dependencies = [
|
|
708
|
+
"siphasher",
|
|
709
|
+
]
|
|
710
|
+
|
|
711
|
+
[[package]]
|
|
712
|
+
name = "precomputed-hash"
|
|
713
|
+
version = "0.1.1"
|
|
714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
715
|
+
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
|
716
|
+
|
|
717
|
+
[[package]]
|
|
718
|
+
name = "proc-macro2"
|
|
719
|
+
version = "1.0.103"
|
|
720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
722
|
+
dependencies = [
|
|
723
|
+
"unicode-ident",
|
|
724
|
+
]
|
|
725
|
+
|
|
726
|
+
[[package]]
|
|
727
|
+
name = "quote"
|
|
728
|
+
version = "1.0.42"
|
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
+
checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
|
|
731
|
+
dependencies = [
|
|
732
|
+
"proc-macro2",
|
|
733
|
+
]
|
|
734
|
+
|
|
735
|
+
[[package]]
|
|
736
|
+
name = "rb-sys"
|
|
737
|
+
version = "0.9.123"
|
|
738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
739
|
+
checksum = "45fb1a185af97ee456f1c9e56dbe6e2e662bec4fdeaf83c4c28e0e6adfb18816"
|
|
740
|
+
dependencies = [
|
|
741
|
+
"rb-sys-build",
|
|
742
|
+
]
|
|
743
|
+
|
|
744
|
+
[[package]]
|
|
745
|
+
name = "rb-sys-build"
|
|
746
|
+
version = "0.9.123"
|
|
747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
|
+
checksum = "a58ebd02d7a6033e6a5f6f8d150c1e9f16506039092b84a73e6bedce6d3adf41"
|
|
749
|
+
dependencies = [
|
|
750
|
+
"bindgen",
|
|
751
|
+
"lazy_static",
|
|
752
|
+
"proc-macro2",
|
|
753
|
+
"quote",
|
|
754
|
+
"regex",
|
|
755
|
+
"shell-words",
|
|
756
|
+
"syn",
|
|
757
|
+
]
|
|
758
|
+
|
|
759
|
+
[[package]]
|
|
760
|
+
name = "rb-sys-env"
|
|
761
|
+
version = "0.2.2"
|
|
762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
763
|
+
checksum = "08f8d2924cf136a1315e2b4c7460a39f62ef11ee5d522df9b2750fab55b868b6"
|
|
764
|
+
|
|
765
|
+
[[package]]
|
|
766
|
+
name = "redox_syscall"
|
|
767
|
+
version = "0.5.18"
|
|
768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
769
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
770
|
+
dependencies = [
|
|
771
|
+
"bitflags",
|
|
772
|
+
]
|
|
773
|
+
|
|
774
|
+
[[package]]
|
|
775
|
+
name = "redox_users"
|
|
776
|
+
version = "0.5.2"
|
|
777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
778
|
+
checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
|
|
779
|
+
dependencies = [
|
|
780
|
+
"getrandom",
|
|
781
|
+
"libredox",
|
|
782
|
+
"thiserror",
|
|
783
|
+
]
|
|
784
|
+
|
|
785
|
+
[[package]]
|
|
786
|
+
name = "regex"
|
|
787
|
+
version = "1.12.2"
|
|
788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
790
|
+
dependencies = [
|
|
791
|
+
"aho-corasick",
|
|
792
|
+
"memchr",
|
|
793
|
+
"regex-automata",
|
|
794
|
+
"regex-syntax",
|
|
795
|
+
]
|
|
796
|
+
|
|
797
|
+
[[package]]
|
|
798
|
+
name = "regex-automata"
|
|
799
|
+
version = "0.4.13"
|
|
800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
801
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
802
|
+
dependencies = [
|
|
803
|
+
"aho-corasick",
|
|
804
|
+
"memchr",
|
|
805
|
+
"regex-syntax",
|
|
806
|
+
]
|
|
807
|
+
|
|
808
|
+
[[package]]
|
|
809
|
+
name = "regex-lite"
|
|
810
|
+
version = "0.1.8"
|
|
811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
+
checksum = "8d942b98df5e658f56f20d592c7f868833fe38115e65c33003d8cd224b0155da"
|
|
813
|
+
|
|
814
|
+
[[package]]
|
|
815
|
+
name = "regex-syntax"
|
|
816
|
+
version = "0.8.8"
|
|
817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
818
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
819
|
+
|
|
820
|
+
[[package]]
|
|
821
|
+
name = "rustc-hash"
|
|
822
|
+
version = "1.1.0"
|
|
823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
825
|
+
|
|
826
|
+
[[package]]
|
|
827
|
+
name = "rustc-hash"
|
|
828
|
+
version = "2.1.1"
|
|
829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
831
|
+
|
|
832
|
+
[[package]]
|
|
833
|
+
name = "rustc_version"
|
|
834
|
+
version = "0.4.1"
|
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
837
|
+
dependencies = [
|
|
838
|
+
"semver",
|
|
839
|
+
]
|
|
840
|
+
|
|
841
|
+
[[package]]
|
|
842
|
+
name = "rustversion"
|
|
843
|
+
version = "1.0.22"
|
|
844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
845
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
846
|
+
|
|
847
|
+
[[package]]
|
|
848
|
+
name = "ryu"
|
|
849
|
+
version = "1.0.21"
|
|
850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
+
checksum = "62049b2877bf12821e8f9ad256ee38fdc31db7387ec2d3b3f403024de2034aea"
|
|
852
|
+
|
|
853
|
+
[[package]]
|
|
854
|
+
name = "scopeguard"
|
|
855
|
+
version = "1.2.0"
|
|
856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
857
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
858
|
+
|
|
859
|
+
[[package]]
|
|
860
|
+
name = "scraper"
|
|
861
|
+
version = "0.25.0"
|
|
862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
863
|
+
checksum = "93cecd86d6259499c844440546d02f55f3e17bd286e529e48d1f9f67e92315cb"
|
|
864
|
+
dependencies = [
|
|
865
|
+
"cssparser",
|
|
866
|
+
"ego-tree",
|
|
867
|
+
"getopts",
|
|
868
|
+
"html5ever",
|
|
869
|
+
"precomputed-hash",
|
|
870
|
+
"selectors",
|
|
871
|
+
"tendril",
|
|
872
|
+
]
|
|
873
|
+
|
|
874
|
+
[[package]]
|
|
875
|
+
name = "selectors"
|
|
876
|
+
version = "0.33.0"
|
|
877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
+
checksum = "feef350c36147532e1b79ea5c1f3791373e61cbd9a6a2615413b3807bb164fb7"
|
|
879
|
+
dependencies = [
|
|
880
|
+
"bitflags",
|
|
881
|
+
"cssparser",
|
|
882
|
+
"derive_more",
|
|
883
|
+
"log",
|
|
884
|
+
"new_debug_unreachable",
|
|
885
|
+
"phf",
|
|
886
|
+
"phf_codegen",
|
|
887
|
+
"precomputed-hash",
|
|
888
|
+
"rustc-hash 2.1.1",
|
|
889
|
+
"servo_arc",
|
|
890
|
+
"smallvec",
|
|
891
|
+
]
|
|
892
|
+
|
|
893
|
+
[[package]]
|
|
894
|
+
name = "semver"
|
|
895
|
+
version = "1.0.27"
|
|
896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
897
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
898
|
+
|
|
899
|
+
[[package]]
|
|
900
|
+
name = "seq-macro"
|
|
901
|
+
version = "0.3.6"
|
|
902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
903
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
904
|
+
|
|
905
|
+
[[package]]
|
|
906
|
+
name = "serde"
|
|
907
|
+
version = "1.0.228"
|
|
908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
909
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
910
|
+
dependencies = [
|
|
911
|
+
"serde_core",
|
|
912
|
+
]
|
|
913
|
+
|
|
914
|
+
[[package]]
|
|
915
|
+
name = "serde_core"
|
|
916
|
+
version = "1.0.228"
|
|
917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
918
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
919
|
+
dependencies = [
|
|
920
|
+
"serde_derive",
|
|
921
|
+
]
|
|
922
|
+
|
|
923
|
+
[[package]]
|
|
924
|
+
name = "serde_derive"
|
|
925
|
+
version = "1.0.228"
|
|
926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
927
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
928
|
+
dependencies = [
|
|
929
|
+
"proc-macro2",
|
|
930
|
+
"quote",
|
|
931
|
+
"syn",
|
|
932
|
+
]
|
|
933
|
+
|
|
934
|
+
[[package]]
|
|
935
|
+
name = "serde_yaml"
|
|
936
|
+
version = "0.9.34+deprecated"
|
|
937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
938
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
939
|
+
dependencies = [
|
|
940
|
+
"indexmap",
|
|
941
|
+
"itoa",
|
|
942
|
+
"ryu",
|
|
943
|
+
"serde",
|
|
944
|
+
"unsafe-libyaml",
|
|
945
|
+
]
|
|
946
|
+
|
|
947
|
+
[[package]]
|
|
948
|
+
name = "servo_arc"
|
|
949
|
+
version = "0.4.3"
|
|
950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
+
checksum = "170fb83ab34de17dc69aa7c67482b22218ddb85da56546f9bd6b929e32a05930"
|
|
952
|
+
dependencies = [
|
|
953
|
+
"stable_deref_trait",
|
|
954
|
+
]
|
|
955
|
+
|
|
956
|
+
[[package]]
|
|
957
|
+
name = "shell-words"
|
|
958
|
+
version = "1.1.1"
|
|
959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
960
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
961
|
+
|
|
962
|
+
[[package]]
|
|
963
|
+
name = "shlex"
|
|
964
|
+
version = "1.3.0"
|
|
965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
966
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
967
|
+
|
|
968
|
+
[[package]]
|
|
969
|
+
name = "siphasher"
|
|
970
|
+
version = "1.0.1"
|
|
971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
972
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
973
|
+
|
|
974
|
+
[[package]]
|
|
975
|
+
name = "smallvec"
|
|
976
|
+
version = "1.15.1"
|
|
977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
978
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
979
|
+
|
|
980
|
+
[[package]]
|
|
981
|
+
name = "smol_str"
|
|
982
|
+
version = "0.3.4"
|
|
983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
+
checksum = "3498b0a27f93ef1402f20eefacfaa1691272ac4eca1cdc8c596cb0a245d6cbf5"
|
|
985
|
+
dependencies = [
|
|
986
|
+
"borsh",
|
|
987
|
+
"serde_core",
|
|
988
|
+
]
|
|
989
|
+
|
|
990
|
+
[[package]]
|
|
991
|
+
name = "stable_deref_trait"
|
|
992
|
+
version = "1.2.1"
|
|
993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
994
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
995
|
+
|
|
996
|
+
[[package]]
|
|
997
|
+
name = "string-interner"
|
|
998
|
+
version = "0.19.0"
|
|
999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1000
|
+
checksum = "23de088478b31c349c9ba67816fa55d9355232d63c3afea8bf513e31f0f1d2c0"
|
|
1001
|
+
dependencies = [
|
|
1002
|
+
"hashbrown 0.15.5",
|
|
1003
|
+
"serde",
|
|
1004
|
+
]
|
|
1005
|
+
|
|
1006
|
+
[[package]]
|
|
1007
|
+
name = "string_cache"
|
|
1008
|
+
version = "0.9.0"
|
|
1009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1010
|
+
checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901"
|
|
1011
|
+
dependencies = [
|
|
1012
|
+
"new_debug_unreachable",
|
|
1013
|
+
"parking_lot",
|
|
1014
|
+
"phf_shared",
|
|
1015
|
+
"precomputed-hash",
|
|
1016
|
+
"serde",
|
|
1017
|
+
]
|
|
1018
|
+
|
|
1019
|
+
[[package]]
|
|
1020
|
+
name = "string_cache_codegen"
|
|
1021
|
+
version = "0.6.1"
|
|
1022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1023
|
+
checksum = "585635e46db231059f76c5849798146164652513eb9e8ab2685939dd90f29b69"
|
|
1024
|
+
dependencies = [
|
|
1025
|
+
"phf_generator",
|
|
1026
|
+
"phf_shared",
|
|
1027
|
+
"proc-macro2",
|
|
1028
|
+
"quote",
|
|
1029
|
+
]
|
|
1030
|
+
|
|
1031
|
+
[[package]]
|
|
1032
|
+
name = "syn"
|
|
1033
|
+
version = "2.0.111"
|
|
1034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1035
|
+
checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
|
|
1036
|
+
dependencies = [
|
|
1037
|
+
"proc-macro2",
|
|
1038
|
+
"quote",
|
|
1039
|
+
"unicode-ident",
|
|
1040
|
+
]
|
|
1041
|
+
|
|
1042
|
+
[[package]]
|
|
1043
|
+
name = "tendril"
|
|
1044
|
+
version = "0.4.3"
|
|
1045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1046
|
+
checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
|
|
1047
|
+
dependencies = [
|
|
1048
|
+
"futf",
|
|
1049
|
+
"mac",
|
|
1050
|
+
"utf-8",
|
|
1051
|
+
]
|
|
1052
|
+
|
|
1053
|
+
[[package]]
|
|
1054
|
+
name = "thiserror"
|
|
1055
|
+
version = "2.0.17"
|
|
1056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1057
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
1058
|
+
dependencies = [
|
|
1059
|
+
"thiserror-impl",
|
|
1060
|
+
]
|
|
1061
|
+
|
|
1062
|
+
[[package]]
|
|
1063
|
+
name = "thiserror-impl"
|
|
1064
|
+
version = "2.0.17"
|
|
1065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
1067
|
+
dependencies = [
|
|
1068
|
+
"proc-macro2",
|
|
1069
|
+
"quote",
|
|
1070
|
+
"syn",
|
|
1071
|
+
]
|
|
1072
|
+
|
|
1073
|
+
[[package]]
|
|
1074
|
+
name = "unicode-id"
|
|
1075
|
+
version = "0.3.6"
|
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
+
checksum = "70ba288e709927c043cbe476718d37be306be53fb1fafecd0dbe36d072be2580"
|
|
1078
|
+
|
|
1079
|
+
[[package]]
|
|
1080
|
+
name = "unicode-ident"
|
|
1081
|
+
version = "1.0.22"
|
|
1082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
1084
|
+
|
|
1085
|
+
[[package]]
|
|
1086
|
+
name = "unicode-width"
|
|
1087
|
+
version = "0.1.14"
|
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
|
+
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
1090
|
+
|
|
1091
|
+
[[package]]
|
|
1092
|
+
name = "unicode-width"
|
|
1093
|
+
version = "0.2.2"
|
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "unsafe-libyaml"
|
|
1099
|
+
version = "0.2.11"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
1102
|
+
|
|
1103
|
+
[[package]]
|
|
1104
|
+
name = "utf-8"
|
|
1105
|
+
version = "0.7.6"
|
|
1106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1107
|
+
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
1108
|
+
|
|
1109
|
+
[[package]]
|
|
1110
|
+
name = "wasi"
|
|
1111
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1113
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1114
|
+
|
|
1115
|
+
[[package]]
|
|
1116
|
+
name = "wasm-bindgen"
|
|
1117
|
+
version = "0.2.106"
|
|
1118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1119
|
+
checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
|
|
1120
|
+
dependencies = [
|
|
1121
|
+
"cfg-if",
|
|
1122
|
+
"once_cell",
|
|
1123
|
+
"rustversion",
|
|
1124
|
+
"wasm-bindgen-macro",
|
|
1125
|
+
"wasm-bindgen-shared",
|
|
1126
|
+
]
|
|
1127
|
+
|
|
1128
|
+
[[package]]
|
|
1129
|
+
name = "wasm-bindgen-macro"
|
|
1130
|
+
version = "0.2.106"
|
|
1131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1132
|
+
checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
|
|
1133
|
+
dependencies = [
|
|
1134
|
+
"quote",
|
|
1135
|
+
"wasm-bindgen-macro-support",
|
|
1136
|
+
]
|
|
1137
|
+
|
|
1138
|
+
[[package]]
|
|
1139
|
+
name = "wasm-bindgen-macro-support"
|
|
1140
|
+
version = "0.2.106"
|
|
1141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
+
checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
|
|
1143
|
+
dependencies = [
|
|
1144
|
+
"bumpalo",
|
|
1145
|
+
"proc-macro2",
|
|
1146
|
+
"quote",
|
|
1147
|
+
"syn",
|
|
1148
|
+
"wasm-bindgen-shared",
|
|
1149
|
+
]
|
|
1150
|
+
|
|
1151
|
+
[[package]]
|
|
1152
|
+
name = "wasm-bindgen-shared"
|
|
1153
|
+
version = "0.2.106"
|
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
+
checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
|
|
1156
|
+
dependencies = [
|
|
1157
|
+
"unicode-ident",
|
|
1158
|
+
]
|
|
1159
|
+
|
|
1160
|
+
[[package]]
|
|
1161
|
+
name = "web_atoms"
|
|
1162
|
+
version = "0.2.0"
|
|
1163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1164
|
+
checksum = "acd0c322f146d0f8aad130ce6c187953889359584497dac6561204c8e17bb43d"
|
|
1165
|
+
dependencies = [
|
|
1166
|
+
"phf",
|
|
1167
|
+
"phf_codegen",
|
|
1168
|
+
"string_cache",
|
|
1169
|
+
"string_cache_codegen",
|
|
1170
|
+
]
|
|
1171
|
+
|
|
1172
|
+
[[package]]
|
|
1173
|
+
name = "windows-core"
|
|
1174
|
+
version = "0.62.2"
|
|
1175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1176
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1177
|
+
dependencies = [
|
|
1178
|
+
"windows-implement",
|
|
1179
|
+
"windows-interface",
|
|
1180
|
+
"windows-link",
|
|
1181
|
+
"windows-result",
|
|
1182
|
+
"windows-strings",
|
|
1183
|
+
]
|
|
1184
|
+
|
|
1185
|
+
[[package]]
|
|
1186
|
+
name = "windows-implement"
|
|
1187
|
+
version = "0.60.2"
|
|
1188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1189
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1190
|
+
dependencies = [
|
|
1191
|
+
"proc-macro2",
|
|
1192
|
+
"quote",
|
|
1193
|
+
"syn",
|
|
1194
|
+
]
|
|
1195
|
+
|
|
1196
|
+
[[package]]
|
|
1197
|
+
name = "windows-interface"
|
|
1198
|
+
version = "0.59.3"
|
|
1199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1200
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1201
|
+
dependencies = [
|
|
1202
|
+
"proc-macro2",
|
|
1203
|
+
"quote",
|
|
1204
|
+
"syn",
|
|
1205
|
+
]
|
|
1206
|
+
|
|
1207
|
+
[[package]]
|
|
1208
|
+
name = "windows-link"
|
|
1209
|
+
version = "0.2.1"
|
|
1210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1211
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1212
|
+
|
|
1213
|
+
[[package]]
|
|
1214
|
+
name = "windows-result"
|
|
1215
|
+
version = "0.4.1"
|
|
1216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1217
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1218
|
+
dependencies = [
|
|
1219
|
+
"windows-link",
|
|
1220
|
+
]
|
|
1221
|
+
|
|
1222
|
+
[[package]]
|
|
1223
|
+
name = "windows-strings"
|
|
1224
|
+
version = "0.5.1"
|
|
1225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1226
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1227
|
+
dependencies = [
|
|
1228
|
+
"windows-link",
|
|
1229
|
+
]
|
|
1230
|
+
|
|
1231
|
+
[[package]]
|
|
1232
|
+
name = "windows-sys"
|
|
1233
|
+
version = "0.61.2"
|
|
1234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1235
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1236
|
+
dependencies = [
|
|
1237
|
+
"windows-link",
|
|
1238
|
+
]
|