sase-core-rs 0.1.2__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 (104) hide show
  1. sase_core_rs-0.1.2/Cargo.lock +2682 -0
  2. sase_core_rs-0.1.2/Cargo.toml +37 -0
  3. sase_core_rs-0.1.2/PKG-INFO +62 -0
  4. sase_core_rs-0.1.2/PYPI_README.md +33 -0
  5. sase_core_rs-0.1.2/crates/sase_core/CHANGELOG.md +227 -0
  6. sase_core_rs-0.1.2/crates/sase_core/Cargo.toml +28 -0
  7. sase_core_rs-0.1.2/crates/sase_core/examples/bench_parse.rs +224 -0
  8. sase_core_rs-0.1.2/crates/sase_core/src/agent_archive/mod.rs +648 -0
  9. sase_core_rs-0.1.2/crates/sase_core/src/agent_archive/wire.rs +124 -0
  10. sase_core_rs-0.1.2/crates/sase_core/src/agent_cleanup/execution.rs +603 -0
  11. sase_core_rs-0.1.2/crates/sase_core/src/agent_cleanup/mod.rs +33 -0
  12. sase_core_rs-0.1.2/crates/sase_core/src/agent_cleanup/planner.rs +848 -0
  13. sase_core_rs-0.1.2/crates/sase_core/src/agent_cleanup/wire.rs +267 -0
  14. sase_core_rs-0.1.2/crates/sase_core/src/agent_group_archive/mod.rs +657 -0
  15. sase_core_rs-0.1.2/crates/sase_core/src/agent_group_archive/wire.rs +95 -0
  16. sase_core_rs-0.1.2/crates/sase_core/src/agent_launch/mod.rs +2072 -0
  17. sase_core_rs-0.1.2/crates/sase_core/src/agent_name_template.rs +308 -0
  18. sase_core_rs-0.1.2/crates/sase_core/src/agent_scan/index.rs +2557 -0
  19. sase_core_rs-0.1.2/crates/sase_core/src/agent_scan/mod.rs +36 -0
  20. sase_core_rs-0.1.2/crates/sase_core/src/agent_scan/scanner.rs +1013 -0
  21. sase_core_rs-0.1.2/crates/sase_core/src/agent_scan/wire.rs +524 -0
  22. sase_core_rs-0.1.2/crates/sase_core/src/bead/cli.rs +889 -0
  23. sase_core_rs-0.1.2/crates/sase_core/src/bead/config.rs +126 -0
  24. sase_core_rs-0.1.2/crates/sase_core/src/bead/events.rs +665 -0
  25. sase_core_rs-0.1.2/crates/sase_core/src/bead/jsonl.rs +413 -0
  26. sase_core_rs-0.1.2/crates/sase_core/src/bead/mod.rs +63 -0
  27. sase_core_rs-0.1.2/crates/sase_core/src/bead/mutation.rs +1624 -0
  28. sase_core_rs-0.1.2/crates/sase_core/src/bead/read.rs +358 -0
  29. sase_core_rs-0.1.2/crates/sase_core/src/bead/schema.rs +254 -0
  30. sase_core_rs-0.1.2/crates/sase_core/src/bead/wire.rs +445 -0
  31. sase_core_rs-0.1.2/crates/sase_core/src/bead/work.rs +622 -0
  32. sase_core_rs-0.1.2/crates/sase_core/src/editor/completion.rs +849 -0
  33. sase_core_rs-0.1.2/crates/sase_core/src/editor/definition.rs +303 -0
  34. sase_core_rs-0.1.2/crates/sase_core/src/editor/diagnostics.rs +1111 -0
  35. sase_core_rs-0.1.2/crates/sase_core/src/editor/directive.rs +214 -0
  36. sase_core_rs-0.1.2/crates/sase_core/src/editor/file.rs +228 -0
  37. sase_core_rs-0.1.2/crates/sase_core/src/editor/frontmatter.rs +2080 -0
  38. sase_core_rs-0.1.2/crates/sase_core/src/editor/hover.rs +298 -0
  39. sase_core_rs-0.1.2/crates/sase_core/src/editor/mod.rs +39 -0
  40. sase_core_rs-0.1.2/crates/sase_core/src/editor/token.rs +399 -0
  41. sase_core_rs-0.1.2/crates/sase_core/src/editor/wire.rs +147 -0
  42. sase_core_rs-0.1.2/crates/sase_core/src/editor/xprompt_args.rs +508 -0
  43. sase_core_rs-0.1.2/crates/sase_core/src/episode/mod.rs +477 -0
  44. sase_core_rs-0.1.2/crates/sase_core/src/episode/wire.rs +273 -0
  45. sase_core_rs-0.1.2/crates/sase_core/src/git_query/mod.rs +35 -0
  46. sase_core_rs-0.1.2/crates/sase_core/src/git_query/parsers.rs +439 -0
  47. sase_core_rs-0.1.2/crates/sase_core/src/git_query/wire.rs +40 -0
  48. sase_core_rs-0.1.2/crates/sase_core/src/host_bridge.rs +1235 -0
  49. sase_core_rs-0.1.2/crates/sase_core/src/lib.rs +288 -0
  50. sase_core_rs-0.1.2/crates/sase_core/src/notifications/mobile.rs +1210 -0
  51. sase_core_rs-0.1.2/crates/sase_core/src/notifications/mod.rs +45 -0
  52. sase_core_rs-0.1.2/crates/sase_core/src/notifications/pending_actions.rs +602 -0
  53. sase_core_rs-0.1.2/crates/sase_core/src/notifications/store.rs +820 -0
  54. sase_core_rs-0.1.2/crates/sase_core/src/notifications/wire.rs +116 -0
  55. sase_core_rs-0.1.2/crates/sase_core/src/parser.rs +711 -0
  56. sase_core_rs-0.1.2/crates/sase_core/src/project_spec.rs +1246 -0
  57. sase_core_rs-0.1.2/crates/sase_core/src/query/evaluator.rs +367 -0
  58. sase_core_rs-0.1.2/crates/sase_core/src/query/matchers.rs +107 -0
  59. sase_core_rs-0.1.2/crates/sase_core/src/query/mod.rs +48 -0
  60. sase_core_rs-0.1.2/crates/sase_core/src/query/parser.rs +300 -0
  61. sase_core_rs-0.1.2/crates/sase_core/src/query/searchable.rs +181 -0
  62. sase_core_rs-0.1.2/crates/sase_core/src/query/tests.rs +587 -0
  63. sase_core_rs-0.1.2/crates/sase_core/src/query/tokenizer.rs +472 -0
  64. sase_core_rs-0.1.2/crates/sase_core/src/query/types.rs +190 -0
  65. sase_core_rs-0.1.2/crates/sase_core/src/sections.rs +746 -0
  66. sase_core_rs-0.1.2/crates/sase_core/src/status/constants.rs +139 -0
  67. sase_core_rs-0.1.2/crates/sase_core/src/status/field_updates.rs +163 -0
  68. sase_core_rs-0.1.2/crates/sase_core/src/status/mod.rs +34 -0
  69. sase_core_rs-0.1.2/crates/sase_core/src/status/name.rs +94 -0
  70. sase_core_rs-0.1.2/crates/sase_core/src/status/planner.rs +680 -0
  71. sase_core_rs-0.1.2/crates/sase_core/src/status/wire.rs +269 -0
  72. sase_core_rs-0.1.2/crates/sase_core/src/suffix.rs +217 -0
  73. sase_core_rs-0.1.2/crates/sase_core/src/wire.rs +421 -0
  74. sase_core_rs-0.1.2/crates/sase_core/src/xprompt_catalog.rs +2919 -0
  75. sase_core_rs-0.1.2/crates/sase_core/tests/agent_scan_parity.rs +1253 -0
  76. sase_core_rs-0.1.2/crates/sase_core/tests/bead_event_parity.rs +453 -0
  77. sase_core_rs-0.1.2/crates/sase_core/tests/bead_read_parity.rs +317 -0
  78. sase_core_rs-0.1.2/crates/sase_core/tests/bead_storage_parity.rs +121 -0
  79. sase_core_rs-0.1.2/crates/sase_core/tests/episode_wire_parity.rs +222 -0
  80. sase_core_rs-0.1.2/crates/sase_core/tests/fixtures/bead/config/current.json +5 -0
  81. sase_core_rs-0.1.2/crates/sase_core/tests/fixtures/bead/events/event_roundtrip/manifest.json +1 -0
  82. sase_core_rs-0.1.2/crates/sase_core/tests/fixtures/bead/events/event_roundtrip/streams/gold-1.jsonl +3 -0
  83. sase_core_rs-0.1.2/crates/sase_core/tests/fixtures/bead/events/event_roundtrip/streams/gold-legend.jsonl +1 -0
  84. sase_core_rs-0.1.2/crates/sase_core/tests/fixtures/bead/jsonl/corrupt_lines.jsonl +3 -0
  85. sase_core_rs-0.1.2/crates/sase_core/tests/fixtures/bead/jsonl/current_schema.jsonl +2 -0
  86. sase_core_rs-0.1.2/crates/sase_core/tests/fixtures/bead/jsonl/empty.jsonl +1 -0
  87. sase_core_rs-0.1.2/crates/sase_core/tests/fixtures/bead/jsonl/event_roundtrip_schema.jsonl +3 -0
  88. sase_core_rs-0.1.2/crates/sase_core/tests/fixtures/bead/jsonl/pre_changespec_metadata_schema.jsonl +1 -0
  89. sase_core_rs-0.1.2/crates/sase_core/tests/fixtures/bead/jsonl/pre_is_ready_to_work_schema.jsonl +1 -0
  90. sase_core_rs-0.1.2/crates/sase_core/tests/fixtures/mobile/mobile_action_result_contract.json +53 -0
  91. sase_core_rs-0.1.2/crates/sase_core/tests/fixtures/mobile/mobile_notification_contract.json +63 -0
  92. sase_core_rs-0.1.2/crates/sase_core/tests/fixtures/myproj-archive.sase +15 -0
  93. sase_core_rs-0.1.2/crates/sase_core/tests/fixtures/myproj.sase +50 -0
  94. sase_core_rs-0.1.2/crates/sase_core/tests/fixtures/notifications/store_contract.jsonl +15 -0
  95. sase_core_rs-0.1.2/crates/sase_core/tests/git_query_parity.rs +312 -0
  96. sase_core_rs-0.1.2/crates/sase_core/tests/golden_corpus_parity.rs +307 -0
  97. sase_core_rs-0.1.2/crates/sase_core/tests/notification_store_parity.rs +1003 -0
  98. sase_core_rs-0.1.2/crates/sase_core/tests/python_wire_parity.rs +217 -0
  99. sase_core_rs-0.1.2/crates/sase_core/tests/query_evaluator_parity.rs +254 -0
  100. sase_core_rs-0.1.2/crates/sase_core_py/CHANGELOG.md +84 -0
  101. sase_core_rs-0.1.2/crates/sase_core_py/Cargo.toml +36 -0
  102. sase_core_rs-0.1.2/crates/sase_core_py/PYPI_README.md +33 -0
  103. sase_core_rs-0.1.2/crates/sase_core_py/src/lib.rs +3505 -0
  104. sase_core_rs-0.1.2/pyproject.toml +45 -0
