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