langmail 0.5.0__tar.gz

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.
Files changed (29) hide show
  1. langmail-0.5.0/Cargo.lock +1098 -0
  2. langmail-0.5.0/Cargo.toml +13 -0
  3. langmail-0.5.0/PKG-INFO +14 -0
  4. langmail-0.5.0/crates/langmail-core/Cargo.toml +16 -0
  5. langmail-0.5.0/crates/langmail-core/scripts/anonymize-fixture.ts +565 -0
  6. langmail-0.5.0/crates/langmail-core/src/cta.rs +409 -0
  7. langmail-0.5.0/crates/langmail-core/src/html.rs +284 -0
  8. langmail-0.5.0/crates/langmail-core/src/lib.rs +498 -0
  9. langmail-0.5.0/crates/langmail-core/src/quotes.rs +136 -0
  10. langmail-0.5.0/crates/langmail-core/src/signature.rs +173 -0
  11. langmail-0.5.0/crates/langmail-core/src/types.rs +157 -0
  12. langmail-0.5.0/crates/langmail-core/tests/amie_promo.rs +139 -0
  13. langmail-0.5.0/crates/langmail-core/tests/direct.rs +58 -0
  14. langmail-0.5.0/crates/langmail-core/tests/fixtures/amie-promo.eml +58 -0
  15. langmail-0.5.0/crates/langmail-core/tests/fixtures/direct.eml +37 -0
  16. langmail-0.5.0/crates/langmail-core/tests/fixtures/forwarded.eml +27 -0
  17. langmail-0.5.0/crates/langmail-core/tests/fixtures/linear-login.eml +675 -0
  18. langmail-0.5.0/crates/langmail-core/tests/fixtures/linkedin.eml +353 -0
  19. langmail-0.5.0/crates/langmail-core/tests/fixtures/tk-message.eml +887 -0
  20. langmail-0.5.0/crates/langmail-core/tests/fixtures/zero-width.eml +657 -0
  21. langmail-0.5.0/crates/langmail-core/tests/forwarded.rs +42 -0
  22. langmail-0.5.0/crates/langmail-core/tests/linear_login.rs +70 -0
  23. langmail-0.5.0/crates/langmail-core/tests/linkedin.rs +70 -0
  24. langmail-0.5.0/crates/langmail-core/tests/tk_message.rs +38 -0
  25. langmail-0.5.0/crates/langmail-core/tests/zero_width.rs +75 -0
  26. langmail-0.5.0/crates/langmail-python/Cargo.toml +15 -0
  27. langmail-0.5.0/crates/langmail-python/src/lib.rs +243 -0
  28. langmail-0.5.0/crates/langmail-python/tests/test_preprocess.py +143 -0
  29. langmail-0.5.0/pyproject.toml +24 -0
