@moejay/wrightty 0.0.0

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 (84) hide show
  1. package/.github/workflows/ci.yml +90 -0
  2. package/.github/workflows/release.yml +177 -0
  3. package/Cargo.lock +2662 -0
  4. package/Cargo.toml +38 -0
  5. package/PROTOCOL.md +1351 -0
  6. package/README.md +386 -0
  7. package/agents/ceo/AGENTS.md +24 -0
  8. package/agents/ceo/HEARTBEAT.md +72 -0
  9. package/agents/ceo/SOUL.md +33 -0
  10. package/agents/ceo/TOOLS.md +3 -0
  11. package/agents/founding-engineer/AGENTS.md +44 -0
  12. package/crates/wrightty/Cargo.toml +43 -0
  13. package/crates/wrightty/src/client_cmds.rs +366 -0
  14. package/crates/wrightty/src/discover.rs +78 -0
  15. package/crates/wrightty/src/main.rs +100 -0
  16. package/crates/wrightty/src/server.rs +100 -0
  17. package/crates/wrightty/src/term.rs +338 -0
  18. package/crates/wrightty-bridge-ghostty/Cargo.toml +27 -0
  19. package/crates/wrightty-bridge-ghostty/src/ghostty.rs +422 -0
  20. package/crates/wrightty-bridge-ghostty/src/lib.rs +2 -0
  21. package/crates/wrightty-bridge-ghostty/src/main.rs +146 -0
  22. package/crates/wrightty-bridge-ghostty/src/rpc.rs +307 -0
  23. package/crates/wrightty-bridge-kitty/Cargo.toml +26 -0
  24. package/crates/wrightty-bridge-kitty/src/kitty.rs +269 -0
  25. package/crates/wrightty-bridge-kitty/src/lib.rs +2 -0
  26. package/crates/wrightty-bridge-kitty/src/main.rs +124 -0
  27. package/crates/wrightty-bridge-kitty/src/rpc.rs +304 -0
  28. package/crates/wrightty-bridge-tmux/Cargo.toml +26 -0
  29. package/crates/wrightty-bridge-tmux/src/lib.rs +2 -0
  30. package/crates/wrightty-bridge-tmux/src/main.rs +119 -0
  31. package/crates/wrightty-bridge-tmux/src/rpc.rs +291 -0
  32. package/crates/wrightty-bridge-tmux/src/tmux.rs +215 -0
  33. package/crates/wrightty-bridge-wezterm/Cargo.toml +26 -0
  34. package/crates/wrightty-bridge-wezterm/src/lib.rs +2 -0
  35. package/crates/wrightty-bridge-wezterm/src/main.rs +119 -0
  36. package/crates/wrightty-bridge-wezterm/src/rpc.rs +339 -0
  37. package/crates/wrightty-bridge-wezterm/src/wezterm.rs +190 -0
  38. package/crates/wrightty-bridge-zellij/Cargo.toml +27 -0
  39. package/crates/wrightty-bridge-zellij/src/lib.rs +2 -0
  40. package/crates/wrightty-bridge-zellij/src/main.rs +125 -0
  41. package/crates/wrightty-bridge-zellij/src/rpc.rs +328 -0
  42. package/crates/wrightty-bridge-zellij/src/zellij.rs +199 -0
  43. package/crates/wrightty-client/Cargo.toml +16 -0
  44. package/crates/wrightty-client/src/client.rs +254 -0
  45. package/crates/wrightty-client/src/lib.rs +2 -0
  46. package/crates/wrightty-core/Cargo.toml +21 -0
  47. package/crates/wrightty-core/src/input.rs +212 -0
  48. package/crates/wrightty-core/src/lib.rs +4 -0
  49. package/crates/wrightty-core/src/screen.rs +325 -0
  50. package/crates/wrightty-core/src/session.rs +249 -0
  51. package/crates/wrightty-core/src/session_manager.rs +77 -0
  52. package/crates/wrightty-protocol/Cargo.toml +13 -0
  53. package/crates/wrightty-protocol/src/error.rs +8 -0
  54. package/crates/wrightty-protocol/src/events.rs +138 -0
  55. package/crates/wrightty-protocol/src/lib.rs +4 -0
  56. package/crates/wrightty-protocol/src/methods.rs +321 -0
  57. package/crates/wrightty-protocol/src/types.rs +201 -0
  58. package/crates/wrightty-server/Cargo.toml +23 -0
  59. package/crates/wrightty-server/src/lib.rs +2 -0
  60. package/crates/wrightty-server/src/main.rs +65 -0
  61. package/crates/wrightty-server/src/rpc.rs +455 -0
  62. package/crates/wrightty-server/src/state.rs +39 -0
  63. package/examples/basic_command.py +53 -0
  64. package/examples/interactive_tui.py +86 -0
  65. package/examples/record_session.py +96 -0
  66. package/install.sh +81 -0
  67. package/package.json +24 -0
  68. package/sdks/node/package-lock.json +85 -0
  69. package/sdks/node/package.json +44 -0
  70. package/sdks/node/src/client.ts +94 -0
  71. package/sdks/node/src/index.ts +19 -0
  72. package/sdks/node/src/terminal.ts +258 -0
  73. package/sdks/node/src/types.ts +105 -0
  74. package/sdks/node/tsconfig.json +17 -0
  75. package/sdks/python/README.md +96 -0
  76. package/sdks/python/pyproject.toml +42 -0
  77. package/sdks/python/wrightty/__init__.py +6 -0
  78. package/sdks/python/wrightty/cli.py +210 -0
  79. package/sdks/python/wrightty/client.py +136 -0
  80. package/sdks/python/wrightty/mcp_server.py +434 -0
  81. package/sdks/python/wrightty/terminal.py +333 -0
  82. package/skills/wrightty/SKILL.md +261 -0
  83. package/src/lib.rs +1 -0
  84. package/tests/integration_test.rs +618 -0