@@ -0,0 +1,2682 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
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 = "anyhow"
37
+ version = "1.0.102"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
40
+
41
+ [[package]]
42
+ name = "async-stream"
43
+ version = "0.3.6"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
46
+ dependencies = [
47
+ "async-stream-impl",
48
+ "futures-core",
49
+ "pin-project-lite",
50
+ ]
51
+
52
+ [[package]]
53
+ name = "async-stream-impl"
54
+ version = "0.3.6"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
57
+ dependencies = [
58
+ "proc-macro2",
59
+ "quote",
60
+ "syn",
61
+ ]
62
+
63
+ [[package]]
64
+ name = "async-trait"
65
+ version = "0.1.89"
66
+ source = "registry+https://github.com/rust-lang/crates.io-index"
67
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
68
+ dependencies = [
69
+ "proc-macro2",
70
+ "quote",
71
+ "syn",
72
+ ]
73
+
74
+ [[package]]
75
+ name = "atomic-waker"
76
+ version = "1.1.2"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
79
+
80
+ [[package]]
81
+ name = "autocfg"
82
+ version = "1.5.0"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
85
+
86
+ [[package]]
87
+ name = "axum"
88
+ version = "0.7.9"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
91
+ dependencies = [
92
+ "async-trait",
93
+ "axum-core",
94
+ "bytes",
95
+ "futures-util",
96
+ "http 1.4.0",
97
+ "http-body 1.0.1",
98
+ "http-body-util",
99
+ "hyper 1.9.0",
100
+ "hyper-util",
101
+ "itoa",
102
+ "matchit",
103
+ "memchr",
104
+ "mime",
105
+ "percent-encoding",
106
+ "pin-project-lite",
107
+ "rustversion",
108
+ "serde",
109
+ "serde_json",
110
+ "serde_path_to_error",
111
+ "serde_urlencoded",
112
+ "sync_wrapper 1.0.2",
113
+ "tokio",
114
+ "tower",
115
+ "tower-layer",
116
+ "tower-service",
117
+ "tracing",
118
+ ]
119
+
120
+ [[package]]
121
+ name = "axum-core"
122
+ version = "0.4.5"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
125
+ dependencies = [
126
+ "async-trait",
127
+ "bytes",
128
+ "futures-util",
129
+ "http 1.4.0",
130
+ "http-body 1.0.1",
131
+ "http-body-util",
132
+ "mime",
133
+ "pin-project-lite",
134
+ "rustversion",
135
+ "sync_wrapper 1.0.2",
136
+ "tower-layer",
137
+ "tower-service",
138
+ "tracing",
139
+ ]
140
+
141
+ [[package]]
142
+ name = "base64"
143
+ version = "0.21.7"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
146
+
147
+ [[package]]
148
+ name = "base64"
149
+ version = "0.22.1"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
152
+
153
+ [[package]]
154
+ name = "bitflags"
155
+ version = "1.3.2"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
158
+
159
+ [[package]]
160
+ name = "bitflags"
161
+ version = "2.11.1"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
164
+
165
+ [[package]]
166
+ name = "block-buffer"
167
+ version = "0.10.4"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
170
+ dependencies = [
171
+ "generic-array",
172
+ ]
173
+
174
+ [[package]]
175
+ name = "bumpalo"
176
+ version = "3.20.2"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
179
+
180
+ [[package]]
181
+ name = "bytes"
182
+ version = "1.11.1"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
185
+
186
+ [[package]]
187
+ name = "cc"
188
+ version = "1.2.61"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "d16d90359e986641506914ba71350897565610e87ce0ad9e6f28569db3dd5c6d"
191
+ dependencies = [
192
+ "find-msvc-tools",
193
+ "shlex",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "cfg-if"
198
+ version = "1.0.4"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
201
+
202
+ [[package]]
203
+ name = "chrono"
204
+ version = "0.4.44"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
207
+ dependencies = [
208
+ "iana-time-zone",
209
+ "num-traits",
210
+ "windows-link",
211
+ ]
212
+
213
+ [[package]]
214
+ name = "core-foundation"
215
+ version = "0.9.4"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
218
+ dependencies = [
219
+ "core-foundation-sys",
220
+ "libc",
221
+ ]
222
+
223
+ [[package]]
224
+ name = "core-foundation-sys"
225
+ version = "0.8.7"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
228
+
229
+ [[package]]
230
+ name = "cpufeatures"
231
+ version = "0.2.17"
232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
233
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
234
+ dependencies = [
235
+ "libc",
236
+ ]
237
+
238
+ [[package]]
239
+ name = "crossbeam-utils"
240
+ version = "0.8.21"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
243
+
244
+ [[package]]
245
+ name = "crypto-common"
246
+ version = "0.1.7"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
249
+ dependencies = [
250
+ "generic-array",
251
+ "typenum",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "dashmap"
256
+ version = "6.1.0"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
259
+ dependencies = [
260
+ "cfg-if",
261
+ "crossbeam-utils",
262
+ "hashbrown 0.14.5",
263
+ "lock_api",
264
+ "once_cell",
265
+ "parking_lot_core",
266
+ ]
267
+
268
+ [[package]]
269
+ name = "deranged"
270
+ version = "0.5.8"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
273
+ dependencies = [
274
+ "powerfmt",
275
+ ]
276
+
277
+ [[package]]
278
+ name = "digest"
279
+ version = "0.10.7"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
282
+ dependencies = [
283
+ "block-buffer",
284
+ "crypto-common",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "displaydoc"
289
+ version = "0.2.5"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
292
+ dependencies = [
293
+ "proc-macro2",
294
+ "quote",
295
+ "syn",
296
+ ]
297
+
298
+ [[package]]
299
+ name = "encoding_rs"
300
+ version = "0.8.35"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
303
+ dependencies = [
304
+ "cfg-if",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "equivalent"
309
+ version = "1.0.2"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
312
+
313
+ [[package]]
314
+ name = "errno"
315
+ version = "0.3.14"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
318
+ dependencies = [
319
+ "libc",
320
+ "windows-sys 0.61.2",
321
+ ]
322
+
323
+ [[package]]
324
+ name = "fallible-iterator"
325
+ version = "0.3.0"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
328
+
329
+ [[package]]
330
+ name = "fallible-streaming-iterator"
331
+ version = "0.1.9"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
334
+
335
+ [[package]]
336
+ name = "fastrand"
337
+ version = "2.4.1"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
340
+
341
+ [[package]]
342
+ name = "find-msvc-tools"
343
+ version = "0.1.9"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
346
+
347
+ [[package]]
348
+ name = "fluent-uri"
349
+ version = "0.1.4"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "17c704e9dbe1ddd863da1e6ff3567795087b1eb201ce80d8fa81162e1516500d"
352
+ dependencies = [
353
+ "bitflags 1.3.2",
354
+ ]
355
+
356
+ [[package]]
357
+ name = "fnv"
358
+ version = "1.0.7"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
361
+
362
+ [[package]]
363
+ name = "foldhash"
364
+ version = "0.1.5"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
367
+
368
+ [[package]]
369
+ name = "form_urlencoded"
370
+ version = "1.2.2"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
373
+ dependencies = [
374
+ "percent-encoding",
375
+ ]
376
+
377
+ [[package]]
378
+ name = "fs2"
379
+ version = "0.4.3"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
382
+ dependencies = [
383
+ "libc",
384
+ "winapi",
385
+ ]
386
+
387
+ [[package]]
388
+ name = "futures"
389
+ version = "0.3.32"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
392
+ dependencies = [
393
+ "futures-channel",
394
+ "futures-core",
395
+ "futures-io",
396
+ "futures-sink",
397
+ "futures-task",
398
+ "futures-util",
399
+ ]
400
+
401
+ [[package]]
402
+ name = "futures-channel"
403
+ version = "0.3.32"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
406
+ dependencies = [
407
+ "futures-core",
408
+ "futures-sink",
409
+ ]
410
+
411
+ [[package]]
412
+ name = "futures-core"
413
+ version = "0.3.32"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
416
+
417
+ [[package]]
418
+ name = "futures-io"
419
+ version = "0.3.32"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
422
+
423
+ [[package]]
424
+ name = "futures-macro"
425
+ version = "0.3.32"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
428
+ dependencies = [
429
+ "proc-macro2",
430
+ "quote",
431
+ "syn",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "futures-sink"
436
+ version = "0.3.32"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
439
+
440
+ [[package]]
441
+ name = "futures-task"
442
+ version = "0.3.32"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
445
+
446
+ [[package]]
447
+ name = "futures-util"
448
+ version = "0.3.32"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
451
+ dependencies = [
452
+ "futures-channel",
453
+ "futures-core",
454
+ "futures-io",
455
+ "futures-macro",
456
+ "futures-sink",
457
+ "futures-task",
458
+ "memchr",
459
+ "pin-project-lite",
460
+ "slab",
461
+ ]
462
+
463
+ [[package]]
464
+ name = "generic-array"
465
+ version = "0.14.7"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
468
+ dependencies = [
469
+ "typenum",
470
+ "version_check",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "getrandom"
475
+ version = "0.2.17"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
478
+ dependencies = [
479
+ "cfg-if",
480
+ "js-sys",
481
+ "libc",
482
+ "wasi",
483
+ "wasm-bindgen",
484
+ ]
485
+
486
+ [[package]]
487
+ name = "getrandom"
488
+ version = "0.4.2"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
491
+ dependencies = [
492
+ "cfg-if",
493
+ "libc",
494
+ "r-efi",
495
+ "wasip2",
496
+ "wasip3",
497
+ ]
498
+
499
+ [[package]]
500
+ name = "h2"
501
+ version = "0.3.27"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
504
+ dependencies = [
505
+ "bytes",
506
+ "fnv",
507
+ "futures-core",
508
+ "futures-sink",
509
+ "futures-util",
510
+ "http 0.2.12",
511
+ "indexmap",
512
+ "slab",
513
+ "tokio",
514
+ "tokio-util",
515
+ "tracing",
516
+ ]
517
+
518
+ [[package]]
519
+ name = "hashbrown"
520
+ version = "0.14.5"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
523
+ dependencies = [
524
+ "ahash",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "hashbrown"
529
+ version = "0.15.5"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
532
+ dependencies = [
533
+ "foldhash",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "hashbrown"
538
+ version = "0.17.0"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
541
+
542
+ [[package]]
543
+ name = "hashlink"
544
+ version = "0.9.1"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
547
+ dependencies = [
548
+ "hashbrown 0.14.5",
549
+ ]
550
+
551
+ [[package]]
552
+ name = "heck"
553
+ version = "0.5.0"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
556
+
557
+ [[package]]
558
+ name = "hex"
559
+ version = "0.4.3"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
562
+
563
+ [[package]]
564
+ name = "http"
565
+ version = "0.2.12"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
568
+ dependencies = [
569
+ "bytes",
570
+ "fnv",
571
+ "itoa",
572
+ ]
573
+
574
+ [[package]]
575
+ name = "http"
576
+ version = "1.4.0"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
579
+ dependencies = [
580
+ "bytes",
581
+ "itoa",
582
+ ]
583
+
584
+ [[package]]
585
+ name = "http-body"
586
+ version = "0.4.6"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
589
+ dependencies = [
590
+ "bytes",
591
+ "http 0.2.12",
592
+ "pin-project-lite",
593
+ ]
594
+
595
+ [[package]]
596
+ name = "http-body"
597
+ version = "1.0.1"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
600
+ dependencies = [
601
+ "bytes",
602
+ "http 1.4.0",
603
+ ]
604
+
605
+ [[package]]
606
+ name = "http-body-util"
607
+ version = "0.1.3"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
610
+ dependencies = [
611
+ "bytes",
612
+ "futures-core",
613
+ "http 1.4.0",
614
+ "http-body 1.0.1",
615
+ "pin-project-lite",
616
+ ]
617
+
618
+ [[package]]
619
+ name = "httparse"
620
+ version = "1.10.1"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
623
+
624
+ [[package]]
625
+ name = "httpdate"
626
+ version = "1.0.3"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
629
+
630
+ [[package]]
631
+ name = "hyper"
632
+ version = "0.14.32"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
635
+ dependencies = [
636
+ "bytes",
637
+ "futures-channel",
638
+ "futures-core",
639
+ "futures-util",
640
+ "h2",
641
+ "http 0.2.12",
642
+ "http-body 0.4.6",
643
+ "httparse",
644
+ "httpdate",
645
+ "itoa",
646
+ "pin-project-lite",
647
+ "socket2 0.5.10",
648
+ "tokio",
649
+ "tower-service",
650
+ "tracing",
651
+ "want",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "hyper"
656
+ version = "1.9.0"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
659
+ dependencies = [
660
+ "atomic-waker",
661
+ "bytes",
662
+ "futures-channel",
663
+ "futures-core",
664
+ "http 1.4.0",
665
+ "http-body 1.0.1",
666
+ "httparse",
667
+ "httpdate",
668
+ "itoa",
669
+ "pin-project-lite",
670
+ "smallvec",
671
+ "tokio",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "hyper-rustls"
676
+ version = "0.24.2"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
679
+ dependencies = [
680
+ "futures-util",
681
+ "http 0.2.12",
682
+ "hyper 0.14.32",
683
+ "rustls",
684
+ "tokio",
685
+ "tokio-rustls",
686
+ ]
687
+
688
+ [[package]]
689
+ name = "hyper-util"
690
+ version = "0.1.20"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
693
+ dependencies = [
694
+ "bytes",
695
+ "http 1.4.0",
696
+ "http-body 1.0.1",
697
+ "hyper 1.9.0",
698
+ "pin-project-lite",
699
+ "tokio",
700
+ "tower-service",
701
+ ]
702
+
703
+ [[package]]
704
+ name = "iana-time-zone"
705
+ version = "0.1.65"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
708
+ dependencies = [
709
+ "android_system_properties",
710
+ "core-foundation-sys",
711
+ "iana-time-zone-haiku",
712
+ "js-sys",
713
+ "log",
714
+ "wasm-bindgen",
715
+ "windows-core",
716
+ ]
717
+
718
+ [[package]]
719
+ name = "iana-time-zone-haiku"
720
+ version = "0.1.2"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
723
+ dependencies = [
724
+ "cc",
725
+ ]
726
+
727
+ [[package]]
728
+ name = "icu_collections"
729
+ version = "2.2.0"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
732
+ dependencies = [
733
+ "displaydoc",
734
+ "potential_utf",
735
+ "utf8_iter",
736
+ "yoke",
737
+ "zerofrom",
738
+ "zerovec",
739
+ ]
740
+
741
+ [[package]]
742
+ name = "icu_locale_core"
743
+ version = "2.2.0"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
746
+ dependencies = [
747
+ "displaydoc",
748
+ "litemap",
749
+ "tinystr",
750
+ "writeable",
751
+ "zerovec",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "icu_normalizer"
756
+ version = "2.2.0"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
759
+ dependencies = [
760
+ "icu_collections",
761
+ "icu_normalizer_data",
762
+ "icu_properties",
763
+ "icu_provider",
764
+ "smallvec",
765
+ "zerovec",
766
+ ]
767
+
768
+ [[package]]
769
+ name = "icu_normalizer_data"
770
+ version = "2.2.0"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
773
+
774
+ [[package]]
775
+ name = "icu_properties"
776
+ version = "2.2.0"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
779
+ dependencies = [
780
+ "icu_collections",
781
+ "icu_locale_core",
782
+ "icu_properties_data",
783
+ "icu_provider",
784
+ "zerotrie",
785
+ "zerovec",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "icu_properties_data"
790
+ version = "2.2.0"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
793
+
794
+ [[package]]
795
+ name = "icu_provider"
796
+ version = "2.2.0"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
799
+ dependencies = [
800
+ "displaydoc",
801
+ "icu_locale_core",
802
+ "writeable",
803
+ "yoke",
804
+ "zerofrom",
805
+ "zerotrie",
806
+ "zerovec",
807
+ ]
808
+
809
+ [[package]]
810
+ name = "id-arena"
811
+ version = "2.3.0"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
814
+
815
+ [[package]]
816
+ name = "idna"
817
+ version = "1.1.0"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
820
+ dependencies = [
821
+ "idna_adapter",
822
+ "smallvec",
823
+ "utf8_iter",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "idna_adapter"
828
+ version = "1.2.2"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
831
+ dependencies = [
832
+ "icu_normalizer",
833
+ "icu_properties",
834
+ ]
835
+
836
+ [[package]]
837
+ name = "indexmap"
838
+ version = "2.14.0"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
841
+ dependencies = [
842
+ "equivalent",
843
+ "hashbrown 0.17.0",
844
+ "serde",
845
+ "serde_core",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "indoc"
850
+ version = "2.0.7"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
853
+ dependencies = [
854
+ "rustversion",
855
+ ]
856
+
857
+ [[package]]
858
+ name = "ipnet"
859
+ version = "2.12.0"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
862
+
863
+ [[package]]
864
+ name = "itoa"
865
+ version = "1.0.18"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
868
+
869
+ [[package]]
870
+ name = "js-sys"
871
+ version = "0.3.97"
872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
873
+ checksum = "a1840c94c045fbcf8ba2812c95db44499f7c64910a912551aaaa541decebcacf"
874
+ dependencies = [
875
+ "cfg-if",
876
+ "futures-util",
877
+ "once_cell",
878
+ "wasm-bindgen",
879
+ ]
880
+
881
+ [[package]]
882
+ name = "jsonwebtoken"
883
+ version = "9.3.1"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde"
886
+ dependencies = [
887
+ "base64 0.22.1",
888
+ "js-sys",
889
+ "pem",
890
+ "ring",
891
+ "serde",
892
+ "serde_json",
893
+ "simple_asn1",
894
+ ]
895
+
896
+ [[package]]
897
+ name = "lazy_static"
898
+ version = "1.5.0"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
901
+
902
+ [[package]]
903
+ name = "leb128fmt"
904
+ version = "0.1.0"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
907
+
908
+ [[package]]
909
+ name = "libc"
910
+ version = "0.2.186"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
913
+
914
+ [[package]]
915
+ name = "libsqlite3-sys"
916
+ version = "0.30.1"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
919
+ dependencies = [
920
+ "cc",
921
+ "pkg-config",
922
+ "vcpkg",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "linux-raw-sys"
927
+ version = "0.12.1"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
930
+
931
+ [[package]]
932
+ name = "litemap"
933
+ version = "0.8.2"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
936
+
937
+ [[package]]
938
+ name = "lock_api"
939
+ version = "0.4.14"
940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
941
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
942
+ dependencies = [
943
+ "scopeguard",
944
+ ]
945
+
946
+ [[package]]
947
+ name = "log"
948
+ version = "0.4.29"
949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
950
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
951
+
952
+ [[package]]
953
+ name = "lsp-types"
954
+ version = "0.97.0"
955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
956
+ checksum = "53353550a17c04ac46c585feb189c2db82154fc84b79c7a66c96c2c644f66071"
957
+ dependencies = [
958
+ "bitflags 1.3.2",
959
+ "fluent-uri",
960
+ "serde",
961
+ "serde_json",
962
+ "serde_repr",
963
+ ]
964
+
965
+ [[package]]
966
+ name = "matchers"
967
+ version = "0.2.0"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
970
+ dependencies = [
971
+ "regex-automata",
972
+ ]
973
+
974
+ [[package]]
975
+ name = "matchit"
976
+ version = "0.7.3"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
979
+
980
+ [[package]]
981
+ name = "memchr"
982
+ version = "2.8.0"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
985
+
986
+ [[package]]
987
+ name = "memoffset"
988
+ version = "0.9.1"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
991
+ dependencies = [
992
+ "autocfg",
993
+ ]
994
+
995
+ [[package]]
996
+ name = "mime"
997
+ version = "0.3.17"
998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
999
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1000
+
1001
+ [[package]]
1002
+ name = "mio"
1003
+ version = "1.2.0"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
1006
+ dependencies = [
1007
+ "libc",
1008
+ "wasi",
1009
+ "windows-sys 0.61.2",
1010
+ ]
1011
+
1012
+ [[package]]
1013
+ name = "nu-ansi-term"
1014
+ version = "0.50.3"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1017
+ dependencies = [
1018
+ "windows-sys 0.61.2",
1019
+ ]
1020
+
1021
+ [[package]]
1022
+ name = "num-bigint"
1023
+ version = "0.4.6"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1026
+ dependencies = [
1027
+ "num-integer",
1028
+ "num-traits",
1029
+ ]
1030
+
1031
+ [[package]]
1032
+ name = "num-conv"
1033
+ version = "0.2.1"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
1036
+
1037
+ [[package]]
1038
+ name = "num-integer"
1039
+ version = "0.1.46"
1040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1041
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1042
+ dependencies = [
1043
+ "num-traits",
1044
+ ]
1045
+
1046
+ [[package]]
1047
+ name = "num-traits"
1048
+ version = "0.2.19"
1049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1050
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1051
+ dependencies = [
1052
+ "autocfg",
1053
+ ]
1054
+
1055
+ [[package]]
1056
+ name = "once_cell"
1057
+ version = "1.21.4"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1060
+
1061
+ [[package]]
1062
+ name = "parking_lot_core"
1063
+ version = "0.9.12"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1066
+ dependencies = [
1067
+ "cfg-if",
1068
+ "libc",
1069
+ "redox_syscall",
1070
+ "smallvec",
1071
+ "windows-link",
1072
+ ]
1073
+
1074
+ [[package]]
1075
+ name = "pem"
1076
+ version = "3.0.6"
1077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1078
+ checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
1079
+ dependencies = [
1080
+ "base64 0.22.1",
1081
+ "serde_core",
1082
+ ]
1083
+
1084
+ [[package]]
1085
+ name = "percent-encoding"
1086
+ version = "2.3.2"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1089
+
1090
+ [[package]]
1091
+ name = "pin-project-lite"
1092
+ version = "0.2.17"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1095
+
1096
+ [[package]]
1097
+ name = "pkg-config"
1098
+ version = "0.3.33"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1101
+
1102
+ [[package]]
1103
+ name = "portable-atomic"
1104
+ version = "1.13.1"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1107
+
1108
+ [[package]]
1109
+ name = "potential_utf"
1110
+ version = "0.1.5"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1113
+ dependencies = [
1114
+ "zerovec",
1115
+ ]
1116
+
1117
+ [[package]]
1118
+ name = "powerfmt"
1119
+ version = "0.2.0"
1120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1121
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1122
+
1123
+ [[package]]
1124
+ name = "ppv-lite86"
1125
+ version = "0.2.21"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1128
+ dependencies = [
1129
+ "zerocopy",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "prettyplease"
1134
+ version = "0.2.37"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1137
+ dependencies = [
1138
+ "proc-macro2",
1139
+ "syn",
1140
+ ]
1141
+
1142
+ [[package]]
1143
+ name = "proc-macro2"
1144
+ version = "1.0.106"
1145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1146
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1147
+ dependencies = [
1148
+ "unicode-ident",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "pyo3"
1153
+ version = "0.22.6"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
1156
+ dependencies = [
1157
+ "cfg-if",
1158
+ "indoc",
1159
+ "libc",
1160
+ "memoffset",
1161
+ "once_cell",
1162
+ "portable-atomic",
1163
+ "pyo3-build-config",
1164
+ "pyo3-ffi",
1165
+ "pyo3-macros",
1166
+ "unindent",
1167
+ ]
1168
+
1169
+ [[package]]
1170
+ name = "pyo3-build-config"
1171
+ version = "0.22.6"
1172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1173
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
1174
+ dependencies = [
1175
+ "once_cell",
1176
+ "target-lexicon",
1177
+ ]
1178
+
1179
+ [[package]]
1180
+ name = "pyo3-ffi"
1181
+ version = "0.22.6"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
1184
+ dependencies = [
1185
+ "libc",
1186
+ "pyo3-build-config",
1187
+ ]
1188
+
1189
+ [[package]]
1190
+ name = "pyo3-macros"
1191
+ version = "0.22.6"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
1194
+ dependencies = [
1195
+ "proc-macro2",
1196
+ "pyo3-macros-backend",
1197
+ "quote",
1198
+ "syn",
1199
+ ]
1200
+
1201
+ [[package]]
1202
+ name = "pyo3-macros-backend"
1203
+ version = "0.22.6"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
1206
+ dependencies = [
1207
+ "heck",
1208
+ "proc-macro2",
1209
+ "pyo3-build-config",
1210
+ "quote",
1211
+ "syn",
1212
+ ]
1213
+
1214
+ [[package]]
1215
+ name = "quote"
1216
+ version = "1.0.45"
1217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1218
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1219
+ dependencies = [
1220
+ "proc-macro2",
1221
+ ]
1222
+
1223
+ [[package]]
1224
+ name = "r-efi"
1225
+ version = "6.0.0"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1228
+
1229
+ [[package]]
1230
+ name = "rand"
1231
+ version = "0.8.6"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
1234
+ dependencies = [
1235
+ "libc",
1236
+ "rand_chacha",
1237
+ "rand_core",
1238
+ ]
1239
+
1240
+ [[package]]
1241
+ name = "rand_chacha"
1242
+ version = "0.3.1"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1245
+ dependencies = [
1246
+ "ppv-lite86",
1247
+ "rand_core",
1248
+ ]
1249
+
1250
+ [[package]]
1251
+ name = "rand_core"
1252
+ version = "0.6.4"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1255
+ dependencies = [
1256
+ "getrandom 0.2.17",
1257
+ ]
1258
+
1259
+ [[package]]
1260
+ name = "redox_syscall"
1261
+ version = "0.5.18"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1264
+ dependencies = [
1265
+ "bitflags 2.11.1",
1266
+ ]
1267
+
1268
+ [[package]]
1269
+ name = "regex"
1270
+ version = "1.12.3"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1273
+ dependencies = [
1274
+ "aho-corasick",
1275
+ "memchr",
1276
+ "regex-automata",
1277
+ "regex-syntax",
1278
+ ]
1279
+
1280
+ [[package]]
1281
+ name = "regex-automata"
1282
+ version = "0.4.14"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1285
+ dependencies = [
1286
+ "aho-corasick",
1287
+ "memchr",
1288
+ "regex-syntax",
1289
+ ]
1290
+
1291
+ [[package]]
1292
+ name = "regex-syntax"
1293
+ version = "0.8.10"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1296
+
1297
+ [[package]]
1298
+ name = "reqwest"
1299
+ version = "0.11.27"
1300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1301
+ checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
1302
+ dependencies = [
1303
+ "base64 0.21.7",
1304
+ "bytes",
1305
+ "encoding_rs",
1306
+ "futures-core",
1307
+ "futures-util",
1308
+ "h2",
1309
+ "http 0.2.12",
1310
+ "http-body 0.4.6",
1311
+ "hyper 0.14.32",
1312
+ "hyper-rustls",
1313
+ "ipnet",
1314
+ "js-sys",
1315
+ "log",
1316
+ "mime",
1317
+ "once_cell",
1318
+ "percent-encoding",
1319
+ "pin-project-lite",
1320
+ "rustls",
1321
+ "rustls-pemfile",
1322
+ "serde",
1323
+ "serde_json",
1324
+ "serde_urlencoded",
1325
+ "sync_wrapper 0.1.2",
1326
+ "system-configuration",
1327
+ "tokio",
1328
+ "tokio-rustls",
1329
+ "tower-service",
1330
+ "url",
1331
+ "wasm-bindgen",
1332
+ "wasm-bindgen-futures",
1333
+ "web-sys",
1334
+ "webpki-roots",
1335
+ "winreg",
1336
+ ]
1337
+
1338
+ [[package]]
1339
+ name = "ring"
1340
+ version = "0.17.14"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1343
+ dependencies = [
1344
+ "cc",
1345
+ "cfg-if",
1346
+ "getrandom 0.2.17",
1347
+ "libc",
1348
+ "untrusted",
1349
+ "windows-sys 0.52.0",
1350
+ ]
1351
+
1352
+ [[package]]
1353
+ name = "rusqlite"
1354
+ version = "0.32.1"
1355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1356
+ checksum = "7753b721174eb8ff87a9a0e799e2d7bc3749323e773db92e0984debb00019d6e"
1357
+ dependencies = [
1358
+ "bitflags 2.11.1",
1359
+ "fallible-iterator",
1360
+ "fallible-streaming-iterator",
1361
+ "hashlink",
1362
+ "libsqlite3-sys",
1363
+ "smallvec",
1364
+ ]
1365
+
1366
+ [[package]]
1367
+ name = "rustix"
1368
+ version = "1.1.4"
1369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1370
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1371
+ dependencies = [
1372
+ "bitflags 2.11.1",
1373
+ "errno",
1374
+ "libc",
1375
+ "linux-raw-sys",
1376
+ "windows-sys 0.61.2",
1377
+ ]
1378
+
1379
+ [[package]]
1380
+ name = "rustls"
1381
+ version = "0.21.12"
1382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1383
+ checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
1384
+ dependencies = [
1385
+ "log",
1386
+ "ring",
1387
+ "rustls-webpki",
1388
+ "sct",
1389
+ ]
1390
+
1391
+ [[package]]
1392
+ name = "rustls-pemfile"
1393
+ version = "1.0.4"
1394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1395
+ checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
1396
+ dependencies = [
1397
+ "base64 0.21.7",
1398
+ ]
1399
+
1400
+ [[package]]
1401
+ name = "rustls-webpki"
1402
+ version = "0.101.7"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
1405
+ dependencies = [
1406
+ "ring",
1407
+ "untrusted",
1408
+ ]
1409
+
1410
+ [[package]]
1411
+ name = "rustversion"
1412
+ version = "1.0.22"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1415
+
1416
+ [[package]]
1417
+ name = "ryu"
1418
+ version = "1.0.23"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1421
+
1422
+ [[package]]
1423
+ name = "sase_core"
1424
+ version = "0.1.2"
1425
+ dependencies = [
1426
+ "chrono",
1427
+ "fs2",
1428
+ "hex",
1429
+ "regex",
1430
+ "rusqlite",
1431
+ "serde",
1432
+ "serde_json",
1433
+ "serde_yaml",
1434
+ "sha2",
1435
+ "tempfile",
1436
+ "thiserror 1.0.69",
1437
+ ]
1438
+
1439
+ [[package]]
1440
+ name = "sase_core_py"
1441
+ version = "0.1.2"
1442
+ dependencies = [
1443
+ "libc",
1444
+ "pyo3",
1445
+ "sase_core",
1446
+ "serde",
1447
+ "serde_json",
1448
+ ]
1449
+
1450
+ [[package]]
1451
+ name = "sase_gateway"
1452
+ version = "0.1.2"
1453
+ dependencies = [
1454
+ "async-stream",
1455
+ "axum",
1456
+ "chrono",
1457
+ "hex",
1458
+ "jsonwebtoken",
1459
+ "rand",
1460
+ "reqwest",
1461
+ "sase_core",
1462
+ "serde",
1463
+ "serde_json",
1464
+ "serde_urlencoded",
1465
+ "sha2",
1466
+ "tempfile",
1467
+ "thiserror 1.0.69",
1468
+ "tokio",
1469
+ "tower",
1470
+ "tower-http",
1471
+ ]
1472
+
1473
+ [[package]]
1474
+ name = "sase_xprompt_lsp"
1475
+ version = "0.1.2"
1476
+ dependencies = [
1477
+ "lsp-types",
1478
+ "sase_core",
1479
+ "serde_json",
1480
+ "tempfile",
1481
+ "tokio",
1482
+ "tower-lsp-server",
1483
+ "tracing",
1484
+ "tracing-subscriber",
1485
+ ]
1486
+
1487
+ [[package]]
1488
+ name = "scopeguard"
1489
+ version = "1.2.0"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1492
+
1493
+ [[package]]
1494
+ name = "sct"
1495
+ version = "0.7.1"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
1498
+ dependencies = [
1499
+ "ring",
1500
+ "untrusted",
1501
+ ]
1502
+
1503
+ [[package]]
1504
+ name = "semver"
1505
+ version = "1.0.28"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1508
+
1509
+ [[package]]
1510
+ name = "serde"
1511
+ version = "1.0.228"
1512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1513
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1514
+ dependencies = [
1515
+ "serde_core",
1516
+ "serde_derive",
1517
+ ]
1518
+
1519
+ [[package]]
1520
+ name = "serde_core"
1521
+ version = "1.0.228"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1524
+ dependencies = [
1525
+ "serde_derive",
1526
+ ]
1527
+
1528
+ [[package]]
1529
+ name = "serde_derive"
1530
+ version = "1.0.228"
1531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1533
+ dependencies = [
1534
+ "proc-macro2",
1535
+ "quote",
1536
+ "syn",
1537
+ ]
1538
+
1539
+ [[package]]
1540
+ name = "serde_json"
1541
+ version = "1.0.149"
1542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1543
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1544
+ dependencies = [
1545
+ "itoa",
1546
+ "memchr",
1547
+ "serde",
1548
+ "serde_core",
1549
+ "zmij",
1550
+ ]
1551
+
1552
+ [[package]]
1553
+ name = "serde_path_to_error"
1554
+ version = "0.1.20"
1555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1556
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
1557
+ dependencies = [
1558
+ "itoa",
1559
+ "serde",
1560
+ "serde_core",
1561
+ ]
1562
+
1563
+ [[package]]
1564
+ name = "serde_repr"
1565
+ version = "0.1.20"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
1568
+ dependencies = [
1569
+ "proc-macro2",
1570
+ "quote",
1571
+ "syn",
1572
+ ]
1573
+
1574
+ [[package]]
1575
+ name = "serde_urlencoded"
1576
+ version = "0.7.1"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1579
+ dependencies = [
1580
+ "form_urlencoded",
1581
+ "itoa",
1582
+ "ryu",
1583
+ "serde",
1584
+ ]
1585
+
1586
+ [[package]]
1587
+ name = "serde_yaml"
1588
+ version = "0.9.34+deprecated"
1589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1590
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
1591
+ dependencies = [
1592
+ "indexmap",
1593
+ "itoa",
1594
+ "ryu",
1595
+ "serde",
1596
+ "unsafe-libyaml",
1597
+ ]
1598
+
1599
+ [[package]]
1600
+ name = "sha2"
1601
+ version = "0.10.9"
1602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1603
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1604
+ dependencies = [
1605
+ "cfg-if",
1606
+ "cpufeatures",
1607
+ "digest",
1608
+ ]
1609
+
1610
+ [[package]]
1611
+ name = "sharded-slab"
1612
+ version = "0.1.7"
1613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1614
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1615
+ dependencies = [
1616
+ "lazy_static",
1617
+ ]
1618
+
1619
+ [[package]]
1620
+ name = "shlex"
1621
+ version = "1.3.0"
1622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1623
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1624
+
1625
+ [[package]]
1626
+ name = "signal-hook-registry"
1627
+ version = "1.4.8"
1628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1629
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1630
+ dependencies = [
1631
+ "errno",
1632
+ "libc",
1633
+ ]
1634
+
1635
+ [[package]]
1636
+ name = "simple_asn1"
1637
+ version = "0.6.4"
1638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1639
+ checksum = "0d585997b0ac10be3c5ee635f1bab02d512760d14b7c468801ac8a01d9ae5f1d"
1640
+ dependencies = [
1641
+ "num-bigint",
1642
+ "num-traits",
1643
+ "thiserror 2.0.18",
1644
+ "time",
1645
+ ]
1646
+
1647
+ [[package]]
1648
+ name = "slab"
1649
+ version = "0.4.12"
1650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1651
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1652
+
1653
+ [[package]]
1654
+ name = "smallvec"
1655
+ version = "1.15.1"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1658
+
1659
+ [[package]]
1660
+ name = "socket2"
1661
+ version = "0.5.10"
1662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1663
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
1664
+ dependencies = [
1665
+ "libc",
1666
+ "windows-sys 0.52.0",
1667
+ ]
1668
+
1669
+ [[package]]
1670
+ name = "socket2"
1671
+ version = "0.6.3"
1672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1673
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
1674
+ dependencies = [
1675
+ "libc",
1676
+ "windows-sys 0.61.2",
1677
+ ]
1678
+
1679
+ [[package]]
1680
+ name = "stable_deref_trait"
1681
+ version = "1.2.1"
1682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1683
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1684
+
1685
+ [[package]]
1686
+ name = "syn"
1687
+ version = "2.0.117"
1688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1689
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1690
+ dependencies = [
1691
+ "proc-macro2",
1692
+ "quote",
1693
+ "unicode-ident",
1694
+ ]
1695
+
1696
+ [[package]]
1697
+ name = "sync_wrapper"
1698
+ version = "0.1.2"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
1701
+
1702
+ [[package]]
1703
+ name = "sync_wrapper"
1704
+ version = "1.0.2"
1705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1706
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1707
+
1708
+ [[package]]
1709
+ name = "synstructure"
1710
+ version = "0.13.2"
1711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1712
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1713
+ dependencies = [
1714
+ "proc-macro2",
1715
+ "quote",
1716
+ "syn",
1717
+ ]
1718
+
1719
+ [[package]]
1720
+ name = "system-configuration"
1721
+ version = "0.5.1"
1722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1723
+ checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
1724
+ dependencies = [
1725
+ "bitflags 1.3.2",
1726
+ "core-foundation",
1727
+ "system-configuration-sys",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "system-configuration-sys"
1732
+ version = "0.5.0"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
1735
+ dependencies = [
1736
+ "core-foundation-sys",
1737
+ "libc",
1738
+ ]
1739
+
1740
+ [[package]]
1741
+ name = "target-lexicon"
1742
+ version = "0.12.16"
1743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1744
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
1745
+
1746
+ [[package]]
1747
+ name = "tempfile"
1748
+ version = "3.27.0"
1749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1750
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1751
+ dependencies = [
1752
+ "fastrand",
1753
+ "getrandom 0.4.2",
1754
+ "once_cell",
1755
+ "rustix",
1756
+ "windows-sys 0.61.2",
1757
+ ]
1758
+
1759
+ [[package]]
1760
+ name = "thiserror"
1761
+ version = "1.0.69"
1762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1763
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1764
+ dependencies = [
1765
+ "thiserror-impl 1.0.69",
1766
+ ]
1767
+
1768
+ [[package]]
1769
+ name = "thiserror"
1770
+ version = "2.0.18"
1771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1772
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1773
+ dependencies = [
1774
+ "thiserror-impl 2.0.18",
1775
+ ]
1776
+
1777
+ [[package]]
1778
+ name = "thiserror-impl"
1779
+ version = "1.0.69"
1780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1781
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1782
+ dependencies = [
1783
+ "proc-macro2",
1784
+ "quote",
1785
+ "syn",
1786
+ ]
1787
+
1788
+ [[package]]
1789
+ name = "thiserror-impl"
1790
+ version = "2.0.18"
1791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1792
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1793
+ dependencies = [
1794
+ "proc-macro2",
1795
+ "quote",
1796
+ "syn",
1797
+ ]
1798
+
1799
+ [[package]]
1800
+ name = "thread_local"
1801
+ version = "1.1.9"
1802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1803
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
1804
+ dependencies = [
1805
+ "cfg-if",
1806
+ ]
1807
+
1808
+ [[package]]
1809
+ name = "time"
1810
+ version = "0.3.47"
1811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1812
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
1813
+ dependencies = [
1814
+ "deranged",
1815
+ "itoa",
1816
+ "num-conv",
1817
+ "powerfmt",
1818
+ "serde_core",
1819
+ "time-core",
1820
+ "time-macros",
1821
+ ]
1822
+
1823
+ [[package]]
1824
+ name = "time-core"
1825
+ version = "0.1.8"
1826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1827
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
1828
+
1829
+ [[package]]
1830
+ name = "time-macros"
1831
+ version = "0.2.27"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
1834
+ dependencies = [
1835
+ "num-conv",
1836
+ "time-core",
1837
+ ]
1838
+
1839
+ [[package]]
1840
+ name = "tinystr"
1841
+ version = "0.8.3"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1844
+ dependencies = [
1845
+ "displaydoc",
1846
+ "zerovec",
1847
+ ]
1848
+
1849
+ [[package]]
1850
+ name = "tokio"
1851
+ version = "1.52.2"
1852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1853
+ checksum = "110a78583f19d5cdb2c5ccf321d1290344e71313c6c37d43520d386027d18386"
1854
+ dependencies = [
1855
+ "bytes",
1856
+ "libc",
1857
+ "mio",
1858
+ "pin-project-lite",
1859
+ "signal-hook-registry",
1860
+ "socket2 0.6.3",
1861
+ "tokio-macros",
1862
+ "windows-sys 0.61.2",
1863
+ ]
1864
+
1865
+ [[package]]
1866
+ name = "tokio-macros"
1867
+ version = "2.7.0"
1868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1869
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
1870
+ dependencies = [
1871
+ "proc-macro2",
1872
+ "quote",
1873
+ "syn",
1874
+ ]
1875
+
1876
+ [[package]]
1877
+ name = "tokio-rustls"
1878
+ version = "0.24.1"
1879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1880
+ checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
1881
+ dependencies = [
1882
+ "rustls",
1883
+ "tokio",
1884
+ ]
1885
+
1886
+ [[package]]
1887
+ name = "tokio-util"
1888
+ version = "0.7.18"
1889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1890
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1891
+ dependencies = [
1892
+ "bytes",
1893
+ "futures-core",
1894
+ "futures-sink",
1895
+ "pin-project-lite",
1896
+ "tokio",
1897
+ ]
1898
+
1899
+ [[package]]
1900
+ name = "tower"
1901
+ version = "0.5.3"
1902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1903
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1904
+ dependencies = [
1905
+ "futures-core",
1906
+ "futures-util",
1907
+ "pin-project-lite",
1908
+ "sync_wrapper 1.0.2",
1909
+ "tokio",
1910
+ "tower-layer",
1911
+ "tower-service",
1912
+ "tracing",
1913
+ ]
1914
+
1915
+ [[package]]
1916
+ name = "tower-http"
1917
+ version = "0.5.2"
1918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1919
+ checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5"
1920
+ dependencies = [
1921
+ "bitflags 2.11.1",
1922
+ "bytes",
1923
+ "http 1.4.0",
1924
+ "http-body 1.0.1",
1925
+ "http-body-util",
1926
+ "pin-project-lite",
1927
+ "tower-layer",
1928
+ "tower-service",
1929
+ "tracing",
1930
+ ]
1931
+
1932
+ [[package]]
1933
+ name = "tower-layer"
1934
+ version = "0.3.3"
1935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1936
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1937
+
1938
+ [[package]]
1939
+ name = "tower-lsp-server"
1940
+ version = "0.21.1"
1941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1942
+ checksum = "5fade4c658b63d11b623ddfa80821901e943a2923a010ae4a038661de42bd377"
1943
+ dependencies = [
1944
+ "bytes",
1945
+ "dashmap",
1946
+ "futures",
1947
+ "httparse",
1948
+ "lsp-types",
1949
+ "memchr",
1950
+ "serde",
1951
+ "serde_json",
1952
+ "tokio",
1953
+ "tokio-util",
1954
+ "tower",
1955
+ "tracing",
1956
+ ]
1957
+
1958
+ [[package]]
1959
+ name = "tower-service"
1960
+ version = "0.3.3"
1961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1962
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1963
+
1964
+ [[package]]
1965
+ name = "tracing"
1966
+ version = "0.1.44"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1969
+ dependencies = [
1970
+ "log",
1971
+ "pin-project-lite",
1972
+ "tracing-attributes",
1973
+ "tracing-core",
1974
+ ]
1975
+
1976
+ [[package]]
1977
+ name = "tracing-attributes"
1978
+ version = "0.1.31"
1979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1980
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1981
+ dependencies = [
1982
+ "proc-macro2",
1983
+ "quote",
1984
+ "syn",
1985
+ ]
1986
+
1987
+ [[package]]
1988
+ name = "tracing-core"
1989
+ version = "0.1.36"
1990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1991
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1992
+ dependencies = [
1993
+ "once_cell",
1994
+ "valuable",
1995
+ ]
1996
+
1997
+ [[package]]
1998
+ name = "tracing-log"
1999
+ version = "0.2.0"
2000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2001
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2002
+ dependencies = [
2003
+ "log",
2004
+ "once_cell",
2005
+ "tracing-core",
2006
+ ]
2007
+
2008
+ [[package]]
2009
+ name = "tracing-subscriber"
2010
+ version = "0.3.23"
2011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2012
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
2013
+ dependencies = [
2014
+ "matchers",
2015
+ "nu-ansi-term",
2016
+ "once_cell",
2017
+ "regex-automata",
2018
+ "sharded-slab",
2019
+ "smallvec",
2020
+ "thread_local",
2021
+ "tracing",
2022
+ "tracing-core",
2023
+ "tracing-log",
2024
+ ]
2025
+
2026
+ [[package]]
2027
+ name = "try-lock"
2028
+ version = "0.2.5"
2029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2030
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2031
+
2032
+ [[package]]
2033
+ name = "typenum"
2034
+ version = "1.20.0"
2035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2036
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
2037
+
2038
+ [[package]]
2039
+ name = "unicode-ident"
2040
+ version = "1.0.24"
2041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2042
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2043
+
2044
+ [[package]]
2045
+ name = "unicode-xid"
2046
+ version = "0.2.6"
2047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2048
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2049
+
2050
+ [[package]]
2051
+ name = "unindent"
2052
+ version = "0.2.4"
2053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2054
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2055
+
2056
+ [[package]]
2057
+ name = "unsafe-libyaml"
2058
+ version = "0.2.11"
2059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2060
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
2061
+
2062
+ [[package]]
2063
+ name = "untrusted"
2064
+ version = "0.9.0"
2065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2066
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2067
+
2068
+ [[package]]
2069
+ name = "url"
2070
+ version = "2.5.8"
2071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2072
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2073
+ dependencies = [
2074
+ "form_urlencoded",
2075
+ "idna",
2076
+ "percent-encoding",
2077
+ "serde",
2078
+ ]
2079
+
2080
+ [[package]]
2081
+ name = "utf8_iter"
2082
+ version = "1.0.4"
2083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2084
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2085
+
2086
+ [[package]]
2087
+ name = "valuable"
2088
+ version = "0.1.1"
2089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2090
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2091
+
2092
+ [[package]]
2093
+ name = "vcpkg"
2094
+ version = "0.2.15"
2095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2096
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2097
+
2098
+ [[package]]
2099
+ name = "version_check"
2100
+ version = "0.9.5"
2101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2102
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2103
+
2104
+ [[package]]
2105
+ name = "want"
2106
+ version = "0.3.1"
2107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2108
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2109
+ dependencies = [
2110
+ "try-lock",
2111
+ ]
2112
+
2113
+ [[package]]
2114
+ name = "wasi"
2115
+ version = "0.11.1+wasi-snapshot-preview1"
2116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2117
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2118
+
2119
+ [[package]]
2120
+ name = "wasip2"
2121
+ version = "1.0.3+wasi-0.2.9"
2122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2123
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
2124
+ dependencies = [
2125
+ "wit-bindgen 0.57.1",
2126
+ ]
2127
+
2128
+ [[package]]
2129
+ name = "wasip3"
2130
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2133
+ dependencies = [
2134
+ "wit-bindgen 0.51.0",
2135
+ ]
2136
+
2137
+ [[package]]
2138
+ name = "wasm-bindgen"
2139
+ version = "0.2.120"
2140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2141
+ checksum = "df52b6d9b87e0c74c9edfa1eb2d9bf85e5d63515474513aa50fa181b3c4f5db1"
2142
+ dependencies = [
2143
+ "cfg-if",
2144
+ "once_cell",
2145
+ "rustversion",
2146
+ "wasm-bindgen-macro",
2147
+ "wasm-bindgen-shared",
2148
+ ]
2149
+
2150
+ [[package]]
2151
+ name = "wasm-bindgen-futures"
2152
+ version = "0.4.70"
2153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2154
+ checksum = "af934872acec734c2d80e6617bbb5ff4f12b052dd8e6332b0817bce889516084"
2155
+ dependencies = [
2156
+ "js-sys",
2157
+ "wasm-bindgen",
2158
+ ]
2159
+
2160
+ [[package]]
2161
+ name = "wasm-bindgen-macro"
2162
+ version = "0.2.120"
2163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2164
+ checksum = "78b1041f495fb322e64aca85f5756b2172e35cd459376e67f2a6c9dffcedb103"
2165
+ dependencies = [
2166
+ "quote",
2167
+ "wasm-bindgen-macro-support",
2168
+ ]
2169
+
2170
+ [[package]]
2171
+ name = "wasm-bindgen-macro-support"
2172
+ version = "0.2.120"
2173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2174
+ checksum = "9dcd0ff20416988a18ac686d4d4d0f6aae9ebf08a389ff5d29012b05af2a1b41"
2175
+ dependencies = [
2176
+ "bumpalo",
2177
+ "proc-macro2",
2178
+ "quote",
2179
+ "syn",
2180
+ "wasm-bindgen-shared",
2181
+ ]
2182
+
2183
+ [[package]]
2184
+ name = "wasm-bindgen-shared"
2185
+ version = "0.2.120"
2186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2187
+ checksum = "49757b3c82ebf16c57d69365a142940b384176c24df52a087fb748e2085359ea"
2188
+ dependencies = [
2189
+ "unicode-ident",
2190
+ ]
2191
+
2192
+ [[package]]
2193
+ name = "wasm-encoder"
2194
+ version = "0.244.0"
2195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2196
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2197
+ dependencies = [
2198
+ "leb128fmt",
2199
+ "wasmparser",
2200
+ ]
2201
+
2202
+ [[package]]
2203
+ name = "wasm-metadata"
2204
+ version = "0.244.0"
2205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2206
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2207
+ dependencies = [
2208
+ "anyhow",
2209
+ "indexmap",
2210
+ "wasm-encoder",
2211
+ "wasmparser",
2212
+ ]
2213
+
2214
+ [[package]]
2215
+ name = "wasmparser"
2216
+ version = "0.244.0"
2217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2218
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2219
+ dependencies = [
2220
+ "bitflags 2.11.1",
2221
+ "hashbrown 0.15.5",
2222
+ "indexmap",
2223
+ "semver",
2224
+ ]
2225
+
2226
+ [[package]]
2227
+ name = "web-sys"
2228
+ version = "0.3.97"
2229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2230
+ checksum = "2eadbac71025cd7b0834f20d1fe8472e8495821b4e9801eb0a60bd1f19827602"
2231
+ dependencies = [
2232
+ "js-sys",
2233
+ "wasm-bindgen",
2234
+ ]
2235
+
2236
+ [[package]]
2237
+ name = "webpki-roots"
2238
+ version = "0.25.4"
2239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2240
+ checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
2241
+
2242
+ [[package]]
2243
+ name = "winapi"
2244
+ version = "0.3.9"
2245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2246
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2247
+ dependencies = [
2248
+ "winapi-i686-pc-windows-gnu",
2249
+ "winapi-x86_64-pc-windows-gnu",
2250
+ ]
2251
+
2252
+ [[package]]
2253
+ name = "winapi-i686-pc-windows-gnu"
2254
+ version = "0.4.0"
2255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2256
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2257
+
2258
+ [[package]]
2259
+ name = "winapi-x86_64-pc-windows-gnu"
2260
+ version = "0.4.0"
2261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2262
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2263
+
2264
+ [[package]]
2265
+ name = "windows-core"
2266
+ version = "0.62.2"
2267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2268
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2269
+ dependencies = [
2270
+ "windows-implement",
2271
+ "windows-interface",
2272
+ "windows-link",
2273
+ "windows-result",
2274
+ "windows-strings",
2275
+ ]
2276
+
2277
+ [[package]]
2278
+ name = "windows-implement"
2279
+ version = "0.60.2"
2280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2281
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2282
+ dependencies = [
2283
+ "proc-macro2",
2284
+ "quote",
2285
+ "syn",
2286
+ ]
2287
+
2288
+ [[package]]
2289
+ name = "windows-interface"
2290
+ version = "0.59.3"
2291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2292
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2293
+ dependencies = [
2294
+ "proc-macro2",
2295
+ "quote",
2296
+ "syn",
2297
+ ]
2298
+
2299
+ [[package]]
2300
+ name = "windows-link"
2301
+ version = "0.2.1"
2302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2303
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2304
+
2305
+ [[package]]
2306
+ name = "windows-result"
2307
+ version = "0.4.1"
2308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2309
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2310
+ dependencies = [
2311
+ "windows-link",
2312
+ ]
2313
+
2314
+ [[package]]
2315
+ name = "windows-strings"
2316
+ version = "0.5.1"
2317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2318
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2319
+ dependencies = [
2320
+ "windows-link",
2321
+ ]
2322
+
2323
+ [[package]]
2324
+ name = "windows-sys"
2325
+ version = "0.48.0"
2326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2327
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2328
+ dependencies = [
2329
+ "windows-targets 0.48.5",
2330
+ ]
2331
+
2332
+ [[package]]
2333
+ name = "windows-sys"
2334
+ version = "0.52.0"
2335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2336
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2337
+ dependencies = [
2338
+ "windows-targets 0.52.6",
2339
+ ]
2340
+
2341
+ [[package]]
2342
+ name = "windows-sys"
2343
+ version = "0.61.2"
2344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2345
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2346
+ dependencies = [
2347
+ "windows-link",
2348
+ ]
2349
+
2350
+ [[package]]
2351
+ name = "windows-targets"
2352
+ version = "0.48.5"
2353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2354
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2355
+ dependencies = [
2356
+ "windows_aarch64_gnullvm 0.48.5",
2357
+ "windows_aarch64_msvc 0.48.5",
2358
+ "windows_i686_gnu 0.48.5",
2359
+ "windows_i686_msvc 0.48.5",
2360
+ "windows_x86_64_gnu 0.48.5",
2361
+ "windows_x86_64_gnullvm 0.48.5",
2362
+ "windows_x86_64_msvc 0.48.5",
2363
+ ]
2364
+
2365
+ [[package]]
2366
+ name = "windows-targets"
2367
+ version = "0.52.6"
2368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2369
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2370
+ dependencies = [
2371
+ "windows_aarch64_gnullvm 0.52.6",
2372
+ "windows_aarch64_msvc 0.52.6",
2373
+ "windows_i686_gnu 0.52.6",
2374
+ "windows_i686_gnullvm",
2375
+ "windows_i686_msvc 0.52.6",
2376
+ "windows_x86_64_gnu 0.52.6",
2377
+ "windows_x86_64_gnullvm 0.52.6",
2378
+ "windows_x86_64_msvc 0.52.6",
2379
+ ]
2380
+
2381
+ [[package]]
2382
+ name = "windows_aarch64_gnullvm"
2383
+ version = "0.48.5"
2384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2385
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2386
+
2387
+ [[package]]
2388
+ name = "windows_aarch64_gnullvm"
2389
+ version = "0.52.6"
2390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2391
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2392
+
2393
+ [[package]]
2394
+ name = "windows_aarch64_msvc"
2395
+ version = "0.48.5"
2396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2397
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2398
+
2399
+ [[package]]
2400
+ name = "windows_aarch64_msvc"
2401
+ version = "0.52.6"
2402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2403
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2404
+
2405
+ [[package]]
2406
+ name = "windows_i686_gnu"
2407
+ version = "0.48.5"
2408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2409
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2410
+
2411
+ [[package]]
2412
+ name = "windows_i686_gnu"
2413
+ version = "0.52.6"
2414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2415
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2416
+
2417
+ [[package]]
2418
+ name = "windows_i686_gnullvm"
2419
+ version = "0.52.6"
2420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2421
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2422
+
2423
+ [[package]]
2424
+ name = "windows_i686_msvc"
2425
+ version = "0.48.5"
2426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2427
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2428
+
2429
+ [[package]]
2430
+ name = "windows_i686_msvc"
2431
+ version = "0.52.6"
2432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2433
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2434
+
2435
+ [[package]]
2436
+ name = "windows_x86_64_gnu"
2437
+ version = "0.48.5"
2438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2439
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2440
+
2441
+ [[package]]
2442
+ name = "windows_x86_64_gnu"
2443
+ version = "0.52.6"
2444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2445
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2446
+
2447
+ [[package]]
2448
+ name = "windows_x86_64_gnullvm"
2449
+ version = "0.48.5"
2450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2451
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2452
+
2453
+ [[package]]
2454
+ name = "windows_x86_64_gnullvm"
2455
+ version = "0.52.6"
2456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2457
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2458
+
2459
+ [[package]]
2460
+ name = "windows_x86_64_msvc"
2461
+ version = "0.48.5"
2462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2463
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2464
+
2465
+ [[package]]
2466
+ name = "windows_x86_64_msvc"
2467
+ version = "0.52.6"
2468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2469
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2470
+
2471
+ [[package]]
2472
+ name = "winreg"
2473
+ version = "0.50.0"
2474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2475
+ checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
2476
+ dependencies = [
2477
+ "cfg-if",
2478
+ "windows-sys 0.48.0",
2479
+ ]
2480
+
2481
+ [[package]]
2482
+ name = "wit-bindgen"
2483
+ version = "0.51.0"
2484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2485
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2486
+ dependencies = [
2487
+ "wit-bindgen-rust-macro",
2488
+ ]
2489
+
2490
+ [[package]]
2491
+ name = "wit-bindgen"
2492
+ version = "0.57.1"
2493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2494
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2495
+
2496
+ [[package]]
2497
+ name = "wit-bindgen-core"
2498
+ version = "0.51.0"
2499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2500
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2501
+ dependencies = [
2502
+ "anyhow",
2503
+ "heck",
2504
+ "wit-parser",
2505
+ ]
2506
+
2507
+ [[package]]
2508
+ name = "wit-bindgen-rust"
2509
+ version = "0.51.0"
2510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2511
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
2512
+ dependencies = [
2513
+ "anyhow",
2514
+ "heck",
2515
+ "indexmap",
2516
+ "prettyplease",
2517
+ "syn",
2518
+ "wasm-metadata",
2519
+ "wit-bindgen-core",
2520
+ "wit-component",
2521
+ ]
2522
+
2523
+ [[package]]
2524
+ name = "wit-bindgen-rust-macro"
2525
+ version = "0.51.0"
2526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2527
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
2528
+ dependencies = [
2529
+ "anyhow",
2530
+ "prettyplease",
2531
+ "proc-macro2",
2532
+ "quote",
2533
+ "syn",
2534
+ "wit-bindgen-core",
2535
+ "wit-bindgen-rust",
2536
+ ]
2537
+
2538
+ [[package]]
2539
+ name = "wit-component"
2540
+ version = "0.244.0"
2541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2542
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
2543
+ dependencies = [
2544
+ "anyhow",
2545
+ "bitflags 2.11.1",
2546
+ "indexmap",
2547
+ "log",
2548
+ "serde",
2549
+ "serde_derive",
2550
+ "serde_json",
2551
+ "wasm-encoder",
2552
+ "wasm-metadata",
2553
+ "wasmparser",
2554
+ "wit-parser",
2555
+ ]
2556
+
2557
+ [[package]]
2558
+ name = "wit-parser"
2559
+ version = "0.244.0"
2560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2561
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
2562
+ dependencies = [
2563
+ "anyhow",
2564
+ "id-arena",
2565
+ "indexmap",
2566
+ "log",
2567
+ "semver",
2568
+ "serde",
2569
+ "serde_derive",
2570
+ "serde_json",
2571
+ "unicode-xid",
2572
+ "wasmparser",
2573
+ ]
2574
+
2575
+ [[package]]
2576
+ name = "writeable"
2577
+ version = "0.6.3"
2578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2579
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2580
+
2581
+ [[package]]
2582
+ name = "yoke"
2583
+ version = "0.8.2"
2584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2585
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
2586
+ dependencies = [
2587
+ "stable_deref_trait",
2588
+ "yoke-derive",
2589
+ "zerofrom",
2590
+ ]
2591
+
2592
+ [[package]]
2593
+ name = "yoke-derive"
2594
+ version = "0.8.2"
2595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2596
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2597
+ dependencies = [
2598
+ "proc-macro2",
2599
+ "quote",
2600
+ "syn",
2601
+ "synstructure",
2602
+ ]
2603
+
2604
+ [[package]]
2605
+ name = "zerocopy"
2606
+ version = "0.8.48"
2607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2608
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
2609
+ dependencies = [
2610
+ "zerocopy-derive",
2611
+ ]
2612
+
2613
+ [[package]]
2614
+ name = "zerocopy-derive"
2615
+ version = "0.8.48"
2616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2617
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
2618
+ dependencies = [
2619
+ "proc-macro2",
2620
+ "quote",
2621
+ "syn",
2622
+ ]
2623
+
2624
+ [[package]]
2625
+ name = "zerofrom"
2626
+ version = "0.1.7"
2627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2628
+ checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
2629
+ dependencies = [
2630
+ "zerofrom-derive",
2631
+ ]
2632
+
2633
+ [[package]]
2634
+ name = "zerofrom-derive"
2635
+ version = "0.1.7"
2636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2637
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2638
+ dependencies = [
2639
+ "proc-macro2",
2640
+ "quote",
2641
+ "syn",
2642
+ "synstructure",
2643
+ ]
2644
+
2645
+ [[package]]
2646
+ name = "zerotrie"
2647
+ version = "0.2.4"
2648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2649
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
2650
+ dependencies = [
2651
+ "displaydoc",
2652
+ "yoke",
2653
+ "zerofrom",
2654
+ ]
2655
+
2656
+ [[package]]
2657
+ name = "zerovec"
2658
+ version = "0.11.6"
2659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2660
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
2661
+ dependencies = [
2662
+ "yoke",
2663
+ "zerofrom",
2664
+ "zerovec-derive",
2665
+ ]
2666
+
2667
+ [[package]]
2668
+ name = "zerovec-derive"
2669
+ version = "0.11.3"
2670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2671
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
2672
+ dependencies = [
2673
+ "proc-macro2",
2674
+ "quote",
2675
+ "syn",
2676
+ ]
2677
+
2678
+ [[package]]
2679
+ name = "zmij"
2680
+ version = "1.0.21"
2681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2682
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"