dirsql 0.1.9__tar.gz → 0.1.11__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 (60) hide show
  1. dirsql-0.1.11/Cargo.lock +3206 -0
  2. dirsql-0.1.11/Cargo.toml +39 -0
  3. {dirsql-0.1.9 → dirsql-0.1.11}/PKG-INFO +8 -2
  4. {dirsql-0.1.9/packages/python → dirsql-0.1.11}/README.md +6 -0
  5. {dirsql-0.1.9 → dirsql-0.1.11/packages/python}/README.md +6 -0
  6. dirsql-0.1.11/packages/python/python/conftest.py +36 -0
  7. dirsql-0.1.11/packages/rust/Cargo.toml +79 -0
  8. dirsql-0.1.11/packages/rust/README.md +53 -0
  9. dirsql-0.1.11/packages/rust/src/bin/dirsql.rs +107 -0
  10. dirsql-0.1.11/packages/rust/src/cli/mod.rs +146 -0
  11. dirsql-0.1.11/packages/rust/src/cli/router.rs +165 -0
  12. dirsql-0.1.11/packages/rust/src/cli/serialize.rs +186 -0
  13. dirsql-0.1.11/packages/rust/src/cli/server.rs +91 -0
  14. {dirsql-0.1.9 → dirsql-0.1.11}/packages/rust/src/lib.rs +3 -0
  15. dirsql-0.1.11/packages/rust/tests/cli_e2e.rs +362 -0
  16. dirsql-0.1.11/packages/rust/tests/cli_integration.rs +403 -0
  17. {dirsql-0.1.9 → dirsql-0.1.11}/pyproject.toml +17 -2
  18. dirsql-0.1.11/python/dirsql/_cli/__init__.py +6 -0
  19. dirsql-0.1.11/python/dirsql/_cli/binary_path.py +19 -0
  20. dirsql-0.1.11/python/dirsql/_cli/binary_path_test.py +68 -0
  21. dirsql-0.1.11/python/dirsql/_cli/is_windows.py +10 -0
  22. dirsql-0.1.11/python/dirsql/_cli/is_windows_test.py +15 -0
  23. dirsql-0.1.11/python/dirsql/_cli/main.py +27 -0
  24. dirsql-0.1.11/python/dirsql/_cli/main_test.py +77 -0
  25. dirsql-0.1.11/python/dirsql/test_async.py +83 -0
  26. dirsql-0.1.9/Cargo.lock +0 -1683
  27. dirsql-0.1.9/Cargo.toml +0 -18
  28. dirsql-0.1.9/packages/rust/Cargo.toml +0 -46
  29. dirsql-0.1.9/packages/rust/README.md +0 -26
  30. dirsql-0.1.9/python/dirsql/test_async.py +0 -78
  31. {dirsql-0.1.9 → dirsql-0.1.11}/packages/python/Cargo.toml +0 -0
  32. {dirsql-0.1.9 → dirsql-0.1.11}/packages/python/src/lib.rs +0 -0
  33. {dirsql-0.1.9 → dirsql-0.1.11}/packages/python/tests/__init__.py +0 -0
  34. {dirsql-0.1.9 → dirsql-0.1.11}/packages/python/tests/conftest.py +0 -0
  35. {dirsql-0.1.9 → dirsql-0.1.11}/packages/python/tests/integration/__init__.py +0 -0
  36. {dirsql-0.1.9 → dirsql-0.1.11}/packages/python/tests/integration/test_async_dirsql.py +0 -0
  37. {dirsql-0.1.9 → dirsql-0.1.11}/packages/python/tests/integration/test_binding.py +0 -0
  38. {dirsql-0.1.9 → dirsql-0.1.11}/packages/python/tests/integration/test_dirsql.py +0 -0
  39. {dirsql-0.1.9 → dirsql-0.1.11}/packages/python/tests/integration/test_docs_examples.py +0 -0
  40. {dirsql-0.1.9 → dirsql-0.1.11}/packages/python/tests/integration/test_docs_gaps.py +0 -0
  41. {dirsql-0.1.9 → dirsql-0.1.11}/packages/python/tests/integration/test_from_config.py +0 -0
  42. {dirsql-0.1.9 → dirsql-0.1.11}/packages/rust/benches/db_bench.rs +0 -0
  43. {dirsql-0.1.9 → dirsql-0.1.11}/packages/rust/benches/differ_bench.rs +0 -0
  44. {dirsql-0.1.9 → dirsql-0.1.11}/packages/rust/benches/matcher_bench.rs +0 -0
  45. {dirsql-0.1.9 → dirsql-0.1.11}/packages/rust/benches/scanner_bench.rs +0 -0
  46. {dirsql-0.1.9 → dirsql-0.1.11}/packages/rust/src/config.rs +0 -0
  47. {dirsql-0.1.9 → dirsql-0.1.11}/packages/rust/src/db.rs +0 -0
  48. {dirsql-0.1.9 → dirsql-0.1.11}/packages/rust/src/differ.rs +0 -0
  49. {dirsql-0.1.9 → dirsql-0.1.11}/packages/rust/src/matcher.rs +0 -0
  50. {dirsql-0.1.9 → dirsql-0.1.11}/packages/rust/src/parser.rs +0 -0
  51. {dirsql-0.1.9 → dirsql-0.1.11}/packages/rust/src/scanner.rs +0 -0
  52. {dirsql-0.1.9 → dirsql-0.1.11}/packages/rust/src/watcher.rs +0 -0
  53. {dirsql-0.1.9 → dirsql-0.1.11}/packages/rust/tests/async_sdk.rs +0 -0
  54. {dirsql-0.1.9 → dirsql-0.1.11}/packages/rust/tests/docs_examples.rs +0 -0
  55. {dirsql-0.1.9 → dirsql-0.1.11}/packages/rust/tests/docs_gaps.rs +0 -0
  56. {dirsql-0.1.9 → dirsql-0.1.11}/packages/rust/tests/from_config.rs +0 -0
  57. {dirsql-0.1.9 → dirsql-0.1.11}/packages/rust/tests/readonly_query.rs +0 -0
  58. {dirsql-0.1.9 → dirsql-0.1.11}/packages/rust/tests/sdk.rs +0 -0
  59. {dirsql-0.1.9 → dirsql-0.1.11}/python/dirsql/__init__.py +0 -0
  60. {dirsql-0.1.9 → dirsql-0.1.11}/python/dirsql/_async.py +0 -0
