nagi-cli 0.0.1__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 (81) hide show
  1. nagi_cli-0.0.1/Cargo.lock +3661 -0
  2. nagi_cli-0.0.1/Cargo.toml +4 -0
  3. nagi_cli-0.0.1/LICENSE +201 -0
  4. nagi_cli-0.0.1/PKG-INFO +92 -0
  5. nagi_cli-0.0.1/README.md +62 -0
  6. nagi_cli-0.0.1/crates/nagi-core/Cargo.toml +43 -0
  7. nagi_cli-0.0.1/crates/nagi-core/README.md +17 -0
  8. nagi_cli-0.0.1/crates/nagi-core/src/interface/compile.rs +76 -0
  9. nagi_cli-0.0.1/crates/nagi-core/src/interface/evaluate.rs +120 -0
  10. nagi_cli-0.0.1/crates/nagi-core/src/interface/export.rs +114 -0
  11. nagi_cli-0.0.1/crates/nagi-core/src/interface/init.rs +414 -0
  12. nagi_cli-0.0.1/crates/nagi-core/src/interface/ls.rs +545 -0
  13. nagi_cli-0.0.1/crates/nagi-core/src/interface/py.rs +380 -0
  14. nagi_cli-0.0.1/crates/nagi-core/src/interface/schema.rs +130 -0
  15. nagi_cli-0.0.1/crates/nagi-core/src/interface/select.rs +425 -0
  16. nagi_cli-0.0.1/crates/nagi-core/src/interface/sync.rs +206 -0
  17. nagi_cli-0.0.1/crates/nagi-core/src/interface.rs +10 -0
  18. nagi_cli-0.0.1/crates/nagi-core/src/lib.rs +16 -0
  19. nagi_cli-0.0.1/crates/nagi-core/src/runtime/compile/dbt.rs +234 -0
  20. nagi_cli-0.0.1/crates/nagi-core/src/runtime/compile.rs +1841 -0
  21. nagi_cli-0.0.1/crates/nagi-core/src/runtime/config.rs +515 -0
  22. nagi_cli-0.0.1/crates/nagi-core/src/runtime/cron.rs +85 -0
  23. nagi_cli-0.0.1/crates/nagi-core/src/runtime/duration.rs +110 -0
  24. nagi_cli-0.0.1/crates/nagi-core/src/runtime/evaluate/command.rs +86 -0
  25. nagi_cli-0.0.1/crates/nagi-core/src/runtime/evaluate/freshness.rs +50 -0
  26. nagi_cli-0.0.1/crates/nagi-core/src/runtime/evaluate.rs +849 -0
  27. nagi_cli-0.0.1/crates/nagi-core/src/runtime/export.rs +966 -0
  28. nagi_cli-0.0.1/crates/nagi-core/src/runtime/kind/asset.rs +738 -0
  29. nagi_cli-0.0.1/crates/nagi-core/src/runtime/kind/condition.rs +76 -0
  30. nagi_cli-0.0.1/crates/nagi-core/src/runtime/kind/connection/bigquery.rs +762 -0
  31. nagi_cli-0.0.1/crates/nagi-core/src/runtime/kind/connection/dbt.rs +238 -0
  32. nagi_cli-0.0.1/crates/nagi-core/src/runtime/kind/connection/duckdb.rs +257 -0
  33. nagi_cli-0.0.1/crates/nagi-core/src/runtime/kind/connection/snowflake.rs +595 -0
  34. nagi_cli-0.0.1/crates/nagi-core/src/runtime/kind/connection.rs +1049 -0
  35. nagi_cli-0.0.1/crates/nagi-core/src/runtime/kind/origin/dbt/cloud.rs +604 -0
  36. nagi_cli-0.0.1/crates/nagi-core/src/runtime/kind/origin/dbt/generate.rs +303 -0
  37. nagi_cli-0.0.1/crates/nagi-core/src/runtime/kind/origin/dbt/manifest.rs +1403 -0
  38. nagi_cli-0.0.1/crates/nagi-core/src/runtime/kind/origin/dbt/mesh.rs +869 -0
  39. nagi_cli-0.0.1/crates/nagi-core/src/runtime/kind/origin/dbt.rs +137 -0
  40. nagi_cli-0.0.1/crates/nagi-core/src/runtime/kind/origin.rs +198 -0
  41. nagi_cli-0.0.1/crates/nagi-core/src/runtime/kind/sync.rs +192 -0
  42. nagi_cli-0.0.1/crates/nagi-core/src/runtime/kind.rs +385 -0
  43. nagi_cli-0.0.1/crates/nagi-core/src/runtime/log/evaluate.rs +295 -0
  44. nagi_cli-0.0.1/crates/nagi-core/src/runtime/log/file.rs +115 -0
  45. nagi_cli-0.0.1/crates/nagi-core/src/runtime/log/schema.rs +71 -0
  46. nagi_cli-0.0.1/crates/nagi-core/src/runtime/log/subscriber.rs +18 -0
  47. nagi_cli-0.0.1/crates/nagi-core/src/runtime/log/sync.rs +295 -0
  48. nagi_cli-0.0.1/crates/nagi-core/src/runtime/log.rs +373 -0
  49. nagi_cli-0.0.1/crates/nagi-core/src/runtime/notify/slack.rs +180 -0
  50. nagi_cli-0.0.1/crates/nagi-core/src/runtime/notify.rs +120 -0
  51. nagi_cli-0.0.1/crates/nagi-core/src/runtime/serve/controller.rs +934 -0
  52. nagi_cli-0.0.1/crates/nagi-core/src/runtime/serve/graph.rs +175 -0
  53. nagi_cli-0.0.1/crates/nagi-core/src/runtime/serve/guardrail.rs +136 -0
  54. nagi_cli-0.0.1/crates/nagi-core/src/runtime/serve/queue.rs +73 -0
  55. nagi_cli-0.0.1/crates/nagi-core/src/runtime/serve/reconciler.rs +681 -0
  56. nagi_cli-0.0.1/crates/nagi-core/src/runtime/serve/scheduler.rs +81 -0
  57. nagi_cli-0.0.1/crates/nagi-core/src/runtime/serve/state.rs +1471 -0
  58. nagi_cli-0.0.1/crates/nagi-core/src/runtime/serve/suspended.rs +138 -0
  59. nagi_cli-0.0.1/crates/nagi-core/src/runtime/serve.rs +428 -0
  60. nagi_cli-0.0.1/crates/nagi-core/src/runtime/status.rs +290 -0
  61. nagi_cli-0.0.1/crates/nagi-core/src/runtime/storage/local.rs +895 -0
  62. nagi_cli-0.0.1/crates/nagi-core/src/runtime/storage/lock.rs +23 -0
  63. nagi_cli-0.0.1/crates/nagi-core/src/runtime/storage/remote.rs +761 -0
  64. nagi_cli-0.0.1/crates/nagi-core/src/runtime/storage.rs +129 -0
  65. nagi_cli-0.0.1/crates/nagi-core/src/runtime/sync/command.rs +45 -0
  66. nagi_cli-0.0.1/crates/nagi-core/src/runtime/sync.rs +587 -0
  67. nagi_cli-0.0.1/crates/nagi-core/src/runtime.rs +13 -0
  68. nagi_cli-0.0.1/pyproject.toml +104 -0
  69. nagi_cli-0.0.1/python/nagi_cli/__init__.py +0 -0
  70. nagi_cli-0.0.1/python/nagi_cli/commands/__init__.py +0 -0
  71. nagi_cli-0.0.1/python/nagi_cli/commands/compile.py +42 -0
  72. nagi_cli-0.0.1/python/nagi_cli/commands/evaluate.py +48 -0
  73. nagi_cli-0.0.1/python/nagi_cli/commands/export.py +24 -0
  74. nagi_cli-0.0.1/python/nagi_cli/commands/init.py +133 -0
  75. nagi_cli-0.0.1/python/nagi_cli/commands/ls.py +29 -0
  76. nagi_cli-0.0.1/python/nagi_cli/commands/mcp.py +21 -0
  77. nagi_cli-0.0.1/python/nagi_cli/commands/serve.py +154 -0
  78. nagi_cli-0.0.1/python/nagi_cli/commands/status.py +38 -0
  79. nagi_cli-0.0.1/python/nagi_cli/commands/sync.py +102 -0
  80. nagi_cli-0.0.1/python/nagi_cli/main.py +31 -0
  81. nagi_cli-0.0.1/python/nagi_cli/mcp.py +125 -0