@@ -0,0 +1,1098 @@
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 = "autocfg"
16
+ version = "1.5.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
19
+
20
+ [[package]]
21
+ name = "bitflags"
22
+ version = "2.11.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
25
+
26
+ [[package]]
27
+ name = "byteorder"
28
+ version = "1.5.0"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
31
+
32
+ [[package]]
33
+ name = "cc"
34
+ version = "1.2.56"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
37
+ dependencies = [
38
+ "find-msvc-tools",
39
+ "shlex",
40
+ ]
41
+
42
+ [[package]]
43
+ name = "cfg-if"
44
+ version = "1.0.4"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
47
+
48
+ [[package]]
49
+ name = "convert_case"
50
+ version = "0.11.0"
51
+ source = "registry+https://github.com/rust-lang/crates.io-index"
52
+ checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
53
+ dependencies = [
54
+ "unicode-segmentation",
55
+ ]
56
+
57
+ [[package]]
58
+ name = "cssparser"
59
+ version = "0.34.0"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "b7c66d1cd8ed61bf80b38432613a7a2f09401ab8d0501110655f8b341484a3e3"
62
+ dependencies = [
63
+ "cssparser-macros",
64
+ "dtoa-short",
65
+ "itoa",
66
+ "phf 0.11.3",
67
+ "smallvec",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "cssparser-macros"
72
+ version = "0.6.1"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
75
+ dependencies = [
76
+ "quote",
77
+ "syn",
78
+ ]
79
+
80
+ [[package]]
81
+ name = "ctor"
82
+ version = "0.6.3"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "424e0138278faeb2b401f174ad17e715c829512d74f3d1e81eb43365c2e0590e"
85
+ dependencies = [
86
+ "ctor-proc-macro",
87
+ "dtor",
88
+ ]
89
+
90
+ [[package]]
91
+ name = "ctor-proc-macro"
92
+ version = "0.0.7"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1"
95
+
96
+ [[package]]
97
+ name = "derive_more"
98
+ version = "0.99.20"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f"
101
+ dependencies = [
102
+ "proc-macro2",
103
+ "quote",
104
+ "syn",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "dtoa"
109
+ version = "1.0.11"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590"
112
+
113
+ [[package]]
114
+ name = "dtoa-short"
115
+ version = "0.3.5"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
118
+ dependencies = [
119
+ "dtoa",
120
+ ]
121
+
122
+ [[package]]
123
+ name = "dtor"
124
+ version = "0.1.1"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "404d02eeb088a82cfd873006cb713fe411306c7d182c344905e101fb1167d301"
127
+ dependencies = [
128
+ "dtor-proc-macro",
129
+ ]
130
+
131
+ [[package]]
132
+ name = "dtor-proc-macro"
133
+ version = "0.0.6"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
136
+
137
+ [[package]]
138
+ name = "ego-tree"
139
+ version = "0.10.0"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "b2972feb8dffe7bc8c5463b1dacda1b0dfbed3710e50f977d965429692d74cd8"
142
+
143
+ [[package]]
144
+ name = "fastrand"
145
+ version = "2.3.0"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
148
+
149
+ [[package]]
150
+ name = "find-msvc-tools"
151
+ version = "0.1.9"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
154
+
155
+ [[package]]
156
+ name = "futf"
157
+ version = "0.1.5"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
160
+ dependencies = [
161
+ "mac",
162
+ "new_debug_unreachable",
163
+ ]
164
+
165
+ [[package]]
166
+ name = "futures"
167
+ version = "0.3.32"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
170
+ dependencies = [
171
+ "futures-channel",
172
+ "futures-core",
173
+ "futures-executor",
174
+ "futures-io",
175
+ "futures-sink",
176
+ "futures-task",
177
+ "futures-util",
178
+ ]
179
+
180
+ [[package]]
181
+ name = "futures-channel"
182
+ version = "0.3.32"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
185
+ dependencies = [
186
+ "futures-core",
187
+ "futures-sink",
188
+ ]
189
+
190
+ [[package]]
191
+ name = "futures-core"
192
+ version = "0.3.32"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
195
+
196
+ [[package]]
197
+ name = "futures-executor"
198
+ version = "0.3.32"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
201
+ dependencies = [
202
+ "futures-core",
203
+ "futures-task",
204
+ "futures-util",
205
+ ]
206
+
207
+ [[package]]
208
+ name = "futures-io"
209
+ version = "0.3.32"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
212
+
213
+ [[package]]
214
+ name = "futures-macro"
215
+ version = "0.3.32"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
218
+ dependencies = [
219
+ "proc-macro2",
220
+ "quote",
221
+ "syn",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "futures-sink"
226
+ version = "0.3.32"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
229
+
230
+ [[package]]
231
+ name = "futures-task"
232
+ version = "0.3.32"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
235
+
236
+ [[package]]
237
+ name = "futures-util"
238
+ version = "0.3.32"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
241
+ dependencies = [
242
+ "futures-channel",
243
+ "futures-core",
244
+ "futures-io",
245
+ "futures-macro",
246
+ "futures-sink",
247
+ "futures-task",
248
+ "memchr",
249
+ "pin-project-lite",
250
+ "slab",
251
+ ]
252
+
253
+ [[package]]
254
+ name = "fxhash"
255
+ version = "0.2.1"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
258
+ dependencies = [
259
+ "byteorder",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "getopts"
264
+ version = "0.2.24"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
267
+ dependencies = [
268
+ "unicode-width",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "hashify"
273
+ version = "0.2.7"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "149e3ea90eb5a26ad354cfe3cb7f7401b9329032d0235f2687d03a35f30e5d4c"
276
+ dependencies = [
277
+ "proc-macro2",
278
+ "quote",
279
+ "syn",
280
+ ]
281
+
282
+ [[package]]
283
+ name = "heck"
284
+ version = "0.5.0"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
287
+
288
+ [[package]]
289
+ name = "htmd"
290
+ version = "0.5.0"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "60ae59466542f2346e43d4a5e9b4432a1fc915b279c9fc0484e9ed7379121454"
293
+ dependencies = [
294
+ "html5ever 0.35.0",
295
+ "markup5ever_rcdom",
296
+ "phf 0.13.1",
297
+ ]
298
+
299
+ [[package]]
300
+ name = "html5ever"
301
+ version = "0.29.1"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "3b7410cae13cbc75623c98ac4cbfd1f0bedddf3227afc24f370cf0f50a44a11c"
304
+ dependencies = [
305
+ "log",
306
+ "mac",
307
+ "markup5ever 0.14.1",
308
+ "match_token 0.1.0",
309
+ ]
310
+
311
+ [[package]]
312
+ name = "html5ever"
313
+ version = "0.35.0"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "55d958c2f74b664487a2035fe1dadb032c48718a03b63f3ab0b8537db8549ed4"
316
+ dependencies = [
317
+ "log",
318
+ "markup5ever 0.35.0",
319
+ "match_token 0.35.0",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "indoc"
324
+ version = "2.0.7"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
327
+ dependencies = [
328
+ "rustversion",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "itoa"
333
+ version = "1.0.17"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
336
+
337
+ [[package]]
338
+ name = "langmail-core"
339
+ version = "0.5.0"
340
+ dependencies = [
341
+ "htmd",
342
+ "mail-parser",
343
+ "once_cell",
344
+ "regex",
345
+ "scraper",
346
+ "serde",
347
+ "serde_json",
348
+ ]
349
+
350
+ [[package]]
351
+ name = "langmail-node"
352
+ version = "0.5.0"
353
+ dependencies = [
354
+ "langmail-core",
355
+ "napi",
356
+ "napi-build",
357
+ "napi-derive",
358
+ ]
359
+
360
+ [[package]]
361
+ name = "langmail-python"
362
+ version = "0.5.0"
363
+ dependencies = [
364
+ "langmail-core",
365
+ "pyo3",
366
+ ]
367
+
368
+ [[package]]
369
+ name = "libc"
370
+ version = "0.2.182"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
373
+
374
+ [[package]]
375
+ name = "libloading"
376
+ version = "0.9.0"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
379
+ dependencies = [
380
+ "cfg-if",
381
+ "windows-link",
382
+ ]
383
+
384
+ [[package]]
385
+ name = "lock_api"
386
+ version = "0.4.14"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
389
+ dependencies = [
390
+ "scopeguard",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "log"
395
+ version = "0.4.29"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
398
+
399
+ [[package]]
400
+ name = "mac"
401
+ version = "0.1.1"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
404
+
405
+ [[package]]
406
+ name = "mail-parser"
407
+ version = "0.11.2"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "f82a3d6522697593ba4c683e0a6ee5a40fee93bc1a525e3cc6eeb3da11fd8897"
410
+ dependencies = [
411
+ "hashify",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "markup5ever"
416
+ version = "0.14.1"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "c7a7213d12e1864c0f002f52c2923d4556935a43dec5e71355c2760e0f6e7a18"
419
+ dependencies = [
420
+ "log",
421
+ "phf 0.11.3",
422
+ "phf_codegen",
423
+ "string_cache",
424
+ "string_cache_codegen",
425
+ "tendril",
426
+ ]
427
+
428
+ [[package]]
429
+ name = "markup5ever"
430
+ version = "0.35.0"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "311fe69c934650f8f19652b3946075f0fc41ad8757dbb68f1ca14e7900ecc1c3"
433
+ dependencies = [
434
+ "log",
435
+ "tendril",
436
+ "web_atoms",
437
+ ]
438
+
439
+ [[package]]
440
+ name = "markup5ever_rcdom"
441
+ version = "0.35.0+unofficial"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "c8bcd53df4748257345b8bc156d620340ce0f015ec1c7ef1cff475543888a31d"
444
+ dependencies = [
445
+ "html5ever 0.35.0",
446
+ "markup5ever 0.35.0",
447
+ "tendril",
448
+ "xml5ever",
449
+ ]
450
+
451
+ [[package]]
452
+ name = "match_token"
453
+ version = "0.1.0"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "88a9689d8d44bf9964484516275f5cd4c9b59457a6940c1d5d0ecbb94510a36b"
456
+ dependencies = [
457
+ "proc-macro2",
458
+ "quote",
459
+ "syn",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "match_token"
464
+ version = "0.35.0"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "ac84fd3f360fcc43dc5f5d186f02a94192761a080e8bc58621ad4d12296a58cf"
467
+ dependencies = [
468
+ "proc-macro2",
469
+ "quote",
470
+ "syn",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "memchr"
475
+ version = "2.8.0"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
478
+
479
+ [[package]]
480
+ name = "memoffset"
481
+ version = "0.9.1"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
484
+ dependencies = [
485
+ "autocfg",
486
+ ]
487
+
488
+ [[package]]
489
+ name = "napi"
490
+ version = "3.8.3"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "e6944d0bf100571cd6e1a98a316cdca262deb6fccf8d93f5ae1502ca3fc88bd3"
493
+ dependencies = [
494
+ "bitflags",
495
+ "ctor",
496
+ "futures",
497
+ "napi-build",
498
+ "napi-sys",
499
+ "nohash-hasher",
500
+ "rustc-hash",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "napi-build"
505
+ version = "2.3.1"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
508
+
509
+ [[package]]
510
+ name = "napi-derive"
511
+ version = "3.5.2"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "2c914b5e420182bfb73504e0607592cdb8e2e21437d450883077669fb72a114d"
514
+ dependencies = [
515
+ "convert_case",
516
+ "ctor",
517
+ "napi-derive-backend",
518
+ "proc-macro2",
519
+ "quote",
520
+ "syn",
521
+ ]
522
+
523
+ [[package]]
524
+ name = "napi-derive-backend"
525
+ version = "5.0.2"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "f0864cf6a82e2cfb69067374b64c9253d7e910e5b34db833ed7495dda56ccb18"
528
+ dependencies = [
529
+ "convert_case",
530
+ "proc-macro2",
531
+ "quote",
532
+ "semver",
533
+ "syn",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "napi-sys"
538
+ version = "3.2.1"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "8eb602b84d7c1edae45e50bbf1374696548f36ae179dfa667f577e384bb90c2b"
541
+ dependencies = [
542
+ "libloading",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "new_debug_unreachable"
547
+ version = "1.0.6"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
550
+
551
+ [[package]]
552
+ name = "nohash-hasher"
553
+ version = "0.2.0"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
556
+
557
+ [[package]]
558
+ name = "once_cell"
559
+ version = "1.21.3"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
562
+
563
+ [[package]]
564
+ name = "parking_lot"
565
+ version = "0.12.5"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
568
+ dependencies = [
569
+ "lock_api",
570
+ "parking_lot_core",
571
+ ]
572
+
573
+ [[package]]
574
+ name = "parking_lot_core"
575
+ version = "0.9.12"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
578
+ dependencies = [
579
+ "cfg-if",
580
+ "libc",
581
+ "redox_syscall",
582
+ "smallvec",
583
+ "windows-link",
584
+ ]
585
+
586
+ [[package]]
587
+ name = "phf"
588
+ version = "0.11.3"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
591
+ dependencies = [
592
+ "phf_macros 0.11.3",
593
+ "phf_shared 0.11.3",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "phf"
598
+ version = "0.13.1"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
601
+ dependencies = [
602
+ "phf_macros 0.13.1",
603
+ "phf_shared 0.13.1",
604
+ "serde",
605
+ ]
606
+
607
+ [[package]]
608
+ name = "phf_codegen"
609
+ version = "0.11.3"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
612
+ dependencies = [
613
+ "phf_generator 0.11.3",
614
+ "phf_shared 0.11.3",
615
+ ]
616
+
617
+ [[package]]
618
+ name = "phf_generator"
619
+ version = "0.11.3"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
622
+ dependencies = [
623
+ "phf_shared 0.11.3",
624
+ "rand",
625
+ ]
626
+
627
+ [[package]]
628
+ name = "phf_generator"
629
+ version = "0.13.1"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
632
+ dependencies = [
633
+ "fastrand",
634
+ "phf_shared 0.13.1",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "phf_macros"
639
+ version = "0.11.3"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
642
+ dependencies = [
643
+ "phf_generator 0.11.3",
644
+ "phf_shared 0.11.3",
645
+ "proc-macro2",
646
+ "quote",
647
+ "syn",
648
+ ]
649
+
650
+ [[package]]
651
+ name = "phf_macros"
652
+ version = "0.13.1"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
655
+ dependencies = [
656
+ "phf_generator 0.13.1",
657
+ "phf_shared 0.13.1",
658
+ "proc-macro2",
659
+ "quote",
660
+ "syn",
661
+ ]
662
+
663
+ [[package]]
664
+ name = "phf_shared"
665
+ version = "0.11.3"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
668
+ dependencies = [
669
+ "siphasher",
670
+ ]
671
+
672
+ [[package]]
673
+ name = "phf_shared"
674
+ version = "0.13.1"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
677
+ dependencies = [
678
+ "siphasher",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "pin-project-lite"
683
+ version = "0.2.17"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
686
+
687
+ [[package]]
688
+ name = "portable-atomic"
689
+ version = "1.13.1"
690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
691
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
692
+
693
+ [[package]]
694
+ name = "precomputed-hash"
695
+ version = "0.1.1"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
698
+
699
+ [[package]]
700
+ name = "proc-macro2"
701
+ version = "1.0.106"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
704
+ dependencies = [
705
+ "unicode-ident",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "pyo3"
710
+ version = "0.23.5"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
713
+ dependencies = [
714
+ "cfg-if",
715
+ "indoc",
716
+ "libc",
717
+ "memoffset",
718
+ "once_cell",
719
+ "portable-atomic",
720
+ "pyo3-build-config",
721
+ "pyo3-ffi",
722
+ "pyo3-macros",
723
+ "unindent",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "pyo3-build-config"
728
+ version = "0.23.5"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
731
+ dependencies = [
732
+ "once_cell",
733
+ "python3-dll-a",
734
+ "target-lexicon",
735
+ ]
736
+
737
+ [[package]]
738
+ name = "pyo3-ffi"
739
+ version = "0.23.5"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
742
+ dependencies = [
743
+ "libc",
744
+ "pyo3-build-config",
745
+ ]
746
+
747
+ [[package]]
748
+ name = "pyo3-macros"
749
+ version = "0.23.5"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
752
+ dependencies = [
753
+ "proc-macro2",
754
+ "pyo3-macros-backend",
755
+ "quote",
756
+ "syn",
757
+ ]
758
+
759
+ [[package]]
760
+ name = "pyo3-macros-backend"
761
+ version = "0.23.5"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
764
+ dependencies = [
765
+ "heck",
766
+ "proc-macro2",
767
+ "pyo3-build-config",
768
+ "quote",
769
+ "syn",
770
+ ]
771
+
772
+ [[package]]
773
+ name = "python3-dll-a"
774
+ version = "0.2.14"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "d381ef313ae70b4da5f95f8a4de773c6aa5cd28f73adec4b4a31df70b66780d8"
777
+ dependencies = [
778
+ "cc",
779
+ ]
780
+
781
+ [[package]]
782
+ name = "quote"
783
+ version = "1.0.45"
784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
785
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
786
+ dependencies = [
787
+ "proc-macro2",
788
+ ]
789
+
790
+ [[package]]
791
+ name = "rand"
792
+ version = "0.8.5"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
795
+ dependencies = [
796
+ "rand_core",
797
+ ]
798
+
799
+ [[package]]
800
+ name = "rand_core"
801
+ version = "0.6.4"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
804
+
805
+ [[package]]
806
+ name = "redox_syscall"
807
+ version = "0.5.18"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
810
+ dependencies = [
811
+ "bitflags",
812
+ ]
813
+
814
+ [[package]]
815
+ name = "regex"
816
+ version = "1.12.3"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
819
+ dependencies = [
820
+ "aho-corasick",
821
+ "memchr",
822
+ "regex-automata",
823
+ "regex-syntax",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "regex-automata"
828
+ version = "0.4.14"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
831
+ dependencies = [
832
+ "aho-corasick",
833
+ "memchr",
834
+ "regex-syntax",
835
+ ]
836
+
837
+ [[package]]
838
+ name = "regex-syntax"
839
+ version = "0.8.10"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
842
+
843
+ [[package]]
844
+ name = "rustc-hash"
845
+ version = "2.1.1"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
848
+
849
+ [[package]]
850
+ name = "rustversion"
851
+ version = "1.0.22"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
854
+
855
+ [[package]]
856
+ name = "scopeguard"
857
+ version = "1.2.0"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
860
+
861
+ [[package]]
862
+ name = "scraper"
863
+ version = "0.22.0"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "cc3d051b884f40e309de6c149734eab57aa8cc1347992710dc80bcc1c2194c15"
866
+ dependencies = [
867
+ "cssparser",
868
+ "ego-tree",
869
+ "getopts",
870
+ "html5ever 0.29.1",
871
+ "precomputed-hash",
872
+ "selectors",
873
+ "tendril",
874
+ ]
875
+
876
+ [[package]]
877
+ name = "selectors"
878
+ version = "0.26.0"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ checksum = "fd568a4c9bb598e291a08244a5c1f5a8a6650bee243b5b0f8dbb3d9cc1d87fe8"
881
+ dependencies = [
882
+ "bitflags",
883
+ "cssparser",
884
+ "derive_more",
885
+ "fxhash",
886
+ "log",
887
+ "new_debug_unreachable",
888
+ "phf 0.11.3",
889
+ "phf_codegen",
890
+ "precomputed-hash",
891
+ "servo_arc",
892
+ "smallvec",
893
+ ]
894
+
895
+ [[package]]
896
+ name = "semver"
897
+ version = "1.0.27"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
900
+
901
+ [[package]]
902
+ name = "serde"
903
+ version = "1.0.228"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
906
+ dependencies = [
907
+ "serde_core",
908
+ "serde_derive",
909
+ ]
910
+
911
+ [[package]]
912
+ name = "serde_core"
913
+ version = "1.0.228"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
916
+ dependencies = [
917
+ "serde_derive",
918
+ ]
919
+
920
+ [[package]]
921
+ name = "serde_derive"
922
+ version = "1.0.228"
923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
924
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
925
+ dependencies = [
926
+ "proc-macro2",
927
+ "quote",
928
+ "syn",
929
+ ]
930
+
931
+ [[package]]
932
+ name = "serde_json"
933
+ version = "1.0.149"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
936
+ dependencies = [
937
+ "itoa",
938
+ "memchr",
939
+ "serde",
940
+ "serde_core",
941
+ "zmij",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "servo_arc"
946
+ version = "0.4.3"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "170fb83ab34de17dc69aa7c67482b22218ddb85da56546f9bd6b929e32a05930"
949
+ dependencies = [
950
+ "stable_deref_trait",
951
+ ]
952
+
953
+ [[package]]
954
+ name = "shlex"
955
+ version = "1.3.0"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
958
+
959
+ [[package]]
960
+ name = "siphasher"
961
+ version = "1.0.2"
962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
963
+ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
964
+
965
+ [[package]]
966
+ name = "slab"
967
+ version = "0.4.12"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
970
+
971
+ [[package]]
972
+ name = "smallvec"
973
+ version = "1.15.1"
974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
975
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
976
+
977
+ [[package]]
978
+ name = "stable_deref_trait"
979
+ version = "1.2.1"
980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
981
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
982
+
983
+ [[package]]
984
+ name = "string_cache"
985
+ version = "0.8.9"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
988
+ dependencies = [
989
+ "new_debug_unreachable",
990
+ "parking_lot",
991
+ "phf_shared 0.11.3",
992
+ "precomputed-hash",
993
+ "serde",
994
+ ]
995
+
996
+ [[package]]
997
+ name = "string_cache_codegen"
998
+ version = "0.5.4"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0"
1001
+ dependencies = [
1002
+ "phf_generator 0.11.3",
1003
+ "phf_shared 0.11.3",
1004
+ "proc-macro2",
1005
+ "quote",
1006
+ ]
1007
+
1008
+ [[package]]
1009
+ name = "syn"
1010
+ version = "2.0.117"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1013
+ dependencies = [
1014
+ "proc-macro2",
1015
+ "quote",
1016
+ "unicode-ident",
1017
+ ]
1018
+
1019
+ [[package]]
1020
+ name = "target-lexicon"
1021
+ version = "0.12.16"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
1024
+
1025
+ [[package]]
1026
+ name = "tendril"
1027
+ version = "0.4.3"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
1030
+ dependencies = [
1031
+ "futf",
1032
+ "mac",
1033
+ "utf-8",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "unicode-ident"
1038
+ version = "1.0.24"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1041
+
1042
+ [[package]]
1043
+ name = "unicode-segmentation"
1044
+ version = "1.12.0"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
1047
+
1048
+ [[package]]
1049
+ name = "unicode-width"
1050
+ version = "0.2.2"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1053
+
1054
+ [[package]]
1055
+ name = "unindent"
1056
+ version = "0.2.4"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1059
+
1060
+ [[package]]
1061
+ name = "utf-8"
1062
+ version = "0.7.6"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
1065
+
1066
+ [[package]]
1067
+ name = "web_atoms"
1068
+ version = "0.1.3"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "57ffde1dc01240bdf9992e3205668b235e59421fd085e8a317ed98da0178d414"
1071
+ dependencies = [
1072
+ "phf 0.11.3",
1073
+ "phf_codegen",
1074
+ "string_cache",
1075
+ "string_cache_codegen",
1076
+ ]
1077
+
1078
+ [[package]]
1079
+ name = "windows-link"
1080
+ version = "0.2.1"
1081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1082
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1083
+
1084
+ [[package]]
1085
+ name = "xml5ever"
1086
+ version = "0.35.0"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "ee3f1e41afb31a75aef076563b0ad3ecc24f5bd9d12a72b132222664eb76b494"
1089
+ dependencies = [
1090
+ "log",
1091
+ "markup5ever 0.35.0",
1092
+ ]
1093
+
1094
+ [[package]]
1095
+ name = "zmij"
1096
+ version = "1.0.21"
1097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1098
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"