package/Cargo.lock ADDED
@@ -0,0 +1,2662 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "alacritty_terminal"
16
+ version = "0.25.1"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "46319972e74179d707445f64aaa2893bbf6a111de3a9af29b7eb382f8b39e282"
19
+ dependencies = [
20
+ "base64",
21
+ "bitflags 2.11.0",
22
+ "home",
23
+ "libc",
24
+ "log",
25
+ "miow",
26
+ "parking_lot",
27
+ "piper",
28
+ "polling",
29
+ "regex-automata",
30
+ "rustix",
31
+ "rustix-openpty",
32
+ "serde",
33
+ "signal-hook",
34
+ "unicode-width",
35
+ "vte",
36
+ "windows-sys 0.59.0",
37
+ ]
38
+
39
+ [[package]]
40
+ name = "anstream"
41
+ version = "1.0.0"
42
+ source = "registry+https://github.com/rust-lang/crates.io-index"
43
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
44
+ dependencies = [
45
+ "anstyle",
46
+ "anstyle-parse",
47
+ "anstyle-query",
48
+ "anstyle-wincon",
49
+ "colorchoice",
50
+ "is_terminal_polyfill",
51
+ "utf8parse",
52
+ ]
53
+
54
+ [[package]]
55
+ name = "anstyle"
56
+ version = "1.0.14"
57
+ source = "registry+https://github.com/rust-lang/crates.io-index"
58
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
59
+
60
+ [[package]]
61
+ name = "anstyle-parse"
62
+ version = "1.0.0"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
65
+ dependencies = [
66
+ "utf8parse",
67
+ ]
68
+
69
+ [[package]]
70
+ name = "anstyle-query"
71
+ version = "1.1.5"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
74
+ dependencies = [
75
+ "windows-sys 0.61.2",
76
+ ]
77
+
78
+ [[package]]
79
+ name = "anstyle-wincon"
80
+ version = "3.0.11"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
83
+ dependencies = [
84
+ "anstyle",
85
+ "once_cell_polyfill",
86
+ "windows-sys 0.61.2",
87
+ ]
88
+
89
+ [[package]]
90
+ name = "anyhow"
91
+ version = "1.0.102"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
94
+
95
+ [[package]]
96
+ name = "arrayvec"
97
+ version = "0.7.6"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
100
+
101
+ [[package]]
102
+ name = "async-trait"
103
+ version = "0.1.89"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
106
+ dependencies = [
107
+ "proc-macro2",
108
+ "quote",
109
+ "syn",
110
+ ]
111
+
112
+ [[package]]
113
+ name = "atomic-waker"
114
+ version = "1.1.2"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
117
+
118
+ [[package]]
119
+ name = "base64"
120
+ version = "0.22.1"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
123
+
124
+ [[package]]
125
+ name = "bitflags"
126
+ version = "1.3.2"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
129
+
130
+ [[package]]
131
+ name = "bitflags"
132
+ version = "2.11.0"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
135
+ dependencies = [
136
+ "serde_core",
137
+ ]
138
+
139
+ [[package]]
140
+ name = "block-buffer"
141
+ version = "0.10.4"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
144
+ dependencies = [
145
+ "generic-array",
146
+ ]
147
+
148
+ [[package]]
149
+ name = "bumpalo"
150
+ version = "3.20.2"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
153
+
154
+ [[package]]
155
+ name = "bytes"
156
+ version = "1.11.1"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
159
+
160
+ [[package]]
161
+ name = "cc"
162
+ version = "1.2.57"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
165
+ dependencies = [
166
+ "find-msvc-tools",
167
+ "shlex",
168
+ ]
169
+
170
+ [[package]]
171
+ name = "cesu8"
172
+ version = "1.1.0"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
175
+
176
+ [[package]]
177
+ name = "cfg-if"
178
+ version = "1.0.4"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
181
+
182
+ [[package]]
183
+ name = "cfg_aliases"
184
+ version = "0.1.1"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
187
+
188
+ [[package]]
189
+ name = "clap"
190
+ version = "4.6.0"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
193
+ dependencies = [
194
+ "clap_builder",
195
+ "clap_derive",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "clap_builder"
200
+ version = "4.6.0"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
203
+ dependencies = [
204
+ "anstream",
205
+ "anstyle",
206
+ "clap_lex",
207
+ "strsim",
208
+ ]
209
+
210
+ [[package]]
211
+ name = "clap_derive"
212
+ version = "4.6.0"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
215
+ dependencies = [
216
+ "heck",
217
+ "proc-macro2",
218
+ "quote",
219
+ "syn",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "clap_lex"
224
+ version = "1.1.0"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
227
+
228
+ [[package]]
229
+ name = "colorchoice"
230
+ version = "1.0.5"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
233
+
234
+ [[package]]
235
+ name = "combine"
236
+ version = "4.6.7"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
239
+ dependencies = [
240
+ "bytes",
241
+ "memchr",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "concurrent-queue"
246
+ version = "2.5.0"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
249
+ dependencies = [
250
+ "crossbeam-utils",
251
+ ]
252
+
253
+ [[package]]
254
+ name = "core-foundation"
255
+ version = "0.10.1"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
258
+ dependencies = [
259
+ "core-foundation-sys",
260
+ "libc",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "core-foundation-sys"
265
+ version = "0.8.7"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
268
+
269
+ [[package]]
270
+ name = "cpufeatures"
271
+ version = "0.2.17"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
274
+ dependencies = [
275
+ "libc",
276
+ ]
277
+
278
+ [[package]]
279
+ name = "crossbeam-utils"
280
+ version = "0.8.21"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
283
+
284
+ [[package]]
285
+ name = "crypto-common"
286
+ version = "0.1.7"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
289
+ dependencies = [
290
+ "generic-array",
291
+ "typenum",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "cursor-icon"
296
+ version = "1.2.0"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "f27ae1dd37df86211c42e150270f82743308803d90a6f6e6651cd730d5e1732f"
299
+
300
+ [[package]]
301
+ name = "digest"
302
+ version = "0.10.7"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
305
+ dependencies = [
306
+ "block-buffer",
307
+ "crypto-common",
308
+ ]
309
+
310
+ [[package]]
311
+ name = "displaydoc"
312
+ version = "0.2.5"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
315
+ dependencies = [
316
+ "proc-macro2",
317
+ "quote",
318
+ "syn",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "downcast-rs"
323
+ version = "1.2.1"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
326
+
327
+ [[package]]
328
+ name = "equivalent"
329
+ version = "1.0.2"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
332
+
333
+ [[package]]
334
+ name = "errno"
335
+ version = "0.3.14"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
338
+ dependencies = [
339
+ "libc",
340
+ "windows-sys 0.61.2",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "fastrand"
345
+ version = "2.3.0"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
348
+
349
+ [[package]]
350
+ name = "filedescriptor"
351
+ version = "0.8.3"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "e40758ed24c9b2eeb76c35fb0aebc66c626084edd827e07e1552279814c6682d"
354
+ dependencies = [
355
+ "libc",
356
+ "thiserror 1.0.69",
357
+ "winapi",
358
+ ]
359
+
360
+ [[package]]
361
+ name = "find-msvc-tools"
362
+ version = "0.1.9"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
365
+
366
+ [[package]]
367
+ name = "fnv"
368
+ version = "1.0.7"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
371
+
372
+ [[package]]
373
+ name = "foldhash"
374
+ version = "0.1.5"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
377
+
378
+ [[package]]
379
+ name = "form_urlencoded"
380
+ version = "1.2.2"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
383
+ dependencies = [
384
+ "percent-encoding",
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-timer"
448
+ version = "3.0.3"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
451
+
452
+ [[package]]
453
+ name = "futures-util"
454
+ version = "0.3.32"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
457
+ dependencies = [
458
+ "futures-channel",
459
+ "futures-core",
460
+ "futures-io",
461
+ "futures-macro",
462
+ "futures-sink",
463
+ "futures-task",
464
+ "memchr",
465
+ "pin-project-lite",
466
+ "slab",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "generic-array"
471
+ version = "0.14.7"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
474
+ dependencies = [
475
+ "typenum",
476
+ "version_check",
477
+ ]
478
+
479
+ [[package]]
480
+ name = "getrandom"
481
+ version = "0.2.17"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
484
+ dependencies = [
485
+ "cfg-if",
486
+ "libc",
487
+ "wasi",
488
+ ]
489
+
490
+ [[package]]
491
+ name = "getrandom"
492
+ version = "0.4.2"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
495
+ dependencies = [
496
+ "cfg-if",
497
+ "libc",
498
+ "r-efi",
499
+ "wasip2",
500
+ "wasip3",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "h2"
505
+ version = "0.4.13"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
508
+ dependencies = [
509
+ "atomic-waker",
510
+ "bytes",
511
+ "fnv",
512
+ "futures-core",
513
+ "futures-sink",
514
+ "http",
515
+ "indexmap",
516
+ "slab",
517
+ "tokio",
518
+ "tokio-util",
519
+ "tracing",
520
+ ]
521
+
522
+ [[package]]
523
+ name = "hashbrown"
524
+ version = "0.15.5"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
527
+ dependencies = [
528
+ "foldhash",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "hashbrown"
533
+ version = "0.16.1"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
536
+
537
+ [[package]]
538
+ name = "heck"
539
+ version = "0.5.0"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
542
+
543
+ [[package]]
544
+ name = "hermit-abi"
545
+ version = "0.5.2"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
548
+
549
+ [[package]]
550
+ name = "home"
551
+ version = "0.5.12"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
554
+ dependencies = [
555
+ "windows-sys 0.61.2",
556
+ ]
557
+
558
+ [[package]]
559
+ name = "http"
560
+ version = "1.4.0"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
563
+ dependencies = [
564
+ "bytes",
565
+ "itoa",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "http-body"
570
+ version = "1.0.1"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
573
+ dependencies = [
574
+ "bytes",
575
+ "http",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "http-body-util"
580
+ version = "0.1.3"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
583
+ dependencies = [
584
+ "bytes",
585
+ "futures-core",
586
+ "http",
587
+ "http-body",
588
+ "pin-project-lite",
589
+ ]
590
+
591
+ [[package]]
592
+ name = "httparse"
593
+ version = "1.10.1"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
596
+
597
+ [[package]]
598
+ name = "httpdate"
599
+ version = "1.0.3"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
602
+
603
+ [[package]]
604
+ name = "hyper"
605
+ version = "1.8.1"
606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
607
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
608
+ dependencies = [
609
+ "atomic-waker",
610
+ "bytes",
611
+ "futures-channel",
612
+ "futures-core",
613
+ "h2",
614
+ "http",
615
+ "http-body",
616
+ "httparse",
617
+ "httpdate",
618
+ "itoa",
619
+ "pin-project-lite",
620
+ "pin-utils",
621
+ "smallvec",
622
+ "tokio",
623
+ ]
624
+
625
+ [[package]]
626
+ name = "hyper-util"
627
+ version = "0.1.20"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
630
+ dependencies = [
631
+ "bytes",
632
+ "http",
633
+ "http-body",
634
+ "hyper",
635
+ "pin-project-lite",
636
+ "tokio",
637
+ "tower-service",
638
+ ]
639
+
640
+ [[package]]
641
+ name = "icu_collections"
642
+ version = "2.1.1"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
645
+ dependencies = [
646
+ "displaydoc",
647
+ "potential_utf",
648
+ "yoke",
649
+ "zerofrom",
650
+ "zerovec",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "icu_locale_core"
655
+ version = "2.1.1"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
658
+ dependencies = [
659
+ "displaydoc",
660
+ "litemap",
661
+ "tinystr",
662
+ "writeable",
663
+ "zerovec",
664
+ ]
665
+
666
+ [[package]]
667
+ name = "icu_normalizer"
668
+ version = "2.1.1"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
671
+ dependencies = [
672
+ "icu_collections",
673
+ "icu_normalizer_data",
674
+ "icu_properties",
675
+ "icu_provider",
676
+ "smallvec",
677
+ "zerovec",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "icu_normalizer_data"
682
+ version = "2.1.1"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
685
+
686
+ [[package]]
687
+ name = "icu_properties"
688
+ version = "2.1.2"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
691
+ dependencies = [
692
+ "icu_collections",
693
+ "icu_locale_core",
694
+ "icu_properties_data",
695
+ "icu_provider",
696
+ "zerotrie",
697
+ "zerovec",
698
+ ]
699
+
700
+ [[package]]
701
+ name = "icu_properties_data"
702
+ version = "2.1.2"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
705
+
706
+ [[package]]
707
+ name = "icu_provider"
708
+ version = "2.1.1"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
711
+ dependencies = [
712
+ "displaydoc",
713
+ "icu_locale_core",
714
+ "writeable",
715
+ "yoke",
716
+ "zerofrom",
717
+ "zerotrie",
718
+ "zerovec",
719
+ ]
720
+
721
+ [[package]]
722
+ name = "id-arena"
723
+ version = "2.3.0"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
726
+
727
+ [[package]]
728
+ name = "idna"
729
+ version = "1.1.0"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
732
+ dependencies = [
733
+ "idna_adapter",
734
+ "smallvec",
735
+ "utf8_iter",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "idna_adapter"
740
+ version = "1.2.1"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
743
+ dependencies = [
744
+ "icu_normalizer",
745
+ "icu_properties",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "indexmap"
750
+ version = "2.13.0"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
753
+ dependencies = [
754
+ "equivalent",
755
+ "hashbrown 0.16.1",
756
+ "serde",
757
+ "serde_core",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "is_terminal_polyfill"
762
+ version = "1.70.2"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
765
+
766
+ [[package]]
767
+ name = "itoa"
768
+ version = "1.0.18"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
771
+
772
+ [[package]]
773
+ name = "jni"
774
+ version = "0.21.1"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
777
+ dependencies = [
778
+ "cesu8",
779
+ "cfg-if",
780
+ "combine",
781
+ "jni-sys",
782
+ "log",
783
+ "thiserror 1.0.69",
784
+ "walkdir",
785
+ "windows-sys 0.45.0",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "jni-sys"
790
+ version = "0.3.0"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
793
+
794
+ [[package]]
795
+ name = "js-sys"
796
+ version = "0.3.91"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
799
+ dependencies = [
800
+ "once_cell",
801
+ "wasm-bindgen",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "jsonrpsee"
806
+ version = "0.24.10"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "e281ae70cc3b98dac15fced3366a880949e65fc66e345ce857a5682d152f3e62"
809
+ dependencies = [
810
+ "jsonrpsee-core",
811
+ "jsonrpsee-server",
812
+ "jsonrpsee-types",
813
+ "jsonrpsee-ws-client",
814
+ "tokio",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "jsonrpsee-client-transport"
819
+ version = "0.24.10"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "cc4280b709ac3bb5e16cf3bad5056a0ec8df55fa89edfe996361219aadc2c7ea"
822
+ dependencies = [
823
+ "base64",
824
+ "futures-util",
825
+ "http",
826
+ "jsonrpsee-core",
827
+ "pin-project",
828
+ "rustls",
829
+ "rustls-pki-types",
830
+ "rustls-platform-verifier",
831
+ "soketto",
832
+ "thiserror 1.0.69",
833
+ "tokio",
834
+ "tokio-rustls",
835
+ "tokio-util",
836
+ "tracing",
837
+ "url",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "jsonrpsee-core"
842
+ version = "0.24.10"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "348ee569eaed52926b5e740aae20863762b16596476e943c9e415a6479021622"
845
+ dependencies = [
846
+ "async-trait",
847
+ "bytes",
848
+ "futures-timer",
849
+ "futures-util",
850
+ "http",
851
+ "http-body",
852
+ "http-body-util",
853
+ "jsonrpsee-types",
854
+ "parking_lot",
855
+ "pin-project",
856
+ "rand",
857
+ "rustc-hash",
858
+ "serde",
859
+ "serde_json",
860
+ "thiserror 1.0.69",
861
+ "tokio",
862
+ "tokio-stream",
863
+ "tracing",
864
+ ]
865
+
866
+ [[package]]
867
+ name = "jsonrpsee-server"
868
+ version = "0.24.10"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "21429bcdda37dcf2d43b68621b994adede0e28061f816b038b0f18c70c143d51"
871
+ dependencies = [
872
+ "futures-util",
873
+ "http",
874
+ "http-body",
875
+ "http-body-util",
876
+ "hyper",
877
+ "hyper-util",
878
+ "jsonrpsee-core",
879
+ "jsonrpsee-types",
880
+ "pin-project",
881
+ "route-recognizer",
882
+ "serde",
883
+ "serde_json",
884
+ "soketto",
885
+ "thiserror 1.0.69",
886
+ "tokio",
887
+ "tokio-stream",
888
+ "tokio-util",
889
+ "tower",
890
+ "tracing",
891
+ ]
892
+
893
+ [[package]]
894
+ name = "jsonrpsee-types"
895
+ version = "0.24.10"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "b0f05e0028e55b15dbd2107163b3c744cd3bb4474f193f95d9708acbf5677e44"
898
+ dependencies = [
899
+ "http",
900
+ "serde",
901
+ "serde_json",
902
+ "thiserror 1.0.69",
903
+ ]
904
+
905
+ [[package]]
906
+ name = "jsonrpsee-ws-client"
907
+ version = "0.24.10"
908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
909
+ checksum = "78fc744f17e7926d57f478cf9ca6e1ee5d8332bf0514860b1a3cdf1742e614cc"
910
+ dependencies = [
911
+ "http",
912
+ "jsonrpsee-client-transport",
913
+ "jsonrpsee-core",
914
+ "jsonrpsee-types",
915
+ "url",
916
+ ]
917
+
918
+ [[package]]
919
+ name = "lazy_static"
920
+ version = "1.5.0"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
923
+
924
+ [[package]]
925
+ name = "leb128fmt"
926
+ version = "0.1.0"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
929
+
930
+ [[package]]
931
+ name = "libc"
932
+ version = "0.2.183"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
935
+
936
+ [[package]]
937
+ name = "linux-raw-sys"
938
+ version = "0.12.1"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
941
+
942
+ [[package]]
943
+ name = "litemap"
944
+ version = "0.8.1"
945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
947
+
948
+ [[package]]
949
+ name = "lock_api"
950
+ version = "0.4.14"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
953
+ dependencies = [
954
+ "scopeguard",
955
+ ]
956
+
957
+ [[package]]
958
+ name = "log"
959
+ version = "0.4.29"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
962
+
963
+ [[package]]
964
+ name = "matchers"
965
+ version = "0.2.0"
966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
967
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
968
+ dependencies = [
969
+ "regex-automata",
970
+ ]
971
+
972
+ [[package]]
973
+ name = "memchr"
974
+ version = "2.8.0"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
977
+
978
+ [[package]]
979
+ name = "mio"
980
+ version = "1.1.1"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
983
+ dependencies = [
984
+ "libc",
985
+ "wasi",
986
+ "windows-sys 0.61.2",
987
+ ]
988
+
989
+ [[package]]
990
+ name = "miow"
991
+ version = "0.6.1"
992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
993
+ checksum = "536bfad37a309d62069485248eeaba1e8d9853aaf951caaeaed0585a95346f08"
994
+ dependencies = [
995
+ "windows-sys 0.61.2",
996
+ ]
997
+
998
+ [[package]]
999
+ name = "nix"
1000
+ version = "0.28.0"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4"
1003
+ dependencies = [
1004
+ "bitflags 2.11.0",
1005
+ "cfg-if",
1006
+ "cfg_aliases",
1007
+ "libc",
1008
+ ]
1009
+
1010
+ [[package]]
1011
+ name = "nu-ansi-term"
1012
+ version = "0.50.3"
1013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1014
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1015
+ dependencies = [
1016
+ "windows-sys 0.61.2",
1017
+ ]
1018
+
1019
+ [[package]]
1020
+ name = "once_cell"
1021
+ version = "1.21.4"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1024
+
1025
+ [[package]]
1026
+ name = "once_cell_polyfill"
1027
+ version = "1.70.2"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1030
+
1031
+ [[package]]
1032
+ name = "openssl-probe"
1033
+ version = "0.2.1"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1036
+
1037
+ [[package]]
1038
+ name = "parking_lot"
1039
+ version = "0.12.5"
1040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1041
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1042
+ dependencies = [
1043
+ "lock_api",
1044
+ "parking_lot_core",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "parking_lot_core"
1049
+ version = "0.9.12"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1052
+ dependencies = [
1053
+ "cfg-if",
1054
+ "libc",
1055
+ "redox_syscall",
1056
+ "smallvec",
1057
+ "windows-link",
1058
+ ]
1059
+
1060
+ [[package]]
1061
+ name = "percent-encoding"
1062
+ version = "2.3.2"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1065
+
1066
+ [[package]]
1067
+ name = "pin-project"
1068
+ version = "1.1.11"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517"
1071
+ dependencies = [
1072
+ "pin-project-internal",
1073
+ ]
1074
+
1075
+ [[package]]
1076
+ name = "pin-project-internal"
1077
+ version = "1.1.11"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6"
1080
+ dependencies = [
1081
+ "proc-macro2",
1082
+ "quote",
1083
+ "syn",
1084
+ ]
1085
+
1086
+ [[package]]
1087
+ name = "pin-project-lite"
1088
+ version = "0.2.17"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1091
+
1092
+ [[package]]
1093
+ name = "pin-utils"
1094
+ version = "0.1.0"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1097
+
1098
+ [[package]]
1099
+ name = "piper"
1100
+ version = "0.2.5"
1101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1102
+ checksum = "c835479a4443ded371d6c535cbfd8d31ad92c5d23ae9770a61bc155e4992a3c1"
1103
+ dependencies = [
1104
+ "atomic-waker",
1105
+ "fastrand",
1106
+ "futures-io",
1107
+ ]
1108
+
1109
+ [[package]]
1110
+ name = "polling"
1111
+ version = "3.11.0"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
1114
+ dependencies = [
1115
+ "cfg-if",
1116
+ "concurrent-queue",
1117
+ "hermit-abi",
1118
+ "pin-project-lite",
1119
+ "rustix",
1120
+ "windows-sys 0.61.2",
1121
+ ]
1122
+
1123
+ [[package]]
1124
+ name = "portable-pty"
1125
+ version = "0.9.0"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "b4a596a2b3d2752d94f51fac2d4a96737b8705dddd311a32b9af47211f08671e"
1128
+ dependencies = [
1129
+ "anyhow",
1130
+ "bitflags 1.3.2",
1131
+ "downcast-rs",
1132
+ "filedescriptor",
1133
+ "lazy_static",
1134
+ "libc",
1135
+ "log",
1136
+ "nix",
1137
+ "serial2",
1138
+ "shared_library",
1139
+ "shell-words",
1140
+ "winapi",
1141
+ "winreg",
1142
+ ]
1143
+
1144
+ [[package]]
1145
+ name = "potential_utf"
1146
+ version = "0.1.4"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1149
+ dependencies = [
1150
+ "zerovec",
1151
+ ]
1152
+
1153
+ [[package]]
1154
+ name = "ppv-lite86"
1155
+ version = "0.2.21"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1158
+ dependencies = [
1159
+ "zerocopy",
1160
+ ]
1161
+
1162
+ [[package]]
1163
+ name = "prettyplease"
1164
+ version = "0.2.37"
1165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1166
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1167
+ dependencies = [
1168
+ "proc-macro2",
1169
+ "syn",
1170
+ ]
1171
+
1172
+ [[package]]
1173
+ name = "proc-macro2"
1174
+ version = "1.0.106"
1175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1176
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1177
+ dependencies = [
1178
+ "unicode-ident",
1179
+ ]
1180
+
1181
+ [[package]]
1182
+ name = "quote"
1183
+ version = "1.0.45"
1184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1185
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1186
+ dependencies = [
1187
+ "proc-macro2",
1188
+ ]
1189
+
1190
+ [[package]]
1191
+ name = "r-efi"
1192
+ version = "6.0.0"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1195
+
1196
+ [[package]]
1197
+ name = "rand"
1198
+ version = "0.8.5"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1201
+ dependencies = [
1202
+ "libc",
1203
+ "rand_chacha",
1204
+ "rand_core",
1205
+ ]
1206
+
1207
+ [[package]]
1208
+ name = "rand_chacha"
1209
+ version = "0.3.1"
1210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1212
+ dependencies = [
1213
+ "ppv-lite86",
1214
+ "rand_core",
1215
+ ]
1216
+
1217
+ [[package]]
1218
+ name = "rand_core"
1219
+ version = "0.6.4"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1222
+ dependencies = [
1223
+ "getrandom 0.2.17",
1224
+ ]
1225
+
1226
+ [[package]]
1227
+ name = "redox_syscall"
1228
+ version = "0.5.18"
1229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1230
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1231
+ dependencies = [
1232
+ "bitflags 2.11.0",
1233
+ ]
1234
+
1235
+ [[package]]
1236
+ name = "regex"
1237
+ version = "1.12.3"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1240
+ dependencies = [
1241
+ "aho-corasick",
1242
+ "memchr",
1243
+ "regex-automata",
1244
+ "regex-syntax",
1245
+ ]
1246
+
1247
+ [[package]]
1248
+ name = "regex-automata"
1249
+ version = "0.4.14"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1252
+ dependencies = [
1253
+ "aho-corasick",
1254
+ "memchr",
1255
+ "regex-syntax",
1256
+ ]
1257
+
1258
+ [[package]]
1259
+ name = "regex-syntax"
1260
+ version = "0.8.10"
1261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1263
+
1264
+ [[package]]
1265
+ name = "ring"
1266
+ version = "0.17.14"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1269
+ dependencies = [
1270
+ "cc",
1271
+ "cfg-if",
1272
+ "getrandom 0.2.17",
1273
+ "libc",
1274
+ "untrusted",
1275
+ "windows-sys 0.52.0",
1276
+ ]
1277
+
1278
+ [[package]]
1279
+ name = "route-recognizer"
1280
+ version = "0.3.1"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "afab94fb28594581f62d981211a9a4d53cc8130bbcbbb89a0440d9b8e81a7746"
1283
+
1284
+ [[package]]
1285
+ name = "rustc-hash"
1286
+ version = "2.1.1"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1289
+
1290
+ [[package]]
1291
+ name = "rustix"
1292
+ version = "1.1.4"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1295
+ dependencies = [
1296
+ "bitflags 2.11.0",
1297
+ "errno",
1298
+ "libc",
1299
+ "linux-raw-sys",
1300
+ "windows-sys 0.61.2",
1301
+ ]
1302
+
1303
+ [[package]]
1304
+ name = "rustix-openpty"
1305
+ version = "0.2.0"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "1de16c7c59892b870a6336f185dc10943517f1327447096bbb7bb32cd85e2393"
1308
+ dependencies = [
1309
+ "errno",
1310
+ "libc",
1311
+ "rustix",
1312
+ ]
1313
+
1314
+ [[package]]
1315
+ name = "rustls"
1316
+ version = "0.23.37"
1317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1318
+ checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
1319
+ dependencies = [
1320
+ "log",
1321
+ "once_cell",
1322
+ "ring",
1323
+ "rustls-pki-types",
1324
+ "rustls-webpki",
1325
+ "subtle",
1326
+ "zeroize",
1327
+ ]
1328
+
1329
+ [[package]]
1330
+ name = "rustls-native-certs"
1331
+ version = "0.8.3"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
1334
+ dependencies = [
1335
+ "openssl-probe",
1336
+ "rustls-pki-types",
1337
+ "schannel",
1338
+ "security-framework",
1339
+ ]
1340
+
1341
+ [[package]]
1342
+ name = "rustls-pki-types"
1343
+ version = "1.14.0"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
1346
+ dependencies = [
1347
+ "zeroize",
1348
+ ]
1349
+
1350
+ [[package]]
1351
+ name = "rustls-platform-verifier"
1352
+ version = "0.5.3"
1353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1354
+ checksum = "19787cda76408ec5404443dc8b31795c87cd8fec49762dc75fa727740d34acc1"
1355
+ dependencies = [
1356
+ "core-foundation",
1357
+ "core-foundation-sys",
1358
+ "jni",
1359
+ "log",
1360
+ "once_cell",
1361
+ "rustls",
1362
+ "rustls-native-certs",
1363
+ "rustls-platform-verifier-android",
1364
+ "rustls-webpki",
1365
+ "security-framework",
1366
+ "security-framework-sys",
1367
+ "webpki-root-certs 0.26.11",
1368
+ "windows-sys 0.59.0",
1369
+ ]
1370
+
1371
+ [[package]]
1372
+ name = "rustls-platform-verifier-android"
1373
+ version = "0.1.1"
1374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1375
+ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
1376
+
1377
+ [[package]]
1378
+ name = "rustls-webpki"
1379
+ version = "0.103.10"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef"
1382
+ dependencies = [
1383
+ "ring",
1384
+ "rustls-pki-types",
1385
+ "untrusted",
1386
+ ]
1387
+
1388
+ [[package]]
1389
+ name = "rustversion"
1390
+ version = "1.0.22"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1393
+
1394
+ [[package]]
1395
+ name = "same-file"
1396
+ version = "1.0.6"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1399
+ dependencies = [
1400
+ "winapi-util",
1401
+ ]
1402
+
1403
+ [[package]]
1404
+ name = "schannel"
1405
+ version = "0.1.29"
1406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1407
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
1408
+ dependencies = [
1409
+ "windows-sys 0.61.2",
1410
+ ]
1411
+
1412
+ [[package]]
1413
+ name = "scopeguard"
1414
+ version = "1.2.0"
1415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1416
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1417
+
1418
+ [[package]]
1419
+ name = "security-framework"
1420
+ version = "3.7.0"
1421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1422
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
1423
+ dependencies = [
1424
+ "bitflags 2.11.0",
1425
+ "core-foundation",
1426
+ "core-foundation-sys",
1427
+ "libc",
1428
+ "security-framework-sys",
1429
+ ]
1430
+
1431
+ [[package]]
1432
+ name = "security-framework-sys"
1433
+ version = "2.17.0"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
1436
+ dependencies = [
1437
+ "core-foundation-sys",
1438
+ "libc",
1439
+ ]
1440
+
1441
+ [[package]]
1442
+ name = "semver"
1443
+ version = "1.0.27"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
1446
+
1447
+ [[package]]
1448
+ name = "serde"
1449
+ version = "1.0.228"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1452
+ dependencies = [
1453
+ "serde_core",
1454
+ "serde_derive",
1455
+ ]
1456
+
1457
+ [[package]]
1458
+ name = "serde_core"
1459
+ version = "1.0.228"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1462
+ dependencies = [
1463
+ "serde_derive",
1464
+ ]
1465
+
1466
+ [[package]]
1467
+ name = "serde_derive"
1468
+ version = "1.0.228"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1471
+ dependencies = [
1472
+ "proc-macro2",
1473
+ "quote",
1474
+ "syn",
1475
+ ]
1476
+
1477
+ [[package]]
1478
+ name = "serde_json"
1479
+ version = "1.0.149"
1480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1481
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1482
+ dependencies = [
1483
+ "itoa",
1484
+ "memchr",
1485
+ "serde",
1486
+ "serde_core",
1487
+ "zmij",
1488
+ ]
1489
+
1490
+ [[package]]
1491
+ name = "serial2"
1492
+ version = "0.2.34"
1493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1494
+ checksum = "9e1401f562d358cdfdbdf8946e51a7871ede1db68bd0fd99bedc79e400241550"
1495
+ dependencies = [
1496
+ "cfg-if",
1497
+ "libc",
1498
+ "winapi",
1499
+ ]
1500
+
1501
+ [[package]]
1502
+ name = "sha1"
1503
+ version = "0.10.6"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
1506
+ dependencies = [
1507
+ "cfg-if",
1508
+ "cpufeatures",
1509
+ "digest",
1510
+ ]
1511
+
1512
+ [[package]]
1513
+ name = "sharded-slab"
1514
+ version = "0.1.7"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1517
+ dependencies = [
1518
+ "lazy_static",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "shared_library"
1523
+ version = "0.1.9"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "5a9e7e0f2bfae24d8a5b5a66c5b257a83c7412304311512a0c054cd5e619da11"
1526
+ dependencies = [
1527
+ "lazy_static",
1528
+ "libc",
1529
+ ]
1530
+
1531
+ [[package]]
1532
+ name = "shell-words"
1533
+ version = "1.1.1"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
1536
+
1537
+ [[package]]
1538
+ name = "shlex"
1539
+ version = "1.3.0"
1540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1541
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1542
+
1543
+ [[package]]
1544
+ name = "signal-hook"
1545
+ version = "0.3.18"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
1548
+ dependencies = [
1549
+ "libc",
1550
+ "signal-hook-registry",
1551
+ ]
1552
+
1553
+ [[package]]
1554
+ name = "signal-hook-registry"
1555
+ version = "1.4.8"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1558
+ dependencies = [
1559
+ "errno",
1560
+ "libc",
1561
+ ]
1562
+
1563
+ [[package]]
1564
+ name = "slab"
1565
+ version = "0.4.12"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1568
+
1569
+ [[package]]
1570
+ name = "smallvec"
1571
+ version = "1.15.1"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1574
+
1575
+ [[package]]
1576
+ name = "socket2"
1577
+ version = "0.6.3"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
1580
+ dependencies = [
1581
+ "libc",
1582
+ "windows-sys 0.61.2",
1583
+ ]
1584
+
1585
+ [[package]]
1586
+ name = "soketto"
1587
+ version = "0.8.1"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "2e859df029d160cb88608f5d7df7fb4753fd20fdfb4de5644f3d8b8440841721"
1590
+ dependencies = [
1591
+ "base64",
1592
+ "bytes",
1593
+ "futures",
1594
+ "http",
1595
+ "httparse",
1596
+ "log",
1597
+ "rand",
1598
+ "sha1",
1599
+ ]
1600
+
1601
+ [[package]]
1602
+ name = "stable_deref_trait"
1603
+ version = "1.2.1"
1604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1605
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1606
+
1607
+ [[package]]
1608
+ name = "strsim"
1609
+ version = "0.11.1"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1612
+
1613
+ [[package]]
1614
+ name = "subtle"
1615
+ version = "2.6.1"
1616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1617
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1618
+
1619
+ [[package]]
1620
+ name = "syn"
1621
+ version = "2.0.117"
1622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1623
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1624
+ dependencies = [
1625
+ "proc-macro2",
1626
+ "quote",
1627
+ "unicode-ident",
1628
+ ]
1629
+
1630
+ [[package]]
1631
+ name = "synstructure"
1632
+ version = "0.13.2"
1633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1634
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1635
+ dependencies = [
1636
+ "proc-macro2",
1637
+ "quote",
1638
+ "syn",
1639
+ ]
1640
+
1641
+ [[package]]
1642
+ name = "tempfile"
1643
+ version = "3.27.0"
1644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1645
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1646
+ dependencies = [
1647
+ "fastrand",
1648
+ "getrandom 0.4.2",
1649
+ "once_cell",
1650
+ "rustix",
1651
+ "windows-sys 0.61.2",
1652
+ ]
1653
+
1654
+ [[package]]
1655
+ name = "thiserror"
1656
+ version = "1.0.69"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1659
+ dependencies = [
1660
+ "thiserror-impl 1.0.69",
1661
+ ]
1662
+
1663
+ [[package]]
1664
+ name = "thiserror"
1665
+ version = "2.0.18"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1668
+ dependencies = [
1669
+ "thiserror-impl 2.0.18",
1670
+ ]
1671
+
1672
+ [[package]]
1673
+ name = "thiserror-impl"
1674
+ version = "1.0.69"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1677
+ dependencies = [
1678
+ "proc-macro2",
1679
+ "quote",
1680
+ "syn",
1681
+ ]
1682
+
1683
+ [[package]]
1684
+ name = "thiserror-impl"
1685
+ version = "2.0.18"
1686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1687
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1688
+ dependencies = [
1689
+ "proc-macro2",
1690
+ "quote",
1691
+ "syn",
1692
+ ]
1693
+
1694
+ [[package]]
1695
+ name = "thread_local"
1696
+ version = "1.1.9"
1697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1698
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
1699
+ dependencies = [
1700
+ "cfg-if",
1701
+ ]
1702
+
1703
+ [[package]]
1704
+ name = "tinystr"
1705
+ version = "0.8.2"
1706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1707
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
1708
+ dependencies = [
1709
+ "displaydoc",
1710
+ "zerovec",
1711
+ ]
1712
+
1713
+ [[package]]
1714
+ name = "tokio"
1715
+ version = "1.50.0"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
1718
+ dependencies = [
1719
+ "bytes",
1720
+ "libc",
1721
+ "mio",
1722
+ "parking_lot",
1723
+ "pin-project-lite",
1724
+ "signal-hook-registry",
1725
+ "socket2",
1726
+ "tokio-macros",
1727
+ "windows-sys 0.61.2",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "tokio-macros"
1732
+ version = "2.6.1"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
1735
+ dependencies = [
1736
+ "proc-macro2",
1737
+ "quote",
1738
+ "syn",
1739
+ ]
1740
+
1741
+ [[package]]
1742
+ name = "tokio-rustls"
1743
+ version = "0.26.4"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
1746
+ dependencies = [
1747
+ "rustls",
1748
+ "tokio",
1749
+ ]
1750
+
1751
+ [[package]]
1752
+ name = "tokio-stream"
1753
+ version = "0.1.18"
1754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1755
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
1756
+ dependencies = [
1757
+ "futures-core",
1758
+ "pin-project-lite",
1759
+ "tokio",
1760
+ "tokio-util",
1761
+ ]
1762
+
1763
+ [[package]]
1764
+ name = "tokio-util"
1765
+ version = "0.7.18"
1766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1767
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1768
+ dependencies = [
1769
+ "bytes",
1770
+ "futures-core",
1771
+ "futures-io",
1772
+ "futures-sink",
1773
+ "pin-project-lite",
1774
+ "tokio",
1775
+ ]
1776
+
1777
+ [[package]]
1778
+ name = "tower"
1779
+ version = "0.4.13"
1780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1781
+ checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
1782
+ dependencies = [
1783
+ "futures-core",
1784
+ "futures-util",
1785
+ "pin-project",
1786
+ "pin-project-lite",
1787
+ "tower-layer",
1788
+ "tower-service",
1789
+ "tracing",
1790
+ ]
1791
+
1792
+ [[package]]
1793
+ name = "tower-layer"
1794
+ version = "0.3.3"
1795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1796
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1797
+
1798
+ [[package]]
1799
+ name = "tower-service"
1800
+ version = "0.3.3"
1801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1802
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1803
+
1804
+ [[package]]
1805
+ name = "tracing"
1806
+ version = "0.1.44"
1807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1808
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1809
+ dependencies = [
1810
+ "log",
1811
+ "pin-project-lite",
1812
+ "tracing-attributes",
1813
+ "tracing-core",
1814
+ ]
1815
+
1816
+ [[package]]
1817
+ name = "tracing-attributes"
1818
+ version = "0.1.31"
1819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1820
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1821
+ dependencies = [
1822
+ "proc-macro2",
1823
+ "quote",
1824
+ "syn",
1825
+ ]
1826
+
1827
+ [[package]]
1828
+ name = "tracing-core"
1829
+ version = "0.1.36"
1830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1831
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1832
+ dependencies = [
1833
+ "once_cell",
1834
+ "valuable",
1835
+ ]
1836
+
1837
+ [[package]]
1838
+ name = "tracing-log"
1839
+ version = "0.2.0"
1840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1841
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1842
+ dependencies = [
1843
+ "log",
1844
+ "once_cell",
1845
+ "tracing-core",
1846
+ ]
1847
+
1848
+ [[package]]
1849
+ name = "tracing-subscriber"
1850
+ version = "0.3.23"
1851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1852
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
1853
+ dependencies = [
1854
+ "matchers",
1855
+ "nu-ansi-term",
1856
+ "once_cell",
1857
+ "regex-automata",
1858
+ "sharded-slab",
1859
+ "smallvec",
1860
+ "thread_local",
1861
+ "tracing",
1862
+ "tracing-core",
1863
+ "tracing-log",
1864
+ ]
1865
+
1866
+ [[package]]
1867
+ name = "typenum"
1868
+ version = "1.19.0"
1869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1870
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1871
+
1872
+ [[package]]
1873
+ name = "unicode-ident"
1874
+ version = "1.0.24"
1875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1876
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1877
+
1878
+ [[package]]
1879
+ name = "unicode-width"
1880
+ version = "0.2.2"
1881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1882
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1883
+
1884
+ [[package]]
1885
+ name = "unicode-xid"
1886
+ version = "0.2.6"
1887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1888
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1889
+
1890
+ [[package]]
1891
+ name = "untrusted"
1892
+ version = "0.9.0"
1893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1894
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1895
+
1896
+ [[package]]
1897
+ name = "url"
1898
+ version = "2.5.8"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1901
+ dependencies = [
1902
+ "form_urlencoded",
1903
+ "idna",
1904
+ "percent-encoding",
1905
+ "serde",
1906
+ ]
1907
+
1908
+ [[package]]
1909
+ name = "utf8_iter"
1910
+ version = "1.0.4"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1913
+
1914
+ [[package]]
1915
+ name = "utf8parse"
1916
+ version = "0.2.2"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1919
+
1920
+ [[package]]
1921
+ name = "uuid"
1922
+ version = "1.22.0"
1923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1924
+ checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37"
1925
+ dependencies = [
1926
+ "getrandom 0.4.2",
1927
+ "js-sys",
1928
+ "wasm-bindgen",
1929
+ ]
1930
+
1931
+ [[package]]
1932
+ name = "valuable"
1933
+ version = "0.1.1"
1934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1935
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
1936
+
1937
+ [[package]]
1938
+ name = "version_check"
1939
+ version = "0.9.5"
1940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1941
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1942
+
1943
+ [[package]]
1944
+ name = "vte"
1945
+ version = "0.15.0"
1946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1947
+ checksum = "a5924018406ce0063cd67f8e008104968b74b563ee1b85dde3ed1f7cb87d3dbd"
1948
+ dependencies = [
1949
+ "arrayvec",
1950
+ "bitflags 2.11.0",
1951
+ "cursor-icon",
1952
+ "log",
1953
+ "memchr",
1954
+ "serde",
1955
+ ]
1956
+
1957
+ [[package]]
1958
+ name = "walkdir"
1959
+ version = "2.5.0"
1960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1961
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1962
+ dependencies = [
1963
+ "same-file",
1964
+ "winapi-util",
1965
+ ]
1966
+
1967
+ [[package]]
1968
+ name = "wasi"
1969
+ version = "0.11.1+wasi-snapshot-preview1"
1970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1971
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1972
+
1973
+ [[package]]
1974
+ name = "wasip2"
1975
+ version = "1.0.2+wasi-0.2.9"
1976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1977
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
1978
+ dependencies = [
1979
+ "wit-bindgen",
1980
+ ]
1981
+
1982
+ [[package]]
1983
+ name = "wasip3"
1984
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1986
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1987
+ dependencies = [
1988
+ "wit-bindgen",
1989
+ ]
1990
+
1991
+ [[package]]
1992
+ name = "wasm-bindgen"
1993
+ version = "0.2.114"
1994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1995
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
1996
+ dependencies = [
1997
+ "cfg-if",
1998
+ "once_cell",
1999
+ "rustversion",
2000
+ "wasm-bindgen-macro",
2001
+ "wasm-bindgen-shared",
2002
+ ]
2003
+
2004
+ [[package]]
2005
+ name = "wasm-bindgen-macro"
2006
+ version = "0.2.114"
2007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2008
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
2009
+ dependencies = [
2010
+ "quote",
2011
+ "wasm-bindgen-macro-support",
2012
+ ]
2013
+
2014
+ [[package]]
2015
+ name = "wasm-bindgen-macro-support"
2016
+ version = "0.2.114"
2017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2018
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
2019
+ dependencies = [
2020
+ "bumpalo",
2021
+ "proc-macro2",
2022
+ "quote",
2023
+ "syn",
2024
+ "wasm-bindgen-shared",
2025
+ ]
2026
+
2027
+ [[package]]
2028
+ name = "wasm-bindgen-shared"
2029
+ version = "0.2.114"
2030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2031
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
2032
+ dependencies = [
2033
+ "unicode-ident",
2034
+ ]
2035
+
2036
+ [[package]]
2037
+ name = "wasm-encoder"
2038
+ version = "0.244.0"
2039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2040
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2041
+ dependencies = [
2042
+ "leb128fmt",
2043
+ "wasmparser",
2044
+ ]
2045
+
2046
+ [[package]]
2047
+ name = "wasm-metadata"
2048
+ version = "0.244.0"
2049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2050
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2051
+ dependencies = [
2052
+ "anyhow",
2053
+ "indexmap",
2054
+ "wasm-encoder",
2055
+ "wasmparser",
2056
+ ]
2057
+
2058
+ [[package]]
2059
+ name = "wasmparser"
2060
+ version = "0.244.0"
2061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2062
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2063
+ dependencies = [
2064
+ "bitflags 2.11.0",
2065
+ "hashbrown 0.15.5",
2066
+ "indexmap",
2067
+ "semver",
2068
+ ]
2069
+
2070
+ [[package]]
2071
+ name = "webpki-root-certs"
2072
+ version = "0.26.11"
2073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2074
+ checksum = "75c7f0ef91146ebfb530314f5f1d24528d7f0767efbfd31dce919275413e393e"
2075
+ dependencies = [
2076
+ "webpki-root-certs 1.0.6",
2077
+ ]
2078
+
2079
+ [[package]]
2080
+ name = "webpki-root-certs"
2081
+ version = "1.0.6"
2082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2083
+ checksum = "804f18a4ac2676ffb4e8b5b5fa9ae38af06df08162314f96a68d2a363e21a8ca"
2084
+ dependencies = [
2085
+ "rustls-pki-types",
2086
+ ]
2087
+
2088
+ [[package]]
2089
+ name = "winapi"
2090
+ version = "0.3.9"
2091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2092
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2093
+ dependencies = [
2094
+ "winapi-i686-pc-windows-gnu",
2095
+ "winapi-x86_64-pc-windows-gnu",
2096
+ ]
2097
+
2098
+ [[package]]
2099
+ name = "winapi-i686-pc-windows-gnu"
2100
+ version = "0.4.0"
2101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2102
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2103
+
2104
+ [[package]]
2105
+ name = "winapi-util"
2106
+ version = "0.1.11"
2107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2108
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2109
+ dependencies = [
2110
+ "windows-sys 0.61.2",
2111
+ ]
2112
+
2113
+ [[package]]
2114
+ name = "winapi-x86_64-pc-windows-gnu"
2115
+ version = "0.4.0"
2116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2117
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2118
+
2119
+ [[package]]
2120
+ name = "windows-link"
2121
+ version = "0.2.1"
2122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2123
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2124
+
2125
+ [[package]]
2126
+ name = "windows-sys"
2127
+ version = "0.45.0"
2128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2129
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
2130
+ dependencies = [
2131
+ "windows-targets 0.42.2",
2132
+ ]
2133
+
2134
+ [[package]]
2135
+ name = "windows-sys"
2136
+ version = "0.52.0"
2137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2138
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2139
+ dependencies = [
2140
+ "windows-targets 0.52.6",
2141
+ ]
2142
+
2143
+ [[package]]
2144
+ name = "windows-sys"
2145
+ version = "0.59.0"
2146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2147
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2148
+ dependencies = [
2149
+ "windows-targets 0.52.6",
2150
+ ]
2151
+
2152
+ [[package]]
2153
+ name = "windows-sys"
2154
+ version = "0.61.2"
2155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2156
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2157
+ dependencies = [
2158
+ "windows-link",
2159
+ ]
2160
+
2161
+ [[package]]
2162
+ name = "windows-targets"
2163
+ version = "0.42.2"
2164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2165
+ checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
2166
+ dependencies = [
2167
+ "windows_aarch64_gnullvm 0.42.2",
2168
+ "windows_aarch64_msvc 0.42.2",
2169
+ "windows_i686_gnu 0.42.2",
2170
+ "windows_i686_msvc 0.42.2",
2171
+ "windows_x86_64_gnu 0.42.2",
2172
+ "windows_x86_64_gnullvm 0.42.2",
2173
+ "windows_x86_64_msvc 0.42.2",
2174
+ ]
2175
+
2176
+ [[package]]
2177
+ name = "windows-targets"
2178
+ version = "0.52.6"
2179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2180
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2181
+ dependencies = [
2182
+ "windows_aarch64_gnullvm 0.52.6",
2183
+ "windows_aarch64_msvc 0.52.6",
2184
+ "windows_i686_gnu 0.52.6",
2185
+ "windows_i686_gnullvm",
2186
+ "windows_i686_msvc 0.52.6",
2187
+ "windows_x86_64_gnu 0.52.6",
2188
+ "windows_x86_64_gnullvm 0.52.6",
2189
+ "windows_x86_64_msvc 0.52.6",
2190
+ ]
2191
+
2192
+ [[package]]
2193
+ name = "windows_aarch64_gnullvm"
2194
+ version = "0.42.2"
2195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2196
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2197
+
2198
+ [[package]]
2199
+ name = "windows_aarch64_gnullvm"
2200
+ version = "0.52.6"
2201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2202
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2203
+
2204
+ [[package]]
2205
+ name = "windows_aarch64_msvc"
2206
+ version = "0.42.2"
2207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2208
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2209
+
2210
+ [[package]]
2211
+ name = "windows_aarch64_msvc"
2212
+ version = "0.52.6"
2213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2214
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2215
+
2216
+ [[package]]
2217
+ name = "windows_i686_gnu"
2218
+ version = "0.42.2"
2219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2220
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2221
+
2222
+ [[package]]
2223
+ name = "windows_i686_gnu"
2224
+ version = "0.52.6"
2225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2226
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2227
+
2228
+ [[package]]
2229
+ name = "windows_i686_gnullvm"
2230
+ version = "0.52.6"
2231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2232
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2233
+
2234
+ [[package]]
2235
+ name = "windows_i686_msvc"
2236
+ version = "0.42.2"
2237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2238
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2239
+
2240
+ [[package]]
2241
+ name = "windows_i686_msvc"
2242
+ version = "0.52.6"
2243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2244
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2245
+
2246
+ [[package]]
2247
+ name = "windows_x86_64_gnu"
2248
+ version = "0.42.2"
2249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2250
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2251
+
2252
+ [[package]]
2253
+ name = "windows_x86_64_gnu"
2254
+ version = "0.52.6"
2255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2256
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2257
+
2258
+ [[package]]
2259
+ name = "windows_x86_64_gnullvm"
2260
+ version = "0.42.2"
2261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2262
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2263
+
2264
+ [[package]]
2265
+ name = "windows_x86_64_gnullvm"
2266
+ version = "0.52.6"
2267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2268
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2269
+
2270
+ [[package]]
2271
+ name = "windows_x86_64_msvc"
2272
+ version = "0.42.2"
2273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2274
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2275
+
2276
+ [[package]]
2277
+ name = "windows_x86_64_msvc"
2278
+ version = "0.52.6"
2279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2280
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2281
+
2282
+ [[package]]
2283
+ name = "winreg"
2284
+ version = "0.10.1"
2285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2286
+ checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
2287
+ dependencies = [
2288
+ "winapi",
2289
+ ]
2290
+
2291
+ [[package]]
2292
+ name = "wit-bindgen"
2293
+ version = "0.51.0"
2294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2295
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2296
+ dependencies = [
2297
+ "wit-bindgen-rust-macro",
2298
+ ]
2299
+
2300
+ [[package]]
2301
+ name = "wit-bindgen-core"
2302
+ version = "0.51.0"
2303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2304
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2305
+ dependencies = [
2306
+ "anyhow",
2307
+ "heck",
2308
+ "wit-parser",
2309
+ ]
2310
+
2311
+ [[package]]
2312
+ name = "wit-bindgen-rust"
2313
+ version = "0.51.0"
2314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2315
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
2316
+ dependencies = [
2317
+ "anyhow",
2318
+ "heck",
2319
+ "indexmap",
2320
+ "prettyplease",
2321
+ "syn",
2322
+ "wasm-metadata",
2323
+ "wit-bindgen-core",
2324
+ "wit-component",
2325
+ ]
2326
+
2327
+ [[package]]
2328
+ name = "wit-bindgen-rust-macro"
2329
+ version = "0.51.0"
2330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2331
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
2332
+ dependencies = [
2333
+ "anyhow",
2334
+ "prettyplease",
2335
+ "proc-macro2",
2336
+ "quote",
2337
+ "syn",
2338
+ "wit-bindgen-core",
2339
+ "wit-bindgen-rust",
2340
+ ]
2341
+
2342
+ [[package]]
2343
+ name = "wit-component"
2344
+ version = "0.244.0"
2345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2346
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
2347
+ dependencies = [
2348
+ "anyhow",
2349
+ "bitflags 2.11.0",
2350
+ "indexmap",
2351
+ "log",
2352
+ "serde",
2353
+ "serde_derive",
2354
+ "serde_json",
2355
+ "wasm-encoder",
2356
+ "wasm-metadata",
2357
+ "wasmparser",
2358
+ "wit-parser",
2359
+ ]
2360
+
2361
+ [[package]]
2362
+ name = "wit-parser"
2363
+ version = "0.244.0"
2364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2365
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
2366
+ dependencies = [
2367
+ "anyhow",
2368
+ "id-arena",
2369
+ "indexmap",
2370
+ "log",
2371
+ "semver",
2372
+ "serde",
2373
+ "serde_derive",
2374
+ "serde_json",
2375
+ "unicode-xid",
2376
+ "wasmparser",
2377
+ ]
2378
+
2379
+ [[package]]
2380
+ name = "wrightty"
2381
+ version = "0.1.0"
2382
+ dependencies = [
2383
+ "anyhow",
2384
+ "clap",
2385
+ "jsonrpsee",
2386
+ "serde",
2387
+ "serde_json",
2388
+ "tokio",
2389
+ "tracing",
2390
+ "tracing-subscriber",
2391
+ "wrightty-bridge-ghostty",
2392
+ "wrightty-bridge-kitty",
2393
+ "wrightty-bridge-tmux",
2394
+ "wrightty-bridge-wezterm",
2395
+ "wrightty-bridge-zellij",
2396
+ "wrightty-client",
2397
+ "wrightty-core",
2398
+ "wrightty-protocol",
2399
+ "wrightty-server",
2400
+ ]
2401
+
2402
+ [[package]]
2403
+ name = "wrightty-bridge-ghostty"
2404
+ version = "0.1.0"
2405
+ dependencies = [
2406
+ "anyhow",
2407
+ "clap",
2408
+ "jsonrpsee",
2409
+ "libc",
2410
+ "serde",
2411
+ "serde_json",
2412
+ "thiserror 1.0.69",
2413
+ "tokio",
2414
+ "tracing",
2415
+ "tracing-subscriber",
2416
+ "wrightty-protocol",
2417
+ ]
2418
+
2419
+ [[package]]
2420
+ name = "wrightty-bridge-kitty"
2421
+ version = "0.1.0"
2422
+ dependencies = [
2423
+ "anyhow",
2424
+ "clap",
2425
+ "jsonrpsee",
2426
+ "serde",
2427
+ "serde_json",
2428
+ "thiserror 1.0.69",
2429
+ "tokio",
2430
+ "tracing",
2431
+ "tracing-subscriber",
2432
+ "wrightty-protocol",
2433
+ ]
2434
+
2435
+ [[package]]
2436
+ name = "wrightty-bridge-tmux"
2437
+ version = "0.1.0"
2438
+ dependencies = [
2439
+ "anyhow",
2440
+ "clap",
2441
+ "jsonrpsee",
2442
+ "serde",
2443
+ "serde_json",
2444
+ "thiserror 1.0.69",
2445
+ "tokio",
2446
+ "tracing",
2447
+ "tracing-subscriber",
2448
+ "wrightty-protocol",
2449
+ ]
2450
+
2451
+ [[package]]
2452
+ name = "wrightty-bridge-wezterm"
2453
+ version = "0.1.0"
2454
+ dependencies = [
2455
+ "anyhow",
2456
+ "clap",
2457
+ "jsonrpsee",
2458
+ "serde",
2459
+ "serde_json",
2460
+ "thiserror 1.0.69",
2461
+ "tokio",
2462
+ "tracing",
2463
+ "tracing-subscriber",
2464
+ "wrightty-protocol",
2465
+ ]
2466
+
2467
+ [[package]]
2468
+ name = "wrightty-bridge-zellij"
2469
+ version = "0.1.0"
2470
+ dependencies = [
2471
+ "anyhow",
2472
+ "clap",
2473
+ "jsonrpsee",
2474
+ "serde",
2475
+ "serde_json",
2476
+ "tempfile",
2477
+ "thiserror 1.0.69",
2478
+ "tokio",
2479
+ "tracing",
2480
+ "tracing-subscriber",
2481
+ "wrightty-protocol",
2482
+ ]
2483
+
2484
+ [[package]]
2485
+ name = "wrightty-client"
2486
+ version = "0.1.0"
2487
+ dependencies = [
2488
+ "jsonrpsee",
2489
+ "serde",
2490
+ "serde_json",
2491
+ "tokio",
2492
+ "wrightty-protocol",
2493
+ ]
2494
+
2495
+ [[package]]
2496
+ name = "wrightty-core"
2497
+ version = "0.1.0"
2498
+ dependencies = [
2499
+ "alacritty_terminal",
2500
+ "base64",
2501
+ "log",
2502
+ "portable-pty",
2503
+ "regex",
2504
+ "thiserror 2.0.18",
2505
+ "tokio",
2506
+ "uuid",
2507
+ "vte",
2508
+ "wrightty-protocol",
2509
+ ]
2510
+
2511
+ [[package]]
2512
+ name = "wrightty-protocol"
2513
+ version = "0.1.0"
2514
+ dependencies = [
2515
+ "serde",
2516
+ "serde_json",
2517
+ ]
2518
+
2519
+ [[package]]
2520
+ name = "wrightty-server"
2521
+ version = "0.1.0"
2522
+ dependencies = [
2523
+ "anyhow",
2524
+ "clap",
2525
+ "jsonrpsee",
2526
+ "regex",
2527
+ "serde",
2528
+ "serde_json",
2529
+ "tokio",
2530
+ "tracing",
2531
+ "tracing-subscriber",
2532
+ "wrightty-core",
2533
+ "wrightty-protocol",
2534
+ ]
2535
+
2536
+ [[package]]
2537
+ name = "wrightty-tests"
2538
+ version = "0.1.0"
2539
+ dependencies = [
2540
+ "jsonrpsee",
2541
+ "serde_json",
2542
+ "tokio",
2543
+ "wrightty-client",
2544
+ "wrightty-core",
2545
+ "wrightty-protocol",
2546
+ "wrightty-server",
2547
+ ]
2548
+
2549
+ [[package]]
2550
+ name = "writeable"
2551
+ version = "0.6.2"
2552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2553
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
2554
+
2555
+ [[package]]
2556
+ name = "yoke"
2557
+ version = "0.8.1"
2558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2559
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
2560
+ dependencies = [
2561
+ "stable_deref_trait",
2562
+ "yoke-derive",
2563
+ "zerofrom",
2564
+ ]
2565
+
2566
+ [[package]]
2567
+ name = "yoke-derive"
2568
+ version = "0.8.1"
2569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2570
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
2571
+ dependencies = [
2572
+ "proc-macro2",
2573
+ "quote",
2574
+ "syn",
2575
+ "synstructure",
2576
+ ]
2577
+
2578
+ [[package]]
2579
+ name = "zerocopy"
2580
+ version = "0.8.47"
2581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2582
+ checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87"
2583
+ dependencies = [
2584
+ "zerocopy-derive",
2585
+ ]
2586
+
2587
+ [[package]]
2588
+ name = "zerocopy-derive"
2589
+ version = "0.8.47"
2590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2591
+ checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89"
2592
+ dependencies = [
2593
+ "proc-macro2",
2594
+ "quote",
2595
+ "syn",
2596
+ ]
2597
+
2598
+ [[package]]
2599
+ name = "zerofrom"
2600
+ version = "0.1.6"
2601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2602
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
2603
+ dependencies = [
2604
+ "zerofrom-derive",
2605
+ ]
2606
+
2607
+ [[package]]
2608
+ name = "zerofrom-derive"
2609
+ version = "0.1.6"
2610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2611
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
2612
+ dependencies = [
2613
+ "proc-macro2",
2614
+ "quote",
2615
+ "syn",
2616
+ "synstructure",
2617
+ ]
2618
+
2619
+ [[package]]
2620
+ name = "zeroize"
2621
+ version = "1.8.2"
2622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2623
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
2624
+
2625
+ [[package]]
2626
+ name = "zerotrie"
2627
+ version = "0.2.3"
2628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2629
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
2630
+ dependencies = [
2631
+ "displaydoc",
2632
+ "yoke",
2633
+ "zerofrom",
2634
+ ]
2635
+
2636
+ [[package]]
2637
+ name = "zerovec"
2638
+ version = "0.11.5"
2639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2640
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
2641
+ dependencies = [
2642
+ "yoke",
2643
+ "zerofrom",
2644
+ "zerovec-derive",
2645
+ ]
2646
+
2647
+ [[package]]
2648
+ name = "zerovec-derive"
2649
+ version = "0.11.2"
2650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2651
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
2652
+ dependencies = [
2653
+ "proc-macro2",
2654
+ "quote",
2655
+ "syn",
2656
+ ]
2657
+
2658
+ [[package]]
2659
+ name = "zmij"
2660
+ version = "1.0.21"
2661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2662
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"