@@ -0,0 +1,3661 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "android_system_properties"
16
+ version = "0.1.5"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
19
+ dependencies = [
20
+ "libc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "anyhow"
25
+ version = "1.0.102"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
28
+
29
+ [[package]]
30
+ name = "ar_archive_writer"
31
+ version = "0.5.1"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "7eb93bbb63b9c227414f6eb3a0adfddca591a8ce1e9b60661bb08969b87e340b"
34
+ dependencies = [
35
+ "object",
36
+ ]
37
+
38
+ [[package]]
39
+ name = "async-trait"
40
+ version = "0.1.89"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
43
+ dependencies = [
44
+ "proc-macro2",
45
+ "quote",
46
+ "syn",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "atomic-waker"
51
+ version = "1.1.2"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
54
+
55
+ [[package]]
56
+ name = "autocfg"
57
+ version = "1.5.0"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
60
+
61
+ [[package]]
62
+ name = "aws-lc-rs"
63
+ version = "1.16.2"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "a054912289d18629dc78375ba2c3726a3afe3ff71b4edba9dedfca0e3446d1fc"
66
+ dependencies = [
67
+ "aws-lc-sys",
68
+ "zeroize",
69
+ ]
70
+
71
+ [[package]]
72
+ name = "aws-lc-sys"
73
+ version = "0.39.1"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "83a25cf98105baa966497416dbd42565ce3a8cf8dbfd59803ec9ad46f3126399"
76
+ dependencies = [
77
+ "cc",
78
+ "cmake",
79
+ "dunce",
80
+ "fs_extra",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "base16ct"
85
+ version = "0.2.0"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
88
+
89
+ [[package]]
90
+ name = "base64"
91
+ version = "0.22.1"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
94
+
95
+ [[package]]
96
+ name = "base64ct"
97
+ version = "1.8.3"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
100
+
101
+ [[package]]
102
+ name = "bitflags"
103
+ version = "2.11.0"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
106
+
107
+ [[package]]
108
+ name = "block-buffer"
109
+ version = "0.10.4"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
112
+ dependencies = [
113
+ "generic-array",
114
+ ]
115
+
116
+ [[package]]
117
+ name = "block-buffer"
118
+ version = "0.12.0"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be"
121
+ dependencies = [
122
+ "hybrid-array",
123
+ ]
124
+
125
+ [[package]]
126
+ name = "bumpalo"
127
+ version = "3.20.2"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
130
+
131
+ [[package]]
132
+ name = "bytes"
133
+ version = "1.11.1"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
136
+
137
+ [[package]]
138
+ name = "cc"
139
+ version = "1.2.56"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
142
+ dependencies = [
143
+ "find-msvc-tools",
144
+ "jobserver",
145
+ "libc",
146
+ "shlex",
147
+ ]
148
+
149
+ [[package]]
150
+ name = "cesu8"
151
+ version = "1.1.0"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
154
+
155
+ [[package]]
156
+ name = "cfg-if"
157
+ version = "1.0.4"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
160
+
161
+ [[package]]
162
+ name = "cfg_aliases"
163
+ version = "0.2.1"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
166
+
167
+ [[package]]
168
+ name = "chacha20"
169
+ version = "0.10.0"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
172
+ dependencies = [
173
+ "cfg-if",
174
+ "cpufeatures 0.3.0",
175
+ "rand_core 0.10.0",
176
+ ]
177
+
178
+ [[package]]
179
+ name = "chrono"
180
+ version = "0.4.44"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
183
+ dependencies = [
184
+ "iana-time-zone",
185
+ "js-sys",
186
+ "num-traits",
187
+ "serde",
188
+ "wasm-bindgen",
189
+ "windows-link",
190
+ ]
191
+
192
+ [[package]]
193
+ name = "cmake"
194
+ version = "0.1.58"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
197
+ dependencies = [
198
+ "cc",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "combine"
203
+ version = "4.6.7"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
206
+ dependencies = [
207
+ "bytes",
208
+ "memchr",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "const-oid"
213
+ version = "0.9.6"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
216
+
217
+ [[package]]
218
+ name = "const-oid"
219
+ version = "0.10.2"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
222
+
223
+ [[package]]
224
+ name = "core-foundation"
225
+ version = "0.9.4"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
228
+ dependencies = [
229
+ "core-foundation-sys",
230
+ "libc",
231
+ ]
232
+
233
+ [[package]]
234
+ name = "core-foundation"
235
+ version = "0.10.1"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
238
+ dependencies = [
239
+ "core-foundation-sys",
240
+ "libc",
241
+ ]
242
+
243
+ [[package]]
244
+ name = "core-foundation-sys"
245
+ version = "0.8.7"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
248
+
249
+ [[package]]
250
+ name = "cpufeatures"
251
+ version = "0.2.17"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
254
+ dependencies = [
255
+ "libc",
256
+ ]
257
+
258
+ [[package]]
259
+ name = "cpufeatures"
260
+ version = "0.3.0"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
263
+ dependencies = [
264
+ "libc",
265
+ ]
266
+
267
+ [[package]]
268
+ name = "croner"
269
+ version = "3.0.1"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "4aa42bcd3d846ebf66e15bd528d1087f75d1c6c1c66ebff626178a106353c576"
272
+ dependencies = [
273
+ "chrono",
274
+ "derive_builder",
275
+ "strum",
276
+ ]
277
+
278
+ [[package]]
279
+ name = "crypto-bigint"
280
+ version = "0.5.5"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
283
+ dependencies = [
284
+ "generic-array",
285
+ "rand_core 0.6.4",
286
+ "subtle",
287
+ "zeroize",
288
+ ]
289
+
290
+ [[package]]
291
+ name = "crypto-common"
292
+ version = "0.1.7"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
295
+ dependencies = [
296
+ "generic-array",
297
+ "typenum",
298
+ ]
299
+
300
+ [[package]]
301
+ name = "crypto-common"
302
+ version = "0.2.1"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "77727bb15fa921304124b128af125e7e3b968275d1b108b379190264f4423710"
305
+ dependencies = [
306
+ "hybrid-array",
307
+ ]
308
+
309
+ [[package]]
310
+ name = "curve25519-dalek"
311
+ version = "4.1.3"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
314
+ dependencies = [
315
+ "cfg-if",
316
+ "cpufeatures 0.2.17",
317
+ "curve25519-dalek-derive",
318
+ "digest 0.10.7",
319
+ "fiat-crypto",
320
+ "rustc_version",
321
+ "subtle",
322
+ "zeroize",
323
+ ]
324
+
325
+ [[package]]
326
+ name = "curve25519-dalek-derive"
327
+ version = "0.1.1"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
330
+ dependencies = [
331
+ "proc-macro2",
332
+ "quote",
333
+ "syn",
334
+ ]
335
+
336
+ [[package]]
337
+ name = "darling"
338
+ version = "0.20.11"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
341
+ dependencies = [
342
+ "darling_core",
343
+ "darling_macro",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "darling_core"
348
+ version = "0.20.11"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
351
+ dependencies = [
352
+ "fnv",
353
+ "ident_case",
354
+ "proc-macro2",
355
+ "quote",
356
+ "strsim",
357
+ "syn",
358
+ ]
359
+
360
+ [[package]]
361
+ name = "darling_macro"
362
+ version = "0.20.11"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
365
+ dependencies = [
366
+ "darling_core",
367
+ "quote",
368
+ "syn",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "der"
373
+ version = "0.7.10"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
376
+ dependencies = [
377
+ "const-oid 0.9.6",
378
+ "pem-rfc7468",
379
+ "zeroize",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "deranged"
384
+ version = "0.5.8"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
387
+ dependencies = [
388
+ "powerfmt",
389
+ ]
390
+
391
+ [[package]]
392
+ name = "derive_builder"
393
+ version = "0.20.2"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
396
+ dependencies = [
397
+ "derive_builder_macro",
398
+ ]
399
+
400
+ [[package]]
401
+ name = "derive_builder_core"
402
+ version = "0.20.2"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
405
+ dependencies = [
406
+ "darling",
407
+ "proc-macro2",
408
+ "quote",
409
+ "syn",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "derive_builder_macro"
414
+ version = "0.20.2"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
417
+ dependencies = [
418
+ "derive_builder_core",
419
+ "syn",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "digest"
424
+ version = "0.10.7"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
427
+ dependencies = [
428
+ "block-buffer 0.10.4",
429
+ "const-oid 0.9.6",
430
+ "crypto-common 0.1.7",
431
+ "subtle",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "digest"
436
+ version = "0.11.2"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "4850db49bf08e663084f7fb5c87d202ef91a3907271aff24a94eb97ff039153c"
439
+ dependencies = [
440
+ "block-buffer 0.12.0",
441
+ "const-oid 0.10.2",
442
+ "crypto-common 0.2.1",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "dirs"
447
+ version = "6.0.0"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
450
+ dependencies = [
451
+ "dirs-sys",
452
+ ]
453
+
454
+ [[package]]
455
+ name = "dirs-sys"
456
+ version = "0.5.0"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
459
+ dependencies = [
460
+ "libc",
461
+ "option-ext",
462
+ "redox_users",
463
+ "windows-sys 0.61.2",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "displaydoc"
468
+ version = "0.2.5"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
471
+ dependencies = [
472
+ "proc-macro2",
473
+ "quote",
474
+ "syn",
475
+ ]
476
+
477
+ [[package]]
478
+ name = "dunce"
479
+ version = "1.0.5"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
482
+
483
+ [[package]]
484
+ name = "dyn-clone"
485
+ version = "1.0.20"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
488
+
489
+ [[package]]
490
+ name = "ecdsa"
491
+ version = "0.16.9"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
494
+ dependencies = [
495
+ "der",
496
+ "digest 0.10.7",
497
+ "elliptic-curve",
498
+ "rfc6979",
499
+ "signature",
500
+ "spki",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "ed25519"
505
+ version = "2.2.3"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
508
+ dependencies = [
509
+ "pkcs8",
510
+ "signature",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "ed25519-dalek"
515
+ version = "2.2.0"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
518
+ dependencies = [
519
+ "curve25519-dalek",
520
+ "ed25519",
521
+ "serde",
522
+ "sha2 0.10.9",
523
+ "subtle",
524
+ "zeroize",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "either"
529
+ version = "1.15.0"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
532
+
533
+ [[package]]
534
+ name = "elliptic-curve"
535
+ version = "0.13.8"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
538
+ dependencies = [
539
+ "base16ct",
540
+ "crypto-bigint",
541
+ "digest 0.10.7",
542
+ "ff",
543
+ "generic-array",
544
+ "group",
545
+ "hkdf",
546
+ "pem-rfc7468",
547
+ "pkcs8",
548
+ "rand_core 0.6.4",
549
+ "sec1",
550
+ "subtle",
551
+ "zeroize",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "encoding_rs"
556
+ version = "0.8.35"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
559
+ dependencies = [
560
+ "cfg-if",
561
+ ]
562
+
563
+ [[package]]
564
+ name = "equivalent"
565
+ version = "1.0.2"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
568
+
569
+ [[package]]
570
+ name = "errno"
571
+ version = "0.3.14"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
574
+ dependencies = [
575
+ "libc",
576
+ "windows-sys 0.61.2",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "fallible-iterator"
581
+ version = "0.3.0"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
584
+
585
+ [[package]]
586
+ name = "fallible-streaming-iterator"
587
+ version = "0.1.9"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
590
+
591
+ [[package]]
592
+ name = "fastrand"
593
+ version = "2.3.0"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
596
+
597
+ [[package]]
598
+ name = "ff"
599
+ version = "0.13.1"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
602
+ dependencies = [
603
+ "rand_core 0.6.4",
604
+ "subtle",
605
+ ]
606
+
607
+ [[package]]
608
+ name = "fiat-crypto"
609
+ version = "0.2.9"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
612
+
613
+ [[package]]
614
+ name = "find-msvc-tools"
615
+ version = "0.1.9"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
618
+
619
+ [[package]]
620
+ name = "fnv"
621
+ version = "1.0.7"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
624
+
625
+ [[package]]
626
+ name = "foldhash"
627
+ version = "0.1.5"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
630
+
631
+ [[package]]
632
+ name = "foldhash"
633
+ version = "0.2.0"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
636
+
637
+ [[package]]
638
+ name = "form_urlencoded"
639
+ version = "1.2.2"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
642
+ dependencies = [
643
+ "percent-encoding",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "fs_extra"
648
+ version = "1.3.0"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
651
+
652
+ [[package]]
653
+ name = "futures-channel"
654
+ version = "0.3.32"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
657
+ dependencies = [
658
+ "futures-core",
659
+ "futures-sink",
660
+ ]
661
+
662
+ [[package]]
663
+ name = "futures-core"
664
+ version = "0.3.32"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
667
+
668
+ [[package]]
669
+ name = "futures-io"
670
+ version = "0.3.32"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
673
+
674
+ [[package]]
675
+ name = "futures-macro"
676
+ version = "0.3.32"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
679
+ dependencies = [
680
+ "proc-macro2",
681
+ "quote",
682
+ "syn",
683
+ ]
684
+
685
+ [[package]]
686
+ name = "futures-sink"
687
+ version = "0.3.32"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
690
+
691
+ [[package]]
692
+ name = "futures-task"
693
+ version = "0.3.32"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
696
+
697
+ [[package]]
698
+ name = "futures-util"
699
+ version = "0.3.32"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
702
+ dependencies = [
703
+ "futures-core",
704
+ "futures-io",
705
+ "futures-macro",
706
+ "futures-sink",
707
+ "futures-task",
708
+ "memchr",
709
+ "pin-project-lite",
710
+ "slab",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "generic-array"
715
+ version = "0.14.7"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
718
+ dependencies = [
719
+ "typenum",
720
+ "version_check",
721
+ "zeroize",
722
+ ]
723
+
724
+ [[package]]
725
+ name = "getrandom"
726
+ version = "0.2.17"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
729
+ dependencies = [
730
+ "cfg-if",
731
+ "js-sys",
732
+ "libc",
733
+ "wasi",
734
+ "wasm-bindgen",
735
+ ]
736
+
737
+ [[package]]
738
+ name = "getrandom"
739
+ version = "0.3.4"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
742
+ dependencies = [
743
+ "cfg-if",
744
+ "js-sys",
745
+ "libc",
746
+ "r-efi 5.3.0",
747
+ "wasip2",
748
+ "wasm-bindgen",
749
+ ]
750
+
751
+ [[package]]
752
+ name = "getrandom"
753
+ version = "0.4.2"
754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
756
+ dependencies = [
757
+ "cfg-if",
758
+ "libc",
759
+ "r-efi 6.0.0",
760
+ "rand_core 0.10.0",
761
+ "wasip2",
762
+ "wasip3",
763
+ ]
764
+
765
+ [[package]]
766
+ name = "group"
767
+ version = "0.13.0"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
770
+ dependencies = [
771
+ "ff",
772
+ "rand_core 0.6.4",
773
+ "subtle",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "h2"
778
+ version = "0.4.13"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
781
+ dependencies = [
782
+ "atomic-waker",
783
+ "bytes",
784
+ "fnv",
785
+ "futures-core",
786
+ "futures-sink",
787
+ "http",
788
+ "indexmap",
789
+ "slab",
790
+ "tokio",
791
+ "tokio-util",
792
+ "tracing",
793
+ ]
794
+
795
+ [[package]]
796
+ name = "hashbrown"
797
+ version = "0.15.5"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
800
+ dependencies = [
801
+ "foldhash 0.1.5",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "hashbrown"
806
+ version = "0.16.1"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
809
+ dependencies = [
810
+ "foldhash 0.2.0",
811
+ ]
812
+
813
+ [[package]]
814
+ name = "hashlink"
815
+ version = "0.11.0"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "ea0b22561a9c04a7cb1a302c013e0259cd3b4bb619f145b32f72b8b4bcbed230"
818
+ dependencies = [
819
+ "hashbrown 0.16.1",
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 = "hkdf"
830
+ version = "0.12.4"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
833
+ dependencies = [
834
+ "hmac",
835
+ ]
836
+
837
+ [[package]]
838
+ name = "hmac"
839
+ version = "0.12.1"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
842
+ dependencies = [
843
+ "digest 0.10.7",
844
+ ]
845
+
846
+ [[package]]
847
+ name = "http"
848
+ version = "1.4.0"
849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
850
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
851
+ dependencies = [
852
+ "bytes",
853
+ "itoa",
854
+ ]
855
+
856
+ [[package]]
857
+ name = "http-body"
858
+ version = "1.0.1"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
861
+ dependencies = [
862
+ "bytes",
863
+ "http",
864
+ ]
865
+
866
+ [[package]]
867
+ name = "http-body-util"
868
+ version = "0.1.3"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
871
+ dependencies = [
872
+ "bytes",
873
+ "futures-core",
874
+ "http",
875
+ "http-body",
876
+ "pin-project-lite",
877
+ ]
878
+
879
+ [[package]]
880
+ name = "httparse"
881
+ version = "1.10.1"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
884
+
885
+ [[package]]
886
+ name = "humantime"
887
+ version = "2.3.0"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
890
+
891
+ [[package]]
892
+ name = "hybrid-array"
893
+ version = "0.4.10"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "3944cf8cf766b40e2a1a333ee5e9b563f854d5fa49d6a8ca2764e97c6eddb214"
896
+ dependencies = [
897
+ "typenum",
898
+ ]
899
+
900
+ [[package]]
901
+ name = "hyper"
902
+ version = "1.8.1"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
905
+ dependencies = [
906
+ "atomic-waker",
907
+ "bytes",
908
+ "futures-channel",
909
+ "futures-core",
910
+ "h2",
911
+ "http",
912
+ "http-body",
913
+ "httparse",
914
+ "itoa",
915
+ "pin-project-lite",
916
+ "pin-utils",
917
+ "smallvec",
918
+ "tokio",
919
+ "want",
920
+ ]
921
+
922
+ [[package]]
923
+ name = "hyper-rustls"
924
+ version = "0.27.7"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
927
+ dependencies = [
928
+ "http",
929
+ "hyper",
930
+ "hyper-util",
931
+ "rustls",
932
+ "rustls-native-certs",
933
+ "rustls-pki-types",
934
+ "tokio",
935
+ "tokio-rustls",
936
+ "tower-service",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "hyper-util"
941
+ version = "0.1.20"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
944
+ dependencies = [
945
+ "base64",
946
+ "bytes",
947
+ "futures-channel",
948
+ "futures-util",
949
+ "http",
950
+ "http-body",
951
+ "hyper",
952
+ "ipnet",
953
+ "libc",
954
+ "percent-encoding",
955
+ "pin-project-lite",
956
+ "socket2",
957
+ "system-configuration",
958
+ "tokio",
959
+ "tower-service",
960
+ "tracing",
961
+ "windows-registry",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "iana-time-zone"
966
+ version = "0.1.65"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
969
+ dependencies = [
970
+ "android_system_properties",
971
+ "core-foundation-sys",
972
+ "iana-time-zone-haiku",
973
+ "js-sys",
974
+ "log",
975
+ "wasm-bindgen",
976
+ "windows-core",
977
+ ]
978
+
979
+ [[package]]
980
+ name = "iana-time-zone-haiku"
981
+ version = "0.1.2"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
984
+ dependencies = [
985
+ "cc",
986
+ ]
987
+
988
+ [[package]]
989
+ name = "icu_collections"
990
+ version = "2.1.1"
991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
992
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
993
+ dependencies = [
994
+ "displaydoc",
995
+ "potential_utf",
996
+ "yoke",
997
+ "zerofrom",
998
+ "zerovec",
999
+ ]
1000
+
1001
+ [[package]]
1002
+ name = "icu_locale_core"
1003
+ version = "2.1.1"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1006
+ dependencies = [
1007
+ "displaydoc",
1008
+ "litemap",
1009
+ "tinystr",
1010
+ "writeable",
1011
+ "zerovec",
1012
+ ]
1013
+
1014
+ [[package]]
1015
+ name = "icu_normalizer"
1016
+ version = "2.1.1"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1019
+ dependencies = [
1020
+ "icu_collections",
1021
+ "icu_normalizer_data",
1022
+ "icu_properties",
1023
+ "icu_provider",
1024
+ "smallvec",
1025
+ "zerovec",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "icu_normalizer_data"
1030
+ version = "2.1.1"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1033
+
1034
+ [[package]]
1035
+ name = "icu_properties"
1036
+ version = "2.1.2"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1039
+ dependencies = [
1040
+ "icu_collections",
1041
+ "icu_locale_core",
1042
+ "icu_properties_data",
1043
+ "icu_provider",
1044
+ "zerotrie",
1045
+ "zerovec",
1046
+ ]
1047
+
1048
+ [[package]]
1049
+ name = "icu_properties_data"
1050
+ version = "2.1.2"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1053
+
1054
+ [[package]]
1055
+ name = "icu_provider"
1056
+ version = "2.1.1"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1059
+ dependencies = [
1060
+ "displaydoc",
1061
+ "icu_locale_core",
1062
+ "writeable",
1063
+ "yoke",
1064
+ "zerofrom",
1065
+ "zerotrie",
1066
+ "zerovec",
1067
+ ]
1068
+
1069
+ [[package]]
1070
+ name = "id-arena"
1071
+ version = "2.3.0"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1074
+
1075
+ [[package]]
1076
+ name = "ident_case"
1077
+ version = "1.0.1"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1080
+
1081
+ [[package]]
1082
+ name = "idna"
1083
+ version = "1.1.0"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1086
+ dependencies = [
1087
+ "idna_adapter",
1088
+ "smallvec",
1089
+ "utf8_iter",
1090
+ ]
1091
+
1092
+ [[package]]
1093
+ name = "idna_adapter"
1094
+ version = "1.2.1"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1097
+ dependencies = [
1098
+ "icu_normalizer",
1099
+ "icu_properties",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "indexmap"
1104
+ version = "2.13.0"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1107
+ dependencies = [
1108
+ "equivalent",
1109
+ "hashbrown 0.16.1",
1110
+ "serde",
1111
+ "serde_core",
1112
+ ]
1113
+
1114
+ [[package]]
1115
+ name = "ipnet"
1116
+ version = "2.12.0"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1119
+
1120
+ [[package]]
1121
+ name = "iri-string"
1122
+ version = "0.7.10"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
1125
+ dependencies = [
1126
+ "memchr",
1127
+ "serde",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "itertools"
1132
+ version = "0.14.0"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1135
+ dependencies = [
1136
+ "either",
1137
+ ]
1138
+
1139
+ [[package]]
1140
+ name = "itoa"
1141
+ version = "1.0.17"
1142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1144
+
1145
+ [[package]]
1146
+ name = "jni"
1147
+ version = "0.21.1"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
1150
+ dependencies = [
1151
+ "cesu8",
1152
+ "cfg-if",
1153
+ "combine",
1154
+ "jni-sys 0.3.1",
1155
+ "log",
1156
+ "thiserror 1.0.69",
1157
+ "walkdir",
1158
+ "windows-sys 0.45.0",
1159
+ ]
1160
+
1161
+ [[package]]
1162
+ name = "jni-sys"
1163
+ version = "0.3.1"
1164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1165
+ checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
1166
+ dependencies = [
1167
+ "jni-sys 0.4.1",
1168
+ ]
1169
+
1170
+ [[package]]
1171
+ name = "jni-sys"
1172
+ version = "0.4.1"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
1175
+ dependencies = [
1176
+ "jni-sys-macros",
1177
+ ]
1178
+
1179
+ [[package]]
1180
+ name = "jni-sys-macros"
1181
+ version = "0.4.1"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
1184
+ dependencies = [
1185
+ "quote",
1186
+ "syn",
1187
+ ]
1188
+
1189
+ [[package]]
1190
+ name = "jobserver"
1191
+ version = "0.1.34"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1194
+ dependencies = [
1195
+ "getrandom 0.3.4",
1196
+ "libc",
1197
+ ]
1198
+
1199
+ [[package]]
1200
+ name = "js-sys"
1201
+ version = "0.3.91"
1202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1203
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
1204
+ dependencies = [
1205
+ "once_cell",
1206
+ "wasm-bindgen",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "jsonwebtoken"
1211
+ version = "10.3.0"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "0529410abe238729a60b108898784df8984c87f6054c9c4fcacc47e4803c1ce1"
1214
+ dependencies = [
1215
+ "base64",
1216
+ "ed25519-dalek",
1217
+ "getrandom 0.2.17",
1218
+ "hmac",
1219
+ "js-sys",
1220
+ "p256",
1221
+ "p384",
1222
+ "pem",
1223
+ "rand 0.8.5",
1224
+ "rsa",
1225
+ "serde",
1226
+ "serde_json",
1227
+ "sha2 0.10.9",
1228
+ "signature",
1229
+ "simple_asn1",
1230
+ ]
1231
+
1232
+ [[package]]
1233
+ name = "lazy_static"
1234
+ version = "1.5.0"
1235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1237
+ dependencies = [
1238
+ "spin",
1239
+ ]
1240
+
1241
+ [[package]]
1242
+ name = "leb128fmt"
1243
+ version = "0.1.0"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1246
+
1247
+ [[package]]
1248
+ name = "libc"
1249
+ version = "0.2.183"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
1252
+
1253
+ [[package]]
1254
+ name = "libm"
1255
+ version = "0.2.16"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1258
+
1259
+ [[package]]
1260
+ name = "libredox"
1261
+ version = "0.1.14"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "1744e39d1d6a9948f4f388969627434e31128196de472883b39f148769bfe30a"
1264
+ dependencies = [
1265
+ "libc",
1266
+ ]
1267
+
1268
+ [[package]]
1269
+ name = "libsqlite3-sys"
1270
+ version = "0.37.0"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "b1f111c8c41e7c61a49cd34e44c7619462967221a6443b0ec299e0ac30cfb9b1"
1273
+ dependencies = [
1274
+ "cc",
1275
+ "pkg-config",
1276
+ "vcpkg",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "linux-raw-sys"
1281
+ version = "0.12.1"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1284
+
1285
+ [[package]]
1286
+ name = "litemap"
1287
+ version = "0.8.1"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1290
+
1291
+ [[package]]
1292
+ name = "lock_api"
1293
+ version = "0.4.14"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1296
+ dependencies = [
1297
+ "scopeguard",
1298
+ ]
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 = "matchers"
1314
+ version = "0.2.0"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1317
+ dependencies = [
1318
+ "regex-automata",
1319
+ ]
1320
+
1321
+ [[package]]
1322
+ name = "md-5"
1323
+ version = "0.10.6"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
1326
+ dependencies = [
1327
+ "cfg-if",
1328
+ "digest 0.10.7",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "memchr"
1333
+ version = "2.8.0"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1336
+
1337
+ [[package]]
1338
+ name = "mime"
1339
+ version = "0.3.17"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1342
+
1343
+ [[package]]
1344
+ name = "mime_guess"
1345
+ version = "2.0.5"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
1348
+ dependencies = [
1349
+ "mime",
1350
+ "unicase",
1351
+ ]
1352
+
1353
+ [[package]]
1354
+ name = "mio"
1355
+ version = "1.1.1"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1358
+ dependencies = [
1359
+ "libc",
1360
+ "wasi",
1361
+ "windows-sys 0.61.2",
1362
+ ]
1363
+
1364
+ [[package]]
1365
+ name = "nagi-core"
1366
+ version = "0.0.1"
1367
+ dependencies = [
1368
+ "async-trait",
1369
+ "base64",
1370
+ "chrono",
1371
+ "croner",
1372
+ "dirs",
1373
+ "humantime",
1374
+ "jsonwebtoken",
1375
+ "object_store",
1376
+ "pyo3",
1377
+ "reqwest 0.13.2",
1378
+ "rsa",
1379
+ "rusqlite",
1380
+ "schemars",
1381
+ "serde",
1382
+ "serde_json",
1383
+ "serde_yaml",
1384
+ "sha2 0.11.0",
1385
+ "sqlparser",
1386
+ "tempfile",
1387
+ "thiserror 2.0.18",
1388
+ "tokio",
1389
+ "tracing",
1390
+ "tracing-subscriber",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "nagi-schema-gen"
1395
+ version = "0.1.0"
1396
+ dependencies = [
1397
+ "nagi-core",
1398
+ ]
1399
+
1400
+ [[package]]
1401
+ name = "nu-ansi-term"
1402
+ version = "0.50.3"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1405
+ dependencies = [
1406
+ "windows-sys 0.61.2",
1407
+ ]
1408
+
1409
+ [[package]]
1410
+ name = "num-bigint"
1411
+ version = "0.4.6"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1414
+ dependencies = [
1415
+ "num-integer",
1416
+ "num-traits",
1417
+ ]
1418
+
1419
+ [[package]]
1420
+ name = "num-bigint-dig"
1421
+ version = "0.8.6"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
1424
+ dependencies = [
1425
+ "lazy_static",
1426
+ "libm",
1427
+ "num-integer",
1428
+ "num-iter",
1429
+ "num-traits",
1430
+ "rand 0.8.5",
1431
+ "smallvec",
1432
+ "zeroize",
1433
+ ]
1434
+
1435
+ [[package]]
1436
+ name = "num-conv"
1437
+ version = "0.2.0"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
1440
+
1441
+ [[package]]
1442
+ name = "num-integer"
1443
+ version = "0.1.46"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1446
+ dependencies = [
1447
+ "num-traits",
1448
+ ]
1449
+
1450
+ [[package]]
1451
+ name = "num-iter"
1452
+ version = "0.1.45"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1455
+ dependencies = [
1456
+ "autocfg",
1457
+ "num-integer",
1458
+ "num-traits",
1459
+ ]
1460
+
1461
+ [[package]]
1462
+ name = "num-traits"
1463
+ version = "0.2.19"
1464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1465
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1466
+ dependencies = [
1467
+ "autocfg",
1468
+ "libm",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "object"
1473
+ version = "0.37.3"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
1476
+ dependencies = [
1477
+ "memchr",
1478
+ ]
1479
+
1480
+ [[package]]
1481
+ name = "object_store"
1482
+ version = "0.13.2"
1483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1484
+ checksum = "622acbc9100d3c10e2ee15804b0caa40e55c933d5aa53814cd520805b7958a49"
1485
+ dependencies = [
1486
+ "async-trait",
1487
+ "base64",
1488
+ "bytes",
1489
+ "chrono",
1490
+ "form_urlencoded",
1491
+ "futures-channel",
1492
+ "futures-core",
1493
+ "futures-util",
1494
+ "http",
1495
+ "http-body-util",
1496
+ "humantime",
1497
+ "hyper",
1498
+ "itertools",
1499
+ "md-5",
1500
+ "parking_lot",
1501
+ "percent-encoding",
1502
+ "quick-xml",
1503
+ "rand 0.10.0",
1504
+ "reqwest 0.12.28",
1505
+ "ring",
1506
+ "rustls-pki-types",
1507
+ "serde",
1508
+ "serde_json",
1509
+ "serde_urlencoded",
1510
+ "thiserror 2.0.18",
1511
+ "tokio",
1512
+ "tracing",
1513
+ "url",
1514
+ "walkdir",
1515
+ "wasm-bindgen-futures",
1516
+ "web-time",
1517
+ ]
1518
+
1519
+ [[package]]
1520
+ name = "once_cell"
1521
+ version = "1.21.4"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1524
+
1525
+ [[package]]
1526
+ name = "openssl-probe"
1527
+ version = "0.2.1"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1530
+
1531
+ [[package]]
1532
+ name = "option-ext"
1533
+ version = "0.2.0"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1536
+
1537
+ [[package]]
1538
+ name = "p256"
1539
+ version = "0.13.2"
1540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1541
+ checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
1542
+ dependencies = [
1543
+ "ecdsa",
1544
+ "elliptic-curve",
1545
+ "primeorder",
1546
+ "sha2 0.10.9",
1547
+ ]
1548
+
1549
+ [[package]]
1550
+ name = "p384"
1551
+ version = "0.13.1"
1552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1553
+ checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
1554
+ dependencies = [
1555
+ "ecdsa",
1556
+ "elliptic-curve",
1557
+ "primeorder",
1558
+ "sha2 0.10.9",
1559
+ ]
1560
+
1561
+ [[package]]
1562
+ name = "parking_lot"
1563
+ version = "0.12.5"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1566
+ dependencies = [
1567
+ "lock_api",
1568
+ "parking_lot_core",
1569
+ ]
1570
+
1571
+ [[package]]
1572
+ name = "parking_lot_core"
1573
+ version = "0.9.12"
1574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1575
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1576
+ dependencies = [
1577
+ "cfg-if",
1578
+ "libc",
1579
+ "redox_syscall",
1580
+ "smallvec",
1581
+ "windows-link",
1582
+ ]
1583
+
1584
+ [[package]]
1585
+ name = "pem"
1586
+ version = "3.0.6"
1587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1588
+ checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
1589
+ dependencies = [
1590
+ "base64",
1591
+ "serde_core",
1592
+ ]
1593
+
1594
+ [[package]]
1595
+ name = "pem-rfc7468"
1596
+ version = "0.7.0"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
1599
+ dependencies = [
1600
+ "base64ct",
1601
+ ]
1602
+
1603
+ [[package]]
1604
+ name = "percent-encoding"
1605
+ version = "2.3.2"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1608
+
1609
+ [[package]]
1610
+ name = "pin-project-lite"
1611
+ version = "0.2.17"
1612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1613
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1614
+
1615
+ [[package]]
1616
+ name = "pin-utils"
1617
+ version = "0.1.0"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1620
+
1621
+ [[package]]
1622
+ name = "pkcs1"
1623
+ version = "0.7.5"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
1626
+ dependencies = [
1627
+ "der",
1628
+ "pkcs8",
1629
+ "spki",
1630
+ ]
1631
+
1632
+ [[package]]
1633
+ name = "pkcs8"
1634
+ version = "0.10.2"
1635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1636
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
1637
+ dependencies = [
1638
+ "der",
1639
+ "spki",
1640
+ ]
1641
+
1642
+ [[package]]
1643
+ name = "pkg-config"
1644
+ version = "0.3.32"
1645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1647
+
1648
+ [[package]]
1649
+ name = "portable-atomic"
1650
+ version = "1.13.1"
1651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1653
+
1654
+ [[package]]
1655
+ name = "potential_utf"
1656
+ version = "0.1.4"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1659
+ dependencies = [
1660
+ "zerovec",
1661
+ ]
1662
+
1663
+ [[package]]
1664
+ name = "powerfmt"
1665
+ version = "0.2.0"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1668
+
1669
+ [[package]]
1670
+ name = "ppv-lite86"
1671
+ version = "0.2.21"
1672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1673
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1674
+ dependencies = [
1675
+ "zerocopy",
1676
+ ]
1677
+
1678
+ [[package]]
1679
+ name = "prettyplease"
1680
+ version = "0.2.37"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1683
+ dependencies = [
1684
+ "proc-macro2",
1685
+ "syn",
1686
+ ]
1687
+
1688
+ [[package]]
1689
+ name = "primeorder"
1690
+ version = "0.13.6"
1691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1692
+ checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
1693
+ dependencies = [
1694
+ "elliptic-curve",
1695
+ ]
1696
+
1697
+ [[package]]
1698
+ name = "proc-macro2"
1699
+ version = "1.0.106"
1700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1701
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1702
+ dependencies = [
1703
+ "unicode-ident",
1704
+ ]
1705
+
1706
+ [[package]]
1707
+ name = "psm"
1708
+ version = "0.1.30"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "3852766467df634d74f0b2d7819bf8dc483a0eb2e3b0f50f756f9cfe8b0d18d8"
1711
+ dependencies = [
1712
+ "ar_archive_writer",
1713
+ "cc",
1714
+ ]
1715
+
1716
+ [[package]]
1717
+ name = "pyo3"
1718
+ version = "0.28.2"
1719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1720
+ checksum = "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1"
1721
+ dependencies = [
1722
+ "libc",
1723
+ "once_cell",
1724
+ "portable-atomic",
1725
+ "pyo3-build-config",
1726
+ "pyo3-ffi",
1727
+ "pyo3-macros",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "pyo3-build-config"
1732
+ version = "0.28.2"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7"
1735
+ dependencies = [
1736
+ "target-lexicon",
1737
+ ]
1738
+
1739
+ [[package]]
1740
+ name = "pyo3-ffi"
1741
+ version = "0.28.2"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc"
1744
+ dependencies = [
1745
+ "libc",
1746
+ "pyo3-build-config",
1747
+ ]
1748
+
1749
+ [[package]]
1750
+ name = "pyo3-macros"
1751
+ version = "0.28.2"
1752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1753
+ checksum = "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e"
1754
+ dependencies = [
1755
+ "proc-macro2",
1756
+ "pyo3-macros-backend",
1757
+ "quote",
1758
+ "syn",
1759
+ ]
1760
+
1761
+ [[package]]
1762
+ name = "pyo3-macros-backend"
1763
+ version = "0.28.2"
1764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1765
+ checksum = "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a"
1766
+ dependencies = [
1767
+ "heck",
1768
+ "proc-macro2",
1769
+ "pyo3-build-config",
1770
+ "quote",
1771
+ "syn",
1772
+ ]
1773
+
1774
+ [[package]]
1775
+ name = "quick-xml"
1776
+ version = "0.39.2"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "958f21e8e7ceb5a1aa7fa87fab28e7c75976e0bfe7e23ff069e0a260f894067d"
1779
+ dependencies = [
1780
+ "memchr",
1781
+ "serde",
1782
+ ]
1783
+
1784
+ [[package]]
1785
+ name = "quinn"
1786
+ version = "0.11.9"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
1789
+ dependencies = [
1790
+ "bytes",
1791
+ "cfg_aliases",
1792
+ "pin-project-lite",
1793
+ "quinn-proto",
1794
+ "quinn-udp",
1795
+ "rustc-hash",
1796
+ "rustls",
1797
+ "socket2",
1798
+ "thiserror 2.0.18",
1799
+ "tokio",
1800
+ "tracing",
1801
+ "web-time",
1802
+ ]
1803
+
1804
+ [[package]]
1805
+ name = "quinn-proto"
1806
+ version = "0.11.14"
1807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1808
+ checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
1809
+ dependencies = [
1810
+ "aws-lc-rs",
1811
+ "bytes",
1812
+ "getrandom 0.3.4",
1813
+ "lru-slab",
1814
+ "rand 0.9.2",
1815
+ "ring",
1816
+ "rustc-hash",
1817
+ "rustls",
1818
+ "rustls-pki-types",
1819
+ "slab",
1820
+ "thiserror 2.0.18",
1821
+ "tinyvec",
1822
+ "tracing",
1823
+ "web-time",
1824
+ ]
1825
+
1826
+ [[package]]
1827
+ name = "quinn-udp"
1828
+ version = "0.5.14"
1829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1830
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
1831
+ dependencies = [
1832
+ "cfg_aliases",
1833
+ "libc",
1834
+ "once_cell",
1835
+ "socket2",
1836
+ "tracing",
1837
+ "windows-sys 0.59.0",
1838
+ ]
1839
+
1840
+ [[package]]
1841
+ name = "quote"
1842
+ version = "1.0.45"
1843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1844
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1845
+ dependencies = [
1846
+ "proc-macro2",
1847
+ ]
1848
+
1849
+ [[package]]
1850
+ name = "r-efi"
1851
+ version = "5.3.0"
1852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1853
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1854
+
1855
+ [[package]]
1856
+ name = "r-efi"
1857
+ version = "6.0.0"
1858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1859
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1860
+
1861
+ [[package]]
1862
+ name = "rand"
1863
+ version = "0.8.5"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1866
+ dependencies = [
1867
+ "libc",
1868
+ "rand_chacha 0.3.1",
1869
+ "rand_core 0.6.4",
1870
+ ]
1871
+
1872
+ [[package]]
1873
+ name = "rand"
1874
+ version = "0.9.2"
1875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1876
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1877
+ dependencies = [
1878
+ "rand_chacha 0.9.0",
1879
+ "rand_core 0.9.5",
1880
+ ]
1881
+
1882
+ [[package]]
1883
+ name = "rand"
1884
+ version = "0.10.0"
1885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1886
+ checksum = "bc266eb313df6c5c09c1c7b1fbe2510961e5bcd3add930c1e31f7ed9da0feff8"
1887
+ dependencies = [
1888
+ "chacha20",
1889
+ "getrandom 0.4.2",
1890
+ "rand_core 0.10.0",
1891
+ ]
1892
+
1893
+ [[package]]
1894
+ name = "rand_chacha"
1895
+ version = "0.3.1"
1896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1897
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1898
+ dependencies = [
1899
+ "ppv-lite86",
1900
+ "rand_core 0.6.4",
1901
+ ]
1902
+
1903
+ [[package]]
1904
+ name = "rand_chacha"
1905
+ version = "0.9.0"
1906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1907
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1908
+ dependencies = [
1909
+ "ppv-lite86",
1910
+ "rand_core 0.9.5",
1911
+ ]
1912
+
1913
+ [[package]]
1914
+ name = "rand_core"
1915
+ version = "0.6.4"
1916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1917
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1918
+ dependencies = [
1919
+ "getrandom 0.2.17",
1920
+ ]
1921
+
1922
+ [[package]]
1923
+ name = "rand_core"
1924
+ version = "0.9.5"
1925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1926
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1927
+ dependencies = [
1928
+ "getrandom 0.3.4",
1929
+ ]
1930
+
1931
+ [[package]]
1932
+ name = "rand_core"
1933
+ version = "0.10.0"
1934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1935
+ checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba"
1936
+
1937
+ [[package]]
1938
+ name = "recursive"
1939
+ version = "0.1.1"
1940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1941
+ checksum = "0786a43debb760f491b1bc0269fe5e84155353c67482b9e60d0cfb596054b43e"
1942
+ dependencies = [
1943
+ "recursive-proc-macro-impl",
1944
+ "stacker",
1945
+ ]
1946
+
1947
+ [[package]]
1948
+ name = "recursive-proc-macro-impl"
1949
+ version = "0.1.1"
1950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1951
+ checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
1952
+ dependencies = [
1953
+ "quote",
1954
+ "syn",
1955
+ ]
1956
+
1957
+ [[package]]
1958
+ name = "redox_syscall"
1959
+ version = "0.5.18"
1960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1961
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1962
+ dependencies = [
1963
+ "bitflags",
1964
+ ]
1965
+
1966
+ [[package]]
1967
+ name = "redox_users"
1968
+ version = "0.5.2"
1969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1970
+ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
1971
+ dependencies = [
1972
+ "getrandom 0.2.17",
1973
+ "libredox",
1974
+ "thiserror 2.0.18",
1975
+ ]
1976
+
1977
+ [[package]]
1978
+ name = "ref-cast"
1979
+ version = "1.0.25"
1980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1981
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
1982
+ dependencies = [
1983
+ "ref-cast-impl",
1984
+ ]
1985
+
1986
+ [[package]]
1987
+ name = "ref-cast-impl"
1988
+ version = "1.0.25"
1989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1990
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
1991
+ dependencies = [
1992
+ "proc-macro2",
1993
+ "quote",
1994
+ "syn",
1995
+ ]
1996
+
1997
+ [[package]]
1998
+ name = "regex-automata"
1999
+ version = "0.4.14"
2000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2001
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2002
+ dependencies = [
2003
+ "aho-corasick",
2004
+ "memchr",
2005
+ "regex-syntax",
2006
+ ]
2007
+
2008
+ [[package]]
2009
+ name = "regex-syntax"
2010
+ version = "0.8.10"
2011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2012
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
2013
+
2014
+ [[package]]
2015
+ name = "reqwest"
2016
+ version = "0.12.28"
2017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2018
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2019
+ dependencies = [
2020
+ "base64",
2021
+ "bytes",
2022
+ "futures-core",
2023
+ "futures-util",
2024
+ "h2",
2025
+ "http",
2026
+ "http-body",
2027
+ "http-body-util",
2028
+ "hyper",
2029
+ "hyper-rustls",
2030
+ "hyper-util",
2031
+ "js-sys",
2032
+ "log",
2033
+ "percent-encoding",
2034
+ "pin-project-lite",
2035
+ "quinn",
2036
+ "rustls",
2037
+ "rustls-native-certs",
2038
+ "rustls-pki-types",
2039
+ "serde",
2040
+ "serde_json",
2041
+ "serde_urlencoded",
2042
+ "sync_wrapper",
2043
+ "tokio",
2044
+ "tokio-rustls",
2045
+ "tokio-util",
2046
+ "tower",
2047
+ "tower-http",
2048
+ "tower-service",
2049
+ "url",
2050
+ "wasm-bindgen",
2051
+ "wasm-bindgen-futures",
2052
+ "wasm-streams",
2053
+ "web-sys",
2054
+ ]
2055
+
2056
+ [[package]]
2057
+ name = "reqwest"
2058
+ version = "0.13.2"
2059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2060
+ checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801"
2061
+ dependencies = [
2062
+ "base64",
2063
+ "bytes",
2064
+ "encoding_rs",
2065
+ "futures-core",
2066
+ "futures-util",
2067
+ "h2",
2068
+ "http",
2069
+ "http-body",
2070
+ "http-body-util",
2071
+ "hyper",
2072
+ "hyper-rustls",
2073
+ "hyper-util",
2074
+ "js-sys",
2075
+ "log",
2076
+ "mime",
2077
+ "mime_guess",
2078
+ "percent-encoding",
2079
+ "pin-project-lite",
2080
+ "quinn",
2081
+ "rustls",
2082
+ "rustls-pki-types",
2083
+ "rustls-platform-verifier",
2084
+ "serde",
2085
+ "serde_json",
2086
+ "serde_urlencoded",
2087
+ "sync_wrapper",
2088
+ "tokio",
2089
+ "tokio-rustls",
2090
+ "tower",
2091
+ "tower-http",
2092
+ "tower-service",
2093
+ "url",
2094
+ "wasm-bindgen",
2095
+ "wasm-bindgen-futures",
2096
+ "web-sys",
2097
+ ]
2098
+
2099
+ [[package]]
2100
+ name = "rfc6979"
2101
+ version = "0.4.0"
2102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2103
+ checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
2104
+ dependencies = [
2105
+ "hmac",
2106
+ "subtle",
2107
+ ]
2108
+
2109
+ [[package]]
2110
+ name = "ring"
2111
+ version = "0.17.14"
2112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2113
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2114
+ dependencies = [
2115
+ "cc",
2116
+ "cfg-if",
2117
+ "getrandom 0.2.17",
2118
+ "libc",
2119
+ "untrusted",
2120
+ "windows-sys 0.52.0",
2121
+ ]
2122
+
2123
+ [[package]]
2124
+ name = "rsa"
2125
+ version = "0.9.10"
2126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2127
+ checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
2128
+ dependencies = [
2129
+ "const-oid 0.9.6",
2130
+ "digest 0.10.7",
2131
+ "num-bigint-dig",
2132
+ "num-integer",
2133
+ "num-traits",
2134
+ "pkcs1",
2135
+ "pkcs8",
2136
+ "rand_core 0.6.4",
2137
+ "signature",
2138
+ "spki",
2139
+ "subtle",
2140
+ "zeroize",
2141
+ ]
2142
+
2143
+ [[package]]
2144
+ name = "rsqlite-vfs"
2145
+ version = "0.1.0"
2146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2147
+ checksum = "a8a1f2315036ef6b1fbacd1972e8ee7688030b0a2121edfc2a6550febd41574d"
2148
+ dependencies = [
2149
+ "hashbrown 0.16.1",
2150
+ "thiserror 2.0.18",
2151
+ ]
2152
+
2153
+ [[package]]
2154
+ name = "rusqlite"
2155
+ version = "0.39.0"
2156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2157
+ checksum = "a0d2b0146dd9661bf67bb107c0bb2a55064d556eeb3fc314151b957f313bcd4e"
2158
+ dependencies = [
2159
+ "bitflags",
2160
+ "fallible-iterator",
2161
+ "fallible-streaming-iterator",
2162
+ "hashlink",
2163
+ "libsqlite3-sys",
2164
+ "smallvec",
2165
+ "sqlite-wasm-rs",
2166
+ ]
2167
+
2168
+ [[package]]
2169
+ name = "rustc-hash"
2170
+ version = "2.1.1"
2171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2172
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2173
+
2174
+ [[package]]
2175
+ name = "rustc_version"
2176
+ version = "0.4.1"
2177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2178
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2179
+ dependencies = [
2180
+ "semver",
2181
+ ]
2182
+
2183
+ [[package]]
2184
+ name = "rustix"
2185
+ version = "1.1.4"
2186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2187
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2188
+ dependencies = [
2189
+ "bitflags",
2190
+ "errno",
2191
+ "libc",
2192
+ "linux-raw-sys",
2193
+ "windows-sys 0.61.2",
2194
+ ]
2195
+
2196
+ [[package]]
2197
+ name = "rustls"
2198
+ version = "0.23.37"
2199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+ checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
2201
+ dependencies = [
2202
+ "aws-lc-rs",
2203
+ "once_cell",
2204
+ "ring",
2205
+ "rustls-pki-types",
2206
+ "rustls-webpki",
2207
+ "subtle",
2208
+ "zeroize",
2209
+ ]
2210
+
2211
+ [[package]]
2212
+ name = "rustls-native-certs"
2213
+ version = "0.8.3"
2214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2215
+ checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
2216
+ dependencies = [
2217
+ "openssl-probe",
2218
+ "rustls-pki-types",
2219
+ "schannel",
2220
+ "security-framework",
2221
+ ]
2222
+
2223
+ [[package]]
2224
+ name = "rustls-pki-types"
2225
+ version = "1.14.0"
2226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2227
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
2228
+ dependencies = [
2229
+ "web-time",
2230
+ "zeroize",
2231
+ ]
2232
+
2233
+ [[package]]
2234
+ name = "rustls-platform-verifier"
2235
+ version = "0.6.2"
2236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2237
+ checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
2238
+ dependencies = [
2239
+ "core-foundation 0.10.1",
2240
+ "core-foundation-sys",
2241
+ "jni",
2242
+ "log",
2243
+ "once_cell",
2244
+ "rustls",
2245
+ "rustls-native-certs",
2246
+ "rustls-platform-verifier-android",
2247
+ "rustls-webpki",
2248
+ "security-framework",
2249
+ "security-framework-sys",
2250
+ "webpki-root-certs",
2251
+ "windows-sys 0.61.2",
2252
+ ]
2253
+
2254
+ [[package]]
2255
+ name = "rustls-platform-verifier-android"
2256
+ version = "0.1.1"
2257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2258
+ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
2259
+
2260
+ [[package]]
2261
+ name = "rustls-webpki"
2262
+ version = "0.103.10"
2263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2264
+ checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef"
2265
+ dependencies = [
2266
+ "aws-lc-rs",
2267
+ "ring",
2268
+ "rustls-pki-types",
2269
+ "untrusted",
2270
+ ]
2271
+
2272
+ [[package]]
2273
+ name = "rustversion"
2274
+ version = "1.0.22"
2275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2276
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2277
+
2278
+ [[package]]
2279
+ name = "ryu"
2280
+ version = "1.0.23"
2281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2282
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2283
+
2284
+ [[package]]
2285
+ name = "same-file"
2286
+ version = "1.0.6"
2287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2288
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2289
+ dependencies = [
2290
+ "winapi-util",
2291
+ ]
2292
+
2293
+ [[package]]
2294
+ name = "schannel"
2295
+ version = "0.1.29"
2296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2297
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
2298
+ dependencies = [
2299
+ "windows-sys 0.61.2",
2300
+ ]
2301
+
2302
+ [[package]]
2303
+ name = "schemars"
2304
+ version = "1.2.1"
2305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2306
+ checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
2307
+ dependencies = [
2308
+ "dyn-clone",
2309
+ "ref-cast",
2310
+ "schemars_derive",
2311
+ "serde",
2312
+ "serde_json",
2313
+ ]
2314
+
2315
+ [[package]]
2316
+ name = "schemars_derive"
2317
+ version = "1.2.1"
2318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2319
+ checksum = "7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f"
2320
+ dependencies = [
2321
+ "proc-macro2",
2322
+ "quote",
2323
+ "serde_derive_internals",
2324
+ "syn",
2325
+ ]
2326
+
2327
+ [[package]]
2328
+ name = "scopeguard"
2329
+ version = "1.2.0"
2330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2331
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2332
+
2333
+ [[package]]
2334
+ name = "sec1"
2335
+ version = "0.7.3"
2336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2337
+ checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
2338
+ dependencies = [
2339
+ "base16ct",
2340
+ "der",
2341
+ "generic-array",
2342
+ "pkcs8",
2343
+ "subtle",
2344
+ "zeroize",
2345
+ ]
2346
+
2347
+ [[package]]
2348
+ name = "security-framework"
2349
+ version = "3.7.0"
2350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2351
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
2352
+ dependencies = [
2353
+ "bitflags",
2354
+ "core-foundation 0.10.1",
2355
+ "core-foundation-sys",
2356
+ "libc",
2357
+ "security-framework-sys",
2358
+ ]
2359
+
2360
+ [[package]]
2361
+ name = "security-framework-sys"
2362
+ version = "2.17.0"
2363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2364
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2365
+ dependencies = [
2366
+ "core-foundation-sys",
2367
+ "libc",
2368
+ ]
2369
+
2370
+ [[package]]
2371
+ name = "semver"
2372
+ version = "1.0.27"
2373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2374
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
2375
+
2376
+ [[package]]
2377
+ name = "serde"
2378
+ version = "1.0.228"
2379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2380
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2381
+ dependencies = [
2382
+ "serde_core",
2383
+ "serde_derive",
2384
+ ]
2385
+
2386
+ [[package]]
2387
+ name = "serde_core"
2388
+ version = "1.0.228"
2389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2390
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2391
+ dependencies = [
2392
+ "serde_derive",
2393
+ ]
2394
+
2395
+ [[package]]
2396
+ name = "serde_derive"
2397
+ version = "1.0.228"
2398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2399
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2400
+ dependencies = [
2401
+ "proc-macro2",
2402
+ "quote",
2403
+ "syn",
2404
+ ]
2405
+
2406
+ [[package]]
2407
+ name = "serde_derive_internals"
2408
+ version = "0.29.1"
2409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2410
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
2411
+ dependencies = [
2412
+ "proc-macro2",
2413
+ "quote",
2414
+ "syn",
2415
+ ]
2416
+
2417
+ [[package]]
2418
+ name = "serde_json"
2419
+ version = "1.0.149"
2420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2421
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2422
+ dependencies = [
2423
+ "itoa",
2424
+ "memchr",
2425
+ "serde",
2426
+ "serde_core",
2427
+ "zmij",
2428
+ ]
2429
+
2430
+ [[package]]
2431
+ name = "serde_urlencoded"
2432
+ version = "0.7.1"
2433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2434
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2435
+ dependencies = [
2436
+ "form_urlencoded",
2437
+ "itoa",
2438
+ "ryu",
2439
+ "serde",
2440
+ ]
2441
+
2442
+ [[package]]
2443
+ name = "serde_yaml"
2444
+ version = "0.9.34+deprecated"
2445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2446
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
2447
+ dependencies = [
2448
+ "indexmap",
2449
+ "itoa",
2450
+ "ryu",
2451
+ "serde",
2452
+ "unsafe-libyaml",
2453
+ ]
2454
+
2455
+ [[package]]
2456
+ name = "sha2"
2457
+ version = "0.10.9"
2458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2459
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2460
+ dependencies = [
2461
+ "cfg-if",
2462
+ "cpufeatures 0.2.17",
2463
+ "digest 0.10.7",
2464
+ ]
2465
+
2466
+ [[package]]
2467
+ name = "sha2"
2468
+ version = "0.11.0"
2469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2470
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
2471
+ dependencies = [
2472
+ "cfg-if",
2473
+ "cpufeatures 0.3.0",
2474
+ "digest 0.11.2",
2475
+ ]
2476
+
2477
+ [[package]]
2478
+ name = "sharded-slab"
2479
+ version = "0.1.7"
2480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2481
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2482
+ dependencies = [
2483
+ "lazy_static",
2484
+ ]
2485
+
2486
+ [[package]]
2487
+ name = "shlex"
2488
+ version = "1.3.0"
2489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2490
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2491
+
2492
+ [[package]]
2493
+ name = "signal-hook-registry"
2494
+ version = "1.4.8"
2495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2496
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2497
+ dependencies = [
2498
+ "errno",
2499
+ "libc",
2500
+ ]
2501
+
2502
+ [[package]]
2503
+ name = "signature"
2504
+ version = "2.2.0"
2505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2506
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
2507
+ dependencies = [
2508
+ "digest 0.10.7",
2509
+ "rand_core 0.6.4",
2510
+ ]
2511
+
2512
+ [[package]]
2513
+ name = "simple_asn1"
2514
+ version = "0.6.4"
2515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2516
+ checksum = "0d585997b0ac10be3c5ee635f1bab02d512760d14b7c468801ac8a01d9ae5f1d"
2517
+ dependencies = [
2518
+ "num-bigint",
2519
+ "num-traits",
2520
+ "thiserror 2.0.18",
2521
+ "time",
2522
+ ]
2523
+
2524
+ [[package]]
2525
+ name = "slab"
2526
+ version = "0.4.12"
2527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2528
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2529
+
2530
+ [[package]]
2531
+ name = "smallvec"
2532
+ version = "1.15.1"
2533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2534
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2535
+
2536
+ [[package]]
2537
+ name = "socket2"
2538
+ version = "0.6.3"
2539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2540
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
2541
+ dependencies = [
2542
+ "libc",
2543
+ "windows-sys 0.61.2",
2544
+ ]
2545
+
2546
+ [[package]]
2547
+ name = "spin"
2548
+ version = "0.9.8"
2549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2550
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2551
+
2552
+ [[package]]
2553
+ name = "spki"
2554
+ version = "0.7.3"
2555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2556
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
2557
+ dependencies = [
2558
+ "base64ct",
2559
+ "der",
2560
+ ]
2561
+
2562
+ [[package]]
2563
+ name = "sqlite-wasm-rs"
2564
+ version = "0.5.2"
2565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2566
+ checksum = "2f4206ed3a67690b9c29b77d728f6acc3ce78f16bf846d83c94f76400320181b"
2567
+ dependencies = [
2568
+ "cc",
2569
+ "js-sys",
2570
+ "rsqlite-vfs",
2571
+ "wasm-bindgen",
2572
+ ]
2573
+
2574
+ [[package]]
2575
+ name = "sqlparser"
2576
+ version = "0.61.0"
2577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2578
+ checksum = "dbf5ea8d4d7c808e1af1cbabebca9a2abe603bcefc22294c5b95018d53200cb7"
2579
+ dependencies = [
2580
+ "log",
2581
+ "recursive",
2582
+ ]
2583
+
2584
+ [[package]]
2585
+ name = "stable_deref_trait"
2586
+ version = "1.2.1"
2587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2588
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2589
+
2590
+ [[package]]
2591
+ name = "stacker"
2592
+ version = "0.1.23"
2593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2594
+ checksum = "08d74a23609d509411d10e2176dc2a4346e3b4aea2e7b1869f19fdedbc71c013"
2595
+ dependencies = [
2596
+ "cc",
2597
+ "cfg-if",
2598
+ "libc",
2599
+ "psm",
2600
+ "windows-sys 0.59.0",
2601
+ ]
2602
+
2603
+ [[package]]
2604
+ name = "strsim"
2605
+ version = "0.11.1"
2606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2607
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2608
+
2609
+ [[package]]
2610
+ name = "strum"
2611
+ version = "0.27.2"
2612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2613
+ checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
2614
+ dependencies = [
2615
+ "strum_macros",
2616
+ ]
2617
+
2618
+ [[package]]
2619
+ name = "strum_macros"
2620
+ version = "0.27.2"
2621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2622
+ checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
2623
+ dependencies = [
2624
+ "heck",
2625
+ "proc-macro2",
2626
+ "quote",
2627
+ "syn",
2628
+ ]
2629
+
2630
+ [[package]]
2631
+ name = "subtle"
2632
+ version = "2.6.1"
2633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2634
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2635
+
2636
+ [[package]]
2637
+ name = "syn"
2638
+ version = "2.0.117"
2639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2640
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2641
+ dependencies = [
2642
+ "proc-macro2",
2643
+ "quote",
2644
+ "unicode-ident",
2645
+ ]
2646
+
2647
+ [[package]]
2648
+ name = "sync_wrapper"
2649
+ version = "1.0.2"
2650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2651
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2652
+ dependencies = [
2653
+ "futures-core",
2654
+ ]
2655
+
2656
+ [[package]]
2657
+ name = "synstructure"
2658
+ version = "0.13.2"
2659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2660
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2661
+ dependencies = [
2662
+ "proc-macro2",
2663
+ "quote",
2664
+ "syn",
2665
+ ]
2666
+
2667
+ [[package]]
2668
+ name = "system-configuration"
2669
+ version = "0.7.0"
2670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2671
+ checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
2672
+ dependencies = [
2673
+ "bitflags",
2674
+ "core-foundation 0.9.4",
2675
+ "system-configuration-sys",
2676
+ ]
2677
+
2678
+ [[package]]
2679
+ name = "system-configuration-sys"
2680
+ version = "0.6.0"
2681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2682
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2683
+ dependencies = [
2684
+ "core-foundation-sys",
2685
+ "libc",
2686
+ ]
2687
+
2688
+ [[package]]
2689
+ name = "target-lexicon"
2690
+ version = "0.13.5"
2691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2692
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2693
+
2694
+ [[package]]
2695
+ name = "tempfile"
2696
+ version = "3.27.0"
2697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2698
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2699
+ dependencies = [
2700
+ "fastrand",
2701
+ "getrandom 0.4.2",
2702
+ "once_cell",
2703
+ "rustix",
2704
+ "windows-sys 0.61.2",
2705
+ ]
2706
+
2707
+ [[package]]
2708
+ name = "thiserror"
2709
+ version = "1.0.69"
2710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2711
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2712
+ dependencies = [
2713
+ "thiserror-impl 1.0.69",
2714
+ ]
2715
+
2716
+ [[package]]
2717
+ name = "thiserror"
2718
+ version = "2.0.18"
2719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2720
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2721
+ dependencies = [
2722
+ "thiserror-impl 2.0.18",
2723
+ ]
2724
+
2725
+ [[package]]
2726
+ name = "thiserror-impl"
2727
+ version = "1.0.69"
2728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2729
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2730
+ dependencies = [
2731
+ "proc-macro2",
2732
+ "quote",
2733
+ "syn",
2734
+ ]
2735
+
2736
+ [[package]]
2737
+ name = "thiserror-impl"
2738
+ version = "2.0.18"
2739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2740
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2741
+ dependencies = [
2742
+ "proc-macro2",
2743
+ "quote",
2744
+ "syn",
2745
+ ]
2746
+
2747
+ [[package]]
2748
+ name = "thread_local"
2749
+ version = "1.1.9"
2750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2751
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2752
+ dependencies = [
2753
+ "cfg-if",
2754
+ ]
2755
+
2756
+ [[package]]
2757
+ name = "time"
2758
+ version = "0.3.47"
2759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2760
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
2761
+ dependencies = [
2762
+ "deranged",
2763
+ "itoa",
2764
+ "num-conv",
2765
+ "powerfmt",
2766
+ "serde_core",
2767
+ "time-core",
2768
+ "time-macros",
2769
+ ]
2770
+
2771
+ [[package]]
2772
+ name = "time-core"
2773
+ version = "0.1.8"
2774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2775
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
2776
+
2777
+ [[package]]
2778
+ name = "time-macros"
2779
+ version = "0.2.27"
2780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2781
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
2782
+ dependencies = [
2783
+ "num-conv",
2784
+ "time-core",
2785
+ ]
2786
+
2787
+ [[package]]
2788
+ name = "tinystr"
2789
+ version = "0.8.2"
2790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2791
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2792
+ dependencies = [
2793
+ "displaydoc",
2794
+ "zerovec",
2795
+ ]
2796
+
2797
+ [[package]]
2798
+ name = "tinyvec"
2799
+ version = "1.11.0"
2800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2801
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
2802
+ dependencies = [
2803
+ "tinyvec_macros",
2804
+ ]
2805
+
2806
+ [[package]]
2807
+ name = "tinyvec_macros"
2808
+ version = "0.1.1"
2809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2810
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2811
+
2812
+ [[package]]
2813
+ name = "tokio"
2814
+ version = "1.50.0"
2815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2816
+ checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
2817
+ dependencies = [
2818
+ "bytes",
2819
+ "libc",
2820
+ "mio",
2821
+ "pin-project-lite",
2822
+ "signal-hook-registry",
2823
+ "socket2",
2824
+ "tokio-macros",
2825
+ "windows-sys 0.61.2",
2826
+ ]
2827
+
2828
+ [[package]]
2829
+ name = "tokio-macros"
2830
+ version = "2.6.1"
2831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2832
+ checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
2833
+ dependencies = [
2834
+ "proc-macro2",
2835
+ "quote",
2836
+ "syn",
2837
+ ]
2838
+
2839
+ [[package]]
2840
+ name = "tokio-rustls"
2841
+ version = "0.26.4"
2842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2843
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2844
+ dependencies = [
2845
+ "rustls",
2846
+ "tokio",
2847
+ ]
2848
+
2849
+ [[package]]
2850
+ name = "tokio-util"
2851
+ version = "0.7.18"
2852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2853
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2854
+ dependencies = [
2855
+ "bytes",
2856
+ "futures-core",
2857
+ "futures-sink",
2858
+ "pin-project-lite",
2859
+ "tokio",
2860
+ ]
2861
+
2862
+ [[package]]
2863
+ name = "tower"
2864
+ version = "0.5.3"
2865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2866
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2867
+ dependencies = [
2868
+ "futures-core",
2869
+ "futures-util",
2870
+ "pin-project-lite",
2871
+ "sync_wrapper",
2872
+ "tokio",
2873
+ "tower-layer",
2874
+ "tower-service",
2875
+ ]
2876
+
2877
+ [[package]]
2878
+ name = "tower-http"
2879
+ version = "0.6.8"
2880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2881
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
2882
+ dependencies = [
2883
+ "bitflags",
2884
+ "bytes",
2885
+ "futures-util",
2886
+ "http",
2887
+ "http-body",
2888
+ "iri-string",
2889
+ "pin-project-lite",
2890
+ "tower",
2891
+ "tower-layer",
2892
+ "tower-service",
2893
+ ]
2894
+
2895
+ [[package]]
2896
+ name = "tower-layer"
2897
+ version = "0.3.3"
2898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2899
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2900
+
2901
+ [[package]]
2902
+ name = "tower-service"
2903
+ version = "0.3.3"
2904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2905
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2906
+
2907
+ [[package]]
2908
+ name = "tracing"
2909
+ version = "0.1.44"
2910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2911
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2912
+ dependencies = [
2913
+ "pin-project-lite",
2914
+ "tracing-attributes",
2915
+ "tracing-core",
2916
+ ]
2917
+
2918
+ [[package]]
2919
+ name = "tracing-attributes"
2920
+ version = "0.1.31"
2921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2922
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2923
+ dependencies = [
2924
+ "proc-macro2",
2925
+ "quote",
2926
+ "syn",
2927
+ ]
2928
+
2929
+ [[package]]
2930
+ name = "tracing-core"
2931
+ version = "0.1.36"
2932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2933
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2934
+ dependencies = [
2935
+ "once_cell",
2936
+ "valuable",
2937
+ ]
2938
+
2939
+ [[package]]
2940
+ name = "tracing-log"
2941
+ version = "0.2.0"
2942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2943
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2944
+ dependencies = [
2945
+ "log",
2946
+ "once_cell",
2947
+ "tracing-core",
2948
+ ]
2949
+
2950
+ [[package]]
2951
+ name = "tracing-subscriber"
2952
+ version = "0.3.23"
2953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2954
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
2955
+ dependencies = [
2956
+ "matchers",
2957
+ "nu-ansi-term",
2958
+ "once_cell",
2959
+ "regex-automata",
2960
+ "sharded-slab",
2961
+ "smallvec",
2962
+ "thread_local",
2963
+ "tracing",
2964
+ "tracing-core",
2965
+ "tracing-log",
2966
+ ]
2967
+
2968
+ [[package]]
2969
+ name = "try-lock"
2970
+ version = "0.2.5"
2971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2972
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2973
+
2974
+ [[package]]
2975
+ name = "typenum"
2976
+ version = "1.19.0"
2977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2978
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
2979
+
2980
+ [[package]]
2981
+ name = "unicase"
2982
+ version = "2.9.0"
2983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2984
+ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
2985
+
2986
+ [[package]]
2987
+ name = "unicode-ident"
2988
+ version = "1.0.24"
2989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2990
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2991
+
2992
+ [[package]]
2993
+ name = "unicode-xid"
2994
+ version = "0.2.6"
2995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2996
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2997
+
2998
+ [[package]]
2999
+ name = "unsafe-libyaml"
3000
+ version = "0.2.11"
3001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3002
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
3003
+
3004
+ [[package]]
3005
+ name = "untrusted"
3006
+ version = "0.9.0"
3007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3008
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3009
+
3010
+ [[package]]
3011
+ name = "url"
3012
+ version = "2.5.8"
3013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3014
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3015
+ dependencies = [
3016
+ "form_urlencoded",
3017
+ "idna",
3018
+ "percent-encoding",
3019
+ "serde",
3020
+ ]
3021
+
3022
+ [[package]]
3023
+ name = "utf8_iter"
3024
+ version = "1.0.4"
3025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3026
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3027
+
3028
+ [[package]]
3029
+ name = "valuable"
3030
+ version = "0.1.1"
3031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3032
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3033
+
3034
+ [[package]]
3035
+ name = "vcpkg"
3036
+ version = "0.2.15"
3037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3038
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3039
+
3040
+ [[package]]
3041
+ name = "version_check"
3042
+ version = "0.9.5"
3043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3044
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3045
+
3046
+ [[package]]
3047
+ name = "walkdir"
3048
+ version = "2.5.0"
3049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3050
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3051
+ dependencies = [
3052
+ "same-file",
3053
+ "winapi-util",
3054
+ ]
3055
+
3056
+ [[package]]
3057
+ name = "want"
3058
+ version = "0.3.1"
3059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3060
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3061
+ dependencies = [
3062
+ "try-lock",
3063
+ ]
3064
+
3065
+ [[package]]
3066
+ name = "wasi"
3067
+ version = "0.11.1+wasi-snapshot-preview1"
3068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3069
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3070
+
3071
+ [[package]]
3072
+ name = "wasip2"
3073
+ version = "1.0.2+wasi-0.2.9"
3074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3075
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
3076
+ dependencies = [
3077
+ "wit-bindgen",
3078
+ ]
3079
+
3080
+ [[package]]
3081
+ name = "wasip3"
3082
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
3083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3084
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
3085
+ dependencies = [
3086
+ "wit-bindgen",
3087
+ ]
3088
+
3089
+ [[package]]
3090
+ name = "wasm-bindgen"
3091
+ version = "0.2.114"
3092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3093
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
3094
+ dependencies = [
3095
+ "cfg-if",
3096
+ "once_cell",
3097
+ "rustversion",
3098
+ "wasm-bindgen-macro",
3099
+ "wasm-bindgen-shared",
3100
+ ]
3101
+
3102
+ [[package]]
3103
+ name = "wasm-bindgen-futures"
3104
+ version = "0.4.64"
3105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3106
+ checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8"
3107
+ dependencies = [
3108
+ "cfg-if",
3109
+ "futures-util",
3110
+ "js-sys",
3111
+ "once_cell",
3112
+ "wasm-bindgen",
3113
+ "web-sys",
3114
+ ]
3115
+
3116
+ [[package]]
3117
+ name = "wasm-bindgen-macro"
3118
+ version = "0.2.114"
3119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3120
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
3121
+ dependencies = [
3122
+ "quote",
3123
+ "wasm-bindgen-macro-support",
3124
+ ]
3125
+
3126
+ [[package]]
3127
+ name = "wasm-bindgen-macro-support"
3128
+ version = "0.2.114"
3129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3130
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
3131
+ dependencies = [
3132
+ "bumpalo",
3133
+ "proc-macro2",
3134
+ "quote",
3135
+ "syn",
3136
+ "wasm-bindgen-shared",
3137
+ ]
3138
+
3139
+ [[package]]
3140
+ name = "wasm-bindgen-shared"
3141
+ version = "0.2.114"
3142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3143
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
3144
+ dependencies = [
3145
+ "unicode-ident",
3146
+ ]
3147
+
3148
+ [[package]]
3149
+ name = "wasm-encoder"
3150
+ version = "0.244.0"
3151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3152
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
3153
+ dependencies = [
3154
+ "leb128fmt",
3155
+ "wasmparser",
3156
+ ]
3157
+
3158
+ [[package]]
3159
+ name = "wasm-metadata"
3160
+ version = "0.244.0"
3161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3162
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
3163
+ dependencies = [
3164
+ "anyhow",
3165
+ "indexmap",
3166
+ "wasm-encoder",
3167
+ "wasmparser",
3168
+ ]
3169
+
3170
+ [[package]]
3171
+ name = "wasm-streams"
3172
+ version = "0.4.2"
3173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3174
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
3175
+ dependencies = [
3176
+ "futures-util",
3177
+ "js-sys",
3178
+ "wasm-bindgen",
3179
+ "wasm-bindgen-futures",
3180
+ "web-sys",
3181
+ ]
3182
+
3183
+ [[package]]
3184
+ name = "wasmparser"
3185
+ version = "0.244.0"
3186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3187
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
3188
+ dependencies = [
3189
+ "bitflags",
3190
+ "hashbrown 0.15.5",
3191
+ "indexmap",
3192
+ "semver",
3193
+ ]
3194
+
3195
+ [[package]]
3196
+ name = "web-sys"
3197
+ version = "0.3.91"
3198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3199
+ checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
3200
+ dependencies = [
3201
+ "js-sys",
3202
+ "wasm-bindgen",
3203
+ ]
3204
+
3205
+ [[package]]
3206
+ name = "web-time"
3207
+ version = "1.1.0"
3208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3209
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3210
+ dependencies = [
3211
+ "js-sys",
3212
+ "wasm-bindgen",
3213
+ ]
3214
+
3215
+ [[package]]
3216
+ name = "webpki-root-certs"
3217
+ version = "1.0.6"
3218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3219
+ checksum = "804f18a4ac2676ffb4e8b5b5fa9ae38af06df08162314f96a68d2a363e21a8ca"
3220
+ dependencies = [
3221
+ "rustls-pki-types",
3222
+ ]
3223
+
3224
+ [[package]]
3225
+ name = "winapi-util"
3226
+ version = "0.1.11"
3227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3228
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3229
+ dependencies = [
3230
+ "windows-sys 0.61.2",
3231
+ ]
3232
+
3233
+ [[package]]
3234
+ name = "windows-core"
3235
+ version = "0.62.2"
3236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3237
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3238
+ dependencies = [
3239
+ "windows-implement",
3240
+ "windows-interface",
3241
+ "windows-link",
3242
+ "windows-result",
3243
+ "windows-strings",
3244
+ ]
3245
+
3246
+ [[package]]
3247
+ name = "windows-implement"
3248
+ version = "0.60.2"
3249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3250
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3251
+ dependencies = [
3252
+ "proc-macro2",
3253
+ "quote",
3254
+ "syn",
3255
+ ]
3256
+
3257
+ [[package]]
3258
+ name = "windows-interface"
3259
+ version = "0.59.3"
3260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3261
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3262
+ dependencies = [
3263
+ "proc-macro2",
3264
+ "quote",
3265
+ "syn",
3266
+ ]
3267
+
3268
+ [[package]]
3269
+ name = "windows-link"
3270
+ version = "0.2.1"
3271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3272
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3273
+
3274
+ [[package]]
3275
+ name = "windows-registry"
3276
+ version = "0.6.1"
3277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3278
+ checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
3279
+ dependencies = [
3280
+ "windows-link",
3281
+ "windows-result",
3282
+ "windows-strings",
3283
+ ]
3284
+
3285
+ [[package]]
3286
+ name = "windows-result"
3287
+ version = "0.4.1"
3288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3289
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3290
+ dependencies = [
3291
+ "windows-link",
3292
+ ]
3293
+
3294
+ [[package]]
3295
+ name = "windows-strings"
3296
+ version = "0.5.1"
3297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3298
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3299
+ dependencies = [
3300
+ "windows-link",
3301
+ ]
3302
+
3303
+ [[package]]
3304
+ name = "windows-sys"
3305
+ version = "0.45.0"
3306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3307
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
3308
+ dependencies = [
3309
+ "windows-targets 0.42.2",
3310
+ ]
3311
+
3312
+ [[package]]
3313
+ name = "windows-sys"
3314
+ version = "0.52.0"
3315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3316
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3317
+ dependencies = [
3318
+ "windows-targets 0.52.6",
3319
+ ]
3320
+
3321
+ [[package]]
3322
+ name = "windows-sys"
3323
+ version = "0.59.0"
3324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3325
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3326
+ dependencies = [
3327
+ "windows-targets 0.52.6",
3328
+ ]
3329
+
3330
+ [[package]]
3331
+ name = "windows-sys"
3332
+ version = "0.61.2"
3333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3334
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3335
+ dependencies = [
3336
+ "windows-link",
3337
+ ]
3338
+
3339
+ [[package]]
3340
+ name = "windows-targets"
3341
+ version = "0.42.2"
3342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3343
+ checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
3344
+ dependencies = [
3345
+ "windows_aarch64_gnullvm 0.42.2",
3346
+ "windows_aarch64_msvc 0.42.2",
3347
+ "windows_i686_gnu 0.42.2",
3348
+ "windows_i686_msvc 0.42.2",
3349
+ "windows_x86_64_gnu 0.42.2",
3350
+ "windows_x86_64_gnullvm 0.42.2",
3351
+ "windows_x86_64_msvc 0.42.2",
3352
+ ]
3353
+
3354
+ [[package]]
3355
+ name = "windows-targets"
3356
+ version = "0.52.6"
3357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3358
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3359
+ dependencies = [
3360
+ "windows_aarch64_gnullvm 0.52.6",
3361
+ "windows_aarch64_msvc 0.52.6",
3362
+ "windows_i686_gnu 0.52.6",
3363
+ "windows_i686_gnullvm",
3364
+ "windows_i686_msvc 0.52.6",
3365
+ "windows_x86_64_gnu 0.52.6",
3366
+ "windows_x86_64_gnullvm 0.52.6",
3367
+ "windows_x86_64_msvc 0.52.6",
3368
+ ]
3369
+
3370
+ [[package]]
3371
+ name = "windows_aarch64_gnullvm"
3372
+ version = "0.42.2"
3373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3374
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
3375
+
3376
+ [[package]]
3377
+ name = "windows_aarch64_gnullvm"
3378
+ version = "0.52.6"
3379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3380
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3381
+
3382
+ [[package]]
3383
+ name = "windows_aarch64_msvc"
3384
+ version = "0.42.2"
3385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3386
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
3387
+
3388
+ [[package]]
3389
+ name = "windows_aarch64_msvc"
3390
+ version = "0.52.6"
3391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3392
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3393
+
3394
+ [[package]]
3395
+ name = "windows_i686_gnu"
3396
+ version = "0.42.2"
3397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3398
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
3399
+
3400
+ [[package]]
3401
+ name = "windows_i686_gnu"
3402
+ version = "0.52.6"
3403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3404
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3405
+
3406
+ [[package]]
3407
+ name = "windows_i686_gnullvm"
3408
+ version = "0.52.6"
3409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3410
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3411
+
3412
+ [[package]]
3413
+ name = "windows_i686_msvc"
3414
+ version = "0.42.2"
3415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3416
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
3417
+
3418
+ [[package]]
3419
+ name = "windows_i686_msvc"
3420
+ version = "0.52.6"
3421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3422
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3423
+
3424
+ [[package]]
3425
+ name = "windows_x86_64_gnu"
3426
+ version = "0.42.2"
3427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3428
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
3429
+
3430
+ [[package]]
3431
+ name = "windows_x86_64_gnu"
3432
+ version = "0.52.6"
3433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3434
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3435
+
3436
+ [[package]]
3437
+ name = "windows_x86_64_gnullvm"
3438
+ version = "0.42.2"
3439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3440
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
3441
+
3442
+ [[package]]
3443
+ name = "windows_x86_64_gnullvm"
3444
+ version = "0.52.6"
3445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3446
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3447
+
3448
+ [[package]]
3449
+ name = "windows_x86_64_msvc"
3450
+ version = "0.42.2"
3451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3452
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
3453
+
3454
+ [[package]]
3455
+ name = "windows_x86_64_msvc"
3456
+ version = "0.52.6"
3457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3458
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3459
+
3460
+ [[package]]
3461
+ name = "wit-bindgen"
3462
+ version = "0.51.0"
3463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3464
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3465
+ dependencies = [
3466
+ "wit-bindgen-rust-macro",
3467
+ ]
3468
+
3469
+ [[package]]
3470
+ name = "wit-bindgen-core"
3471
+ version = "0.51.0"
3472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3473
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
3474
+ dependencies = [
3475
+ "anyhow",
3476
+ "heck",
3477
+ "wit-parser",
3478
+ ]
3479
+
3480
+ [[package]]
3481
+ name = "wit-bindgen-rust"
3482
+ version = "0.51.0"
3483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3484
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
3485
+ dependencies = [
3486
+ "anyhow",
3487
+ "heck",
3488
+ "indexmap",
3489
+ "prettyplease",
3490
+ "syn",
3491
+ "wasm-metadata",
3492
+ "wit-bindgen-core",
3493
+ "wit-component",
3494
+ ]
3495
+
3496
+ [[package]]
3497
+ name = "wit-bindgen-rust-macro"
3498
+ version = "0.51.0"
3499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3500
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
3501
+ dependencies = [
3502
+ "anyhow",
3503
+ "prettyplease",
3504
+ "proc-macro2",
3505
+ "quote",
3506
+ "syn",
3507
+ "wit-bindgen-core",
3508
+ "wit-bindgen-rust",
3509
+ ]
3510
+
3511
+ [[package]]
3512
+ name = "wit-component"
3513
+ version = "0.244.0"
3514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3515
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
3516
+ dependencies = [
3517
+ "anyhow",
3518
+ "bitflags",
3519
+ "indexmap",
3520
+ "log",
3521
+ "serde",
3522
+ "serde_derive",
3523
+ "serde_json",
3524
+ "wasm-encoder",
3525
+ "wasm-metadata",
3526
+ "wasmparser",
3527
+ "wit-parser",
3528
+ ]
3529
+
3530
+ [[package]]
3531
+ name = "wit-parser"
3532
+ version = "0.244.0"
3533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3534
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
3535
+ dependencies = [
3536
+ "anyhow",
3537
+ "id-arena",
3538
+ "indexmap",
3539
+ "log",
3540
+ "semver",
3541
+ "serde",
3542
+ "serde_derive",
3543
+ "serde_json",
3544
+ "unicode-xid",
3545
+ "wasmparser",
3546
+ ]
3547
+
3548
+ [[package]]
3549
+ name = "writeable"
3550
+ version = "0.6.2"
3551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3552
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
3553
+
3554
+ [[package]]
3555
+ name = "yoke"
3556
+ version = "0.8.1"
3557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3558
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
3559
+ dependencies = [
3560
+ "stable_deref_trait",
3561
+ "yoke-derive",
3562
+ "zerofrom",
3563
+ ]
3564
+
3565
+ [[package]]
3566
+ name = "yoke-derive"
3567
+ version = "0.8.1"
3568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3569
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
3570
+ dependencies = [
3571
+ "proc-macro2",
3572
+ "quote",
3573
+ "syn",
3574
+ "synstructure",
3575
+ ]
3576
+
3577
+ [[package]]
3578
+ name = "zerocopy"
3579
+ version = "0.8.42"
3580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3581
+ checksum = "f2578b716f8a7a858b7f02d5bd870c14bf4ddbbcf3a4c05414ba6503640505e3"
3582
+ dependencies = [
3583
+ "zerocopy-derive",
3584
+ ]
3585
+
3586
+ [[package]]
3587
+ name = "zerocopy-derive"
3588
+ version = "0.8.42"
3589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3590
+ checksum = "7e6cc098ea4d3bd6246687de65af3f920c430e236bee1e3bf2e441463f08a02f"
3591
+ dependencies = [
3592
+ "proc-macro2",
3593
+ "quote",
3594
+ "syn",
3595
+ ]
3596
+
3597
+ [[package]]
3598
+ name = "zerofrom"
3599
+ version = "0.1.6"
3600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3601
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3602
+ dependencies = [
3603
+ "zerofrom-derive",
3604
+ ]
3605
+
3606
+ [[package]]
3607
+ name = "zerofrom-derive"
3608
+ version = "0.1.6"
3609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3610
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3611
+ dependencies = [
3612
+ "proc-macro2",
3613
+ "quote",
3614
+ "syn",
3615
+ "synstructure",
3616
+ ]
3617
+
3618
+ [[package]]
3619
+ name = "zeroize"
3620
+ version = "1.8.2"
3621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3622
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3623
+
3624
+ [[package]]
3625
+ name = "zerotrie"
3626
+ version = "0.2.3"
3627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3628
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
3629
+ dependencies = [
3630
+ "displaydoc",
3631
+ "yoke",
3632
+ "zerofrom",
3633
+ ]
3634
+
3635
+ [[package]]
3636
+ name = "zerovec"
3637
+ version = "0.11.5"
3638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3639
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
3640
+ dependencies = [
3641
+ "yoke",
3642
+ "zerofrom",
3643
+ "zerovec-derive",
3644
+ ]
3645
+
3646
+ [[package]]
3647
+ name = "zerovec-derive"
3648
+ version = "0.11.2"
3649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3650
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3651
+ dependencies = [
3652
+ "proc-macro2",
3653
+ "quote",
3654
+ "syn",
3655
+ ]
3656
+
3657
+ [[package]]
3658
+ name = "zmij"
3659
+ version = "1.0.21"
3660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3661
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"