handoff-mcp-server 0.1.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.
- package/Cargo.lock +781 -0
- package/Cargo.toml +24 -0
- package/LICENSE +21 -0
- package/README.md +223 -0
- package/bin/handoff-mcp.js +22 -0
- package/package.json +43 -0
- package/scripts/postinstall.js +44 -0
- package/src/lib.rs +2 -0
- package/src/main.rs +29 -0
- package/src/mcp/handlers/config.rs +115 -0
- package/src/mcp/handlers/dashboard.rs +109 -0
- package/src/mcp/handlers/init.rs +28 -0
- package/src/mcp/handlers/list_tasks.rs +61 -0
- package/src/mcp/handlers/load_context.rs +94 -0
- package/src/mcp/handlers/mod.rs +58 -0
- package/src/mcp/handlers/save_context.rs +96 -0
- package/src/mcp/handlers/update_task.rs +207 -0
- package/src/mcp/mod.rs +6 -0
- package/src/mcp/protocol.rs +41 -0
- package/src/mcp/resources.rs +55 -0
- package/src/mcp/router.rs +150 -0
- package/src/mcp/tools.rs +284 -0
- package/src/mcp/types.rs +108 -0
- package/src/storage/config.rs +112 -0
- package/src/storage/git.rs +47 -0
- package/src/storage/mod.rs +41 -0
- package/src/storage/sessions.rs +167 -0
- package/src/storage/tasks.rs +365 -0
- package/tests/mcp_protocol.rs +204 -0
- package/tests/storage_config.rs +107 -0
- package/tests/storage_sessions.rs +195 -0
- package/tests/storage_tasks.rs +302 -0
- package/tests/tool_dashboard.rs +165 -0
- package/tests/tool_init.rs +176 -0
- package/tests/tool_sessions.rs +318 -0
- package/tests/tool_tasks.rs +408 -0
package/Cargo.lock
ADDED
|
@@ -0,0 +1,781 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "android_system_properties"
|
|
7
|
+
version = "0.1.5"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"libc",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "anyhow"
|
|
16
|
+
version = "1.0.102"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "autocfg"
|
|
22
|
+
version = "1.5.1"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "bitflags"
|
|
28
|
+
version = "2.13.0"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "bumpalo"
|
|
34
|
+
version = "3.20.3"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "cc"
|
|
40
|
+
version = "1.2.64"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "dad887fd958be91b5098c0248def011f4523ab786cd411be668777e55063501f"
|
|
43
|
+
dependencies = [
|
|
44
|
+
"find-msvc-tools",
|
|
45
|
+
"shlex",
|
|
46
|
+
]
|
|
47
|
+
|
|
48
|
+
[[package]]
|
|
49
|
+
name = "cfg-if"
|
|
50
|
+
version = "1.0.4"
|
|
51
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
52
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
53
|
+
|
|
54
|
+
[[package]]
|
|
55
|
+
name = "chrono"
|
|
56
|
+
version = "0.4.45"
|
|
57
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
58
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
59
|
+
dependencies = [
|
|
60
|
+
"iana-time-zone",
|
|
61
|
+
"js-sys",
|
|
62
|
+
"num-traits",
|
|
63
|
+
"serde",
|
|
64
|
+
"wasm-bindgen",
|
|
65
|
+
"windows-link",
|
|
66
|
+
]
|
|
67
|
+
|
|
68
|
+
[[package]]
|
|
69
|
+
name = "core-foundation-sys"
|
|
70
|
+
version = "0.8.7"
|
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
73
|
+
|
|
74
|
+
[[package]]
|
|
75
|
+
name = "equivalent"
|
|
76
|
+
version = "1.0.2"
|
|
77
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
78
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
79
|
+
|
|
80
|
+
[[package]]
|
|
81
|
+
name = "errno"
|
|
82
|
+
version = "0.3.14"
|
|
83
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
84
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
85
|
+
dependencies = [
|
|
86
|
+
"libc",
|
|
87
|
+
"windows-sys",
|
|
88
|
+
]
|
|
89
|
+
|
|
90
|
+
[[package]]
|
|
91
|
+
name = "fastrand"
|
|
92
|
+
version = "2.4.1"
|
|
93
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
94
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "find-msvc-tools"
|
|
98
|
+
version = "0.1.9"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
101
|
+
|
|
102
|
+
[[package]]
|
|
103
|
+
name = "foldhash"
|
|
104
|
+
version = "0.1.5"
|
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
107
|
+
|
|
108
|
+
[[package]]
|
|
109
|
+
name = "futures-core"
|
|
110
|
+
version = "0.3.32"
|
|
111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
112
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
113
|
+
|
|
114
|
+
[[package]]
|
|
115
|
+
name = "futures-task"
|
|
116
|
+
version = "0.3.32"
|
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "futures-util"
|
|
122
|
+
version = "0.3.32"
|
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
125
|
+
dependencies = [
|
|
126
|
+
"futures-core",
|
|
127
|
+
"futures-task",
|
|
128
|
+
"pin-project-lite",
|
|
129
|
+
"slab",
|
|
130
|
+
]
|
|
131
|
+
|
|
132
|
+
[[package]]
|
|
133
|
+
name = "getrandom"
|
|
134
|
+
version = "0.4.2"
|
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
137
|
+
dependencies = [
|
|
138
|
+
"cfg-if",
|
|
139
|
+
"libc",
|
|
140
|
+
"r-efi",
|
|
141
|
+
"wasip2",
|
|
142
|
+
"wasip3",
|
|
143
|
+
]
|
|
144
|
+
|
|
145
|
+
[[package]]
|
|
146
|
+
name = "handoff-mcp"
|
|
147
|
+
version = "0.1.0"
|
|
148
|
+
dependencies = [
|
|
149
|
+
"anyhow",
|
|
150
|
+
"chrono",
|
|
151
|
+
"serde",
|
|
152
|
+
"serde_json",
|
|
153
|
+
"tempfile",
|
|
154
|
+
"thiserror",
|
|
155
|
+
"toml",
|
|
156
|
+
]
|
|
157
|
+
|
|
158
|
+
[[package]]
|
|
159
|
+
name = "hashbrown"
|
|
160
|
+
version = "0.15.5"
|
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
163
|
+
dependencies = [
|
|
164
|
+
"foldhash",
|
|
165
|
+
]
|
|
166
|
+
|
|
167
|
+
[[package]]
|
|
168
|
+
name = "hashbrown"
|
|
169
|
+
version = "0.17.1"
|
|
170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
171
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "heck"
|
|
175
|
+
version = "0.5.0"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
178
|
+
|
|
179
|
+
[[package]]
|
|
180
|
+
name = "iana-time-zone"
|
|
181
|
+
version = "0.1.65"
|
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
184
|
+
dependencies = [
|
|
185
|
+
"android_system_properties",
|
|
186
|
+
"core-foundation-sys",
|
|
187
|
+
"iana-time-zone-haiku",
|
|
188
|
+
"js-sys",
|
|
189
|
+
"log",
|
|
190
|
+
"wasm-bindgen",
|
|
191
|
+
"windows-core",
|
|
192
|
+
]
|
|
193
|
+
|
|
194
|
+
[[package]]
|
|
195
|
+
name = "iana-time-zone-haiku"
|
|
196
|
+
version = "0.1.2"
|
|
197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
199
|
+
dependencies = [
|
|
200
|
+
"cc",
|
|
201
|
+
]
|
|
202
|
+
|
|
203
|
+
[[package]]
|
|
204
|
+
name = "id-arena"
|
|
205
|
+
version = "2.3.0"
|
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
208
|
+
|
|
209
|
+
[[package]]
|
|
210
|
+
name = "indexmap"
|
|
211
|
+
version = "2.14.0"
|
|
212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
214
|
+
dependencies = [
|
|
215
|
+
"equivalent",
|
|
216
|
+
"hashbrown 0.17.1",
|
|
217
|
+
"serde",
|
|
218
|
+
"serde_core",
|
|
219
|
+
]
|
|
220
|
+
|
|
221
|
+
[[package]]
|
|
222
|
+
name = "itoa"
|
|
223
|
+
version = "1.0.18"
|
|
224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
225
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
226
|
+
|
|
227
|
+
[[package]]
|
|
228
|
+
name = "js-sys"
|
|
229
|
+
version = "0.3.102"
|
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
+
checksum = "03d04c30968dffe80775bd4d7fb676131cd04a1fb46d2686dbffbaec2d9dfd31"
|
|
232
|
+
dependencies = [
|
|
233
|
+
"cfg-if",
|
|
234
|
+
"futures-util",
|
|
235
|
+
"wasm-bindgen",
|
|
236
|
+
]
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "leb128fmt"
|
|
240
|
+
version = "0.1.0"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "libc"
|
|
246
|
+
version = "0.2.186"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
249
|
+
|
|
250
|
+
[[package]]
|
|
251
|
+
name = "linux-raw-sys"
|
|
252
|
+
version = "0.12.1"
|
|
253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
254
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
255
|
+
|
|
256
|
+
[[package]]
|
|
257
|
+
name = "log"
|
|
258
|
+
version = "0.4.32"
|
|
259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
+
checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "memchr"
|
|
264
|
+
version = "2.8.2"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
267
|
+
|
|
268
|
+
[[package]]
|
|
269
|
+
name = "num-traits"
|
|
270
|
+
version = "0.2.19"
|
|
271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
273
|
+
dependencies = [
|
|
274
|
+
"autocfg",
|
|
275
|
+
]
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "once_cell"
|
|
279
|
+
version = "1.21.4"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "pin-project-lite"
|
|
285
|
+
version = "0.2.17"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "prettyplease"
|
|
291
|
+
version = "0.2.37"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
294
|
+
dependencies = [
|
|
295
|
+
"proc-macro2",
|
|
296
|
+
"syn",
|
|
297
|
+
]
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "proc-macro2"
|
|
301
|
+
version = "1.0.106"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
304
|
+
dependencies = [
|
|
305
|
+
"unicode-ident",
|
|
306
|
+
]
|
|
307
|
+
|
|
308
|
+
[[package]]
|
|
309
|
+
name = "quote"
|
|
310
|
+
version = "1.0.45"
|
|
311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
312
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
313
|
+
dependencies = [
|
|
314
|
+
"proc-macro2",
|
|
315
|
+
]
|
|
316
|
+
|
|
317
|
+
[[package]]
|
|
318
|
+
name = "r-efi"
|
|
319
|
+
version = "6.0.0"
|
|
320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
322
|
+
|
|
323
|
+
[[package]]
|
|
324
|
+
name = "rustix"
|
|
325
|
+
version = "1.1.4"
|
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
328
|
+
dependencies = [
|
|
329
|
+
"bitflags",
|
|
330
|
+
"errno",
|
|
331
|
+
"libc",
|
|
332
|
+
"linux-raw-sys",
|
|
333
|
+
"windows-sys",
|
|
334
|
+
]
|
|
335
|
+
|
|
336
|
+
[[package]]
|
|
337
|
+
name = "rustversion"
|
|
338
|
+
version = "1.0.22"
|
|
339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "semver"
|
|
344
|
+
version = "1.0.28"
|
|
345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "serde"
|
|
350
|
+
version = "1.0.228"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
353
|
+
dependencies = [
|
|
354
|
+
"serde_core",
|
|
355
|
+
"serde_derive",
|
|
356
|
+
]
|
|
357
|
+
|
|
358
|
+
[[package]]
|
|
359
|
+
name = "serde_core"
|
|
360
|
+
version = "1.0.228"
|
|
361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
363
|
+
dependencies = [
|
|
364
|
+
"serde_derive",
|
|
365
|
+
]
|
|
366
|
+
|
|
367
|
+
[[package]]
|
|
368
|
+
name = "serde_derive"
|
|
369
|
+
version = "1.0.228"
|
|
370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
372
|
+
dependencies = [
|
|
373
|
+
"proc-macro2",
|
|
374
|
+
"quote",
|
|
375
|
+
"syn",
|
|
376
|
+
]
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "serde_json"
|
|
380
|
+
version = "1.0.150"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
383
|
+
dependencies = [
|
|
384
|
+
"itoa",
|
|
385
|
+
"memchr",
|
|
386
|
+
"serde",
|
|
387
|
+
"serde_core",
|
|
388
|
+
"zmij",
|
|
389
|
+
]
|
|
390
|
+
|
|
391
|
+
[[package]]
|
|
392
|
+
name = "serde_spanned"
|
|
393
|
+
version = "0.6.9"
|
|
394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
396
|
+
dependencies = [
|
|
397
|
+
"serde",
|
|
398
|
+
]
|
|
399
|
+
|
|
400
|
+
[[package]]
|
|
401
|
+
name = "shlex"
|
|
402
|
+
version = "2.0.1"
|
|
403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
404
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
405
|
+
|
|
406
|
+
[[package]]
|
|
407
|
+
name = "slab"
|
|
408
|
+
version = "0.4.12"
|
|
409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
411
|
+
|
|
412
|
+
[[package]]
|
|
413
|
+
name = "syn"
|
|
414
|
+
version = "2.0.117"
|
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
417
|
+
dependencies = [
|
|
418
|
+
"proc-macro2",
|
|
419
|
+
"quote",
|
|
420
|
+
"unicode-ident",
|
|
421
|
+
]
|
|
422
|
+
|
|
423
|
+
[[package]]
|
|
424
|
+
name = "tempfile"
|
|
425
|
+
version = "3.27.0"
|
|
426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
427
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
428
|
+
dependencies = [
|
|
429
|
+
"fastrand",
|
|
430
|
+
"getrandom",
|
|
431
|
+
"once_cell",
|
|
432
|
+
"rustix",
|
|
433
|
+
"windows-sys",
|
|
434
|
+
]
|
|
435
|
+
|
|
436
|
+
[[package]]
|
|
437
|
+
name = "thiserror"
|
|
438
|
+
version = "2.0.18"
|
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
441
|
+
dependencies = [
|
|
442
|
+
"thiserror-impl",
|
|
443
|
+
]
|
|
444
|
+
|
|
445
|
+
[[package]]
|
|
446
|
+
name = "thiserror-impl"
|
|
447
|
+
version = "2.0.18"
|
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
450
|
+
dependencies = [
|
|
451
|
+
"proc-macro2",
|
|
452
|
+
"quote",
|
|
453
|
+
"syn",
|
|
454
|
+
]
|
|
455
|
+
|
|
456
|
+
[[package]]
|
|
457
|
+
name = "toml"
|
|
458
|
+
version = "0.8.23"
|
|
459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
461
|
+
dependencies = [
|
|
462
|
+
"serde",
|
|
463
|
+
"serde_spanned",
|
|
464
|
+
"toml_datetime",
|
|
465
|
+
"toml_edit",
|
|
466
|
+
]
|
|
467
|
+
|
|
468
|
+
[[package]]
|
|
469
|
+
name = "toml_datetime"
|
|
470
|
+
version = "0.6.11"
|
|
471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
473
|
+
dependencies = [
|
|
474
|
+
"serde",
|
|
475
|
+
]
|
|
476
|
+
|
|
477
|
+
[[package]]
|
|
478
|
+
name = "toml_edit"
|
|
479
|
+
version = "0.22.27"
|
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
482
|
+
dependencies = [
|
|
483
|
+
"indexmap",
|
|
484
|
+
"serde",
|
|
485
|
+
"serde_spanned",
|
|
486
|
+
"toml_datetime",
|
|
487
|
+
"toml_write",
|
|
488
|
+
"winnow",
|
|
489
|
+
]
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "toml_write"
|
|
493
|
+
version = "0.1.2"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "unicode-ident"
|
|
499
|
+
version = "1.0.24"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "unicode-xid"
|
|
505
|
+
version = "0.2.6"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
508
|
+
|
|
509
|
+
[[package]]
|
|
510
|
+
name = "wasip2"
|
|
511
|
+
version = "1.0.4+wasi-0.2.12"
|
|
512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
513
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
514
|
+
dependencies = [
|
|
515
|
+
"wit-bindgen 0.57.1",
|
|
516
|
+
]
|
|
517
|
+
|
|
518
|
+
[[package]]
|
|
519
|
+
name = "wasip3"
|
|
520
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
522
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
523
|
+
dependencies = [
|
|
524
|
+
"wit-bindgen 0.51.0",
|
|
525
|
+
]
|
|
526
|
+
|
|
527
|
+
[[package]]
|
|
528
|
+
name = "wasm-bindgen"
|
|
529
|
+
version = "0.2.125"
|
|
530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
531
|
+
checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a"
|
|
532
|
+
dependencies = [
|
|
533
|
+
"cfg-if",
|
|
534
|
+
"once_cell",
|
|
535
|
+
"rustversion",
|
|
536
|
+
"wasm-bindgen-macro",
|
|
537
|
+
"wasm-bindgen-shared",
|
|
538
|
+
]
|
|
539
|
+
|
|
540
|
+
[[package]]
|
|
541
|
+
name = "wasm-bindgen-macro"
|
|
542
|
+
version = "0.2.125"
|
|
543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
+
checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d"
|
|
545
|
+
dependencies = [
|
|
546
|
+
"quote",
|
|
547
|
+
"wasm-bindgen-macro-support",
|
|
548
|
+
]
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "wasm-bindgen-macro-support"
|
|
552
|
+
version = "0.2.125"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd"
|
|
555
|
+
dependencies = [
|
|
556
|
+
"bumpalo",
|
|
557
|
+
"proc-macro2",
|
|
558
|
+
"quote",
|
|
559
|
+
"syn",
|
|
560
|
+
"wasm-bindgen-shared",
|
|
561
|
+
]
|
|
562
|
+
|
|
563
|
+
[[package]]
|
|
564
|
+
name = "wasm-bindgen-shared"
|
|
565
|
+
version = "0.2.125"
|
|
566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
+
checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f"
|
|
568
|
+
dependencies = [
|
|
569
|
+
"unicode-ident",
|
|
570
|
+
]
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "wasm-encoder"
|
|
574
|
+
version = "0.244.0"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
577
|
+
dependencies = [
|
|
578
|
+
"leb128fmt",
|
|
579
|
+
"wasmparser",
|
|
580
|
+
]
|
|
581
|
+
|
|
582
|
+
[[package]]
|
|
583
|
+
name = "wasm-metadata"
|
|
584
|
+
version = "0.244.0"
|
|
585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
586
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
587
|
+
dependencies = [
|
|
588
|
+
"anyhow",
|
|
589
|
+
"indexmap",
|
|
590
|
+
"wasm-encoder",
|
|
591
|
+
"wasmparser",
|
|
592
|
+
]
|
|
593
|
+
|
|
594
|
+
[[package]]
|
|
595
|
+
name = "wasmparser"
|
|
596
|
+
version = "0.244.0"
|
|
597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
599
|
+
dependencies = [
|
|
600
|
+
"bitflags",
|
|
601
|
+
"hashbrown 0.15.5",
|
|
602
|
+
"indexmap",
|
|
603
|
+
"semver",
|
|
604
|
+
]
|
|
605
|
+
|
|
606
|
+
[[package]]
|
|
607
|
+
name = "windows-core"
|
|
608
|
+
version = "0.62.2"
|
|
609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
611
|
+
dependencies = [
|
|
612
|
+
"windows-implement",
|
|
613
|
+
"windows-interface",
|
|
614
|
+
"windows-link",
|
|
615
|
+
"windows-result",
|
|
616
|
+
"windows-strings",
|
|
617
|
+
]
|
|
618
|
+
|
|
619
|
+
[[package]]
|
|
620
|
+
name = "windows-implement"
|
|
621
|
+
version = "0.60.2"
|
|
622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
624
|
+
dependencies = [
|
|
625
|
+
"proc-macro2",
|
|
626
|
+
"quote",
|
|
627
|
+
"syn",
|
|
628
|
+
]
|
|
629
|
+
|
|
630
|
+
[[package]]
|
|
631
|
+
name = "windows-interface"
|
|
632
|
+
version = "0.59.3"
|
|
633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
635
|
+
dependencies = [
|
|
636
|
+
"proc-macro2",
|
|
637
|
+
"quote",
|
|
638
|
+
"syn",
|
|
639
|
+
]
|
|
640
|
+
|
|
641
|
+
[[package]]
|
|
642
|
+
name = "windows-link"
|
|
643
|
+
version = "0.2.1"
|
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
646
|
+
|
|
647
|
+
[[package]]
|
|
648
|
+
name = "windows-result"
|
|
649
|
+
version = "0.4.1"
|
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
652
|
+
dependencies = [
|
|
653
|
+
"windows-link",
|
|
654
|
+
]
|
|
655
|
+
|
|
656
|
+
[[package]]
|
|
657
|
+
name = "windows-strings"
|
|
658
|
+
version = "0.5.1"
|
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
661
|
+
dependencies = [
|
|
662
|
+
"windows-link",
|
|
663
|
+
]
|
|
664
|
+
|
|
665
|
+
[[package]]
|
|
666
|
+
name = "windows-sys"
|
|
667
|
+
version = "0.61.2"
|
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
669
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
670
|
+
dependencies = [
|
|
671
|
+
"windows-link",
|
|
672
|
+
]
|
|
673
|
+
|
|
674
|
+
[[package]]
|
|
675
|
+
name = "winnow"
|
|
676
|
+
version = "0.7.15"
|
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
678
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
679
|
+
dependencies = [
|
|
680
|
+
"memchr",
|
|
681
|
+
]
|
|
682
|
+
|
|
683
|
+
[[package]]
|
|
684
|
+
name = "wit-bindgen"
|
|
685
|
+
version = "0.51.0"
|
|
686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
687
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
688
|
+
dependencies = [
|
|
689
|
+
"wit-bindgen-rust-macro",
|
|
690
|
+
]
|
|
691
|
+
|
|
692
|
+
[[package]]
|
|
693
|
+
name = "wit-bindgen"
|
|
694
|
+
version = "0.57.1"
|
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
696
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
697
|
+
|
|
698
|
+
[[package]]
|
|
699
|
+
name = "wit-bindgen-core"
|
|
700
|
+
version = "0.51.0"
|
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
703
|
+
dependencies = [
|
|
704
|
+
"anyhow",
|
|
705
|
+
"heck",
|
|
706
|
+
"wit-parser",
|
|
707
|
+
]
|
|
708
|
+
|
|
709
|
+
[[package]]
|
|
710
|
+
name = "wit-bindgen-rust"
|
|
711
|
+
version = "0.51.0"
|
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
714
|
+
dependencies = [
|
|
715
|
+
"anyhow",
|
|
716
|
+
"heck",
|
|
717
|
+
"indexmap",
|
|
718
|
+
"prettyplease",
|
|
719
|
+
"syn",
|
|
720
|
+
"wasm-metadata",
|
|
721
|
+
"wit-bindgen-core",
|
|
722
|
+
"wit-component",
|
|
723
|
+
]
|
|
724
|
+
|
|
725
|
+
[[package]]
|
|
726
|
+
name = "wit-bindgen-rust-macro"
|
|
727
|
+
version = "0.51.0"
|
|
728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
730
|
+
dependencies = [
|
|
731
|
+
"anyhow",
|
|
732
|
+
"prettyplease",
|
|
733
|
+
"proc-macro2",
|
|
734
|
+
"quote",
|
|
735
|
+
"syn",
|
|
736
|
+
"wit-bindgen-core",
|
|
737
|
+
"wit-bindgen-rust",
|
|
738
|
+
]
|
|
739
|
+
|
|
740
|
+
[[package]]
|
|
741
|
+
name = "wit-component"
|
|
742
|
+
version = "0.244.0"
|
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
745
|
+
dependencies = [
|
|
746
|
+
"anyhow",
|
|
747
|
+
"bitflags",
|
|
748
|
+
"indexmap",
|
|
749
|
+
"log",
|
|
750
|
+
"serde",
|
|
751
|
+
"serde_derive",
|
|
752
|
+
"serde_json",
|
|
753
|
+
"wasm-encoder",
|
|
754
|
+
"wasm-metadata",
|
|
755
|
+
"wasmparser",
|
|
756
|
+
"wit-parser",
|
|
757
|
+
]
|
|
758
|
+
|
|
759
|
+
[[package]]
|
|
760
|
+
name = "wit-parser"
|
|
761
|
+
version = "0.244.0"
|
|
762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
763
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
764
|
+
dependencies = [
|
|
765
|
+
"anyhow",
|
|
766
|
+
"id-arena",
|
|
767
|
+
"indexmap",
|
|
768
|
+
"log",
|
|
769
|
+
"semver",
|
|
770
|
+
"serde",
|
|
771
|
+
"serde_derive",
|
|
772
|
+
"serde_json",
|
|
773
|
+
"unicode-xid",
|
|
774
|
+
"wasmparser",
|
|
775
|
+
]
|
|
776
|
+
|
|
777
|
+
[[package]]
|
|
778
|
+
name = "zmij"
|
|
779
|
+
version = "1.0.21"
|
|
780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
781
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|