@@ -0,0 +1,3206 @@
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 = "anes"
16
+ version = "0.1.6"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
19
+
20
+ [[package]]
21
+ name = "anstream"
22
+ version = "1.0.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
25
+ dependencies = [
26
+ "anstyle",
27
+ "anstyle-parse",
28
+ "anstyle-query",
29
+ "anstyle-wincon",
30
+ "colorchoice",
31
+ "is_terminal_polyfill",
32
+ "utf8parse",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anstyle"
37
+ version = "1.0.14"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
40
+
41
+ [[package]]
42
+ name = "anstyle-parse"
43
+ version = "1.0.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
46
+ dependencies = [
47
+ "utf8parse",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle-query"
52
+ version = "1.1.5"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
55
+ dependencies = [
56
+ "windows-sys 0.61.2",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle-wincon"
61
+ version = "3.0.11"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
64
+ dependencies = [
65
+ "anstyle",
66
+ "once_cell_polyfill",
67
+ "windows-sys 0.61.2",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "anyhow"
72
+ version = "1.0.102"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
75
+
76
+ [[package]]
77
+ name = "assert_cmd"
78
+ version = "2.2.1"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "39bae1d3fa576f7c6519514180a72559268dd7d1fe104070956cb687bc6673bd"
81
+ dependencies = [
82
+ "anstyle",
83
+ "bstr",
84
+ "libc",
85
+ "predicates",
86
+ "predicates-core",
87
+ "predicates-tree",
88
+ "wait-timeout",
89
+ ]
90
+
91
+ [[package]]
92
+ name = "atomic-waker"
93
+ version = "1.1.2"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
96
+
97
+ [[package]]
98
+ name = "autocfg"
99
+ version = "1.5.0"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
102
+
103
+ [[package]]
104
+ name = "axum"
105
+ version = "0.8.9"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
108
+ dependencies = [
109
+ "axum-core",
110
+ "bytes",
111
+ "form_urlencoded",
112
+ "futures-util",
113
+ "http 1.4.0",
114
+ "http-body 1.0.1",
115
+ "http-body-util",
116
+ "hyper 1.9.0",
117
+ "hyper-util",
118
+ "itoa",
119
+ "matchit",
120
+ "memchr",
121
+ "mime",
122
+ "percent-encoding",
123
+ "pin-project-lite",
124
+ "serde_core",
125
+ "serde_json",
126
+ "serde_path_to_error",
127
+ "serde_urlencoded",
128
+ "sync_wrapper",
129
+ "tokio",
130
+ "tower",
131
+ "tower-layer",
132
+ "tower-service",
133
+ "tracing",
134
+ ]
135
+
136
+ [[package]]
137
+ name = "axum-core"
138
+ version = "0.5.6"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
141
+ dependencies = [
142
+ "bytes",
143
+ "futures-core",
144
+ "http 1.4.0",
145
+ "http-body 1.0.1",
146
+ "http-body-util",
147
+ "mime",
148
+ "pin-project-lite",
149
+ "sync_wrapper",
150
+ "tower-layer",
151
+ "tower-service",
152
+ "tracing",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "base64"
157
+ version = "0.21.7"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
160
+
161
+ [[package]]
162
+ name = "base64"
163
+ version = "0.22.1"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
166
+
167
+ [[package]]
168
+ name = "bitflags"
169
+ version = "1.3.2"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
172
+
173
+ [[package]]
174
+ name = "bitflags"
175
+ version = "2.11.1"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
178
+
179
+ [[package]]
180
+ name = "bstr"
181
+ version = "1.12.1"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
184
+ dependencies = [
185
+ "memchr",
186
+ "regex-automata",
187
+ "serde",
188
+ ]
189
+
190
+ [[package]]
191
+ name = "bumpalo"
192
+ version = "3.20.2"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
195
+
196
+ [[package]]
197
+ name = "bytes"
198
+ version = "1.11.1"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
201
+
202
+ [[package]]
203
+ name = "cast"
204
+ version = "0.3.0"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
207
+
208
+ [[package]]
209
+ name = "cc"
210
+ version = "1.2.60"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
213
+ dependencies = [
214
+ "find-msvc-tools",
215
+ "shlex",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "cfg-if"
220
+ version = "1.0.4"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
223
+
224
+ [[package]]
225
+ name = "cfg_aliases"
226
+ version = "0.2.1"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
229
+
230
+ [[package]]
231
+ name = "ciborium"
232
+ version = "0.2.2"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
235
+ dependencies = [
236
+ "ciborium-io",
237
+ "ciborium-ll",
238
+ "serde",
239
+ ]
240
+
241
+ [[package]]
242
+ name = "ciborium-io"
243
+ version = "0.2.2"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
246
+
247
+ [[package]]
248
+ name = "ciborium-ll"
249
+ version = "0.2.2"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
252
+ dependencies = [
253
+ "ciborium-io",
254
+ "half",
255
+ ]
256
+
257
+ [[package]]
258
+ name = "clap"
259
+ version = "4.6.1"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
262
+ dependencies = [
263
+ "clap_builder",
264
+ "clap_derive",
265
+ ]
266
+
267
+ [[package]]
268
+ name = "clap_builder"
269
+ version = "4.6.0"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
272
+ dependencies = [
273
+ "anstream",
274
+ "anstyle",
275
+ "clap_lex",
276
+ "strsim",
277
+ ]
278
+
279
+ [[package]]
280
+ name = "clap_derive"
281
+ version = "4.6.1"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
284
+ dependencies = [
285
+ "heck",
286
+ "proc-macro2",
287
+ "quote",
288
+ "syn",
289
+ ]
290
+
291
+ [[package]]
292
+ name = "clap_lex"
293
+ version = "1.1.0"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
296
+
297
+ [[package]]
298
+ name = "colorchoice"
299
+ version = "1.0.5"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
302
+
303
+ [[package]]
304
+ name = "convert_case"
305
+ version = "0.11.0"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
308
+ dependencies = [
309
+ "unicode-segmentation",
310
+ ]
311
+
312
+ [[package]]
313
+ name = "core-foundation"
314
+ version = "0.9.4"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
317
+ dependencies = [
318
+ "core-foundation-sys",
319
+ "libc",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "core-foundation-sys"
324
+ version = "0.8.7"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
327
+
328
+ [[package]]
329
+ name = "criterion"
330
+ version = "0.5.1"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
333
+ dependencies = [
334
+ "anes",
335
+ "cast",
336
+ "ciborium",
337
+ "clap",
338
+ "criterion-plot",
339
+ "is-terminal",
340
+ "itertools",
341
+ "num-traits",
342
+ "once_cell",
343
+ "oorandom",
344
+ "plotters",
345
+ "rayon",
346
+ "regex",
347
+ "serde",
348
+ "serde_derive",
349
+ "serde_json",
350
+ "tinytemplate",
351
+ "walkdir",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "criterion-plot"
356
+ version = "0.5.0"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
359
+ dependencies = [
360
+ "cast",
361
+ "itertools",
362
+ ]
363
+
364
+ [[package]]
365
+ name = "crossbeam-deque"
366
+ version = "0.8.6"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
369
+ dependencies = [
370
+ "crossbeam-epoch",
371
+ "crossbeam-utils",
372
+ ]
373
+
374
+ [[package]]
375
+ name = "crossbeam-epoch"
376
+ version = "0.9.18"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
379
+ dependencies = [
380
+ "crossbeam-utils",
381
+ ]
382
+
383
+ [[package]]
384
+ name = "crossbeam-utils"
385
+ version = "0.8.21"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
388
+
389
+ [[package]]
390
+ name = "crunchy"
391
+ version = "0.2.4"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
394
+
395
+ [[package]]
396
+ name = "csv"
397
+ version = "1.4.0"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
400
+ dependencies = [
401
+ "csv-core",
402
+ "itoa",
403
+ "ryu",
404
+ "serde_core",
405
+ ]
406
+
407
+ [[package]]
408
+ name = "csv-core"
409
+ version = "0.1.13"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
412
+ dependencies = [
413
+ "memchr",
414
+ ]
415
+
416
+ [[package]]
417
+ name = "ctor"
418
+ version = "0.10.0"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "95d0d11eb38e7642efca359c3cf6eb7b2e528182d09110165de70192b0352775"
421
+ dependencies = [
422
+ "ctor-proc-macro",
423
+ "dtor",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "ctor-proc-macro"
428
+ version = "0.0.12"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "a7ab264ea985f1bd27887d7b21ea2bb046728e05d11909ca138d700c494730db"
431
+
432
+ [[package]]
433
+ name = "difflib"
434
+ version = "0.4.0"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
437
+
438
+ [[package]]
439
+ name = "dirsql"
440
+ version = "0.1.0"
441
+ dependencies = [
442
+ "assert_cmd",
443
+ "axum",
444
+ "clap",
445
+ "criterion",
446
+ "csv",
447
+ "eventsource-client",
448
+ "futures",
449
+ "futures-channel",
450
+ "futures-executor",
451
+ "futures-util",
452
+ "globset",
453
+ "libc",
454
+ "notify",
455
+ "predicates",
456
+ "regex",
457
+ "reqwest",
458
+ "rusqlite",
459
+ "serde",
460
+ "serde_json",
461
+ "serde_yaml",
462
+ "tempfile",
463
+ "thiserror",
464
+ "tokio",
465
+ "tokio-stream",
466
+ "toml",
467
+ "walkdir",
468
+ ]
469
+
470
+ [[package]]
471
+ name = "dirsql-napi"
472
+ version = "0.1.0"
473
+ dependencies = [
474
+ "dirsql",
475
+ "napi",
476
+ "napi-build",
477
+ "napi-derive",
478
+ "serde_json",
479
+ ]
480
+
481
+ [[package]]
482
+ name = "dirsql-py-ext"
483
+ version = "0.1.0"
484
+ dependencies = [
485
+ "dirsql",
486
+ "pyo3",
487
+ ]
488
+
489
+ [[package]]
490
+ name = "displaydoc"
491
+ version = "0.2.5"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
494
+ dependencies = [
495
+ "proc-macro2",
496
+ "quote",
497
+ "syn",
498
+ ]
499
+
500
+ [[package]]
501
+ name = "dtor"
502
+ version = "0.7.0"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "17f72721db8027a4e96dd6fb50d2a1d32259c9d3da1b63dee612ccd981e14293"
505
+ dependencies = [
506
+ "dtor-proc-macro",
507
+ ]
508
+
509
+ [[package]]
510
+ name = "dtor-proc-macro"
511
+ version = "0.0.12"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "8c98b077c7463d01d22dde8a24378ddf1ca7263dc687cffbed38819ea6c21131"
514
+
515
+ [[package]]
516
+ name = "either"
517
+ version = "1.15.0"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
520
+
521
+ [[package]]
522
+ name = "equivalent"
523
+ version = "1.0.2"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
526
+
527
+ [[package]]
528
+ name = "errno"
529
+ version = "0.3.14"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
532
+ dependencies = [
533
+ "libc",
534
+ "windows-sys 0.61.2",
535
+ ]
536
+
537
+ [[package]]
538
+ name = "eventsource-client"
539
+ version = "0.13.0"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "43ddc25e1ad2cc0106d5e2d967397b4fb2068a66677ee9b0eea4600e5cfe8fb4"
542
+ dependencies = [
543
+ "futures",
544
+ "hyper 0.14.32",
545
+ "hyper-rustls 0.24.2",
546
+ "hyper-timeout",
547
+ "log",
548
+ "pin-project",
549
+ "rand 0.8.6",
550
+ "tokio",
551
+ ]
552
+
553
+ [[package]]
554
+ name = "fallible-iterator"
555
+ version = "0.3.0"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
558
+
559
+ [[package]]
560
+ name = "fallible-streaming-iterator"
561
+ version = "0.1.9"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
564
+
565
+ [[package]]
566
+ name = "fastrand"
567
+ version = "2.4.1"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
570
+
571
+ [[package]]
572
+ name = "filetime"
573
+ version = "0.2.27"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
576
+ dependencies = [
577
+ "cfg-if",
578
+ "libc",
579
+ "libredox",
580
+ ]
581
+
582
+ [[package]]
583
+ name = "find-msvc-tools"
584
+ version = "0.1.9"
585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
586
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
587
+
588
+ [[package]]
589
+ name = "float-cmp"
590
+ version = "0.10.0"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
593
+ dependencies = [
594
+ "num-traits",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "fnv"
599
+ version = "1.0.7"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
602
+
603
+ [[package]]
604
+ name = "foldhash"
605
+ version = "0.1.5"
606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
607
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
608
+
609
+ [[package]]
610
+ name = "form_urlencoded"
611
+ version = "1.2.2"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
614
+ dependencies = [
615
+ "percent-encoding",
616
+ ]
617
+
618
+ [[package]]
619
+ name = "fsevent-sys"
620
+ version = "4.1.0"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
623
+ dependencies = [
624
+ "libc",
625
+ ]
626
+
627
+ [[package]]
628
+ name = "futures"
629
+ version = "0.3.32"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
632
+ dependencies = [
633
+ "futures-channel",
634
+ "futures-core",
635
+ "futures-executor",
636
+ "futures-io",
637
+ "futures-sink",
638
+ "futures-task",
639
+ "futures-util",
640
+ ]
641
+
642
+ [[package]]
643
+ name = "futures-channel"
644
+ version = "0.3.32"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
647
+ dependencies = [
648
+ "futures-core",
649
+ "futures-sink",
650
+ ]
651
+
652
+ [[package]]
653
+ name = "futures-core"
654
+ version = "0.3.32"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
657
+
658
+ [[package]]
659
+ name = "futures-executor"
660
+ version = "0.3.32"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
663
+ dependencies = [
664
+ "futures-core",
665
+ "futures-task",
666
+ "futures-util",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "futures-io"
671
+ version = "0.3.32"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
674
+
675
+ [[package]]
676
+ name = "futures-macro"
677
+ version = "0.3.32"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
680
+ dependencies = [
681
+ "proc-macro2",
682
+ "quote",
683
+ "syn",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "futures-sink"
688
+ version = "0.3.32"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
691
+
692
+ [[package]]
693
+ name = "futures-task"
694
+ version = "0.3.32"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
697
+
698
+ [[package]]
699
+ name = "futures-util"
700
+ version = "0.3.32"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
703
+ dependencies = [
704
+ "futures-channel",
705
+ "futures-core",
706
+ "futures-io",
707
+ "futures-macro",
708
+ "futures-sink",
709
+ "futures-task",
710
+ "memchr",
711
+ "pin-project-lite",
712
+ "slab",
713
+ ]
714
+
715
+ [[package]]
716
+ name = "getrandom"
717
+ version = "0.2.17"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
720
+ dependencies = [
721
+ "cfg-if",
722
+ "js-sys",
723
+ "libc",
724
+ "wasi",
725
+ "wasm-bindgen",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "getrandom"
730
+ version = "0.3.4"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
733
+ dependencies = [
734
+ "cfg-if",
735
+ "js-sys",
736
+ "libc",
737
+ "r-efi 5.3.0",
738
+ "wasip2",
739
+ "wasm-bindgen",
740
+ ]
741
+
742
+ [[package]]
743
+ name = "getrandom"
744
+ version = "0.4.2"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
747
+ dependencies = [
748
+ "cfg-if",
749
+ "libc",
750
+ "r-efi 6.0.0",
751
+ "wasip2",
752
+ "wasip3",
753
+ ]
754
+
755
+ [[package]]
756
+ name = "globset"
757
+ version = "0.4.18"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
760
+ dependencies = [
761
+ "aho-corasick",
762
+ "bstr",
763
+ "log",
764
+ "regex-automata",
765
+ "regex-syntax",
766
+ ]
767
+
768
+ [[package]]
769
+ name = "h2"
770
+ version = "0.3.27"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
773
+ dependencies = [
774
+ "bytes",
775
+ "fnv",
776
+ "futures-core",
777
+ "futures-sink",
778
+ "futures-util",
779
+ "http 0.2.12",
780
+ "indexmap",
781
+ "slab",
782
+ "tokio",
783
+ "tokio-util",
784
+ "tracing",
785
+ ]
786
+
787
+ [[package]]
788
+ name = "half"
789
+ version = "2.7.1"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
792
+ dependencies = [
793
+ "cfg-if",
794
+ "crunchy",
795
+ "zerocopy",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "hashbrown"
800
+ version = "0.15.5"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
803
+ dependencies = [
804
+ "foldhash",
805
+ ]
806
+
807
+ [[package]]
808
+ name = "hashbrown"
809
+ version = "0.17.0"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
812
+
813
+ [[package]]
814
+ name = "hashlink"
815
+ version = "0.10.0"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
818
+ dependencies = [
819
+ "hashbrown 0.15.5",
820
+ ]
821
+
822
+ [[package]]
823
+ name = "heck"
824
+ version = "0.5.0"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
827
+
828
+ [[package]]
829
+ name = "hermit-abi"
830
+ version = "0.5.2"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
833
+
834
+ [[package]]
835
+ name = "http"
836
+ version = "0.2.12"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
839
+ dependencies = [
840
+ "bytes",
841
+ "fnv",
842
+ "itoa",
843
+ ]
844
+
845
+ [[package]]
846
+ name = "http"
847
+ version = "1.4.0"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
850
+ dependencies = [
851
+ "bytes",
852
+ "itoa",
853
+ ]
854
+
855
+ [[package]]
856
+ name = "http-body"
857
+ version = "0.4.6"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
860
+ dependencies = [
861
+ "bytes",
862
+ "http 0.2.12",
863
+ "pin-project-lite",
864
+ ]
865
+
866
+ [[package]]
867
+ name = "http-body"
868
+ version = "1.0.1"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
871
+ dependencies = [
872
+ "bytes",
873
+ "http 1.4.0",
874
+ ]
875
+
876
+ [[package]]
877
+ name = "http-body-util"
878
+ version = "0.1.3"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
881
+ dependencies = [
882
+ "bytes",
883
+ "futures-core",
884
+ "http 1.4.0",
885
+ "http-body 1.0.1",
886
+ "pin-project-lite",
887
+ ]
888
+
889
+ [[package]]
890
+ name = "httparse"
891
+ version = "1.10.1"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
894
+
895
+ [[package]]
896
+ name = "httpdate"
897
+ version = "1.0.3"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
900
+
901
+ [[package]]
902
+ name = "hyper"
903
+ version = "0.14.32"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
906
+ dependencies = [
907
+ "bytes",
908
+ "futures-channel",
909
+ "futures-core",
910
+ "futures-util",
911
+ "h2",
912
+ "http 0.2.12",
913
+ "http-body 0.4.6",
914
+ "httparse",
915
+ "httpdate",
916
+ "itoa",
917
+ "pin-project-lite",
918
+ "socket2 0.5.10",
919
+ "tokio",
920
+ "tower-service",
921
+ "tracing",
922
+ "want",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "hyper"
927
+ version = "1.9.0"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
930
+ dependencies = [
931
+ "atomic-waker",
932
+ "bytes",
933
+ "futures-channel",
934
+ "futures-core",
935
+ "http 1.4.0",
936
+ "http-body 1.0.1",
937
+ "httparse",
938
+ "httpdate",
939
+ "itoa",
940
+ "pin-project-lite",
941
+ "smallvec",
942
+ "tokio",
943
+ "want",
944
+ ]
945
+
946
+ [[package]]
947
+ name = "hyper-rustls"
948
+ version = "0.24.2"
949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
950
+ checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
951
+ dependencies = [
952
+ "futures-util",
953
+ "http 0.2.12",
954
+ "hyper 0.14.32",
955
+ "log",
956
+ "rustls 0.21.12",
957
+ "rustls-native-certs",
958
+ "tokio",
959
+ "tokio-rustls 0.24.1",
960
+ ]
961
+
962
+ [[package]]
963
+ name = "hyper-rustls"
964
+ version = "0.27.9"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
967
+ dependencies = [
968
+ "http 1.4.0",
969
+ "hyper 1.9.0",
970
+ "hyper-util",
971
+ "rustls 0.23.38",
972
+ "tokio",
973
+ "tokio-rustls 0.26.4",
974
+ "tower-service",
975
+ "webpki-roots",
976
+ ]
977
+
978
+ [[package]]
979
+ name = "hyper-timeout"
980
+ version = "0.4.1"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
983
+ dependencies = [
984
+ "hyper 0.14.32",
985
+ "pin-project-lite",
986
+ "tokio",
987
+ "tokio-io-timeout",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "hyper-util"
992
+ version = "0.1.20"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
995
+ dependencies = [
996
+ "base64 0.22.1",
997
+ "bytes",
998
+ "futures-channel",
999
+ "futures-util",
1000
+ "http 1.4.0",
1001
+ "http-body 1.0.1",
1002
+ "hyper 1.9.0",
1003
+ "ipnet",
1004
+ "libc",
1005
+ "percent-encoding",
1006
+ "pin-project-lite",
1007
+ "socket2 0.6.3",
1008
+ "tokio",
1009
+ "tower-service",
1010
+ "tracing",
1011
+ ]
1012
+
1013
+ [[package]]
1014
+ name = "icu_collections"
1015
+ version = "2.2.0"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1018
+ dependencies = [
1019
+ "displaydoc",
1020
+ "potential_utf",
1021
+ "utf8_iter",
1022
+ "yoke",
1023
+ "zerofrom",
1024
+ "zerovec",
1025
+ ]
1026
+
1027
+ [[package]]
1028
+ name = "icu_locale_core"
1029
+ version = "2.2.0"
1030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1031
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1032
+ dependencies = [
1033
+ "displaydoc",
1034
+ "litemap",
1035
+ "tinystr",
1036
+ "writeable",
1037
+ "zerovec",
1038
+ ]
1039
+
1040
+ [[package]]
1041
+ name = "icu_normalizer"
1042
+ version = "2.2.0"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1045
+ dependencies = [
1046
+ "icu_collections",
1047
+ "icu_normalizer_data",
1048
+ "icu_properties",
1049
+ "icu_provider",
1050
+ "smallvec",
1051
+ "zerovec",
1052
+ ]
1053
+
1054
+ [[package]]
1055
+ name = "icu_normalizer_data"
1056
+ version = "2.2.0"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1059
+
1060
+ [[package]]
1061
+ name = "icu_properties"
1062
+ version = "2.2.0"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1065
+ dependencies = [
1066
+ "icu_collections",
1067
+ "icu_locale_core",
1068
+ "icu_properties_data",
1069
+ "icu_provider",
1070
+ "zerotrie",
1071
+ "zerovec",
1072
+ ]
1073
+
1074
+ [[package]]
1075
+ name = "icu_properties_data"
1076
+ version = "2.2.0"
1077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1078
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1079
+
1080
+ [[package]]
1081
+ name = "icu_provider"
1082
+ version = "2.2.0"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1085
+ dependencies = [
1086
+ "displaydoc",
1087
+ "icu_locale_core",
1088
+ "writeable",
1089
+ "yoke",
1090
+ "zerofrom",
1091
+ "zerotrie",
1092
+ "zerovec",
1093
+ ]
1094
+
1095
+ [[package]]
1096
+ name = "id-arena"
1097
+ version = "2.3.0"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1100
+
1101
+ [[package]]
1102
+ name = "idna"
1103
+ version = "1.1.0"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1106
+ dependencies = [
1107
+ "idna_adapter",
1108
+ "smallvec",
1109
+ "utf8_iter",
1110
+ ]
1111
+
1112
+ [[package]]
1113
+ name = "idna_adapter"
1114
+ version = "1.2.1"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1117
+ dependencies = [
1118
+ "icu_normalizer",
1119
+ "icu_properties",
1120
+ ]
1121
+
1122
+ [[package]]
1123
+ name = "indexmap"
1124
+ version = "2.14.0"
1125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1127
+ dependencies = [
1128
+ "equivalent",
1129
+ "hashbrown 0.17.0",
1130
+ "serde",
1131
+ "serde_core",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "inotify"
1136
+ version = "0.10.2"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "fdd168d97690d0b8c412d6b6c10360277f4d7ee495c5d0d5d5fe0854923255cc"
1139
+ dependencies = [
1140
+ "bitflags 1.3.2",
1141
+ "inotify-sys",
1142
+ "libc",
1143
+ ]
1144
+
1145
+ [[package]]
1146
+ name = "inotify-sys"
1147
+ version = "0.1.5"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
1150
+ dependencies = [
1151
+ "libc",
1152
+ ]
1153
+
1154
+ [[package]]
1155
+ name = "instant"
1156
+ version = "0.1.13"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
1159
+ dependencies = [
1160
+ "cfg-if",
1161
+ ]
1162
+
1163
+ [[package]]
1164
+ name = "ipnet"
1165
+ version = "2.12.0"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1168
+
1169
+ [[package]]
1170
+ name = "iri-string"
1171
+ version = "0.7.12"
1172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1173
+ checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
1174
+ dependencies = [
1175
+ "memchr",
1176
+ "serde",
1177
+ ]
1178
+
1179
+ [[package]]
1180
+ name = "is-terminal"
1181
+ version = "0.4.17"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1184
+ dependencies = [
1185
+ "hermit-abi",
1186
+ "libc",
1187
+ "windows-sys 0.61.2",
1188
+ ]
1189
+
1190
+ [[package]]
1191
+ name = "is_terminal_polyfill"
1192
+ version = "1.70.2"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1195
+
1196
+ [[package]]
1197
+ name = "itertools"
1198
+ version = "0.10.5"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1201
+ dependencies = [
1202
+ "either",
1203
+ ]
1204
+
1205
+ [[package]]
1206
+ name = "itoa"
1207
+ version = "1.0.18"
1208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1209
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1210
+
1211
+ [[package]]
1212
+ name = "js-sys"
1213
+ version = "0.3.95"
1214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1215
+ checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
1216
+ dependencies = [
1217
+ "cfg-if",
1218
+ "futures-util",
1219
+ "once_cell",
1220
+ "wasm-bindgen",
1221
+ ]
1222
+
1223
+ [[package]]
1224
+ name = "kqueue"
1225
+ version = "1.1.1"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
1228
+ dependencies = [
1229
+ "kqueue-sys",
1230
+ "libc",
1231
+ ]
1232
+
1233
+ [[package]]
1234
+ name = "kqueue-sys"
1235
+ version = "1.0.4"
1236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1237
+ checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
1238
+ dependencies = [
1239
+ "bitflags 1.3.2",
1240
+ "libc",
1241
+ ]
1242
+
1243
+ [[package]]
1244
+ name = "leb128fmt"
1245
+ version = "0.1.0"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1248
+
1249
+ [[package]]
1250
+ name = "libc"
1251
+ version = "0.2.185"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
1254
+
1255
+ [[package]]
1256
+ name = "libloading"
1257
+ version = "0.9.0"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
1260
+ dependencies = [
1261
+ "cfg-if",
1262
+ "windows-link",
1263
+ ]
1264
+
1265
+ [[package]]
1266
+ name = "libredox"
1267
+ version = "0.1.16"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
1270
+ dependencies = [
1271
+ "bitflags 2.11.1",
1272
+ "libc",
1273
+ "plain",
1274
+ "redox_syscall",
1275
+ ]
1276
+
1277
+ [[package]]
1278
+ name = "libsqlite3-sys"
1279
+ version = "0.32.0"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "fbb8270bb4060bd76c6e96f20c52d80620f1d82a3470885694e41e0f81ef6fe7"
1282
+ dependencies = [
1283
+ "cc",
1284
+ "pkg-config",
1285
+ "vcpkg",
1286
+ ]
1287
+
1288
+ [[package]]
1289
+ name = "linux-raw-sys"
1290
+ version = "0.12.1"
1291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1293
+
1294
+ [[package]]
1295
+ name = "litemap"
1296
+ version = "0.8.2"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1299
+
1300
+ [[package]]
1301
+ name = "log"
1302
+ version = "0.4.29"
1303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1304
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1305
+
1306
+ [[package]]
1307
+ name = "lru-slab"
1308
+ version = "0.1.2"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1311
+
1312
+ [[package]]
1313
+ name = "matchit"
1314
+ version = "0.8.4"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1317
+
1318
+ [[package]]
1319
+ name = "memchr"
1320
+ version = "2.8.0"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1323
+
1324
+ [[package]]
1325
+ name = "mime"
1326
+ version = "0.3.17"
1327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1328
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1329
+
1330
+ [[package]]
1331
+ name = "mio"
1332
+ version = "1.2.0"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
1335
+ dependencies = [
1336
+ "libc",
1337
+ "log",
1338
+ "wasi",
1339
+ "windows-sys 0.61.2",
1340
+ ]
1341
+
1342
+ [[package]]
1343
+ name = "napi"
1344
+ version = "3.8.5"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "fa73b028610e2b26e9e40bd2c8ff8a98e6d7ed5d67d89ebf4bfd2f992616b024"
1347
+ dependencies = [
1348
+ "bitflags 2.11.1",
1349
+ "ctor",
1350
+ "futures",
1351
+ "napi-build",
1352
+ "napi-sys",
1353
+ "nohash-hasher",
1354
+ "rustc-hash",
1355
+ "serde",
1356
+ "serde_json",
1357
+ ]
1358
+
1359
+ [[package]]
1360
+ name = "napi-build"
1361
+ version = "2.3.1"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
1364
+
1365
+ [[package]]
1366
+ name = "napi-derive"
1367
+ version = "3.5.4"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "7430702d3cc05cf55f0a2c9e41d991c3b7a53f91e6146a8f282b1bfc7f3fd133"
1370
+ dependencies = [
1371
+ "convert_case",
1372
+ "ctor",
1373
+ "napi-derive-backend",
1374
+ "proc-macro2",
1375
+ "quote",
1376
+ "syn",
1377
+ ]
1378
+
1379
+ [[package]]
1380
+ name = "napi-derive-backend"
1381
+ version = "5.0.3"
1382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1383
+ checksum = "1ca5a083f2c9b49a0c7d33ec75c083498849c6fcc46f5497317faa39ea77f5d5"
1384
+ dependencies = [
1385
+ "convert_case",
1386
+ "proc-macro2",
1387
+ "quote",
1388
+ "semver",
1389
+ "syn",
1390
+ ]
1391
+
1392
+ [[package]]
1393
+ name = "napi-sys"
1394
+ version = "3.2.1"
1395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+ checksum = "8eb602b84d7c1edae45e50bbf1374696548f36ae179dfa667f577e384bb90c2b"
1397
+ dependencies = [
1398
+ "libloading",
1399
+ ]
1400
+
1401
+ [[package]]
1402
+ name = "nohash-hasher"
1403
+ version = "0.2.0"
1404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1405
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
1406
+
1407
+ [[package]]
1408
+ name = "normalize-line-endings"
1409
+ version = "0.3.0"
1410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
1412
+
1413
+ [[package]]
1414
+ name = "notify"
1415
+ version = "7.0.0"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "c533b4c39709f9ba5005d8002048266593c1cfaf3c5f0739d5b8ab0c6c504009"
1418
+ dependencies = [
1419
+ "bitflags 2.11.1",
1420
+ "filetime",
1421
+ "fsevent-sys",
1422
+ "inotify",
1423
+ "kqueue",
1424
+ "libc",
1425
+ "log",
1426
+ "mio",
1427
+ "notify-types",
1428
+ "walkdir",
1429
+ "windows-sys 0.52.0",
1430
+ ]
1431
+
1432
+ [[package]]
1433
+ name = "notify-types"
1434
+ version = "1.0.1"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "585d3cb5e12e01aed9e8a1f70d5c6b5e86fe2a6e48fc8cd0b3e0b8df6f6eb174"
1437
+ dependencies = [
1438
+ "instant",
1439
+ ]
1440
+
1441
+ [[package]]
1442
+ name = "num-traits"
1443
+ version = "0.2.19"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1446
+ dependencies = [
1447
+ "autocfg",
1448
+ ]
1449
+
1450
+ [[package]]
1451
+ name = "once_cell"
1452
+ version = "1.21.4"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1455
+
1456
+ [[package]]
1457
+ name = "once_cell_polyfill"
1458
+ version = "1.70.2"
1459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1460
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1461
+
1462
+ [[package]]
1463
+ name = "oorandom"
1464
+ version = "11.1.5"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1467
+
1468
+ [[package]]
1469
+ name = "openssl-probe"
1470
+ version = "0.1.6"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1473
+
1474
+ [[package]]
1475
+ name = "percent-encoding"
1476
+ version = "2.3.2"
1477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1478
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1479
+
1480
+ [[package]]
1481
+ name = "pin-project"
1482
+ version = "1.1.11"
1483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1484
+ checksum = "f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517"
1485
+ dependencies = [
1486
+ "pin-project-internal",
1487
+ ]
1488
+
1489
+ [[package]]
1490
+ name = "pin-project-internal"
1491
+ version = "1.1.11"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6"
1494
+ dependencies = [
1495
+ "proc-macro2",
1496
+ "quote",
1497
+ "syn",
1498
+ ]
1499
+
1500
+ [[package]]
1501
+ name = "pin-project-lite"
1502
+ version = "0.2.17"
1503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1504
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1505
+
1506
+ [[package]]
1507
+ name = "pkg-config"
1508
+ version = "0.3.33"
1509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1510
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1511
+
1512
+ [[package]]
1513
+ name = "plain"
1514
+ version = "0.2.3"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
1517
+
1518
+ [[package]]
1519
+ name = "plotters"
1520
+ version = "0.3.7"
1521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1522
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1523
+ dependencies = [
1524
+ "num-traits",
1525
+ "plotters-backend",
1526
+ "plotters-svg",
1527
+ "wasm-bindgen",
1528
+ "web-sys",
1529
+ ]
1530
+
1531
+ [[package]]
1532
+ name = "plotters-backend"
1533
+ version = "0.3.7"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1536
+
1537
+ [[package]]
1538
+ name = "plotters-svg"
1539
+ version = "0.3.7"
1540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1541
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1542
+ dependencies = [
1543
+ "plotters-backend",
1544
+ ]
1545
+
1546
+ [[package]]
1547
+ name = "portable-atomic"
1548
+ version = "1.13.1"
1549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1550
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1551
+
1552
+ [[package]]
1553
+ name = "potential_utf"
1554
+ version = "0.1.5"
1555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1556
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1557
+ dependencies = [
1558
+ "zerovec",
1559
+ ]
1560
+
1561
+ [[package]]
1562
+ name = "ppv-lite86"
1563
+ version = "0.2.21"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1566
+ dependencies = [
1567
+ "zerocopy",
1568
+ ]
1569
+
1570
+ [[package]]
1571
+ name = "predicates"
1572
+ version = "3.1.4"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
1575
+ dependencies = [
1576
+ "anstyle",
1577
+ "difflib",
1578
+ "float-cmp",
1579
+ "normalize-line-endings",
1580
+ "predicates-core",
1581
+ "regex",
1582
+ ]
1583
+
1584
+ [[package]]
1585
+ name = "predicates-core"
1586
+ version = "1.0.10"
1587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1588
+ checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
1589
+
1590
+ [[package]]
1591
+ name = "predicates-tree"
1592
+ version = "1.0.13"
1593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1594
+ checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
1595
+ dependencies = [
1596
+ "predicates-core",
1597
+ "termtree",
1598
+ ]
1599
+
1600
+ [[package]]
1601
+ name = "prettyplease"
1602
+ version = "0.2.37"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1605
+ dependencies = [
1606
+ "proc-macro2",
1607
+ "syn",
1608
+ ]
1609
+
1610
+ [[package]]
1611
+ name = "proc-macro2"
1612
+ version = "1.0.106"
1613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1614
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1615
+ dependencies = [
1616
+ "unicode-ident",
1617
+ ]
1618
+
1619
+ [[package]]
1620
+ name = "pyo3"
1621
+ version = "0.28.3"
1622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1623
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
1624
+ dependencies = [
1625
+ "libc",
1626
+ "once_cell",
1627
+ "portable-atomic",
1628
+ "pyo3-build-config",
1629
+ "pyo3-ffi",
1630
+ "pyo3-macros",
1631
+ ]
1632
+
1633
+ [[package]]
1634
+ name = "pyo3-build-config"
1635
+ version = "0.28.3"
1636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1637
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
1638
+ dependencies = [
1639
+ "python3-dll-a",
1640
+ "target-lexicon",
1641
+ ]
1642
+
1643
+ [[package]]
1644
+ name = "pyo3-ffi"
1645
+ version = "0.28.3"
1646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
1648
+ dependencies = [
1649
+ "libc",
1650
+ "pyo3-build-config",
1651
+ ]
1652
+
1653
+ [[package]]
1654
+ name = "pyo3-macros"
1655
+ version = "0.28.3"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
1658
+ dependencies = [
1659
+ "proc-macro2",
1660
+ "pyo3-macros-backend",
1661
+ "quote",
1662
+ "syn",
1663
+ ]
1664
+
1665
+ [[package]]
1666
+ name = "pyo3-macros-backend"
1667
+ version = "0.28.3"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
1670
+ dependencies = [
1671
+ "heck",
1672
+ "proc-macro2",
1673
+ "pyo3-build-config",
1674
+ "quote",
1675
+ "syn",
1676
+ ]
1677
+
1678
+ [[package]]
1679
+ name = "python3-dll-a"
1680
+ version = "0.2.15"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "d80ba7540edb18890d444c5aa8e1f1f99b1bdf26fb26ae383135325f4a36042b"
1683
+ dependencies = [
1684
+ "cc",
1685
+ ]
1686
+
1687
+ [[package]]
1688
+ name = "quinn"
1689
+ version = "0.11.9"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
1692
+ dependencies = [
1693
+ "bytes",
1694
+ "cfg_aliases",
1695
+ "pin-project-lite",
1696
+ "quinn-proto",
1697
+ "quinn-udp",
1698
+ "rustc-hash",
1699
+ "rustls 0.23.38",
1700
+ "socket2 0.6.3",
1701
+ "thiserror",
1702
+ "tokio",
1703
+ "tracing",
1704
+ "web-time",
1705
+ ]
1706
+
1707
+ [[package]]
1708
+ name = "quinn-proto"
1709
+ version = "0.11.14"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
1712
+ dependencies = [
1713
+ "bytes",
1714
+ "getrandom 0.3.4",
1715
+ "lru-slab",
1716
+ "rand 0.9.4",
1717
+ "ring",
1718
+ "rustc-hash",
1719
+ "rustls 0.23.38",
1720
+ "rustls-pki-types",
1721
+ "slab",
1722
+ "thiserror",
1723
+ "tinyvec",
1724
+ "tracing",
1725
+ "web-time",
1726
+ ]
1727
+
1728
+ [[package]]
1729
+ name = "quinn-udp"
1730
+ version = "0.5.14"
1731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1732
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
1733
+ dependencies = [
1734
+ "cfg_aliases",
1735
+ "libc",
1736
+ "once_cell",
1737
+ "socket2 0.6.3",
1738
+ "tracing",
1739
+ "windows-sys 0.60.2",
1740
+ ]
1741
+
1742
+ [[package]]
1743
+ name = "quote"
1744
+ version = "1.0.45"
1745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1746
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1747
+ dependencies = [
1748
+ "proc-macro2",
1749
+ ]
1750
+
1751
+ [[package]]
1752
+ name = "r-efi"
1753
+ version = "5.3.0"
1754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1755
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1756
+
1757
+ [[package]]
1758
+ name = "r-efi"
1759
+ version = "6.0.0"
1760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1761
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1762
+
1763
+ [[package]]
1764
+ name = "rand"
1765
+ version = "0.8.6"
1766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1767
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
1768
+ dependencies = [
1769
+ "libc",
1770
+ "rand_chacha 0.3.1",
1771
+ "rand_core 0.6.4",
1772
+ ]
1773
+
1774
+ [[package]]
1775
+ name = "rand"
1776
+ version = "0.9.4"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1779
+ dependencies = [
1780
+ "rand_chacha 0.9.0",
1781
+ "rand_core 0.9.5",
1782
+ ]
1783
+
1784
+ [[package]]
1785
+ name = "rand_chacha"
1786
+ version = "0.3.1"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1789
+ dependencies = [
1790
+ "ppv-lite86",
1791
+ "rand_core 0.6.4",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "rand_chacha"
1796
+ version = "0.9.0"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1799
+ dependencies = [
1800
+ "ppv-lite86",
1801
+ "rand_core 0.9.5",
1802
+ ]
1803
+
1804
+ [[package]]
1805
+ name = "rand_core"
1806
+ version = "0.6.4"
1807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1808
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1809
+ dependencies = [
1810
+ "getrandom 0.2.17",
1811
+ ]
1812
+
1813
+ [[package]]
1814
+ name = "rand_core"
1815
+ version = "0.9.5"
1816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1817
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1818
+ dependencies = [
1819
+ "getrandom 0.3.4",
1820
+ ]
1821
+
1822
+ [[package]]
1823
+ name = "rayon"
1824
+ version = "1.12.0"
1825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1827
+ dependencies = [
1828
+ "either",
1829
+ "rayon-core",
1830
+ ]
1831
+
1832
+ [[package]]
1833
+ name = "rayon-core"
1834
+ version = "1.13.0"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1837
+ dependencies = [
1838
+ "crossbeam-deque",
1839
+ "crossbeam-utils",
1840
+ ]
1841
+
1842
+ [[package]]
1843
+ name = "redox_syscall"
1844
+ version = "0.7.4"
1845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1846
+ checksum = "f450ad9c3b1da563fb6948a8e0fb0fb9269711c9c73d9ea1de5058c79c8d643a"
1847
+ dependencies = [
1848
+ "bitflags 2.11.1",
1849
+ ]
1850
+
1851
+ [[package]]
1852
+ name = "regex"
1853
+ version = "1.12.3"
1854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1855
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1856
+ dependencies = [
1857
+ "aho-corasick",
1858
+ "memchr",
1859
+ "regex-automata",
1860
+ "regex-syntax",
1861
+ ]
1862
+
1863
+ [[package]]
1864
+ name = "regex-automata"
1865
+ version = "0.4.14"
1866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1867
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1868
+ dependencies = [
1869
+ "aho-corasick",
1870
+ "memchr",
1871
+ "regex-syntax",
1872
+ ]
1873
+
1874
+ [[package]]
1875
+ name = "regex-syntax"
1876
+ version = "0.8.10"
1877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1878
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1879
+
1880
+ [[package]]
1881
+ name = "reqwest"
1882
+ version = "0.12.28"
1883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1884
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
1885
+ dependencies = [
1886
+ "base64 0.22.1",
1887
+ "bytes",
1888
+ "futures-channel",
1889
+ "futures-core",
1890
+ "futures-util",
1891
+ "http 1.4.0",
1892
+ "http-body 1.0.1",
1893
+ "http-body-util",
1894
+ "hyper 1.9.0",
1895
+ "hyper-rustls 0.27.9",
1896
+ "hyper-util",
1897
+ "js-sys",
1898
+ "log",
1899
+ "percent-encoding",
1900
+ "pin-project-lite",
1901
+ "quinn",
1902
+ "rustls 0.23.38",
1903
+ "rustls-pki-types",
1904
+ "serde",
1905
+ "serde_json",
1906
+ "serde_urlencoded",
1907
+ "sync_wrapper",
1908
+ "tokio",
1909
+ "tokio-rustls 0.26.4",
1910
+ "tokio-util",
1911
+ "tower",
1912
+ "tower-http",
1913
+ "tower-service",
1914
+ "url",
1915
+ "wasm-bindgen",
1916
+ "wasm-bindgen-futures",
1917
+ "wasm-streams",
1918
+ "web-sys",
1919
+ "webpki-roots",
1920
+ ]
1921
+
1922
+ [[package]]
1923
+ name = "ring"
1924
+ version = "0.17.14"
1925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1926
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1927
+ dependencies = [
1928
+ "cc",
1929
+ "cfg-if",
1930
+ "getrandom 0.2.17",
1931
+ "libc",
1932
+ "untrusted",
1933
+ "windows-sys 0.52.0",
1934
+ ]
1935
+
1936
+ [[package]]
1937
+ name = "rusqlite"
1938
+ version = "0.34.0"
1939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1940
+ checksum = "37e34486da88d8e051c7c0e23c3f15fd806ea8546260aa2fec247e97242ec143"
1941
+ dependencies = [
1942
+ "bitflags 2.11.1",
1943
+ "fallible-iterator",
1944
+ "fallible-streaming-iterator",
1945
+ "hashlink",
1946
+ "libsqlite3-sys",
1947
+ "smallvec",
1948
+ ]
1949
+
1950
+ [[package]]
1951
+ name = "rustc-hash"
1952
+ version = "2.1.2"
1953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1954
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1955
+
1956
+ [[package]]
1957
+ name = "rustix"
1958
+ version = "1.1.4"
1959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1960
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1961
+ dependencies = [
1962
+ "bitflags 2.11.1",
1963
+ "errno",
1964
+ "libc",
1965
+ "linux-raw-sys",
1966
+ "windows-sys 0.61.2",
1967
+ ]
1968
+
1969
+ [[package]]
1970
+ name = "rustls"
1971
+ version = "0.21.12"
1972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1973
+ checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
1974
+ dependencies = [
1975
+ "log",
1976
+ "ring",
1977
+ "rustls-webpki 0.101.7",
1978
+ "sct",
1979
+ ]
1980
+
1981
+ [[package]]
1982
+ name = "rustls"
1983
+ version = "0.23.38"
1984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1985
+ checksum = "69f9466fb2c14ea04357e91413efb882e2a6d4a406e625449bc0a5d360d53a21"
1986
+ dependencies = [
1987
+ "once_cell",
1988
+ "ring",
1989
+ "rustls-pki-types",
1990
+ "rustls-webpki 0.103.12",
1991
+ "subtle",
1992
+ "zeroize",
1993
+ ]
1994
+
1995
+ [[package]]
1996
+ name = "rustls-native-certs"
1997
+ version = "0.6.3"
1998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1999
+ checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
2000
+ dependencies = [
2001
+ "openssl-probe",
2002
+ "rustls-pemfile",
2003
+ "schannel",
2004
+ "security-framework",
2005
+ ]
2006
+
2007
+ [[package]]
2008
+ name = "rustls-pemfile"
2009
+ version = "1.0.4"
2010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2011
+ checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
2012
+ dependencies = [
2013
+ "base64 0.21.7",
2014
+ ]
2015
+
2016
+ [[package]]
2017
+ name = "rustls-pki-types"
2018
+ version = "1.14.0"
2019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2020
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
2021
+ dependencies = [
2022
+ "web-time",
2023
+ "zeroize",
2024
+ ]
2025
+
2026
+ [[package]]
2027
+ name = "rustls-webpki"
2028
+ version = "0.101.7"
2029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2030
+ checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
2031
+ dependencies = [
2032
+ "ring",
2033
+ "untrusted",
2034
+ ]
2035
+
2036
+ [[package]]
2037
+ name = "rustls-webpki"
2038
+ version = "0.103.12"
2039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2040
+ checksum = "8279bb85272c9f10811ae6a6c547ff594d6a7f3c6c6b02ee9726d1d0dcfcdd06"
2041
+ dependencies = [
2042
+ "ring",
2043
+ "rustls-pki-types",
2044
+ "untrusted",
2045
+ ]
2046
+
2047
+ [[package]]
2048
+ name = "rustversion"
2049
+ version = "1.0.22"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2052
+
2053
+ [[package]]
2054
+ name = "ryu"
2055
+ version = "1.0.23"
2056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2057
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2058
+
2059
+ [[package]]
2060
+ name = "same-file"
2061
+ version = "1.0.6"
2062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2063
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2064
+ dependencies = [
2065
+ "winapi-util",
2066
+ ]
2067
+
2068
+ [[package]]
2069
+ name = "schannel"
2070
+ version = "0.1.29"
2071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2072
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
2073
+ dependencies = [
2074
+ "windows-sys 0.61.2",
2075
+ ]
2076
+
2077
+ [[package]]
2078
+ name = "sct"
2079
+ version = "0.7.1"
2080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2081
+ checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
2082
+ dependencies = [
2083
+ "ring",
2084
+ "untrusted",
2085
+ ]
2086
+
2087
+ [[package]]
2088
+ name = "security-framework"
2089
+ version = "2.11.1"
2090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2091
+ checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2092
+ dependencies = [
2093
+ "bitflags 2.11.1",
2094
+ "core-foundation",
2095
+ "core-foundation-sys",
2096
+ "libc",
2097
+ "security-framework-sys",
2098
+ ]
2099
+
2100
+ [[package]]
2101
+ name = "security-framework-sys"
2102
+ version = "2.17.0"
2103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2104
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2105
+ dependencies = [
2106
+ "core-foundation-sys",
2107
+ "libc",
2108
+ ]
2109
+
2110
+ [[package]]
2111
+ name = "semver"
2112
+ version = "1.0.28"
2113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2114
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2115
+
2116
+ [[package]]
2117
+ name = "serde"
2118
+ version = "1.0.228"
2119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2120
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2121
+ dependencies = [
2122
+ "serde_core",
2123
+ "serde_derive",
2124
+ ]
2125
+
2126
+ [[package]]
2127
+ name = "serde_core"
2128
+ version = "1.0.228"
2129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2130
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2131
+ dependencies = [
2132
+ "serde_derive",
2133
+ ]
2134
+
2135
+ [[package]]
2136
+ name = "serde_derive"
2137
+ version = "1.0.228"
2138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2139
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2140
+ dependencies = [
2141
+ "proc-macro2",
2142
+ "quote",
2143
+ "syn",
2144
+ ]
2145
+
2146
+ [[package]]
2147
+ name = "serde_json"
2148
+ version = "1.0.149"
2149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2150
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2151
+ dependencies = [
2152
+ "itoa",
2153
+ "memchr",
2154
+ "serde",
2155
+ "serde_core",
2156
+ "zmij",
2157
+ ]
2158
+
2159
+ [[package]]
2160
+ name = "serde_path_to_error"
2161
+ version = "0.1.20"
2162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2163
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
2164
+ dependencies = [
2165
+ "itoa",
2166
+ "serde",
2167
+ "serde_core",
2168
+ ]
2169
+
2170
+ [[package]]
2171
+ name = "serde_spanned"
2172
+ version = "0.6.9"
2173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2174
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2175
+ dependencies = [
2176
+ "serde",
2177
+ ]
2178
+
2179
+ [[package]]
2180
+ name = "serde_urlencoded"
2181
+ version = "0.7.1"
2182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2183
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2184
+ dependencies = [
2185
+ "form_urlencoded",
2186
+ "itoa",
2187
+ "ryu",
2188
+ "serde",
2189
+ ]
2190
+
2191
+ [[package]]
2192
+ name = "serde_yaml"
2193
+ version = "0.9.34+deprecated"
2194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2195
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
2196
+ dependencies = [
2197
+ "indexmap",
2198
+ "itoa",
2199
+ "ryu",
2200
+ "serde",
2201
+ "unsafe-libyaml",
2202
+ ]
2203
+
2204
+ [[package]]
2205
+ name = "shlex"
2206
+ version = "1.3.0"
2207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2208
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2209
+
2210
+ [[package]]
2211
+ name = "signal-hook-registry"
2212
+ version = "1.4.8"
2213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2214
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2215
+ dependencies = [
2216
+ "errno",
2217
+ "libc",
2218
+ ]
2219
+
2220
+ [[package]]
2221
+ name = "slab"
2222
+ version = "0.4.12"
2223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2224
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2225
+
2226
+ [[package]]
2227
+ name = "smallvec"
2228
+ version = "1.15.1"
2229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2230
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2231
+
2232
+ [[package]]
2233
+ name = "socket2"
2234
+ version = "0.5.10"
2235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2236
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
2237
+ dependencies = [
2238
+ "libc",
2239
+ "windows-sys 0.52.0",
2240
+ ]
2241
+
2242
+ [[package]]
2243
+ name = "socket2"
2244
+ version = "0.6.3"
2245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2246
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
2247
+ dependencies = [
2248
+ "libc",
2249
+ "windows-sys 0.61.2",
2250
+ ]
2251
+
2252
+ [[package]]
2253
+ name = "stable_deref_trait"
2254
+ version = "1.2.1"
2255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2256
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2257
+
2258
+ [[package]]
2259
+ name = "strsim"
2260
+ version = "0.11.1"
2261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2262
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2263
+
2264
+ [[package]]
2265
+ name = "subtle"
2266
+ version = "2.6.1"
2267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2268
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2269
+
2270
+ [[package]]
2271
+ name = "syn"
2272
+ version = "2.0.117"
2273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2274
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2275
+ dependencies = [
2276
+ "proc-macro2",
2277
+ "quote",
2278
+ "unicode-ident",
2279
+ ]
2280
+
2281
+ [[package]]
2282
+ name = "sync_wrapper"
2283
+ version = "1.0.2"
2284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2285
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2286
+ dependencies = [
2287
+ "futures-core",
2288
+ ]
2289
+
2290
+ [[package]]
2291
+ name = "synstructure"
2292
+ version = "0.13.2"
2293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2294
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2295
+ dependencies = [
2296
+ "proc-macro2",
2297
+ "quote",
2298
+ "syn",
2299
+ ]
2300
+
2301
+ [[package]]
2302
+ name = "target-lexicon"
2303
+ version = "0.13.5"
2304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2305
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2306
+
2307
+ [[package]]
2308
+ name = "tempfile"
2309
+ version = "3.27.0"
2310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2311
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2312
+ dependencies = [
2313
+ "fastrand",
2314
+ "getrandom 0.4.2",
2315
+ "once_cell",
2316
+ "rustix",
2317
+ "windows-sys 0.61.2",
2318
+ ]
2319
+
2320
+ [[package]]
2321
+ name = "termtree"
2322
+ version = "0.5.1"
2323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2324
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
2325
+
2326
+ [[package]]
2327
+ name = "thiserror"
2328
+ version = "2.0.18"
2329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2330
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2331
+ dependencies = [
2332
+ "thiserror-impl",
2333
+ ]
2334
+
2335
+ [[package]]
2336
+ name = "thiserror-impl"
2337
+ version = "2.0.18"
2338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2339
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2340
+ dependencies = [
2341
+ "proc-macro2",
2342
+ "quote",
2343
+ "syn",
2344
+ ]
2345
+
2346
+ [[package]]
2347
+ name = "tinystr"
2348
+ version = "0.8.3"
2349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2350
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2351
+ dependencies = [
2352
+ "displaydoc",
2353
+ "zerovec",
2354
+ ]
2355
+
2356
+ [[package]]
2357
+ name = "tinytemplate"
2358
+ version = "1.2.1"
2359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2360
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2361
+ dependencies = [
2362
+ "serde",
2363
+ "serde_json",
2364
+ ]
2365
+
2366
+ [[package]]
2367
+ name = "tinyvec"
2368
+ version = "1.11.0"
2369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2370
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
2371
+ dependencies = [
2372
+ "tinyvec_macros",
2373
+ ]
2374
+
2375
+ [[package]]
2376
+ name = "tinyvec_macros"
2377
+ version = "0.1.1"
2378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2379
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2380
+
2381
+ [[package]]
2382
+ name = "tokio"
2383
+ version = "1.52.1"
2384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2385
+ checksum = "b67dee974fe86fd92cc45b7a95fdd2f99a36a6d7b0d431a231178d3d670bbcc6"
2386
+ dependencies = [
2387
+ "bytes",
2388
+ "libc",
2389
+ "mio",
2390
+ "pin-project-lite",
2391
+ "signal-hook-registry",
2392
+ "socket2 0.6.3",
2393
+ "tokio-macros",
2394
+ "windows-sys 0.61.2",
2395
+ ]
2396
+
2397
+ [[package]]
2398
+ name = "tokio-io-timeout"
2399
+ version = "1.2.1"
2400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2401
+ checksum = "0bd86198d9ee903fedd2f9a2e72014287c0d9167e4ae43b5853007205dda1b76"
2402
+ dependencies = [
2403
+ "pin-project-lite",
2404
+ "tokio",
2405
+ ]
2406
+
2407
+ [[package]]
2408
+ name = "tokio-macros"
2409
+ version = "2.7.0"
2410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2411
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
2412
+ dependencies = [
2413
+ "proc-macro2",
2414
+ "quote",
2415
+ "syn",
2416
+ ]
2417
+
2418
+ [[package]]
2419
+ name = "tokio-rustls"
2420
+ version = "0.24.1"
2421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2422
+ checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
2423
+ dependencies = [
2424
+ "rustls 0.21.12",
2425
+ "tokio",
2426
+ ]
2427
+
2428
+ [[package]]
2429
+ name = "tokio-rustls"
2430
+ version = "0.26.4"
2431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2432
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2433
+ dependencies = [
2434
+ "rustls 0.23.38",
2435
+ "tokio",
2436
+ ]
2437
+
2438
+ [[package]]
2439
+ name = "tokio-stream"
2440
+ version = "0.1.18"
2441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2442
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
2443
+ dependencies = [
2444
+ "futures-core",
2445
+ "pin-project-lite",
2446
+ "tokio",
2447
+ "tokio-util",
2448
+ ]
2449
+
2450
+ [[package]]
2451
+ name = "tokio-util"
2452
+ version = "0.7.18"
2453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2454
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2455
+ dependencies = [
2456
+ "bytes",
2457
+ "futures-core",
2458
+ "futures-sink",
2459
+ "pin-project-lite",
2460
+ "tokio",
2461
+ ]
2462
+
2463
+ [[package]]
2464
+ name = "toml"
2465
+ version = "0.8.23"
2466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2467
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
2468
+ dependencies = [
2469
+ "serde",
2470
+ "serde_spanned",
2471
+ "toml_datetime",
2472
+ "toml_edit",
2473
+ ]
2474
+
2475
+ [[package]]
2476
+ name = "toml_datetime"
2477
+ version = "0.6.11"
2478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2479
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
2480
+ dependencies = [
2481
+ "serde",
2482
+ ]
2483
+
2484
+ [[package]]
2485
+ name = "toml_edit"
2486
+ version = "0.22.27"
2487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2488
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
2489
+ dependencies = [
2490
+ "indexmap",
2491
+ "serde",
2492
+ "serde_spanned",
2493
+ "toml_datetime",
2494
+ "toml_write",
2495
+ "winnow",
2496
+ ]
2497
+
2498
+ [[package]]
2499
+ name = "toml_write"
2500
+ version = "0.1.2"
2501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2502
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
2503
+
2504
+ [[package]]
2505
+ name = "tower"
2506
+ version = "0.5.3"
2507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2508
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2509
+ dependencies = [
2510
+ "futures-core",
2511
+ "futures-util",
2512
+ "pin-project-lite",
2513
+ "sync_wrapper",
2514
+ "tokio",
2515
+ "tower-layer",
2516
+ "tower-service",
2517
+ "tracing",
2518
+ ]
2519
+
2520
+ [[package]]
2521
+ name = "tower-http"
2522
+ version = "0.6.8"
2523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2524
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
2525
+ dependencies = [
2526
+ "bitflags 2.11.1",
2527
+ "bytes",
2528
+ "futures-util",
2529
+ "http 1.4.0",
2530
+ "http-body 1.0.1",
2531
+ "iri-string",
2532
+ "pin-project-lite",
2533
+ "tower",
2534
+ "tower-layer",
2535
+ "tower-service",
2536
+ ]
2537
+
2538
+ [[package]]
2539
+ name = "tower-layer"
2540
+ version = "0.3.3"
2541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2542
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2543
+
2544
+ [[package]]
2545
+ name = "tower-service"
2546
+ version = "0.3.3"
2547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2548
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2549
+
2550
+ [[package]]
2551
+ name = "tracing"
2552
+ version = "0.1.44"
2553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2554
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2555
+ dependencies = [
2556
+ "log",
2557
+ "pin-project-lite",
2558
+ "tracing-core",
2559
+ ]
2560
+
2561
+ [[package]]
2562
+ name = "tracing-core"
2563
+ version = "0.1.36"
2564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2565
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2566
+ dependencies = [
2567
+ "once_cell",
2568
+ ]
2569
+
2570
+ [[package]]
2571
+ name = "try-lock"
2572
+ version = "0.2.5"
2573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2574
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2575
+
2576
+ [[package]]
2577
+ name = "unicode-ident"
2578
+ version = "1.0.24"
2579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2580
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2581
+
2582
+ [[package]]
2583
+ name = "unicode-segmentation"
2584
+ version = "1.13.2"
2585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2586
+ checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
2587
+
2588
+ [[package]]
2589
+ name = "unicode-xid"
2590
+ version = "0.2.6"
2591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2592
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2593
+
2594
+ [[package]]
2595
+ name = "unsafe-libyaml"
2596
+ version = "0.2.11"
2597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2598
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
2599
+
2600
+ [[package]]
2601
+ name = "untrusted"
2602
+ version = "0.9.0"
2603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2604
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2605
+
2606
+ [[package]]
2607
+ name = "url"
2608
+ version = "2.5.8"
2609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2610
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2611
+ dependencies = [
2612
+ "form_urlencoded",
2613
+ "idna",
2614
+ "percent-encoding",
2615
+ "serde",
2616
+ ]
2617
+
2618
+ [[package]]
2619
+ name = "utf8_iter"
2620
+ version = "1.0.4"
2621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2622
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2623
+
2624
+ [[package]]
2625
+ name = "utf8parse"
2626
+ version = "0.2.2"
2627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2628
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2629
+
2630
+ [[package]]
2631
+ name = "vcpkg"
2632
+ version = "0.2.15"
2633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2634
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2635
+
2636
+ [[package]]
2637
+ name = "wait-timeout"
2638
+ version = "0.2.1"
2639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2640
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
2641
+ dependencies = [
2642
+ "libc",
2643
+ ]
2644
+
2645
+ [[package]]
2646
+ name = "walkdir"
2647
+ version = "2.5.0"
2648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2649
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2650
+ dependencies = [
2651
+ "same-file",
2652
+ "winapi-util",
2653
+ ]
2654
+
2655
+ [[package]]
2656
+ name = "want"
2657
+ version = "0.3.1"
2658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2659
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2660
+ dependencies = [
2661
+ "try-lock",
2662
+ ]
2663
+
2664
+ [[package]]
2665
+ name = "wasi"
2666
+ version = "0.11.1+wasi-snapshot-preview1"
2667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2668
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2669
+
2670
+ [[package]]
2671
+ name = "wasip2"
2672
+ version = "1.0.3+wasi-0.2.9"
2673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2674
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
2675
+ dependencies = [
2676
+ "wit-bindgen 0.57.1",
2677
+ ]
2678
+
2679
+ [[package]]
2680
+ name = "wasip3"
2681
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2683
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2684
+ dependencies = [
2685
+ "wit-bindgen 0.51.0",
2686
+ ]
2687
+
2688
+ [[package]]
2689
+ name = "wasm-bindgen"
2690
+ version = "0.2.118"
2691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2692
+ checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
2693
+ dependencies = [
2694
+ "cfg-if",
2695
+ "once_cell",
2696
+ "rustversion",
2697
+ "wasm-bindgen-macro",
2698
+ "wasm-bindgen-shared",
2699
+ ]
2700
+
2701
+ [[package]]
2702
+ name = "wasm-bindgen-futures"
2703
+ version = "0.4.68"
2704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2705
+ checksum = "f371d383f2fb139252e0bfac3b81b265689bf45b6874af544ffa4c975ac1ebf8"
2706
+ dependencies = [
2707
+ "js-sys",
2708
+ "wasm-bindgen",
2709
+ ]
2710
+
2711
+ [[package]]
2712
+ name = "wasm-bindgen-macro"
2713
+ version = "0.2.118"
2714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2715
+ checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
2716
+ dependencies = [
2717
+ "quote",
2718
+ "wasm-bindgen-macro-support",
2719
+ ]
2720
+
2721
+ [[package]]
2722
+ name = "wasm-bindgen-macro-support"
2723
+ version = "0.2.118"
2724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2725
+ checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
2726
+ dependencies = [
2727
+ "bumpalo",
2728
+ "proc-macro2",
2729
+ "quote",
2730
+ "syn",
2731
+ "wasm-bindgen-shared",
2732
+ ]
2733
+
2734
+ [[package]]
2735
+ name = "wasm-bindgen-shared"
2736
+ version = "0.2.118"
2737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2738
+ checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
2739
+ dependencies = [
2740
+ "unicode-ident",
2741
+ ]
2742
+
2743
+ [[package]]
2744
+ name = "wasm-encoder"
2745
+ version = "0.244.0"
2746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2747
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2748
+ dependencies = [
2749
+ "leb128fmt",
2750
+ "wasmparser",
2751
+ ]
2752
+
2753
+ [[package]]
2754
+ name = "wasm-metadata"
2755
+ version = "0.244.0"
2756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2757
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2758
+ dependencies = [
2759
+ "anyhow",
2760
+ "indexmap",
2761
+ "wasm-encoder",
2762
+ "wasmparser",
2763
+ ]
2764
+
2765
+ [[package]]
2766
+ name = "wasm-streams"
2767
+ version = "0.4.2"
2768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2769
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
2770
+ dependencies = [
2771
+ "futures-util",
2772
+ "js-sys",
2773
+ "wasm-bindgen",
2774
+ "wasm-bindgen-futures",
2775
+ "web-sys",
2776
+ ]
2777
+
2778
+ [[package]]
2779
+ name = "wasmparser"
2780
+ version = "0.244.0"
2781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2782
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2783
+ dependencies = [
2784
+ "bitflags 2.11.1",
2785
+ "hashbrown 0.15.5",
2786
+ "indexmap",
2787
+ "semver",
2788
+ ]
2789
+
2790
+ [[package]]
2791
+ name = "web-sys"
2792
+ version = "0.3.95"
2793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2794
+ checksum = "4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d"
2795
+ dependencies = [
2796
+ "js-sys",
2797
+ "wasm-bindgen",
2798
+ ]
2799
+
2800
+ [[package]]
2801
+ name = "web-time"
2802
+ version = "1.1.0"
2803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2804
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2805
+ dependencies = [
2806
+ "js-sys",
2807
+ "wasm-bindgen",
2808
+ ]
2809
+
2810
+ [[package]]
2811
+ name = "webpki-roots"
2812
+ version = "1.0.7"
2813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2814
+ checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
2815
+ dependencies = [
2816
+ "rustls-pki-types",
2817
+ ]
2818
+
2819
+ [[package]]
2820
+ name = "winapi-util"
2821
+ version = "0.1.11"
2822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2823
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2824
+ dependencies = [
2825
+ "windows-sys 0.61.2",
2826
+ ]
2827
+
2828
+ [[package]]
2829
+ name = "windows-link"
2830
+ version = "0.2.1"
2831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2832
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2833
+
2834
+ [[package]]
2835
+ name = "windows-sys"
2836
+ version = "0.52.0"
2837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2838
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2839
+ dependencies = [
2840
+ "windows-targets 0.52.6",
2841
+ ]
2842
+
2843
+ [[package]]
2844
+ name = "windows-sys"
2845
+ version = "0.60.2"
2846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2847
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2848
+ dependencies = [
2849
+ "windows-targets 0.53.5",
2850
+ ]
2851
+
2852
+ [[package]]
2853
+ name = "windows-sys"
2854
+ version = "0.61.2"
2855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2856
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2857
+ dependencies = [
2858
+ "windows-link",
2859
+ ]
2860
+
2861
+ [[package]]
2862
+ name = "windows-targets"
2863
+ version = "0.52.6"
2864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2865
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2866
+ dependencies = [
2867
+ "windows_aarch64_gnullvm 0.52.6",
2868
+ "windows_aarch64_msvc 0.52.6",
2869
+ "windows_i686_gnu 0.52.6",
2870
+ "windows_i686_gnullvm 0.52.6",
2871
+ "windows_i686_msvc 0.52.6",
2872
+ "windows_x86_64_gnu 0.52.6",
2873
+ "windows_x86_64_gnullvm 0.52.6",
2874
+ "windows_x86_64_msvc 0.52.6",
2875
+ ]
2876
+
2877
+ [[package]]
2878
+ name = "windows-targets"
2879
+ version = "0.53.5"
2880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2881
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
2882
+ dependencies = [
2883
+ "windows-link",
2884
+ "windows_aarch64_gnullvm 0.53.1",
2885
+ "windows_aarch64_msvc 0.53.1",
2886
+ "windows_i686_gnu 0.53.1",
2887
+ "windows_i686_gnullvm 0.53.1",
2888
+ "windows_i686_msvc 0.53.1",
2889
+ "windows_x86_64_gnu 0.53.1",
2890
+ "windows_x86_64_gnullvm 0.53.1",
2891
+ "windows_x86_64_msvc 0.53.1",
2892
+ ]
2893
+
2894
+ [[package]]
2895
+ name = "windows_aarch64_gnullvm"
2896
+ version = "0.52.6"
2897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2898
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2899
+
2900
+ [[package]]
2901
+ name = "windows_aarch64_gnullvm"
2902
+ version = "0.53.1"
2903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2904
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
2905
+
2906
+ [[package]]
2907
+ name = "windows_aarch64_msvc"
2908
+ version = "0.52.6"
2909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2910
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2911
+
2912
+ [[package]]
2913
+ name = "windows_aarch64_msvc"
2914
+ version = "0.53.1"
2915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2916
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
2917
+
2918
+ [[package]]
2919
+ name = "windows_i686_gnu"
2920
+ version = "0.52.6"
2921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2922
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2923
+
2924
+ [[package]]
2925
+ name = "windows_i686_gnu"
2926
+ version = "0.53.1"
2927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2928
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
2929
+
2930
+ [[package]]
2931
+ name = "windows_i686_gnullvm"
2932
+ version = "0.52.6"
2933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2934
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2935
+
2936
+ [[package]]
2937
+ name = "windows_i686_gnullvm"
2938
+ version = "0.53.1"
2939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2940
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
2941
+
2942
+ [[package]]
2943
+ name = "windows_i686_msvc"
2944
+ version = "0.52.6"
2945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2946
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2947
+
2948
+ [[package]]
2949
+ name = "windows_i686_msvc"
2950
+ version = "0.53.1"
2951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2952
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
2953
+
2954
+ [[package]]
2955
+ name = "windows_x86_64_gnu"
2956
+ version = "0.52.6"
2957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2958
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2959
+
2960
+ [[package]]
2961
+ name = "windows_x86_64_gnu"
2962
+ version = "0.53.1"
2963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2964
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
2965
+
2966
+ [[package]]
2967
+ name = "windows_x86_64_gnullvm"
2968
+ version = "0.52.6"
2969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2970
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2971
+
2972
+ [[package]]
2973
+ name = "windows_x86_64_gnullvm"
2974
+ version = "0.53.1"
2975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2976
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
2977
+
2978
+ [[package]]
2979
+ name = "windows_x86_64_msvc"
2980
+ version = "0.52.6"
2981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2982
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2983
+
2984
+ [[package]]
2985
+ name = "windows_x86_64_msvc"
2986
+ version = "0.53.1"
2987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2988
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2989
+
2990
+ [[package]]
2991
+ name = "winnow"
2992
+ version = "0.7.15"
2993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2994
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
2995
+ dependencies = [
2996
+ "memchr",
2997
+ ]
2998
+
2999
+ [[package]]
3000
+ name = "wit-bindgen"
3001
+ version = "0.51.0"
3002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3003
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3004
+ dependencies = [
3005
+ "wit-bindgen-rust-macro",
3006
+ ]
3007
+
3008
+ [[package]]
3009
+ name = "wit-bindgen"
3010
+ version = "0.57.1"
3011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3012
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
3013
+
3014
+ [[package]]
3015
+ name = "wit-bindgen-core"
3016
+ version = "0.51.0"
3017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3018
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
3019
+ dependencies = [
3020
+ "anyhow",
3021
+ "heck",
3022
+ "wit-parser",
3023
+ ]
3024
+
3025
+ [[package]]
3026
+ name = "wit-bindgen-rust"
3027
+ version = "0.51.0"
3028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3029
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
3030
+ dependencies = [
3031
+ "anyhow",
3032
+ "heck",
3033
+ "indexmap",
3034
+ "prettyplease",
3035
+ "syn",
3036
+ "wasm-metadata",
3037
+ "wit-bindgen-core",
3038
+ "wit-component",
3039
+ ]
3040
+
3041
+ [[package]]
3042
+ name = "wit-bindgen-rust-macro"
3043
+ version = "0.51.0"
3044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3045
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
3046
+ dependencies = [
3047
+ "anyhow",
3048
+ "prettyplease",
3049
+ "proc-macro2",
3050
+ "quote",
3051
+ "syn",
3052
+ "wit-bindgen-core",
3053
+ "wit-bindgen-rust",
3054
+ ]
3055
+
3056
+ [[package]]
3057
+ name = "wit-component"
3058
+ version = "0.244.0"
3059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3060
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
3061
+ dependencies = [
3062
+ "anyhow",
3063
+ "bitflags 2.11.1",
3064
+ "indexmap",
3065
+ "log",
3066
+ "serde",
3067
+ "serde_derive",
3068
+ "serde_json",
3069
+ "wasm-encoder",
3070
+ "wasm-metadata",
3071
+ "wasmparser",
3072
+ "wit-parser",
3073
+ ]
3074
+
3075
+ [[package]]
3076
+ name = "wit-parser"
3077
+ version = "0.244.0"
3078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3079
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
3080
+ dependencies = [
3081
+ "anyhow",
3082
+ "id-arena",
3083
+ "indexmap",
3084
+ "log",
3085
+ "semver",
3086
+ "serde",
3087
+ "serde_derive",
3088
+ "serde_json",
3089
+ "unicode-xid",
3090
+ "wasmparser",
3091
+ ]
3092
+
3093
+ [[package]]
3094
+ name = "writeable"
3095
+ version = "0.6.3"
3096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3097
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
3098
+
3099
+ [[package]]
3100
+ name = "yoke"
3101
+ version = "0.8.2"
3102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3103
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
3104
+ dependencies = [
3105
+ "stable_deref_trait",
3106
+ "yoke-derive",
3107
+ "zerofrom",
3108
+ ]
3109
+
3110
+ [[package]]
3111
+ name = "yoke-derive"
3112
+ version = "0.8.2"
3113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3114
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
3115
+ dependencies = [
3116
+ "proc-macro2",
3117
+ "quote",
3118
+ "syn",
3119
+ "synstructure",
3120
+ ]
3121
+
3122
+ [[package]]
3123
+ name = "zerocopy"
3124
+ version = "0.8.48"
3125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3126
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
3127
+ dependencies = [
3128
+ "zerocopy-derive",
3129
+ ]
3130
+
3131
+ [[package]]
3132
+ name = "zerocopy-derive"
3133
+ version = "0.8.48"
3134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3135
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
3136
+ dependencies = [
3137
+ "proc-macro2",
3138
+ "quote",
3139
+ "syn",
3140
+ ]
3141
+
3142
+ [[package]]
3143
+ name = "zerofrom"
3144
+ version = "0.1.7"
3145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3146
+ checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
3147
+ dependencies = [
3148
+ "zerofrom-derive",
3149
+ ]
3150
+
3151
+ [[package]]
3152
+ name = "zerofrom-derive"
3153
+ version = "0.1.7"
3154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3155
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
3156
+ dependencies = [
3157
+ "proc-macro2",
3158
+ "quote",
3159
+ "syn",
3160
+ "synstructure",
3161
+ ]
3162
+
3163
+ [[package]]
3164
+ name = "zeroize"
3165
+ version = "1.8.2"
3166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3167
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3168
+
3169
+ [[package]]
3170
+ name = "zerotrie"
3171
+ version = "0.2.4"
3172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3173
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
3174
+ dependencies = [
3175
+ "displaydoc",
3176
+ "yoke",
3177
+ "zerofrom",
3178
+ ]
3179
+
3180
+ [[package]]
3181
+ name = "zerovec"
3182
+ version = "0.11.6"
3183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3184
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
3185
+ dependencies = [
3186
+ "yoke",
3187
+ "zerofrom",
3188
+ "zerovec-derive",
3189
+ ]
3190
+
3191
+ [[package]]
3192
+ name = "zerovec-derive"
3193
+ version = "0.11.3"
3194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3195
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
3196
+ dependencies = [
3197
+ "proc-macro2",
3198
+ "quote",
3199
+ "syn",
3200
+ ]
3201
+
3202
+ [[package]]
3203
+ name = "zmij"
3204
+ version = "1.0.21"
3205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3206
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"