sawzall 0.1.0.pre
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 +755 -0
- data/Cargo.toml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +39 -0
- data/ext/sawzall/Cargo.toml +15 -0
- data/ext/sawzall/extconf.rb +6 -0
- data/ext/sawzall/src/html_to_plain.rs +196 -0
- data/ext/sawzall/src/lib.rs +149 -0
- data/lib/sawzall/version.rb +5 -0
- data/lib/sawzall.rb +184 -0
- data/sawzall.gemspec +45 -0
- metadata +71 -0
data/Cargo.lock
ADDED
@@ -0,0 +1,755 @@
|
|
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.3"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
10
|
+
dependencies = [
|
11
|
+
"memchr",
|
12
|
+
]
|
13
|
+
|
14
|
+
[[package]]
|
15
|
+
name = "autocfg"
|
16
|
+
version = "1.4.0"
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
19
|
+
|
20
|
+
[[package]]
|
21
|
+
name = "bindgen"
|
22
|
+
version = "0.69.5"
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
25
|
+
dependencies = [
|
26
|
+
"bitflags",
|
27
|
+
"cexpr",
|
28
|
+
"clang-sys",
|
29
|
+
"itertools",
|
30
|
+
"lazy_static",
|
31
|
+
"lazycell",
|
32
|
+
"proc-macro2",
|
33
|
+
"quote",
|
34
|
+
"regex",
|
35
|
+
"rustc-hash",
|
36
|
+
"shlex",
|
37
|
+
"syn",
|
38
|
+
]
|
39
|
+
|
40
|
+
[[package]]
|
41
|
+
name = "bitflags"
|
42
|
+
version = "2.9.0"
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
44
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
45
|
+
|
46
|
+
[[package]]
|
47
|
+
name = "byteorder"
|
48
|
+
version = "1.5.0"
|
49
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
50
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
51
|
+
|
52
|
+
[[package]]
|
53
|
+
name = "cexpr"
|
54
|
+
version = "0.6.0"
|
55
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
56
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
57
|
+
dependencies = [
|
58
|
+
"nom",
|
59
|
+
]
|
60
|
+
|
61
|
+
[[package]]
|
62
|
+
name = "cfg-if"
|
63
|
+
version = "1.0.0"
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
65
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
66
|
+
|
67
|
+
[[package]]
|
68
|
+
name = "clang-sys"
|
69
|
+
version = "1.8.1"
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
71
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
72
|
+
dependencies = [
|
73
|
+
"glob",
|
74
|
+
"libc",
|
75
|
+
"libloading",
|
76
|
+
]
|
77
|
+
|
78
|
+
[[package]]
|
79
|
+
name = "cssparser"
|
80
|
+
version = "0.34.0"
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
82
|
+
checksum = "b7c66d1cd8ed61bf80b38432613a7a2f09401ab8d0501110655f8b341484a3e3"
|
83
|
+
dependencies = [
|
84
|
+
"cssparser-macros",
|
85
|
+
"dtoa-short",
|
86
|
+
"itoa",
|
87
|
+
"phf",
|
88
|
+
"smallvec",
|
89
|
+
]
|
90
|
+
|
91
|
+
[[package]]
|
92
|
+
name = "cssparser-macros"
|
93
|
+
version = "0.6.1"
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
95
|
+
checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
|
96
|
+
dependencies = [
|
97
|
+
"quote",
|
98
|
+
"syn",
|
99
|
+
]
|
100
|
+
|
101
|
+
[[package]]
|
102
|
+
name = "derive_more"
|
103
|
+
version = "0.99.19"
|
104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
105
|
+
checksum = "3da29a38df43d6f156149c9b43ded5e018ddff2a855cf2cfd62e8cd7d079c69f"
|
106
|
+
dependencies = [
|
107
|
+
"proc-macro2",
|
108
|
+
"quote",
|
109
|
+
"syn",
|
110
|
+
]
|
111
|
+
|
112
|
+
[[package]]
|
113
|
+
name = "dtoa"
|
114
|
+
version = "1.0.10"
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
116
|
+
checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04"
|
117
|
+
|
118
|
+
[[package]]
|
119
|
+
name = "dtoa-short"
|
120
|
+
version = "0.3.5"
|
121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
122
|
+
checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
|
123
|
+
dependencies = [
|
124
|
+
"dtoa",
|
125
|
+
]
|
126
|
+
|
127
|
+
[[package]]
|
128
|
+
name = "ego-tree"
|
129
|
+
version = "0.10.0"
|
130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
131
|
+
checksum = "b2972feb8dffe7bc8c5463b1dacda1b0dfbed3710e50f977d965429692d74cd8"
|
132
|
+
|
133
|
+
[[package]]
|
134
|
+
name = "either"
|
135
|
+
version = "1.15.0"
|
136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
137
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
138
|
+
|
139
|
+
[[package]]
|
140
|
+
name = "futf"
|
141
|
+
version = "0.1.5"
|
142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
143
|
+
checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
|
144
|
+
dependencies = [
|
145
|
+
"mac",
|
146
|
+
"new_debug_unreachable",
|
147
|
+
]
|
148
|
+
|
149
|
+
[[package]]
|
150
|
+
name = "fxhash"
|
151
|
+
version = "0.2.1"
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
153
|
+
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
|
154
|
+
dependencies = [
|
155
|
+
"byteorder",
|
156
|
+
]
|
157
|
+
|
158
|
+
[[package]]
|
159
|
+
name = "getopts"
|
160
|
+
version = "0.2.21"
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
162
|
+
checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
|
163
|
+
dependencies = [
|
164
|
+
"unicode-width",
|
165
|
+
]
|
166
|
+
|
167
|
+
[[package]]
|
168
|
+
name = "glob"
|
169
|
+
version = "0.3.2"
|
170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
171
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
172
|
+
|
173
|
+
[[package]]
|
174
|
+
name = "html5ever"
|
175
|
+
version = "0.29.1"
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
177
|
+
checksum = "3b7410cae13cbc75623c98ac4cbfd1f0bedddf3227afc24f370cf0f50a44a11c"
|
178
|
+
dependencies = [
|
179
|
+
"log",
|
180
|
+
"mac",
|
181
|
+
"markup5ever",
|
182
|
+
"match_token",
|
183
|
+
]
|
184
|
+
|
185
|
+
[[package]]
|
186
|
+
name = "itertools"
|
187
|
+
version = "0.12.1"
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
189
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
190
|
+
dependencies = [
|
191
|
+
"either",
|
192
|
+
]
|
193
|
+
|
194
|
+
[[package]]
|
195
|
+
name = "itoa"
|
196
|
+
version = "1.0.15"
|
197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
198
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
199
|
+
|
200
|
+
[[package]]
|
201
|
+
name = "lazy_static"
|
202
|
+
version = "1.5.0"
|
203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
204
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
205
|
+
|
206
|
+
[[package]]
|
207
|
+
name = "lazycell"
|
208
|
+
version = "1.3.0"
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
210
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
211
|
+
|
212
|
+
[[package]]
|
213
|
+
name = "libc"
|
214
|
+
version = "0.2.171"
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
216
|
+
checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
|
217
|
+
|
218
|
+
[[package]]
|
219
|
+
name = "libloading"
|
220
|
+
version = "0.8.6"
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
222
|
+
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
223
|
+
dependencies = [
|
224
|
+
"cfg-if",
|
225
|
+
"windows-targets",
|
226
|
+
]
|
227
|
+
|
228
|
+
[[package]]
|
229
|
+
name = "lock_api"
|
230
|
+
version = "0.4.12"
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
232
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
233
|
+
dependencies = [
|
234
|
+
"autocfg",
|
235
|
+
"scopeguard",
|
236
|
+
]
|
237
|
+
|
238
|
+
[[package]]
|
239
|
+
name = "log"
|
240
|
+
version = "0.4.27"
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
242
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
243
|
+
|
244
|
+
[[package]]
|
245
|
+
name = "mac"
|
246
|
+
version = "0.1.1"
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
248
|
+
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
|
249
|
+
|
250
|
+
[[package]]
|
251
|
+
name = "magnus"
|
252
|
+
version = "0.7.1"
|
253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
254
|
+
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
255
|
+
dependencies = [
|
256
|
+
"magnus-macros",
|
257
|
+
"rb-sys",
|
258
|
+
"rb-sys-env",
|
259
|
+
"seq-macro",
|
260
|
+
]
|
261
|
+
|
262
|
+
[[package]]
|
263
|
+
name = "magnus-macros"
|
264
|
+
version = "0.6.0"
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
266
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
267
|
+
dependencies = [
|
268
|
+
"proc-macro2",
|
269
|
+
"quote",
|
270
|
+
"syn",
|
271
|
+
]
|
272
|
+
|
273
|
+
[[package]]
|
274
|
+
name = "markup5ever"
|
275
|
+
version = "0.14.1"
|
276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
277
|
+
checksum = "c7a7213d12e1864c0f002f52c2923d4556935a43dec5e71355c2760e0f6e7a18"
|
278
|
+
dependencies = [
|
279
|
+
"log",
|
280
|
+
"phf",
|
281
|
+
"phf_codegen",
|
282
|
+
"string_cache",
|
283
|
+
"string_cache_codegen",
|
284
|
+
"tendril",
|
285
|
+
]
|
286
|
+
|
287
|
+
[[package]]
|
288
|
+
name = "match_token"
|
289
|
+
version = "0.1.0"
|
290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
291
|
+
checksum = "88a9689d8d44bf9964484516275f5cd4c9b59457a6940c1d5d0ecbb94510a36b"
|
292
|
+
dependencies = [
|
293
|
+
"proc-macro2",
|
294
|
+
"quote",
|
295
|
+
"syn",
|
296
|
+
]
|
297
|
+
|
298
|
+
[[package]]
|
299
|
+
name = "memchr"
|
300
|
+
version = "2.7.4"
|
301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
302
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
303
|
+
|
304
|
+
[[package]]
|
305
|
+
name = "minimal-lexical"
|
306
|
+
version = "0.2.1"
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
308
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
309
|
+
|
310
|
+
[[package]]
|
311
|
+
name = "new_debug_unreachable"
|
312
|
+
version = "1.0.6"
|
313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
314
|
+
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
315
|
+
|
316
|
+
[[package]]
|
317
|
+
name = "nom"
|
318
|
+
version = "7.1.3"
|
319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
320
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
321
|
+
dependencies = [
|
322
|
+
"memchr",
|
323
|
+
"minimal-lexical",
|
324
|
+
]
|
325
|
+
|
326
|
+
[[package]]
|
327
|
+
name = "parking_lot"
|
328
|
+
version = "0.12.3"
|
329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
330
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
331
|
+
dependencies = [
|
332
|
+
"lock_api",
|
333
|
+
"parking_lot_core",
|
334
|
+
]
|
335
|
+
|
336
|
+
[[package]]
|
337
|
+
name = "parking_lot_core"
|
338
|
+
version = "0.9.10"
|
339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
340
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
341
|
+
dependencies = [
|
342
|
+
"cfg-if",
|
343
|
+
"libc",
|
344
|
+
"redox_syscall",
|
345
|
+
"smallvec",
|
346
|
+
"windows-targets",
|
347
|
+
]
|
348
|
+
|
349
|
+
[[package]]
|
350
|
+
name = "phf"
|
351
|
+
version = "0.11.3"
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
353
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
354
|
+
dependencies = [
|
355
|
+
"phf_macros",
|
356
|
+
"phf_shared",
|
357
|
+
]
|
358
|
+
|
359
|
+
[[package]]
|
360
|
+
name = "phf_codegen"
|
361
|
+
version = "0.11.3"
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
363
|
+
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
364
|
+
dependencies = [
|
365
|
+
"phf_generator",
|
366
|
+
"phf_shared",
|
367
|
+
]
|
368
|
+
|
369
|
+
[[package]]
|
370
|
+
name = "phf_generator"
|
371
|
+
version = "0.11.3"
|
372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
373
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
374
|
+
dependencies = [
|
375
|
+
"phf_shared",
|
376
|
+
"rand",
|
377
|
+
]
|
378
|
+
|
379
|
+
[[package]]
|
380
|
+
name = "phf_macros"
|
381
|
+
version = "0.11.3"
|
382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
383
|
+
checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
|
384
|
+
dependencies = [
|
385
|
+
"phf_generator",
|
386
|
+
"phf_shared",
|
387
|
+
"proc-macro2",
|
388
|
+
"quote",
|
389
|
+
"syn",
|
390
|
+
]
|
391
|
+
|
392
|
+
[[package]]
|
393
|
+
name = "phf_shared"
|
394
|
+
version = "0.11.3"
|
395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
396
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
397
|
+
dependencies = [
|
398
|
+
"siphasher",
|
399
|
+
]
|
400
|
+
|
401
|
+
[[package]]
|
402
|
+
name = "precomputed-hash"
|
403
|
+
version = "0.1.1"
|
404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
405
|
+
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
406
|
+
|
407
|
+
[[package]]
|
408
|
+
name = "proc-macro2"
|
409
|
+
version = "1.0.94"
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
411
|
+
checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
|
412
|
+
dependencies = [
|
413
|
+
"unicode-ident",
|
414
|
+
]
|
415
|
+
|
416
|
+
[[package]]
|
417
|
+
name = "quote"
|
418
|
+
version = "1.0.40"
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
420
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
421
|
+
dependencies = [
|
422
|
+
"proc-macro2",
|
423
|
+
]
|
424
|
+
|
425
|
+
[[package]]
|
426
|
+
name = "rand"
|
427
|
+
version = "0.8.5"
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
429
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
430
|
+
dependencies = [
|
431
|
+
"rand_core",
|
432
|
+
]
|
433
|
+
|
434
|
+
[[package]]
|
435
|
+
name = "rand_core"
|
436
|
+
version = "0.6.4"
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
438
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
439
|
+
|
440
|
+
[[package]]
|
441
|
+
name = "rb-sys"
|
442
|
+
version = "0.9.111"
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
444
|
+
checksum = "becea799ce051c16fb140be80f5e7cf781070f99ca099332383c2b17861249af"
|
445
|
+
dependencies = [
|
446
|
+
"rb-sys-build",
|
447
|
+
]
|
448
|
+
|
449
|
+
[[package]]
|
450
|
+
name = "rb-sys-build"
|
451
|
+
version = "0.9.111"
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
453
|
+
checksum = "64691175abc704862f60a9ca8ef06174080cc50615f2bf1d4759f46db18b4d29"
|
454
|
+
dependencies = [
|
455
|
+
"bindgen",
|
456
|
+
"lazy_static",
|
457
|
+
"proc-macro2",
|
458
|
+
"quote",
|
459
|
+
"regex",
|
460
|
+
"shell-words",
|
461
|
+
"syn",
|
462
|
+
]
|
463
|
+
|
464
|
+
[[package]]
|
465
|
+
name = "rb-sys-env"
|
466
|
+
version = "0.1.2"
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
468
|
+
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
469
|
+
|
470
|
+
[[package]]
|
471
|
+
name = "redox_syscall"
|
472
|
+
version = "0.5.11"
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
474
|
+
checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
|
475
|
+
dependencies = [
|
476
|
+
"bitflags",
|
477
|
+
]
|
478
|
+
|
479
|
+
[[package]]
|
480
|
+
name = "regex"
|
481
|
+
version = "1.11.1"
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
483
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
484
|
+
dependencies = [
|
485
|
+
"aho-corasick",
|
486
|
+
"memchr",
|
487
|
+
"regex-automata",
|
488
|
+
"regex-syntax",
|
489
|
+
]
|
490
|
+
|
491
|
+
[[package]]
|
492
|
+
name = "regex-automata"
|
493
|
+
version = "0.4.9"
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
495
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
496
|
+
dependencies = [
|
497
|
+
"aho-corasick",
|
498
|
+
"memchr",
|
499
|
+
"regex-syntax",
|
500
|
+
]
|
501
|
+
|
502
|
+
[[package]]
|
503
|
+
name = "regex-syntax"
|
504
|
+
version = "0.8.5"
|
505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
506
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
507
|
+
|
508
|
+
[[package]]
|
509
|
+
name = "rustc-hash"
|
510
|
+
version = "1.1.0"
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
512
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
513
|
+
|
514
|
+
[[package]]
|
515
|
+
name = "sawzall"
|
516
|
+
version = "0.1.0"
|
517
|
+
dependencies = [
|
518
|
+
"ego-tree",
|
519
|
+
"magnus",
|
520
|
+
"scraper",
|
521
|
+
]
|
522
|
+
|
523
|
+
[[package]]
|
524
|
+
name = "scopeguard"
|
525
|
+
version = "1.2.0"
|
526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
527
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
528
|
+
|
529
|
+
[[package]]
|
530
|
+
name = "scraper"
|
531
|
+
version = "0.23.1"
|
532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
533
|
+
checksum = "527e65d9d888567588db4c12da1087598d0f6f8b346cc2c5abc91f05fc2dffe2"
|
534
|
+
dependencies = [
|
535
|
+
"cssparser",
|
536
|
+
"ego-tree",
|
537
|
+
"getopts",
|
538
|
+
"html5ever",
|
539
|
+
"precomputed-hash",
|
540
|
+
"selectors",
|
541
|
+
"tendril",
|
542
|
+
]
|
543
|
+
|
544
|
+
[[package]]
|
545
|
+
name = "selectors"
|
546
|
+
version = "0.26.0"
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
548
|
+
checksum = "fd568a4c9bb598e291a08244a5c1f5a8a6650bee243b5b0f8dbb3d9cc1d87fe8"
|
549
|
+
dependencies = [
|
550
|
+
"bitflags",
|
551
|
+
"cssparser",
|
552
|
+
"derive_more",
|
553
|
+
"fxhash",
|
554
|
+
"log",
|
555
|
+
"new_debug_unreachable",
|
556
|
+
"phf",
|
557
|
+
"phf_codegen",
|
558
|
+
"precomputed-hash",
|
559
|
+
"servo_arc",
|
560
|
+
"smallvec",
|
561
|
+
]
|
562
|
+
|
563
|
+
[[package]]
|
564
|
+
name = "seq-macro"
|
565
|
+
version = "0.3.6"
|
566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
567
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
568
|
+
|
569
|
+
[[package]]
|
570
|
+
name = "serde"
|
571
|
+
version = "1.0.219"
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
573
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
574
|
+
dependencies = [
|
575
|
+
"serde_derive",
|
576
|
+
]
|
577
|
+
|
578
|
+
[[package]]
|
579
|
+
name = "serde_derive"
|
580
|
+
version = "1.0.219"
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
582
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
583
|
+
dependencies = [
|
584
|
+
"proc-macro2",
|
585
|
+
"quote",
|
586
|
+
"syn",
|
587
|
+
]
|
588
|
+
|
589
|
+
[[package]]
|
590
|
+
name = "servo_arc"
|
591
|
+
version = "0.4.0"
|
592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
593
|
+
checksum = "ae65c4249478a2647db249fb43e23cec56a2c8974a427e7bd8cb5a1d0964921a"
|
594
|
+
dependencies = [
|
595
|
+
"stable_deref_trait",
|
596
|
+
]
|
597
|
+
|
598
|
+
[[package]]
|
599
|
+
name = "shell-words"
|
600
|
+
version = "1.1.0"
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
602
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
603
|
+
|
604
|
+
[[package]]
|
605
|
+
name = "shlex"
|
606
|
+
version = "1.3.0"
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
608
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
609
|
+
|
610
|
+
[[package]]
|
611
|
+
name = "siphasher"
|
612
|
+
version = "1.0.1"
|
613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
614
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
615
|
+
|
616
|
+
[[package]]
|
617
|
+
name = "smallvec"
|
618
|
+
version = "1.15.0"
|
619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
620
|
+
checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
|
621
|
+
|
622
|
+
[[package]]
|
623
|
+
name = "stable_deref_trait"
|
624
|
+
version = "1.2.0"
|
625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
626
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
627
|
+
|
628
|
+
[[package]]
|
629
|
+
name = "string_cache"
|
630
|
+
version = "0.8.9"
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
632
|
+
checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
|
633
|
+
dependencies = [
|
634
|
+
"new_debug_unreachable",
|
635
|
+
"parking_lot",
|
636
|
+
"phf_shared",
|
637
|
+
"precomputed-hash",
|
638
|
+
"serde",
|
639
|
+
]
|
640
|
+
|
641
|
+
[[package]]
|
642
|
+
name = "string_cache_codegen"
|
643
|
+
version = "0.5.4"
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
645
|
+
checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0"
|
646
|
+
dependencies = [
|
647
|
+
"phf_generator",
|
648
|
+
"phf_shared",
|
649
|
+
"proc-macro2",
|
650
|
+
"quote",
|
651
|
+
]
|
652
|
+
|
653
|
+
[[package]]
|
654
|
+
name = "syn"
|
655
|
+
version = "2.0.100"
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
657
|
+
checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
|
658
|
+
dependencies = [
|
659
|
+
"proc-macro2",
|
660
|
+
"quote",
|
661
|
+
"unicode-ident",
|
662
|
+
]
|
663
|
+
|
664
|
+
[[package]]
|
665
|
+
name = "tendril"
|
666
|
+
version = "0.4.3"
|
667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
668
|
+
checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
|
669
|
+
dependencies = [
|
670
|
+
"futf",
|
671
|
+
"mac",
|
672
|
+
"utf-8",
|
673
|
+
]
|
674
|
+
|
675
|
+
[[package]]
|
676
|
+
name = "unicode-ident"
|
677
|
+
version = "1.0.18"
|
678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
679
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
680
|
+
|
681
|
+
[[package]]
|
682
|
+
name = "unicode-width"
|
683
|
+
version = "0.1.14"
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
685
|
+
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
686
|
+
|
687
|
+
[[package]]
|
688
|
+
name = "utf-8"
|
689
|
+
version = "0.7.6"
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
691
|
+
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
692
|
+
|
693
|
+
[[package]]
|
694
|
+
name = "windows-targets"
|
695
|
+
version = "0.52.6"
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
697
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
698
|
+
dependencies = [
|
699
|
+
"windows_aarch64_gnullvm",
|
700
|
+
"windows_aarch64_msvc",
|
701
|
+
"windows_i686_gnu",
|
702
|
+
"windows_i686_gnullvm",
|
703
|
+
"windows_i686_msvc",
|
704
|
+
"windows_x86_64_gnu",
|
705
|
+
"windows_x86_64_gnullvm",
|
706
|
+
"windows_x86_64_msvc",
|
707
|
+
]
|
708
|
+
|
709
|
+
[[package]]
|
710
|
+
name = "windows_aarch64_gnullvm"
|
711
|
+
version = "0.52.6"
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
713
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
714
|
+
|
715
|
+
[[package]]
|
716
|
+
name = "windows_aarch64_msvc"
|
717
|
+
version = "0.52.6"
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
719
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
720
|
+
|
721
|
+
[[package]]
|
722
|
+
name = "windows_i686_gnu"
|
723
|
+
version = "0.52.6"
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
725
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
726
|
+
|
727
|
+
[[package]]
|
728
|
+
name = "windows_i686_gnullvm"
|
729
|
+
version = "0.52.6"
|
730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
731
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
732
|
+
|
733
|
+
[[package]]
|
734
|
+
name = "windows_i686_msvc"
|
735
|
+
version = "0.52.6"
|
736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
737
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
738
|
+
|
739
|
+
[[package]]
|
740
|
+
name = "windows_x86_64_gnu"
|
741
|
+
version = "0.52.6"
|
742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
743
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
744
|
+
|
745
|
+
[[package]]
|
746
|
+
name = "windows_x86_64_gnullvm"
|
747
|
+
version = "0.52.6"
|
748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
749
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
750
|
+
|
751
|
+
[[package]]
|
752
|
+
name = "windows_x86_64_msvc"
|
753
|
+
version = "0.52.6"
|
754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
755
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|