Commit

Author:

Hash:

Timestamp:

+1031 -534 +/-17 browse

Kevin Schoon [me@kevinschoon.com]

752c90a1e3cf7b877555d23de39eb4e684ce9c16

Sun, 03 May 2026 14:48:55 +0000 (1 week ago)

wire up more of the libpod interfaces
1diff --git a/Cargo.lock b/Cargo.lock
2index 3ab364f..d621aeb 100644
3--- a/Cargo.lock
4+++ b/Cargo.lock
5 @@ -18,12 +18,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
6 checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
7
8 [[package]]
9- name = "android-tzdata"
10- version = "0.1.1"
11- source = "registry+https://github.com/rust-lang/crates.io-index"
12- checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
13-
14- [[package]]
15 name = "android_system_properties"
16 version = "0.1.5"
17 source = "registry+https://github.com/rust-lang/crates.io-index"
18 @@ -34,9 +28,9 @@ dependencies = [
19
20 [[package]]
21 name = "anstream"
22- version = "0.6.21"
23+ version = "1.0.0"
24 source = "registry+https://github.com/rust-lang/crates.io-index"
25- checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
26+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
27 dependencies = [
28 "anstyle",
29 "anstyle-parse",
30 @@ -49,15 +43,15 @@ dependencies = [
31
32 [[package]]
33 name = "anstyle"
34- version = "1.0.13"
35+ version = "1.0.14"
36 source = "registry+https://github.com/rust-lang/crates.io-index"
37- checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
38+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
39
40 [[package]]
41 name = "anstyle-parse"
42- version = "0.2.7"
43+ version = "1.0.0"
44 source = "registry+https://github.com/rust-lang/crates.io-index"
45- checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
46+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
47 dependencies = [
48 "utf8parse",
49 ]
50 @@ -73,16 +67,22 @@ dependencies = [
51
52 [[package]]
53 name = "anstyle-wincon"
54- version = "3.0.9"
55+ version = "3.0.11"
56 source = "registry+https://github.com/rust-lang/crates.io-index"
57- checksum = "403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882"
58+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
59 dependencies = [
60 "anstyle",
61 "once_cell_polyfill",
62- "windows-sys 0.59.0",
63+ "windows-sys 0.61.2",
64 ]
65
66 [[package]]
67+ name = "anyhow"
68+ version = "1.0.102"
69+ source = "registry+https://github.com/rust-lang/crates.io-index"
70+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
71+
72+ [[package]]
73 name = "askama"
74 version = "0.14.0"
75 source = "registry+https://github.com/rust-lang/crates.io-index"
76 @@ -180,9 +180,9 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
77
78 [[package]]
79 name = "axum"
80- version = "0.8.8"
81+ version = "0.8.9"
82 source = "registry+https://github.com/rust-lang/crates.io-index"
83- checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
84+ checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
85 dependencies = [
86 "axum-core",
87 "axum-macros",
88 @@ -260,9 +260,9 @@ dependencies = [
89
90 [[package]]
91 name = "axum-macros"
92- version = "0.5.0"
93+ version = "0.5.1"
94 source = "registry+https://github.com/rust-lang/crates.io-index"
95- checksum = "604fde5e028fea851ce1d8570bbdc034bec850d157f7569d10f347d06808c05c"
96+ checksum = "7aa268c23bfbbd2c4363b9cd302a4f504fb2a9dfe7e3451d66f35dd392e20aca"
97 dependencies = [
98 "proc-macro2",
99 "quote",
100 @@ -328,12 +328,16 @@ dependencies = [
101 "ayllu_database",
102 "ayllu_git",
103 "ayllu_logging",
104+ "bytes",
105+ "futures",
106 "petgraph",
107 "reqwest 0.13.3",
108 "serde",
109 "serde_json",
110+ "tar",
111 "thiserror 2.0.18",
112 "tokio",
113+ "tokio-util",
114 "tracing",
115 ]
116
117 @@ -422,7 +426,7 @@ name = "ayllu_git"
118 version = "0.2.1"
119 dependencies = [
120 "git2",
121- "rand 0.9.2",
122+ "rand 0.9.4",
123 "serde",
124 "tempfile",
125 "tokio",
126 @@ -460,9 +464,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
127
128 [[package]]
129 name = "base64ct"
130- version = "1.8.0"
131+ version = "1.8.3"
132 source = "registry+https://github.com/rust-lang/crates.io-index"
133- checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba"
134+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
135
136 [[package]]
137 name = "basic-toml"
138 @@ -493,9 +497,9 @@ dependencies = [
139
140 [[package]]
141 name = "bumpalo"
142- version = "3.19.1"
143+ version = "3.20.2"
144 source = "registry+https://github.com/rust-lang/crates.io-index"
145- checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
146+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
147
148 [[package]]
149 name = "byteorder"
150 @@ -520,9 +524,9 @@ dependencies = [
151
152 [[package]]
153 name = "cc"
154- version = "1.2.53"
155+ version = "1.2.61"
156 source = "registry+https://github.com/rust-lang/crates.io-index"
157- checksum = "755d2fce177175ffca841e9a06afdb2c4ab0f593d53b4dee48147dfaade85932"
158+ checksum = "d16d90359e986641506914ba71350897565610e87ce0ad9e6f28569db3dd5c6d"
159 dependencies = [
160 "find-msvc-tools",
161 "jobserver",
162 @@ -538,22 +542,21 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
163
164 [[package]]
165 name = "chrono"
166- version = "0.4.41"
167+ version = "0.4.44"
168 source = "registry+https://github.com/rust-lang/crates.io-index"
169- checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
170+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
171 dependencies = [
172- "android-tzdata",
173 "iana-time-zone",
174 "num-traits",
175 "serde",
176- "windows-link 0.1.3",
177+ "windows-link",
178 ]
179
180 [[package]]
181 name = "clap"
182- version = "4.5.57"
183+ version = "4.6.1"
184 source = "registry+https://github.com/rust-lang/crates.io-index"
185- checksum = "6899ea499e3fb9305a65d5ebf6e3d2248c5fab291f300ad0a704fbe142eae31a"
186+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
187 dependencies = [
188 "clap_builder",
189 "clap_derive",
190 @@ -561,9 +564,9 @@ dependencies = [
191
192 [[package]]
193 name = "clap_builder"
194- version = "4.5.57"
195+ version = "4.6.0"
196 source = "registry+https://github.com/rust-lang/crates.io-index"
197- checksum = "7b12c8b680195a62a8364d16b8447b01b6c2c8f9aaf68bee653be34d4245e238"
198+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
199 dependencies = [
200 "anstream",
201 "anstyle",
202 @@ -573,9 +576,9 @@ dependencies = [
203
204 [[package]]
205 name = "clap_derive"
206- version = "4.5.55"
207+ version = "4.6.1"
208 source = "registry+https://github.com/rust-lang/crates.io-index"
209- checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
210+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
211 dependencies = [
212 "heck",
213 "proc-macro2",
214 @@ -585,15 +588,15 @@ dependencies = [
215
216 [[package]]
217 name = "clap_lex"
218- version = "0.7.7"
219+ version = "1.1.0"
220 source = "registry+https://github.com/rust-lang/crates.io-index"
221- checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
222+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
223
224 [[package]]
225 name = "clap_mangen"
226- version = "0.2.31"
227+ version = "0.2.33"
228 source = "registry+https://github.com/rust-lang/crates.io-index"
229- checksum = "439ea63a92086df93893164221ad4f24142086d535b3a0957b9b9bea2dc86301"
230+ checksum = "7e30ffc187e2e3aeafcd1c6e2aa416e29739454c0ccaa419226d5ecd181f2d78"
231 dependencies = [
232 "clap",
233 "roff",
234 @@ -601,9 +604,9 @@ dependencies = [
235
236 [[package]]
237 name = "colorchoice"
238- version = "1.0.4"
239+ version = "1.0.5"
240 source = "registry+https://github.com/rust-lang/crates.io-index"
241- checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
242+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
243
244 [[package]]
245 name = "comrak"
246 @@ -684,6 +687,16 @@ dependencies = [
247 ]
248
249 [[package]]
250+ name = "core-foundation"
251+ version = "0.10.1"
252+ source = "registry+https://github.com/rust-lang/crates.io-index"
253+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
254+ dependencies = [
255+ "core-foundation-sys",
256+ "libc",
257+ ]
258+
259+ [[package]]
260 name = "core-foundation-sys"
261 version = "0.8.7"
262 source = "registry+https://github.com/rust-lang/crates.io-index"
263 @@ -700,18 +713,18 @@ dependencies = [
264
265 [[package]]
266 name = "crc"
267- version = "3.3.0"
268+ version = "3.4.0"
269 source = "registry+https://github.com/rust-lang/crates.io-index"
270- checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675"
271+ checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
272 dependencies = [
273 "crc-catalog",
274 ]
275
276 [[package]]
277 name = "crc-catalog"
278- version = "2.4.0"
279+ version = "2.5.0"
280 source = "registry+https://github.com/rust-lang/crates.io-index"
281- checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
282+ checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853"
283
284 [[package]]
285 name = "crossbeam-queue"
286 @@ -730,9 +743,9 @@ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
287
288 [[package]]
289 name = "crypto-common"
290- version = "0.1.6"
291+ version = "0.1.7"
292 source = "registry+https://github.com/rust-lang/crates.io-index"
293- checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
294+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
295 dependencies = [
296 "generic-array",
297 "typenum",
298 @@ -744,8 +757,18 @@ version = "0.20.11"
299 source = "registry+https://github.com/rust-lang/crates.io-index"
300 checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
301 dependencies = [
302- "darling_core",
303- "darling_macro",
304+ "darling_core 0.20.11",
305+ "darling_macro 0.20.11",
306+ ]
307+
308+ [[package]]
309+ name = "darling"
310+ version = "0.23.0"
311+ source = "registry+https://github.com/rust-lang/crates.io-index"
312+ checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
313+ dependencies = [
314+ "darling_core 0.23.0",
315+ "darling_macro 0.23.0",
316 ]
317
318 [[package]]
319 @@ -763,12 +786,36 @@ dependencies = [
320 ]
321
322 [[package]]
323+ name = "darling_core"
324+ version = "0.23.0"
325+ source = "registry+https://github.com/rust-lang/crates.io-index"
326+ checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
327+ dependencies = [
328+ "ident_case",
329+ "proc-macro2",
330+ "quote",
331+ "strsim",
332+ "syn",
333+ ]
334+
335+ [[package]]
336 name = "darling_macro"
337 version = "0.20.11"
338 source = "registry+https://github.com/rust-lang/crates.io-index"
339 checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
340 dependencies = [
341- "darling_core",
342+ "darling_core 0.20.11",
343+ "quote",
344+ "syn",
345+ ]
346+
347+ [[package]]
348+ name = "darling_macro"
349+ version = "0.23.0"
350+ source = "registry+https://github.com/rust-lang/crates.io-index"
351+ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
352+ dependencies = [
353+ "darling_core 0.23.0",
354 "quote",
355 "syn",
356 ]
357 @@ -786,9 +833,9 @@ dependencies = [
358
359 [[package]]
360 name = "deranged"
361- version = "0.5.5"
362+ version = "0.5.8"
363 source = "registry+https://github.com/rust-lang/crates.io-index"
364- checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
365+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
366 dependencies = [
367 "powerfmt",
368 "serde_core",
369 @@ -809,7 +856,7 @@ version = "0.20.2"
370 source = "registry+https://github.com/rust-lang/crates.io-index"
371 checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
372 dependencies = [
373- "darling",
374+ "darling 0.20.11",
375 "proc-macro2",
376 "quote",
377 "syn",
378 @@ -882,9 +929,9 @@ checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
379
380 [[package]]
381 name = "dyn-clone"
382- version = "1.0.19"
383+ version = "1.0.20"
384 source = "registry+https://github.com/rust-lang/crates.io-index"
385- checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005"
386+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
387
388 [[package]]
389 name = "either"
390 @@ -956,9 +1003,9 @@ dependencies = [
391
392 [[package]]
393 name = "fastrand"
394- version = "2.3.0"
395+ version = "2.4.1"
396 source = "registry+https://github.com/rust-lang/crates.io-index"
397- checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
398+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
399
400 [[package]]
401 name = "file-mode"
402 @@ -970,10 +1017,21 @@ dependencies = [
403 ]
404
405 [[package]]
406+ name = "filetime"
407+ version = "0.2.27"
408+ source = "registry+https://github.com/rust-lang/crates.io-index"
409+ checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
410+ dependencies = [
411+ "cfg-if",
412+ "libc",
413+ "libredox",
414+ ]
415+
416+ [[package]]
417 name = "find-msvc-tools"
418- version = "0.1.8"
419+ version = "0.1.9"
420 source = "registry+https://github.com/rust-lang/crates.io-index"
421- checksum = "8591b0bcc8a98a64310a2fae1bb3e9b8564dd10e381e6e28010fde8e8e8568db"
422+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
423
424 [[package]]
425 name = "fixedbitset"
426 @@ -1030,9 +1088,9 @@ dependencies = [
427
428 [[package]]
429 name = "futures"
430- version = "0.3.31"
431+ version = "0.3.32"
432 source = "registry+https://github.com/rust-lang/crates.io-index"
433- checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
434+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
435 dependencies = [
436 "futures-channel",
437 "futures-core",
438 @@ -1045,9 +1103,9 @@ dependencies = [
439
440 [[package]]
441 name = "futures-channel"
442- version = "0.3.31"
443+ version = "0.3.32"
444 source = "registry+https://github.com/rust-lang/crates.io-index"
445- checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
446+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
447 dependencies = [
448 "futures-core",
449 "futures-sink",
450 @@ -1055,15 +1113,15 @@ dependencies = [
451
452 [[package]]
453 name = "futures-core"
454- version = "0.3.31"
455+ version = "0.3.32"
456 source = "registry+https://github.com/rust-lang/crates.io-index"
457- checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
458+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
459
460 [[package]]
461 name = "futures-executor"
462- version = "0.3.31"
463+ version = "0.3.32"
464 source = "registry+https://github.com/rust-lang/crates.io-index"
465- checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
466+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
467 dependencies = [
468 "futures-core",
469 "futures-task",
470 @@ -1083,15 +1141,15 @@ dependencies = [
471
472 [[package]]
473 name = "futures-io"
474- version = "0.3.31"
475+ version = "0.3.32"
476 source = "registry+https://github.com/rust-lang/crates.io-index"
477- checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
478+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
479
480 [[package]]
481 name = "futures-macro"
482- version = "0.3.31"
483+ version = "0.3.32"
484 source = "registry+https://github.com/rust-lang/crates.io-index"
485- checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
486+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
487 dependencies = [
488 "proc-macro2",
489 "quote",
490 @@ -1100,21 +1158,21 @@ dependencies = [
491
492 [[package]]
493 name = "futures-sink"
494- version = "0.3.31"
495+ version = "0.3.32"
496 source = "registry+https://github.com/rust-lang/crates.io-index"
497- checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
498+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
499
500 [[package]]
501 name = "futures-task"
502- version = "0.3.31"
503+ version = "0.3.32"
504 source = "registry+https://github.com/rust-lang/crates.io-index"
505- checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
506+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
507
508 [[package]]
509 name = "futures-util"
510- version = "0.3.31"
511+ version = "0.3.32"
512 source = "registry+https://github.com/rust-lang/crates.io-index"
513- checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
514+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
515 dependencies = [
516 "futures-channel",
517 "futures-core",
518 @@ -1124,15 +1182,14 @@ dependencies = [
519 "futures-task",
520 "memchr",
521 "pin-project-lite",
522- "pin-utils",
523 "slab",
524 ]
525
526 [[package]]
527 name = "generic-array"
528- version = "0.14.9"
529+ version = "0.14.7"
530 source = "registry+https://github.com/rust-lang/crates.io-index"
531- checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
532+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
533 dependencies = [
534 "typenum",
535 "version_check",
536 @@ -1157,8 +1214,21 @@ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
537 dependencies = [
538 "cfg-if",
539 "libc",
540- "r-efi",
541+ "r-efi 5.3.0",
542+ "wasip2",
543+ ]
544+
545+ [[package]]
546+ name = "getrandom"
547+ version = "0.4.2"
548+ source = "registry+https://github.com/rust-lang/crates.io-index"
549+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
550+ dependencies = [
551+ "cfg-if",
552+ "libc",
553+ "r-efi 6.0.0",
554 "wasip2",
555+ "wasip3",
556 ]
557
558 [[package]]
559 @@ -1186,7 +1256,7 @@ dependencies = [
560 "futures-core",
561 "futures-sink",
562 "http",
563- "indexmap 2.13.0",
564+ "indexmap 2.14.0",
565 "slab",
566 "tokio",
567 "tokio-util",
568 @@ -1212,9 +1282,9 @@ dependencies = [
569
570 [[package]]
571 name = "hashbrown"
572- version = "0.16.1"
573+ version = "0.17.0"
574 source = "registry+https://github.com/rust-lang/crates.io-index"
575- checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
576+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
577
578 [[package]]
579 name = "hashlink"
580 @@ -1281,11 +1351,11 @@ dependencies = [
581
582 [[package]]
583 name = "home"
584- version = "0.5.11"
585+ version = "0.5.12"
586 source = "registry+https://github.com/rust-lang/crates.io-index"
587- checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
588+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
589 dependencies = [
590- "windows-sys 0.59.0",
591+ "windows-sys 0.61.2",
592 ]
593
594 [[package]]
595 @@ -1335,9 +1405,9 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
596
597 [[package]]
598 name = "hyper"
599- version = "1.8.1"
600+ version = "1.9.0"
601 source = "registry+https://github.com/rust-lang/crates.io-index"
602- checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
603+ checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
604 dependencies = [
605 "atomic-waker",
606 "bytes",
607 @@ -1350,7 +1420,6 @@ dependencies = [
608 "httpdate",
609 "itoa",
610 "pin-project-lite",
611- "pin-utils",
612 "smallvec",
613 "tokio",
614 "want",
615 @@ -1358,15 +1427,14 @@ dependencies = [
616
617 [[package]]
618 name = "hyper-rustls"
619- version = "0.27.7"
620+ version = "0.27.9"
621 source = "registry+https://github.com/rust-lang/crates.io-index"
622- checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
623+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
624 dependencies = [
625 "http",
626 "hyper",
627 "hyper-util",
628 "rustls",
629- "rustls-pki-types",
630 "tokio",
631 "tokio-rustls",
632 "tower-service",
633 @@ -1390,14 +1458,13 @@ dependencies = [
634
635 [[package]]
636 name = "hyper-util"
637- version = "0.1.19"
638+ version = "0.1.20"
639 source = "registry+https://github.com/rust-lang/crates.io-index"
640- checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
641+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
642 dependencies = [
643 "base64 0.22.1",
644 "bytes",
645 "futures-channel",
646- "futures-core",
647 "futures-util",
648 "http",
649 "http-body",
650 @@ -1416,9 +1483,9 @@ dependencies = [
651
652 [[package]]
653 name = "iana-time-zone"
654- version = "0.1.63"
655+ version = "0.1.65"
656 source = "registry+https://github.com/rust-lang/crates.io-index"
657- checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
658+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
659 dependencies = [
660 "android_system_properties",
661 "core-foundation-sys",
662 @@ -1440,12 +1507,13 @@ dependencies = [
663
664 [[package]]
665 name = "icu_collections"
666- version = "2.1.1"
667+ version = "2.2.0"
668 source = "registry+https://github.com/rust-lang/crates.io-index"
669- checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
670+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
671 dependencies = [
672 "displaydoc",
673 "potential_utf",
674+ "utf8_iter",
675 "yoke",
676 "zerofrom",
677 "zerovec",
678 @@ -1453,9 +1521,9 @@ dependencies = [
679
680 [[package]]
681 name = "icu_locale_core"
682- version = "2.1.1"
683+ version = "2.2.0"
684 source = "registry+https://github.com/rust-lang/crates.io-index"
685- checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
686+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
687 dependencies = [
688 "displaydoc",
689 "litemap",
690 @@ -1466,9 +1534,9 @@ dependencies = [
691
692 [[package]]
693 name = "icu_normalizer"
694- version = "2.1.1"
695+ version = "2.2.0"
696 source = "registry+https://github.com/rust-lang/crates.io-index"
697- checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
698+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
699 dependencies = [
700 "icu_collections",
701 "icu_normalizer_data",
702 @@ -1480,15 +1548,15 @@ dependencies = [
703
704 [[package]]
705 name = "icu_normalizer_data"
706- version = "2.1.1"
707+ version = "2.2.0"
708 source = "registry+https://github.com/rust-lang/crates.io-index"
709- checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
710+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
711
712 [[package]]
713 name = "icu_properties"
714- version = "2.1.2"
715+ version = "2.2.0"
716 source = "registry+https://github.com/rust-lang/crates.io-index"
717- checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
718+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
719 dependencies = [
720 "icu_collections",
721 "icu_locale_core",
722 @@ -1500,15 +1568,15 @@ dependencies = [
723
724 [[package]]
725 name = "icu_properties_data"
726- version = "2.1.2"
727+ version = "2.2.0"
728 source = "registry+https://github.com/rust-lang/crates.io-index"
729- checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
730+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
731
732 [[package]]
733 name = "icu_provider"
734- version = "2.1.1"
735+ version = "2.2.0"
736 source = "registry+https://github.com/rust-lang/crates.io-index"
737- checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
738+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
739 dependencies = [
740 "displaydoc",
741 "icu_locale_core",
742 @@ -1520,6 +1588,12 @@ dependencies = [
743 ]
744
745 [[package]]
746+ name = "id-arena"
747+ version = "2.3.0"
748+ source = "registry+https://github.com/rust-lang/crates.io-index"
749+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
750+
751+ [[package]]
752 name = "ident_case"
753 version = "1.0.1"
754 source = "registry+https://github.com/rust-lang/crates.io-index"
755 @@ -1538,9 +1612,9 @@ dependencies = [
756
757 [[package]]
758 name = "idna_adapter"
759- version = "1.2.1"
760+ version = "1.2.2"
761 source = "registry+https://github.com/rust-lang/crates.io-index"
762- checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
763+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
764 dependencies = [
765 "icu_normalizer",
766 "icu_properties",
767 @@ -1559,27 +1633,27 @@ dependencies = [
768
769 [[package]]
770 name = "indexmap"
771- version = "2.13.0"
772+ version = "2.14.0"
773 source = "registry+https://github.com/rust-lang/crates.io-index"
774- checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
775+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
776 dependencies = [
777 "equivalent",
778- "hashbrown 0.16.1",
779+ "hashbrown 0.17.0",
780 "serde",
781 "serde_core",
782 ]
783
784 [[package]]
785 name = "ipnet"
786- version = "2.11.0"
787+ version = "2.12.0"
788 source = "registry+https://github.com/rust-lang/crates.io-index"
789- checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
790+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
791
792 [[package]]
793 name = "iri-string"
794- version = "0.7.10"
795+ version = "0.7.12"
796 source = "registry+https://github.com/rust-lang/crates.io-index"
797- checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
798+ checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
799 dependencies = [
800 "memchr",
801 "serde",
802 @@ -1593,9 +1667,9 @@ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
803
804 [[package]]
805 name = "itoa"
806- version = "1.0.17"
807+ version = "1.0.18"
808 source = "registry+https://github.com/rust-lang/crates.io-index"
809- checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
810+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
811
812 [[package]]
813 name = "jobserver"
814 @@ -1609,10 +1683,12 @@ dependencies = [
815
816 [[package]]
817 name = "js-sys"
818- version = "0.3.77"
819+ version = "0.3.97"
820 source = "registry+https://github.com/rust-lang/crates.io-index"
821- checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
822+ checksum = "a1840c94c045fbcf8ba2812c95db44499f7c64910a912551aaaa541decebcacf"
823 dependencies = [
824+ "cfg-if",
825+ "futures-util",
826 "once_cell",
827 "wasm-bindgen",
828 ]
829 @@ -1654,10 +1730,16 @@ dependencies = [
830 ]
831
832 [[package]]
833+ name = "leb128fmt"
834+ version = "0.1.0"
835+ source = "registry+https://github.com/rust-lang/crates.io-index"
836+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
837+
838+ [[package]]
839 name = "libc"
840- version = "0.2.180"
841+ version = "0.2.186"
842 source = "registry+https://github.com/rust-lang/crates.io-index"
843- checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
844+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
845
846 [[package]]
847 name = "libgit2-sys"
848 @@ -1678,24 +1760,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
849 checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
850 dependencies = [
851 "cfg-if",
852- "windows-link 0.2.1",
853+ "windows-link",
854 ]
855
856 [[package]]
857 name = "libm"
858- version = "0.2.15"
859+ version = "0.2.16"
860 source = "registry+https://github.com/rust-lang/crates.io-index"
861- checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
862+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
863
864 [[package]]
865 name = "libredox"
866- version = "0.1.10"
867+ version = "0.1.16"
868 source = "registry+https://github.com/rust-lang/crates.io-index"
869- checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
870+ checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
871 dependencies = [
872 "bitflags",
873 "libc",
874- "redox_syscall",
875+ "plain",
876+ "redox_syscall 0.7.4",
877 ]
878
879 [[package]]
880 @@ -1711,9 +1794,9 @@ dependencies = [
881
882 [[package]]
883 name = "libz-sys"
884- version = "1.1.22"
885+ version = "1.1.28"
886 source = "registry+https://github.com/rust-lang/crates.io-index"
887- checksum = "8b70e7a7df205e92a1a4cd9aaae7898dac0aa555503cc0a649494d0d60e7651d"
888+ checksum = "fc3a226e576f50782b3305c5ccf458698f92798987f551c6a02efe8276721e22"
889 dependencies = [
890 "cc",
891 "libc",
892 @@ -1723,15 +1806,15 @@ dependencies = [
893
894 [[package]]
895 name = "linux-raw-sys"
896- version = "0.11.0"
897+ version = "0.12.1"
898 source = "registry+https://github.com/rust-lang/crates.io-index"
899- checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
900+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
901
902 [[package]]
903 name = "litemap"
904- version = "0.8.1"
905+ version = "0.8.2"
906 source = "registry+https://github.com/rust-lang/crates.io-index"
907- checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
908+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
909
910 [[package]]
911 name = "lock_api"
912 @@ -1775,9 +1858,9 @@ dependencies = [
913
914 [[package]]
915 name = "memchr"
916- version = "2.7.6"
917+ version = "2.8.0"
918 source = "registry+https://github.com/rust-lang/crates.io-index"
919- checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
920+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
921
922 [[package]]
923 name = "mime"
924 @@ -1797,9 +1880,9 @@ dependencies = [
925
926 [[package]]
927 name = "mio"
928- version = "1.1.1"
929+ version = "1.2.0"
930 source = "registry+https://github.com/rust-lang/crates.io-index"
931- checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
932+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
933 dependencies = [
934 "libc",
935 "wasi",
936 @@ -1808,9 +1891,9 @@ dependencies = [
937
938 [[package]]
939 name = "native-tls"
940- version = "0.2.14"
941+ version = "0.2.18"
942 source = "registry+https://github.com/rust-lang/crates.io-index"
943- checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
944+ checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
945 dependencies = [
946 "libc",
947 "log",
948 @@ -1840,26 +1923,25 @@ dependencies = [
949
950 [[package]]
951 name = "num-bigint-dig"
952- version = "0.8.4"
953+ version = "0.8.6"
954 source = "registry+https://github.com/rust-lang/crates.io-index"
955- checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
956+ checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
957 dependencies = [
958- "byteorder",
959 "lazy_static",
960 "libm",
961 "num-integer",
962 "num-iter",
963 "num-traits",
964- "rand 0.8.5",
965+ "rand 0.8.6",
966 "smallvec",
967 "zeroize",
968 ]
969
970 [[package]]
971 name = "num-conv"
972- version = "0.2.0"
973+ version = "0.2.1"
974 source = "registry+https://github.com/rust-lang/crates.io-index"
975- checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
976+ checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
977
978 [[package]]
979 name = "num-integer"
980 @@ -1893,18 +1975,18 @@ dependencies = [
981
982 [[package]]
983 name = "nutype"
984- version = "0.6.1"
985+ version = "0.6.2"
986 source = "registry+https://github.com/rust-lang/crates.io-index"
987- checksum = "3340cb6773b0794ecb3f62ff66631d580f57151d9415c10ee8a27a357aeb998b"
988+ checksum = "70587a780088c67dad31bf722b875c5616096b4d8c0ded8b7de03294ffb9bbb5"
989 dependencies = [
990 "nutype_macros",
991 ]
992
993 [[package]]
994 name = "nutype_macros"
995- version = "0.6.1"
996+ version = "0.6.2"
997 source = "registry+https://github.com/rust-lang/crates.io-index"
998- checksum = "35c955e27d02868fe90b9c2dc901661fd7ed67ec382782bdc67c6aa8d2e957a9"
999+ checksum = "148934b975faeddd8f0679d7cf11280b50c4c5495d6fe72bdaf07c932874b404"
1000 dependencies = [
1001 "cfg-if",
1002 "kinded",
1003 @@ -1917,15 +1999,15 @@ dependencies = [
1004
1005 [[package]]
1006 name = "once_cell"
1007- version = "1.21.3"
1008+ version = "1.21.4"
1009 source = "registry+https://github.com/rust-lang/crates.io-index"
1010- checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1011+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1012
1013 [[package]]
1014 name = "once_cell_polyfill"
1015- version = "1.70.1"
1016+ version = "1.70.2"
1017 source = "registry+https://github.com/rust-lang/crates.io-index"
1018- checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
1019+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1020
1021 [[package]]
1022 name = "openssh-keys"
1023 @@ -1942,9 +2024,9 @@ dependencies = [
1024
1025 [[package]]
1026 name = "openssl"
1027- version = "0.10.75"
1028+ version = "0.10.78"
1029 source = "registry+https://github.com/rust-lang/crates.io-index"
1030- checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328"
1031+ checksum = "f38c4372413cdaaf3cc79dd92d29d7d9f5ab09b51b10dded508fb90bb70b9222"
1032 dependencies = [
1033 "bitflags",
1034 "cfg-if",
1035 @@ -1968,15 +2050,15 @@ dependencies = [
1036
1037 [[package]]
1038 name = "openssl-probe"
1039- version = "0.1.6"
1040+ version = "0.2.1"
1041 source = "registry+https://github.com/rust-lang/crates.io-index"
1042- checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1043+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1044
1045 [[package]]
1046 name = "openssl-sys"
1047- version = "0.9.111"
1048+ version = "0.9.114"
1049 source = "registry+https://github.com/rust-lang/crates.io-index"
1050- checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321"
1051+ checksum = "13ce1245cd07fcc4cfdb438f7507b0c7e4f3849a69fd84d52374c66d83741bb6"
1052 dependencies = [
1053 "cc",
1054 "libc",
1055 @@ -2008,9 +2090,9 @@ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1056 dependencies = [
1057 "cfg-if",
1058 "libc",
1059- "redox_syscall",
1060+ "redox_syscall 0.5.18",
1061 "smallvec",
1062- "windows-link 0.2.1",
1063+ "windows-link",
1064 ]
1065
1066 [[package]]
1067 @@ -2035,22 +2117,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1068 checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
1069 dependencies = [
1070 "fixedbitset",
1071- "indexmap 2.13.0",
1072+ "indexmap 2.14.0",
1073 "serde",
1074 "serde_derive",
1075 ]
1076
1077 [[package]]
1078 name = "pin-project-lite"
1079- version = "0.2.16"
1080- source = "registry+https://github.com/rust-lang/crates.io-index"
1081- checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1082-
1083- [[package]]
1084- name = "pin-utils"
1085- version = "0.1.0"
1086+ version = "0.2.17"
1087 source = "registry+https://github.com/rust-lang/crates.io-index"
1088- checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1089+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1090
1091 [[package]]
1092 name = "pkcs1"
1093 @@ -2075,15 +2151,21 @@ dependencies = [
1094
1095 [[package]]
1096 name = "pkg-config"
1097- version = "0.3.32"
1098+ version = "0.3.33"
1099+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1101+
1102+ [[package]]
1103+ name = "plain"
1104+ version = "0.2.3"
1105 source = "registry+https://github.com/rust-lang/crates.io-index"
1106- checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1107+ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
1108
1109 [[package]]
1110 name = "potential_utf"
1111- version = "0.1.4"
1112+ version = "0.1.5"
1113 source = "registry+https://github.com/rust-lang/crates.io-index"
1114- checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1115+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1116 dependencies = [
1117 "zerovec",
1118 ]
1119 @@ -2104,10 +2186,20 @@ dependencies = [
1120 ]
1121
1122 [[package]]
1123+ name = "prettyplease"
1124+ version = "0.2.37"
1125+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1127+ dependencies = [
1128+ "proc-macro2",
1129+ "syn",
1130+ ]
1131+
1132+ [[package]]
1133 name = "proc-macro2"
1134- version = "1.0.105"
1135+ version = "1.0.106"
1136 source = "registry+https://github.com/rust-lang/crates.io-index"
1137- checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7"
1138+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1139 dependencies = [
1140 "unicode-ident",
1141 ]
1142 @@ -2129,7 +2221,7 @@ dependencies = [
1143 "ayllu_api",
1144 "ayllu_cmd",
1145 "ayllu_config",
1146- "reqwest 0.12.28",
1147+ "reqwest 0.13.3",
1148 "serde",
1149 "thiserror 2.0.18",
1150 "tokio",
1151 @@ -2141,9 +2233,9 @@ dependencies = [
1152
1153 [[package]]
1154 name = "quote"
1155- version = "1.0.43"
1156+ version = "1.0.45"
1157 source = "registry+https://github.com/rust-lang/crates.io-index"
1158- checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
1159+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1160 dependencies = [
1161 "proc-macro2",
1162 ]
1163 @@ -2155,10 +2247,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1164 checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1165
1166 [[package]]
1167+ name = "r-efi"
1168+ version = "6.0.0"
1169+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1171+
1172+ [[package]]
1173 name = "rand"
1174- version = "0.8.5"
1175+ version = "0.8.6"
1176 source = "registry+https://github.com/rust-lang/crates.io-index"
1177- checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1178+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
1179 dependencies = [
1180 "libc",
1181 "rand_chacha 0.3.1",
1182 @@ -2167,9 +2265,9 @@ dependencies = [
1183
1184 [[package]]
1185 name = "rand"
1186- version = "0.9.2"
1187+ version = "0.9.4"
1188 source = "registry+https://github.com/rust-lang/crates.io-index"
1189- checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1190+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1191 dependencies = [
1192 "rand_chacha 0.9.0",
1193 "rand_core 0.9.5",
1194 @@ -2215,27 +2313,36 @@ dependencies = [
1195
1196 [[package]]
1197 name = "redox_syscall"
1198- version = "0.5.16"
1199+ version = "0.5.18"
1200+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1202+ dependencies = [
1203+ "bitflags",
1204+ ]
1205+
1206+ [[package]]
1207+ name = "redox_syscall"
1208+ version = "0.7.4"
1209 source = "registry+https://github.com/rust-lang/crates.io-index"
1210- checksum = "7251471db004e509f4e75a62cca9435365b5ec7bcdff530d612ac7c87c44a792"
1211+ checksum = "f450ad9c3b1da563fb6948a8e0fb0fb9269711c9c73d9ea1de5058c79c8d643a"
1212 dependencies = [
1213 "bitflags",
1214 ]
1215
1216 [[package]]
1217 name = "ref-cast"
1218- version = "1.0.24"
1219+ version = "1.0.25"
1220 source = "registry+https://github.com/rust-lang/crates.io-index"
1221- checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf"
1222+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
1223 dependencies = [
1224 "ref-cast-impl",
1225 ]
1226
1227 [[package]]
1228 name = "ref-cast-impl"
1229- version = "1.0.24"
1230+ version = "1.0.25"
1231 source = "registry+https://github.com/rust-lang/crates.io-index"
1232- checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
1233+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
1234 dependencies = [
1235 "proc-macro2",
1236 "quote",
1237 @@ -2244,9 +2351,9 @@ dependencies = [
1238
1239 [[package]]
1240 name = "regex"
1241- version = "1.12.2"
1242+ version = "1.12.3"
1243 source = "registry+https://github.com/rust-lang/crates.io-index"
1244- checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
1245+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1246 dependencies = [
1247 "aho-corasick",
1248 "memchr",
1249 @@ -2256,9 +2363,9 @@ dependencies = [
1250
1251 [[package]]
1252 name = "regex-automata"
1253- version = "0.4.13"
1254+ version = "0.4.14"
1255 source = "registry+https://github.com/rust-lang/crates.io-index"
1256- checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
1257+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1258 dependencies = [
1259 "aho-corasick",
1260 "memchr",
1261 @@ -2267,9 +2374,9 @@ dependencies = [
1262
1263 [[package]]
1264 name = "regex-syntax"
1265- version = "0.8.8"
1266+ version = "0.8.10"
1267 source = "registry+https://github.com/rust-lang/crates.io-index"
1268- checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
1269+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1270
1271 [[package]]
1272 name = "reqwest"
1273 @@ -2320,6 +2427,7 @@ dependencies = [
1274 "base64 0.22.1",
1275 "bytes",
1276 "futures-core",
1277+ "futures-util",
1278 "h2",
1279 "http",
1280 "http-body",
1281 @@ -2335,12 +2443,14 @@ dependencies = [
1282 "serde_json",
1283 "sync_wrapper",
1284 "tokio",
1285+ "tokio-util",
1286 "tower",
1287 "tower-http",
1288 "tower-service",
1289 "url",
1290 "wasm-bindgen",
1291 "wasm-bindgen-futures",
1292+ "wasm-streams",
1293 "web-sys",
1294 ]
1295
1296 @@ -2360,15 +2470,15 @@ dependencies = [
1297
1298 [[package]]
1299 name = "roff"
1300- version = "0.2.2"
1301+ version = "1.1.1"
1302 source = "registry+https://github.com/rust-lang/crates.io-index"
1303- checksum = "88f8660c1ff60292143c98d08fc6e2f654d722db50410e3f3797d40baaf9d8f3"
1304+ checksum = "323c417e1d9665a65b263ec744ba09030cfb277e9daa0b018a4ab62e57bc8189"
1305
1306 [[package]]
1307 name = "rsa"
1308- version = "0.9.8"
1309+ version = "0.9.10"
1310 source = "registry+https://github.com/rust-lang/crates.io-index"
1311- checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b"
1312+ checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
1313 dependencies = [
1314 "const-oid",
1315 "digest",
1316 @@ -2398,9 +2508,9 @@ dependencies = [
1317
1318 [[package]]
1319 name = "rustc-hash"
1320- version = "2.1.1"
1321+ version = "2.1.2"
1322 source = "registry+https://github.com/rust-lang/crates.io-index"
1323- checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1324+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1325
1326 [[package]]
1327 name = "rustc_version"
1328 @@ -2413,9 +2523,9 @@ dependencies = [
1329
1330 [[package]]
1331 name = "rustix"
1332- version = "1.1.3"
1333+ version = "1.1.4"
1334 source = "registry+https://github.com/rust-lang/crates.io-index"
1335- checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
1336+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1337 dependencies = [
1338 "bitflags",
1339 "errno",
1340 @@ -2426,9 +2536,9 @@ dependencies = [
1341
1342 [[package]]
1343 name = "rustls"
1344- version = "0.23.36"
1345+ version = "0.23.40"
1346 source = "registry+https://github.com/rust-lang/crates.io-index"
1347- checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
1348+ checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
1349 dependencies = [
1350 "once_cell",
1351 "rustls-pki-types",
1352 @@ -2439,18 +2549,18 @@ dependencies = [
1353
1354 [[package]]
1355 name = "rustls-pki-types"
1356- version = "1.14.0"
1357+ version = "1.14.1"
1358 source = "registry+https://github.com/rust-lang/crates.io-index"
1359- checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
1360+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
1361 dependencies = [
1362 "zeroize",
1363 ]
1364
1365 [[package]]
1366 name = "rustls-webpki"
1367- version = "0.103.9"
1368+ version = "0.103.13"
1369 source = "registry+https://github.com/rust-lang/crates.io-index"
1370- checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
1371+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1372 dependencies = [
1373 "ring",
1374 "rustls-pki-types",
1375 @@ -2465,17 +2575,17 @@ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1376
1377 [[package]]
1378 name = "ryu"
1379- version = "1.0.22"
1380+ version = "1.0.23"
1381 source = "registry+https://github.com/rust-lang/crates.io-index"
1382- checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
1383+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1384
1385 [[package]]
1386 name = "schannel"
1387- version = "0.1.27"
1388+ version = "0.1.29"
1389 source = "registry+https://github.com/rust-lang/crates.io-index"
1390- checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
1391+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
1392 dependencies = [
1393- "windows-sys 0.59.0",
1394+ "windows-sys 0.61.2",
1395 ]
1396
1397 [[package]]
1398 @@ -2492,9 +2602,9 @@ dependencies = [
1399
1400 [[package]]
1401 name = "schemars"
1402- version = "1.0.4"
1403+ version = "1.2.1"
1404 source = "registry+https://github.com/rust-lang/crates.io-index"
1405- checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0"
1406+ checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
1407 dependencies = [
1408 "dyn-clone",
1409 "ref-cast",
1410 @@ -2510,12 +2620,12 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1411
1412 [[package]]
1413 name = "security-framework"
1414- version = "2.11.1"
1415+ version = "3.7.0"
1416 source = "registry+https://github.com/rust-lang/crates.io-index"
1417- checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
1418+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
1419 dependencies = [
1420 "bitflags",
1421- "core-foundation",
1422+ "core-foundation 0.10.1",
1423 "core-foundation-sys",
1424 "libc",
1425 "security-framework-sys",
1426 @@ -2533,9 +2643,9 @@ dependencies = [
1427
1428 [[package]]
1429 name = "semver"
1430- version = "1.0.26"
1431+ version = "1.0.28"
1432 source = "registry+https://github.com/rust-lang/crates.io-index"
1433- checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
1434+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1435
1436 [[package]]
1437 name = "serde"
1438 @@ -2569,15 +2679,15 @@ dependencies = [
1439
1440 [[package]]
1441 name = "serde_html_form"
1442- version = "0.2.7"
1443+ version = "0.2.8"
1444 source = "registry+https://github.com/rust-lang/crates.io-index"
1445- checksum = "9d2de91cf02bbc07cde38891769ccd5d4f073d22a40683aa4bc7a95781aaa2c4"
1446+ checksum = "b2f2d7ff8a2140333718bb329f5c40fc5f0865b84c426183ce14c97d2ab8154f"
1447 dependencies = [
1448 "form_urlencoded",
1449- "indexmap 2.13.0",
1450+ "indexmap 2.14.0",
1451 "itoa",
1452 "ryu",
1453- "serde",
1454+ "serde_core",
1455 ]
1456
1457 [[package]]
1458 @@ -2586,7 +2696,7 @@ version = "1.0.149"
1459 source = "registry+https://github.com/rust-lang/crates.io-index"
1460 checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1461 dependencies = [
1462- "indexmap 2.13.0",
1463+ "indexmap 2.14.0",
1464 "itoa",
1465 "memchr",
1466 "serde",
1467 @@ -2628,19 +2738,18 @@ dependencies = [
1468
1469 [[package]]
1470 name = "serde_with"
1471- version = "3.14.0"
1472+ version = "3.19.0"
1473 source = "registry+https://github.com/rust-lang/crates.io-index"
1474- checksum = "f2c45cd61fefa9db6f254525d46e392b852e0e61d9a1fd36e5bd183450a556d5"
1475+ checksum = "f05839ce67618e14a09b286535c0d9c94e85ef25469b0e13cb4f844e5593eb19"
1476 dependencies = [
1477 "base64 0.22.1",
1478 "chrono",
1479 "hex",
1480 "indexmap 1.9.3",
1481- "indexmap 2.13.0",
1482+ "indexmap 2.14.0",
1483 "schemars 0.9.0",
1484- "schemars 1.0.4",
1485- "serde",
1486- "serde_derive",
1487+ "schemars 1.2.1",
1488+ "serde_core",
1489 "serde_json",
1490 "serde_with_macros",
1491 "time",
1492 @@ -2648,11 +2757,11 @@ dependencies = [
1493
1494 [[package]]
1495 name = "serde_with_macros"
1496- version = "3.14.0"
1497+ version = "3.19.0"
1498 source = "registry+https://github.com/rust-lang/crates.io-index"
1499- checksum = "de90945e6565ce0d9a25098082ed4ee4002e047cb59892c318d66821e14bb30f"
1500+ checksum = "cf2ebbe86054f9b45bc3881e865683ccfaccce97b9b4cb53f3039d67f355a334"
1501 dependencies = [
1502- "darling",
1503+ "darling 0.23.0",
1504 "proc-macro2",
1505 "quote",
1506 "syn",
1507 @@ -2691,9 +2800,9 @@ dependencies = [
1508
1509 [[package]]
1510 name = "shell-words"
1511- version = "1.1.0"
1512+ version = "1.1.1"
1513 source = "registry+https://github.com/rust-lang/crates.io-index"
1514- checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
1515+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
1516
1517 [[package]]
1518 name = "shlex"
1519 @@ -2723,9 +2832,9 @@ dependencies = [
1520
1521 [[package]]
1522 name = "slab"
1523- version = "0.4.11"
1524+ version = "0.4.12"
1525 source = "registry+https://github.com/rust-lang/crates.io-index"
1526- checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
1527+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1528
1529 [[package]]
1530 name = "slug"
1531 @@ -2748,12 +2857,12 @@ dependencies = [
1532
1533 [[package]]
1534 name = "socket2"
1535- version = "0.6.1"
1536+ version = "0.6.3"
1537 source = "registry+https://github.com/rust-lang/crates.io-index"
1538- checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
1539+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
1540 dependencies = [
1541 "libc",
1542- "windows-sys 0.60.2",
1543+ "windows-sys 0.61.2",
1544 ]
1545
1546 [[package]]
1547 @@ -2806,7 +2915,7 @@ dependencies = [
1548 "futures-util",
1549 "hashbrown 0.15.5",
1550 "hashlink",
1551- "indexmap 2.13.0",
1552+ "indexmap 2.14.0",
1553 "log",
1554 "memchr",
1555 "once_cell",
1556 @@ -2889,7 +2998,7 @@ dependencies = [
1557 "memchr",
1558 "once_cell",
1559 "percent-encoding",
1560- "rand 0.8.5",
1561+ "rand 0.8.6",
1562 "rsa",
1563 "serde",
1564 "sha1",
1565 @@ -2927,7 +3036,7 @@ dependencies = [
1566 "md-5",
1567 "memchr",
1568 "once_cell",
1569- "rand 0.8.5",
1570+ "rand 0.8.6",
1571 "serde",
1572 "serde_json",
1573 "sha2",
1574 @@ -3000,9 +3109,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1575
1576 [[package]]
1577 name = "syn"
1578- version = "2.0.114"
1579+ version = "2.0.117"
1580 source = "registry+https://github.com/rust-lang/crates.io-index"
1581- checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
1582+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1583 dependencies = [
1584 "proc-macro2",
1585 "quote",
1586 @@ -3031,12 +3140,12 @@ dependencies = [
1587
1588 [[package]]
1589 name = "system-configuration"
1590- version = "0.6.1"
1591+ version = "0.7.0"
1592 source = "registry+https://github.com/rust-lang/crates.io-index"
1593- checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
1594+ checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
1595 dependencies = [
1596 "bitflags",
1597- "core-foundation",
1598+ "core-foundation 0.9.4",
1599 "system-configuration-sys",
1600 ]
1601
1602 @@ -3051,13 +3160,24 @@ dependencies = [
1603 ]
1604
1605 [[package]]
1606+ name = "tar"
1607+ version = "0.4.45"
1608+ source = "registry+https://github.com/rust-lang/crates.io-index"
1609+ checksum = "22692a6476a21fa75fdfc11d452fda482af402c008cdbaf3476414e122040973"
1610+ dependencies = [
1611+ "filetime",
1612+ "libc",
1613+ "xattr",
1614+ ]
1615+
1616+ [[package]]
1617 name = "tempfile"
1618- version = "3.24.0"
1619+ version = "3.27.0"
1620 source = "registry+https://github.com/rust-lang/crates.io-index"
1621- checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
1622+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1623 dependencies = [
1624 "fastrand",
1625- "getrandom 0.3.4",
1626+ "getrandom 0.4.2",
1627 "once_cell",
1628 "rustix",
1629 "windows-sys 0.61.2",
1630 @@ -3152,9 +3272,9 @@ dependencies = [
1631
1632 [[package]]
1633 name = "tinystr"
1634- version = "0.8.2"
1635+ version = "0.8.3"
1636 source = "registry+https://github.com/rust-lang/crates.io-index"
1637- checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
1638+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1639 dependencies = [
1640 "displaydoc",
1641 "zerovec",
1642 @@ -3162,9 +3282,9 @@ dependencies = [
1643
1644 [[package]]
1645 name = "tinyvec"
1646- version = "1.9.0"
1647+ version = "1.11.0"
1648 source = "registry+https://github.com/rust-lang/crates.io-index"
1649- checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
1650+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
1651 dependencies = [
1652 "tinyvec_macros",
1653 ]
1654 @@ -3177,9 +3297,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1655
1656 [[package]]
1657 name = "tokio"
1658- version = "1.49.0"
1659+ version = "1.52.1"
1660 source = "registry+https://github.com/rust-lang/crates.io-index"
1661- checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
1662+ checksum = "b67dee974fe86fd92cc45b7a95fdd2f99a36a6d7b0d431a231178d3d670bbcc6"
1663 dependencies = [
1664 "bytes",
1665 "libc",
1666 @@ -3194,9 +3314,9 @@ dependencies = [
1667
1668 [[package]]
1669 name = "tokio-macros"
1670- version = "2.6.0"
1671+ version = "2.7.0"
1672 source = "registry+https://github.com/rust-lang/crates.io-index"
1673- checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
1674+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
1675 dependencies = [
1676 "proc-macro2",
1677 "quote",
1678 @@ -3275,7 +3395,7 @@ version = "0.22.27"
1679 source = "registry+https://github.com/rust-lang/crates.io-index"
1680 checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1681 dependencies = [
1682- "indexmap 2.13.0",
1683+ "indexmap 2.14.0",
1684 "serde",
1685 "serde_spanned",
1686 "toml_datetime",
1687 @@ -3382,9 +3502,9 @@ dependencies = [
1688
1689 [[package]]
1690 name = "tracing-subscriber"
1691- version = "0.3.22"
1692+ version = "0.3.23"
1693 source = "registry+https://github.com/rust-lang/crates.io-index"
1694- checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
1695+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
1696 dependencies = [
1697 "matchers",
1698 "nu-ansi-term",
1699 @@ -3426,9 +3546,9 @@ dependencies = [
1700
1701 [[package]]
1702 name = "tree-sitter-language"
1703- version = "0.1.5"
1704+ version = "0.1.7"
1705 source = "registry+https://github.com/rust-lang/crates.io-index"
1706- checksum = "c4013970217383f67b18aef68f6fb2e8d409bc5755227092d32efb0422ba24b8"
1707+ checksum = "009994f150cc0cd50ff54917d5bc8bffe8cad10ca10d81c34da2ec421ae61782"
1708
1709 [[package]]
1710 name = "try-lock"
1711 @@ -3444,15 +3564,15 @@ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
1712
1713 [[package]]
1714 name = "typenum"
1715- version = "1.19.0"
1716+ version = "1.20.0"
1717 source = "registry+https://github.com/rust-lang/crates.io-index"
1718- checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1719+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
1720
1721 [[package]]
1722 name = "unicase"
1723- version = "2.8.1"
1724+ version = "2.9.0"
1725 source = "registry+https://github.com/rust-lang/crates.io-index"
1726- checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
1727+ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
1728
1729 [[package]]
1730 name = "unicode-bidi"
1731 @@ -3462,36 +3582,42 @@ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
1732
1733 [[package]]
1734 name = "unicode-ident"
1735- version = "1.0.22"
1736+ version = "1.0.24"
1737 source = "registry+https://github.com/rust-lang/crates.io-index"
1738- checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
1739+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1740
1741 [[package]]
1742 name = "unicode-normalization"
1743- version = "0.1.24"
1744+ version = "0.1.25"
1745 source = "registry+https://github.com/rust-lang/crates.io-index"
1746- checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
1747+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
1748 dependencies = [
1749 "tinyvec",
1750 ]
1751
1752 [[package]]
1753 name = "unicode-properties"
1754- version = "0.1.3"
1755+ version = "0.1.4"
1756 source = "registry+https://github.com/rust-lang/crates.io-index"
1757- checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0"
1758+ checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
1759
1760 [[package]]
1761 name = "unicode-segmentation"
1762- version = "1.12.0"
1763+ version = "1.13.2"
1764 source = "registry+https://github.com/rust-lang/crates.io-index"
1765- checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
1766+ checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
1767
1768 [[package]]
1769 name = "unicode-width"
1770- version = "0.2.1"
1771+ version = "0.2.2"
1772+ source = "registry+https://github.com/rust-lang/crates.io-index"
1773+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1774+
1775+ [[package]]
1776+ name = "unicode-xid"
1777+ version = "0.2.6"
1778 source = "registry+https://github.com/rust-lang/crates.io-index"
1779- checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
1780+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1781
1782 [[package]]
1783 name = "unicode_categories"
1784 @@ -3571,11 +3697,20 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1785
1786 [[package]]
1787 name = "wasip2"
1788- version = "1.0.2+wasi-0.2.9"
1789+ version = "1.0.3+wasi-0.2.9"
1790 source = "registry+https://github.com/rust-lang/crates.io-index"
1791- checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
1792+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1793 dependencies = [
1794- "wit-bindgen",
1795+ "wit-bindgen 0.57.1",
1796+ ]
1797+
1798+ [[package]]
1799+ name = "wasip3"
1800+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1801+ source = "registry+https://github.com/rust-lang/crates.io-index"
1802+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1803+ dependencies = [
1804+ "wit-bindgen 0.51.0",
1805 ]
1806
1807 [[package]]
1808 @@ -3586,48 +3721,32 @@ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
1809
1810 [[package]]
1811 name = "wasm-bindgen"
1812- version = "0.2.100"
1813+ version = "0.2.120"
1814 source = "registry+https://github.com/rust-lang/crates.io-index"
1815- checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
1816+ checksum = "df52b6d9b87e0c74c9edfa1eb2d9bf85e5d63515474513aa50fa181b3c4f5db1"
1817 dependencies = [
1818 "cfg-if",
1819 "once_cell",
1820 "rustversion",
1821 "wasm-bindgen-macro",
1822- ]
1823-
1824- [[package]]
1825- name = "wasm-bindgen-backend"
1826- version = "0.2.100"
1827- source = "registry+https://github.com/rust-lang/crates.io-index"
1828- checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
1829- dependencies = [
1830- "bumpalo",
1831- "log",
1832- "proc-macro2",
1833- "quote",
1834- "syn",
1835 "wasm-bindgen-shared",
1836 ]
1837
1838 [[package]]
1839 name = "wasm-bindgen-futures"
1840- version = "0.4.50"
1841+ version = "0.4.70"
1842 source = "registry+https://github.com/rust-lang/crates.io-index"
1843- checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
1844+ checksum = "af934872acec734c2d80e6617bbb5ff4f12b052dd8e6332b0817bce889516084"
1845 dependencies = [
1846- "cfg-if",
1847 "js-sys",
1848- "once_cell",
1849 "wasm-bindgen",
1850- "web-sys",
1851 ]
1852
1853 [[package]]
1854 name = "wasm-bindgen-macro"
1855- version = "0.2.100"
1856+ version = "0.2.120"
1857 source = "registry+https://github.com/rust-lang/crates.io-index"
1858- checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
1859+ checksum = "78b1041f495fb322e64aca85f5756b2172e35cd459376e67f2a6c9dffcedb103"
1860 dependencies = [
1861 "quote",
1862 "wasm-bindgen-macro-support",
1863 @@ -3635,31 +3754,78 @@ dependencies = [
1864
1865 [[package]]
1866 name = "wasm-bindgen-macro-support"
1867- version = "0.2.100"
1868+ version = "0.2.120"
1869 source = "registry+https://github.com/rust-lang/crates.io-index"
1870- checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
1871+ checksum = "9dcd0ff20416988a18ac686d4d4d0f6aae9ebf08a389ff5d29012b05af2a1b41"
1872 dependencies = [
1873+ "bumpalo",
1874 "proc-macro2",
1875 "quote",
1876 "syn",
1877- "wasm-bindgen-backend",
1878 "wasm-bindgen-shared",
1879 ]
1880
1881 [[package]]
1882 name = "wasm-bindgen-shared"
1883- version = "0.2.100"
1884+ version = "0.2.120"
1885 source = "registry+https://github.com/rust-lang/crates.io-index"
1886- checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
1887+ checksum = "49757b3c82ebf16c57d69365a142940b384176c24df52a087fb748e2085359ea"
1888 dependencies = [
1889 "unicode-ident",
1890 ]
1891
1892 [[package]]
1893+ name = "wasm-encoder"
1894+ version = "0.244.0"
1895+ source = "registry+https://github.com/rust-lang/crates.io-index"
1896+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1897+ dependencies = [
1898+ "leb128fmt",
1899+ "wasmparser",
1900+ ]
1901+
1902+ [[package]]
1903+ name = "wasm-metadata"
1904+ version = "0.244.0"
1905+ source = "registry+https://github.com/rust-lang/crates.io-index"
1906+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1907+ dependencies = [
1908+ "anyhow",
1909+ "indexmap 2.14.0",
1910+ "wasm-encoder",
1911+ "wasmparser",
1912+ ]
1913+
1914+ [[package]]
1915+ name = "wasm-streams"
1916+ version = "0.5.0"
1917+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918+ checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb"
1919+ dependencies = [
1920+ "futures-util",
1921+ "js-sys",
1922+ "wasm-bindgen",
1923+ "wasm-bindgen-futures",
1924+ "web-sys",
1925+ ]
1926+
1927+ [[package]]
1928+ name = "wasmparser"
1929+ version = "0.244.0"
1930+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1932+ dependencies = [
1933+ "bitflags",
1934+ "hashbrown 0.15.5",
1935+ "indexmap 2.14.0",
1936+ "semver",
1937+ ]
1938+
1939+ [[package]]
1940 name = "web-sys"
1941- version = "0.3.77"
1942+ version = "0.3.97"
1943 source = "registry+https://github.com/rust-lang/crates.io-index"
1944- checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
1945+ checksum = "2eadbac71025cd7b0834f20d1fe8472e8495821b4e9801eb0a60bd1f19827602"
1946 dependencies = [
1947 "js-sys",
1948 "wasm-bindgen",
1949 @@ -3697,22 +3863,22 @@ dependencies = [
1950
1951 [[package]]
1952 name = "windows-core"
1953- version = "0.61.2"
1954+ version = "0.62.2"
1955 source = "registry+https://github.com/rust-lang/crates.io-index"
1956- checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
1957+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1958 dependencies = [
1959 "windows-implement",
1960 "windows-interface",
1961- "windows-link 0.1.3",
1962+ "windows-link",
1963 "windows-result",
1964 "windows-strings",
1965 ]
1966
1967 [[package]]
1968 name = "windows-implement"
1969- version = "0.60.0"
1970+ version = "0.60.2"
1971 source = "registry+https://github.com/rust-lang/crates.io-index"
1972- checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
1973+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1974 dependencies = [
1975 "proc-macro2",
1976 "quote",
1977 @@ -3721,9 +3887,9 @@ dependencies = [
1978
1979 [[package]]
1980 name = "windows-interface"
1981- version = "0.59.1"
1982+ version = "0.59.3"
1983 source = "registry+https://github.com/rust-lang/crates.io-index"
1984- checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
1985+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1986 dependencies = [
1987 "proc-macro2",
1988 "quote",
1989 @@ -3732,43 +3898,37 @@ dependencies = [
1990
1991 [[package]]
1992 name = "windows-link"
1993- version = "0.1.3"
1994- source = "registry+https://github.com/rust-lang/crates.io-index"
1995- checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
1996-
1997- [[package]]
1998- name = "windows-link"
1999 version = "0.2.1"
2000 source = "registry+https://github.com/rust-lang/crates.io-index"
2001 checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2002
2003 [[package]]
2004 name = "windows-registry"
2005- version = "0.5.3"
2006+ version = "0.6.1"
2007 source = "registry+https://github.com/rust-lang/crates.io-index"
2008- checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e"
2009+ checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
2010 dependencies = [
2011- "windows-link 0.1.3",
2012+ "windows-link",
2013 "windows-result",
2014 "windows-strings",
2015 ]
2016
2017 [[package]]
2018 name = "windows-result"
2019- version = "0.3.4"
2020+ version = "0.4.1"
2021 source = "registry+https://github.com/rust-lang/crates.io-index"
2022- checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
2023+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2024 dependencies = [
2025- "windows-link 0.1.3",
2026+ "windows-link",
2027 ]
2028
2029 [[package]]
2030 name = "windows-strings"
2031- version = "0.4.2"
2032+ version = "0.5.1"
2033 source = "registry+https://github.com/rust-lang/crates.io-index"
2034- checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
2035+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2036 dependencies = [
2037- "windows-link 0.1.3",
2038+ "windows-link",
2039 ]
2040
2041 [[package]]
2042 @@ -3800,20 +3960,11 @@ dependencies = [
2043
2044 [[package]]
2045 name = "windows-sys"
2046- version = "0.60.2"
2047- source = "registry+https://github.com/rust-lang/crates.io-index"
2048- checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2049- dependencies = [
2050- "windows-targets 0.53.2",
2051- ]
2052-
2053- [[package]]
2054- name = "windows-sys"
2055 version = "0.61.2"
2056 source = "registry+https://github.com/rust-lang/crates.io-index"
2057 checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2058 dependencies = [
2059- "windows-link 0.2.1",
2060+ "windows-link",
2061 ]
2062
2063 [[package]]
2064 @@ -3840,7 +3991,7 @@ dependencies = [
2065 "windows_aarch64_gnullvm 0.52.6",
2066 "windows_aarch64_msvc 0.52.6",
2067 "windows_i686_gnu 0.52.6",
2068- "windows_i686_gnullvm 0.52.6",
2069+ "windows_i686_gnullvm",
2070 "windows_i686_msvc 0.52.6",
2071 "windows_x86_64_gnu 0.52.6",
2072 "windows_x86_64_gnullvm 0.52.6",
2073 @@ -3848,22 +3999,6 @@ dependencies = [
2074 ]
2075
2076 [[package]]
2077- name = "windows-targets"
2078- version = "0.53.2"
2079- source = "registry+https://github.com/rust-lang/crates.io-index"
2080- checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
2081- dependencies = [
2082- "windows_aarch64_gnullvm 0.53.0",
2083- "windows_aarch64_msvc 0.53.0",
2084- "windows_i686_gnu 0.53.0",
2085- "windows_i686_gnullvm 0.53.0",
2086- "windows_i686_msvc 0.53.0",
2087- "windows_x86_64_gnu 0.53.0",
2088- "windows_x86_64_gnullvm 0.53.0",
2089- "windows_x86_64_msvc 0.53.0",
2090- ]
2091-
2092- [[package]]
2093 name = "windows_aarch64_gnullvm"
2094 version = "0.48.5"
2095 source = "registry+https://github.com/rust-lang/crates.io-index"
2096 @@ -3876,12 +4011,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2097 checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2098
2099 [[package]]
2100- name = "windows_aarch64_gnullvm"
2101- version = "0.53.0"
2102- source = "registry+https://github.com/rust-lang/crates.io-index"
2103- checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
2104-
2105- [[package]]
2106 name = "windows_aarch64_msvc"
2107 version = "0.48.5"
2108 source = "registry+https://github.com/rust-lang/crates.io-index"
2109 @@ -3894,12 +4023,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2110 checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2111
2112 [[package]]
2113- name = "windows_aarch64_msvc"
2114- version = "0.53.0"
2115- source = "registry+https://github.com/rust-lang/crates.io-index"
2116- checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
2117-
2118- [[package]]
2119 name = "windows_i686_gnu"
2120 version = "0.48.5"
2121 source = "registry+https://github.com/rust-lang/crates.io-index"
2122 @@ -3912,24 +4035,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2123 checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2124
2125 [[package]]
2126- name = "windows_i686_gnu"
2127- version = "0.53.0"
2128- source = "registry+https://github.com/rust-lang/crates.io-index"
2129- checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
2130-
2131- [[package]]
2132 name = "windows_i686_gnullvm"
2133 version = "0.52.6"
2134 source = "registry+https://github.com/rust-lang/crates.io-index"
2135 checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2136
2137 [[package]]
2138- name = "windows_i686_gnullvm"
2139- version = "0.53.0"
2140- source = "registry+https://github.com/rust-lang/crates.io-index"
2141- checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
2142-
2143- [[package]]
2144 name = "windows_i686_msvc"
2145 version = "0.48.5"
2146 source = "registry+https://github.com/rust-lang/crates.io-index"
2147 @@ -3942,12 +4053,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2148 checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2149
2150 [[package]]
2151- name = "windows_i686_msvc"
2152- version = "0.53.0"
2153- source = "registry+https://github.com/rust-lang/crates.io-index"
2154- checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
2155-
2156- [[package]]
2157 name = "windows_x86_64_gnu"
2158 version = "0.48.5"
2159 source = "registry+https://github.com/rust-lang/crates.io-index"
2160 @@ -3960,12 +4065,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2161 checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2162
2163 [[package]]
2164- name = "windows_x86_64_gnu"
2165- version = "0.53.0"
2166- source = "registry+https://github.com/rust-lang/crates.io-index"
2167- checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
2168-
2169- [[package]]
2170 name = "windows_x86_64_gnullvm"
2171 version = "0.48.5"
2172 source = "registry+https://github.com/rust-lang/crates.io-index"
2173 @@ -3978,12 +4077,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2174 checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2175
2176 [[package]]
2177- name = "windows_x86_64_gnullvm"
2178- version = "0.53.0"
2179- source = "registry+https://github.com/rust-lang/crates.io-index"
2180- checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
2181-
2182- [[package]]
2183 name = "windows_x86_64_msvc"
2184 version = "0.48.5"
2185 source = "registry+https://github.com/rust-lang/crates.io-index"
2186 @@ -3996,16 +4089,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2187 checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2188
2189 [[package]]
2190- name = "windows_x86_64_msvc"
2191- version = "0.53.0"
2192- source = "registry+https://github.com/rust-lang/crates.io-index"
2193- checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
2194-
2195- [[package]]
2196 name = "winnow"
2197- version = "0.7.12"
2198+ version = "0.7.15"
2199 source = "registry+https://github.com/rust-lang/crates.io-index"
2200- checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
2201+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
2202 dependencies = [
2203 "memchr",
2204 ]
2205 @@ -4015,12 +4102,110 @@ name = "wit-bindgen"
2206 version = "0.51.0"
2207 source = "registry+https://github.com/rust-lang/crates.io-index"
2208 checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2209+ dependencies = [
2210+ "wit-bindgen-rust-macro",
2211+ ]
2212+
2213+ [[package]]
2214+ name = "wit-bindgen"
2215+ version = "0.57.1"
2216+ source = "registry+https://github.com/rust-lang/crates.io-index"
2217+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2218+
2219+ [[package]]
2220+ name = "wit-bindgen-core"
2221+ version = "0.51.0"
2222+ source = "registry+https://github.com/rust-lang/crates.io-index"
2223+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2224+ dependencies = [
2225+ "anyhow",
2226+ "heck",
2227+ "wit-parser",
2228+ ]
2229+
2230+ [[package]]
2231+ name = "wit-bindgen-rust"
2232+ version = "0.51.0"
2233+ source = "registry+https://github.com/rust-lang/crates.io-index"
2234+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
2235+ dependencies = [
2236+ "anyhow",
2237+ "heck",
2238+ "indexmap 2.14.0",
2239+ "prettyplease",
2240+ "syn",
2241+ "wasm-metadata",
2242+ "wit-bindgen-core",
2243+ "wit-component",
2244+ ]
2245+
2246+ [[package]]
2247+ name = "wit-bindgen-rust-macro"
2248+ version = "0.51.0"
2249+ source = "registry+https://github.com/rust-lang/crates.io-index"
2250+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
2251+ dependencies = [
2252+ "anyhow",
2253+ "prettyplease",
2254+ "proc-macro2",
2255+ "quote",
2256+ "syn",
2257+ "wit-bindgen-core",
2258+ "wit-bindgen-rust",
2259+ ]
2260+
2261+ [[package]]
2262+ name = "wit-component"
2263+ version = "0.244.0"
2264+ source = "registry+https://github.com/rust-lang/crates.io-index"
2265+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
2266+ dependencies = [
2267+ "anyhow",
2268+ "bitflags",
2269+ "indexmap 2.14.0",
2270+ "log",
2271+ "serde",
2272+ "serde_derive",
2273+ "serde_json",
2274+ "wasm-encoder",
2275+ "wasm-metadata",
2276+ "wasmparser",
2277+ "wit-parser",
2278+ ]
2279+
2280+ [[package]]
2281+ name = "wit-parser"
2282+ version = "0.244.0"
2283+ source = "registry+https://github.com/rust-lang/crates.io-index"
2284+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
2285+ dependencies = [
2286+ "anyhow",
2287+ "id-arena",
2288+ "indexmap 2.14.0",
2289+ "log",
2290+ "semver",
2291+ "serde",
2292+ "serde_derive",
2293+ "serde_json",
2294+ "unicode-xid",
2295+ "wasmparser",
2296+ ]
2297
2298 [[package]]
2299 name = "writeable"
2300- version = "0.6.2"
2301+ version = "0.6.3"
2302+ source = "registry+https://github.com/rust-lang/crates.io-index"
2303+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2304+
2305+ [[package]]
2306+ name = "xattr"
2307+ version = "1.6.1"
2308 source = "registry+https://github.com/rust-lang/crates.io-index"
2309- checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
2310+ checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
2311+ dependencies = [
2312+ "libc",
2313+ "rustix",
2314+ ]
2315
2316 [[package]]
2317 name = "xtask"
2318 @@ -4033,9 +4218,9 @@ dependencies = [
2319
2320 [[package]]
2321 name = "yoke"
2322- version = "0.8.1"
2323+ version = "0.8.2"
2324 source = "registry+https://github.com/rust-lang/crates.io-index"
2325- checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
2326+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
2327 dependencies = [
2328 "stable_deref_trait",
2329 "yoke-derive",
2330 @@ -4044,9 +4229,9 @@ dependencies = [
2331
2332 [[package]]
2333 name = "yoke-derive"
2334- version = "0.8.1"
2335+ version = "0.8.2"
2336 source = "registry+https://github.com/rust-lang/crates.io-index"
2337- checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
2338+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2339 dependencies = [
2340 "proc-macro2",
2341 "quote",
2342 @@ -4056,18 +4241,18 @@ dependencies = [
2343
2344 [[package]]
2345 name = "zerocopy"
2346- version = "0.8.33"
2347+ version = "0.8.48"
2348 source = "registry+https://github.com/rust-lang/crates.io-index"
2349- checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd"
2350+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
2351 dependencies = [
2352 "zerocopy-derive",
2353 ]
2354
2355 [[package]]
2356 name = "zerocopy-derive"
2357- version = "0.8.33"
2358+ version = "0.8.48"
2359 source = "registry+https://github.com/rust-lang/crates.io-index"
2360- checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1"
2361+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
2362 dependencies = [
2363 "proc-macro2",
2364 "quote",
2365 @@ -4076,18 +4261,18 @@ dependencies = [
2366
2367 [[package]]
2368 name = "zerofrom"
2369- version = "0.1.6"
2370+ version = "0.1.7"
2371 source = "registry+https://github.com/rust-lang/crates.io-index"
2372- checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
2373+ checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
2374 dependencies = [
2375 "zerofrom-derive",
2376 ]
2377
2378 [[package]]
2379 name = "zerofrom-derive"
2380- version = "0.1.6"
2381+ version = "0.1.7"
2382 source = "registry+https://github.com/rust-lang/crates.io-index"
2383- checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
2384+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2385 dependencies = [
2386 "proc-macro2",
2387 "quote",
2388 @@ -4103,9 +4288,9 @@ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
2389
2390 [[package]]
2391 name = "zerotrie"
2392- version = "0.2.3"
2393+ version = "0.2.4"
2394 source = "registry+https://github.com/rust-lang/crates.io-index"
2395- checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
2396+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
2397 dependencies = [
2398 "displaydoc",
2399 "yoke",
2400 @@ -4114,9 +4299,9 @@ dependencies = [
2401
2402 [[package]]
2403 name = "zerovec"
2404- version = "0.11.5"
2405+ version = "0.11.6"
2406 source = "registry+https://github.com/rust-lang/crates.io-index"
2407- checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
2408+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
2409 dependencies = [
2410 "yoke",
2411 "zerofrom",
2412 @@ -4125,9 +4310,9 @@ dependencies = [
2413
2414 [[package]]
2415 name = "zerovec-derive"
2416- version = "0.11.2"
2417+ version = "0.11.3"
2418 source = "registry+https://github.com/rust-lang/crates.io-index"
2419- checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
2420+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
2421 dependencies = [
2422 "proc-macro2",
2423 "quote",
2424 @@ -4136,6 +4321,6 @@ dependencies = [
2425
2426 [[package]]
2427 name = "zmij"
2428- version = "1.0.19"
2429+ version = "1.0.21"
2430 source = "registry+https://github.com/rust-lang/crates.io-index"
2431- checksum = "3ff05f8caa9038894637571ae6b9e29466c1f4f829d26c9b28f869a29cbe3445"
2432+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
2433 diff --git a/Cargo.toml b/Cargo.toml
2434index 0352fd9..71edd42 100644
2435--- a/Cargo.toml
2436+++ b/Cargo.toml
2437 @@ -37,6 +37,7 @@ tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
2438 openssh-keys = "0.6.5"
2439 url = { version = "2.5.8", features = ["serde"]}
2440 sqlx = { version = "0.8.6", features = ["runtime-tokio", "sqlite"] }
2441+ reqwest = { version = "0.13.3", default-features = false, features = ["json", "http2", "stream"] }
2442
2443 tokio = { version = "1.49.0", features = ["full"] }
2444 tokio-util = { version = "0.7.18", features = ["io", "compat"] }
2445 diff --git a/ayllu-build/Cargo.toml b/ayllu-build/Cargo.toml
2446index fba8c44..3c29a8b 100644
2447--- a/ayllu-build/Cargo.toml
2448+++ b/ayllu-build/Cargo.toml
2449 @@ -16,10 +16,15 @@ ayllu_git = {path = "../crates/git"}
2450 ayllu_cmd = {path = "../crates/cmd"}
2451
2452 async-trait = { workspace = true }
2453+ bytes = { workspace = true }
2454 tracing = { workspace = true }
2455 serde = { workspace = true }
2456 petgraph = { workspace = true }
2457 tokio = { workspace = true }
2458+ tokio-util = { workspace = true }
2459+ futures = { workspace = true }
2460 thiserror = { workspace = true }
2461+ reqwest = { workspace = true }
2462+
2463 serde_json = "1.0.149"
2464- reqwest = { version = "0.13.3", default-features = false, features = ["json", "http2"] }
2465+ tar = "0.4.45"
2466 diff --git a/ayllu-build/src/config.rs b/ayllu-build/src/config.rs
2467index dd78aea..34ac80c 100644
2468--- a/ayllu-build/src/config.rs
2469+++ b/ayllu-build/src/config.rs
2470 @@ -2,36 +2,29 @@ use std::path::{Path, PathBuf};
2471
2472 use serde::{Deserialize, Serialize};
2473
2474- use ayllu_config::{Configurable, Database, Error, Reader, data_dir, runtime_dir};
2475+ use ayllu_config::{Configurable, Database, Error, Reader, data_dir};
2476
2477 #[derive(Deserialize, Serialize, Clone, Debug)]
2478 pub struct Builder {
2479- #[serde(default = "Builder::address_default")]
2480- pub address: String,
2481 #[serde(default = "Builder::work_dir_default")]
2482 pub work_dir: PathBuf,
2483 }
2484
2485 impl Builder {
2486- fn address_default() -> String {
2487- runtime_dir().to_str().unwrap().to_string() + "/ayllu-build.sock"
2488- }
2489-
2490 fn work_dir_default() -> PathBuf {
2491- data_dir().join("work")
2492+ data_dir().join("build")
2493 }
2494 }
2495
2496 impl Default for Builder {
2497 fn default() -> Self {
2498 Self {
2499- address: Builder::address_default(),
2500 work_dir: Builder::work_dir_default(),
2501 }
2502 }
2503 }
2504
2505- #[derive(Deserialize, Serialize, Clone, Debug)]
2506+ #[derive(Deserialize, Serialize, Clone, Debug, Default)]
2507 pub struct Config {
2508 #[serde(default = "Database::default")]
2509 pub database: Database,
2510 @@ -42,5 +35,9 @@ pub struct Config {
2511 impl Configurable for Config {}
2512
2513 pub fn load(path: Option<&Path>) -> Result<Config, Error> {
2514- Reader::load(path)
2515+ match Reader::load(path) {
2516+ Ok(cfg) => Ok(cfg),
2517+ Err(Error::ConfigNotFound) => Ok(Config::default()),
2518+ Err(e) => Err(e),
2519+ }
2520 }
2521 diff --git a/ayllu-build/src/error.rs b/ayllu-build/src/error.rs
2522index bcf6100..bc9a3d1 100644
2523--- a/ayllu-build/src/error.rs
2524+++ b/ayllu-build/src/error.rs
2525 @@ -28,7 +28,7 @@ pub enum Error {
2526 // general io error during execution
2527 Io(std::io::Error),
2528 Db(ayllu_database::Error),
2529- Libpod,
2530+ Libpod(crate::libpod::Error),
2531 }
2532
2533 impl std::fmt::Display for Error {
2534 @@ -53,7 +53,9 @@ impl std::fmt::Display for Error {
2535 Error::RepositoryDoesNotContainManifest { path } => {
2536 write!(f, "Repository {path:?} does not contain a manifest")
2537 }
2538- Error::Libpod => todo!(),
2539+ Error::Libpod(err) => {
2540+ write!(f, "Libpod failure: {err:?}")
2541+ }
2542 }
2543 }
2544 }
2545 @@ -71,11 +73,3 @@ impl From<std::io::Error> for Error {
2546 Error::Io(value)
2547 }
2548 }
2549-
2550- impl From<reqwest::Error> for Error {
2551- fn from(value: reqwest::Error) -> Self {
2552- // FIXME
2553- tracing::error!("{value}");
2554- Error::Libpod
2555- }
2556- }
2557 diff --git a/ayllu-build/src/evaluate.rs b/ayllu-build/src/evaluate.rs
2558index 21b6b98..a4f3e1e 100644
2559--- a/ayllu-build/src/evaluate.rs
2560+++ b/ayllu-build/src/evaluate.rs
2561 @@ -9,6 +9,8 @@ use petgraph::{
2562 visit::Topo,
2563 };
2564
2565+ use crate::executor::InitializeArgs;
2566+ use crate::package::Package;
2567 use crate::{
2568 DEFAULT_BUILD_FILE,
2569 models::{Manifest, Step},
2570 @@ -119,6 +121,13 @@ impl Runtime {
2571 }
2572 }
2573
2574+ fn source_dir(&self) -> &Path {
2575+ match self.source {
2576+ Source::Path(ref path_buf) => path_buf.as_path(),
2577+ _ => todo!(),
2578+ }
2579+ }
2580+
2581 // FIXME: Fundementally broken, assumes everything is a git repo with fragile paths
2582 fn git_information(&self) -> Result<(String, String, String), ayllu_git::Error> {
2583 let manifest_path = match &self.source {
2584 @@ -225,6 +234,7 @@ impl Runtime {
2585
2586 /// Allocate a job graph and then execute it sequentially
2587 pub async fn evaluate(&self, executor: &impl Executor) -> Result<i64, Error> {
2588+ let this_binary = std::env::current_exe().unwrap();
2589 let mut tx = self.db.begin().await?;
2590 let (manifest_id, graph) = match self.allocate(&mut tx).await {
2591 Ok(db_op) => {
2592 @@ -238,7 +248,11 @@ impl Runtime {
2593 return Err(e);
2594 }
2595 };
2596-
2597+ let package = Package {
2598+ temp_dir: &self.work_dir.join(format!("ayllu-{manifest_id}")),
2599+ source_dir: self.source_dir().parent().unwrap(),
2600+ };
2601+ let payload = package.build()?;
2602 let dot_string = Dot::new(&graph).to_string();
2603 tracing::info!(
2604 "evaluating DAG [{}] [n_nodes={}]:\n{}",
2605 @@ -269,7 +283,16 @@ impl Runtime {
2606 };
2607 current_workflow = Some(*next_workflow_id);
2608 executor
2609- .initialize(manifest_id, *next_workflow_id, &next_workflow.image)
2610+ .initialize(&InitializeArgs {
2611+ manifest_id,
2612+ workflow_id: *next_workflow_id,
2613+ build_dir: self.work_dir.as_path(),
2614+ image: &next_workflow.image,
2615+ init_args: &["/bin/sleep", "inf"],
2616+ source_dir: self.source_dir().parent().unwrap(),
2617+ absolute_ayllu_build_binary: &this_binary,
2618+ src_package: &payload,
2619+ })
2620 .await?;
2621 }
2622 Unit::Step(next_step_id) => {
2623 diff --git a/ayllu-build/src/executor.rs b/ayllu-build/src/executor.rs
2624index 8e78e69..3880f9b 100644
2625--- a/ayllu-build/src/executor.rs
2626+++ b/ayllu-build/src/executor.rs
2627 @@ -1,4 +1,4 @@
2628- use std::collections::HashMap;
2629+ use std::{collections::HashMap, path::Path};
2630
2631 use ayllu_database::build::{LogLine, Step};
2632 use serde::Deserialize;
2633 @@ -17,15 +17,22 @@ pub struct Context {
2634 pub environment: HashMap<String, Option<String>>,
2635 }
2636
2637+ pub struct InitializeArgs<'a> {
2638+ pub manifest_id: i64,
2639+ pub workflow_id: i64,
2640+ pub build_dir: &'a Path,
2641+ pub image: &'a str,
2642+ pub init_args: &'a [&'a str],
2643+ pub source_dir: &'a Path,
2644+ pub absolute_ayllu_build_binary: &'a Path,
2645+ // path to source tree and other things needed in the ct runtime
2646+ pub src_package: &'a Path,
2647+ }
2648+
2649 // An executor runs the step in a process container of some kind. Currently
2650 // the only executor that exists is the Local exector.
2651 pub trait Executor {
2652- async fn initialize(
2653- &self,
2654- manifest_id: i64,
2655- workflow_id: i64,
2656- image: &str,
2657- ) -> Result<(), Error>;
2658+ async fn initialize(&self, args: &InitializeArgs) -> Result<(), Error>;
2659 async fn execute(&self, step: &Step, context: &Context) -> Result<(Vec<LogLine>, i32), Error>;
2660 async fn shutdown(&self, manifest_id: i64, workflow_id: i64) -> Result<(), Error>;
2661 }
2662 diff --git a/ayllu-build/src/executor_libpod.rs b/ayllu-build/src/executor_libpod.rs
2663index 59797ea..344fcc7 100644
2664--- a/ayllu-build/src/executor_libpod.rs
2665+++ b/ayllu-build/src/executor_libpod.rs
2666 @@ -1,9 +1,18 @@
2667- use std::{path::Path, time::Instant};
2668+ use std::{
2669+ path::Path,
2670+ time::{Duration, Instant},
2671+ };
2672
2673 use ayllu_database::build::LogLine;
2674 use tokio::sync::mpsc;
2675
2676- use crate::libpod::{Client, Request, container};
2677+ use crate::{
2678+ executor::InitializeArgs,
2679+ libpod::{
2680+ Client, Request,
2681+ container::{self, Mount},
2682+ },
2683+ };
2684
2685 pub struct Libpod {
2686 client: Client,
2687 @@ -18,13 +27,14 @@ impl Libpod {
2688 }
2689
2690 impl super::executor::Executor for Libpod {
2691- async fn initialize(
2692- &self,
2693- manifest_id: i64,
2694- workflow_id: i64,
2695- image: &str,
2696- ) -> Result<(), crate::error::Error> {
2697- let container_name = format!("ayllu-build-{manifest_id}-{workflow_id}");
2698+ async fn initialize<'a>(&self, args: &InitializeArgs<'a>) -> Result<(), crate::error::Error> {
2699+ let container_name = format!("ayllu-build-{}-{}", args.manifest_id, args.workflow_id);
2700+ let base_dir = args.build_dir.join(&container_name); // TODO Maybe timestamp?
2701+ std::fs::create_dir_all(base_dir)?;
2702+ let ayllu_binary_path_string = args
2703+ .absolute_ayllu_build_binary
2704+ .to_string_lossy()
2705+ .to_string();
2706 assert!(
2707 self.client
2708 .call(&Request::Ping)
2709 @@ -44,13 +54,35 @@ impl super::executor::Executor for Libpod {
2710 self.client
2711 .call(&Request::CreateContainer(container::Create {
2712 name: container_name.clone(),
2713- image: image.to_string(),
2714- command: vec![String::from("sleep"), String::from("inf")],
2715+ image: args.image.to_string(),
2716+ command: vec![
2717+ String::from("/usr/bin/ayllu-build"),
2718+ String::from("monitor"),
2719+ ],
2720+ mounts: vec![
2721+ // Mount {
2722+ // read_only: true,
2723+ // source: source_dir_string,
2724+ // destination: String::from("/_ayllu/src"),
2725+ // r#type: String::from("bind"),
2726+ // },
2727+ Mount {
2728+ read_only: true,
2729+ source: ayllu_binary_path_string,
2730+ destination: String::from("/usr/bin/ayllu-build"),
2731+ r#type: String::from("bind"),
2732+ },
2733+ ],
2734+ terminal: true,
2735 }))
2736 .await?;
2737 }
2738
2739 self.client
2740+ .upload_tree(&container_name, args.src_package, "/_ayllu")
2741+ .await?;
2742+
2743+ self.client
2744 .call(&Request::StartContainer(container::Start {
2745 name: container_name.clone(),
2746 }))
2747 @@ -73,17 +105,16 @@ impl super::executor::Executor for Libpod {
2748 let client = self.client.clone();
2749 let ctx = context.clone();
2750 tokio::spawn(async move {
2751- client
2752- .exec(&ctx, &shell, &input, tx, tx_signal)
2753- .await
2754- .unwrap()
2755+ if let Err(err) = client.exec(&ctx, &shell, &input, tx, tx_signal).await {
2756+ tracing::error!("Error spawning step: {err:?}");
2757+ }
2758 });
2759 let mut lines: Vec<LogLine> = Vec::new();
2760 let start = Instant::now();
2761 while let Some(msg) = rx.recv().await {
2762 match msg.0 {
2763- crate::libpod::Stream::Stdout => tracing::info!("{}", msg.1),
2764- crate::libpod::Stream::Stderr => tracing::warn!("{}", msg.1),
2765+ crate::libpod::Stream::Stdout => tracing::info!("{}", msg.1.trim_end()),
2766+ crate::libpod::Stream::Stderr => tracing::warn!("{}", msg.1.trim_end()),
2767 _ => unreachable!(),
2768 }
2769 lines.push(LogLine {
2770 diff --git a/ayllu-build/src/libpod.rs b/ayllu-build/src/libpod.rs
2771index f203f6f..be5e0e6 100644
2772--- a/ayllu-build/src/libpod.rs
2773+++ b/ayllu-build/src/libpod.rs
2774 @@ -1,18 +1,46 @@
2775- use std::{collections::HashMap, path::Path};
2776+ use std::{collections::HashMap, io::Cursor, path::Path, sync::Arc, time::Duration};
2777
2778+ use bytes::Bytes;
2779 use serde_json::json;
2780 use tokio::{
2781+ fs::File,
2782 io::{AsyncReadExt, AsyncWriteExt},
2783- sync::mpsc::Sender,
2784+ sync::{Mutex, RwLock, mpsc::Sender},
2785 };
2786
2787 use reqwest::{
2788- Body, ClientBuilder, RequestBuilder, Url,
2789+ Body, ClientBuilder, RequestBuilder, Upgraded, Url,
2790 header::{HeaderMap, HeaderName, HeaderValue},
2791 };
2792 use serde::{Deserialize, Serialize};
2793+ use tokio_util::codec::{BytesCodec, FramedRead};
2794
2795- use crate::executor::Context;
2796+ use crate::{executor::Context, monitor::Message};
2797+
2798+ #[derive(Deserialize, Debug)]
2799+ pub struct ErrorMessage {
2800+ pub cause: String,
2801+ pub message: String,
2802+ pub response: u16,
2803+ }
2804+
2805+ #[derive(Debug)]
2806+ pub enum Error {
2807+ Network(reqwest::Error),
2808+ Podman(ErrorMessage),
2809+ }
2810+
2811+ impl From<Error> for crate::error::Error {
2812+ fn from(value: Error) -> Self {
2813+ todo!()
2814+ }
2815+ }
2816+
2817+ impl From<reqwest::Error> for Error {
2818+ fn from(value: reqwest::Error) -> Self {
2819+ todo!()
2820+ }
2821+ }
2822
2823 #[derive(Debug)]
2824 pub enum Stream {
2825 @@ -23,13 +51,29 @@ pub enum Stream {
2826
2827 pub mod container {
2828
2829+ use std::path::PathBuf;
2830+
2831 use super::*;
2832
2833 #[derive(Serialize, Debug)]
2834+ pub struct Mount {
2835+ #[serde(rename = "ReadOnly")]
2836+ pub read_only: bool,
2837+ #[serde(rename = "source")]
2838+ pub source: String,
2839+ #[serde(rename = "destination")]
2840+ pub destination: String,
2841+ #[serde(rename = "type")]
2842+ pub r#type: String,
2843+ }
2844+
2845+ #[derive(Serialize, Debug)]
2846 pub struct Create {
2847 pub name: String,
2848 pub image: String,
2849 pub command: Vec<String>,
2850+ pub mounts: Vec<Mount>,
2851+ pub terminal: bool,
2852 }
2853
2854 #[derive(Serialize, Debug)]
2855 @@ -47,34 +91,10 @@ pub mod container {
2856 pub name: String,
2857 }
2858
2859- pub struct Header;
2860-
2861- impl Header {
2862- pub fn write(stream: Stream, size: u32) -> [u8; 8] {
2863- let mut buf: [u8; 8] = [0, 0, 0, 0, 0, 0, 0, 0];
2864- match stream {
2865- Stream::Stdin => buf[0] = 0,
2866- Stream::Stdout => buf[0] = 1,
2867- Stream::Stderr => buf[0] = 2,
2868- };
2869- let size = size.to_be_bytes();
2870- buf[4] = size[0];
2871- buf[4] = size[1];
2872- buf[4] = size[2];
2873- buf[4] = size[3];
2874- buf
2875- }
2876-
2877- pub fn read(input: &[u8; 8]) -> (Stream, u32) {
2878- let stream = match input[0] {
2879- 0 => Stream::Stdin,
2880- 1 => Stream::Stdout,
2881- 2 => Stream::Stderr,
2882- _ => unreachable!(),
2883- };
2884- let size = u32::from_be_bytes([input[4], input[5], input[6], input[7]]);
2885- (stream, size)
2886- }
2887+ #[derive(Debug)]
2888+ pub struct Copy {
2889+ pub name: String,
2890+ pub path: String,
2891 }
2892 }
2893
2894 @@ -123,6 +143,7 @@ pub enum Request {
2895 ContainerExists(container::Exists),
2896 ContainerAttach(container::Attach),
2897 StartContainer(container::Start),
2898+ CopyFiles(container::Copy),
2899 CreateExec(exec::Create),
2900 StartExec(exec::Start),
2901 InspectExec(exec::Inspect),
2902 @@ -169,7 +190,7 @@ impl Request {
2903 &[
2904 ("stream", true.to_string()),
2905 ("stdout", true.to_string()),
2906- ("stderr", true.to_string()),
2907+ ("stderr", false.to_string()),
2908 ("stdin", true.to_string()),
2909 ],
2910 )
2911 @@ -177,6 +198,13 @@ impl Request {
2912 )
2913 .headers(headers)
2914 }
2915+ Request::CopyFiles(copy) => client.put(
2916+ Url::parse_with_params(
2917+ &format!("http://_/v6.0.0/libpod/containers/{}/archive", copy.name),
2918+ &[("path", copy.path.clone())],
2919+ )
2920+ .unwrap(),
2921+ ),
2922 Request::CreateExec(create) => client
2923 .post(
2924 Url::parse(&format!(
2925 @@ -219,7 +247,35 @@ impl Request {
2926 }
2927 }
2928
2929- pub type Error = reqwest::Error;
2930+ struct Header;
2931+
2932+ impl Header {
2933+ // pub fn write(stream: Stream, size: u32) -> [u8; 8] {
2934+ // let mut buf: [u8; 8] = [0, 0, 0, 0, 0, 0, 0, 0];
2935+ // match stream {
2936+ // Stream::Stdin => buf[0] = 0,
2937+ // Stream::Stdout => buf[0] = 1,
2938+ // Stream::Stderr => buf[0] = 2,
2939+ // };
2940+ // let size = size.to_be_bytes();
2941+ // buf[4] = size[0];
2942+ // buf[5] = size[1];
2943+ // buf[6] = size[2];
2944+ // buf[7] = size[3];
2945+ // buf
2946+ // }
2947+
2948+ pub fn read(input: &[u8; 8]) -> (Stream, u32) {
2949+ let stream = match input[0] {
2950+ 0 => Stream::Stdin,
2951+ 1 => Stream::Stdout,
2952+ 2 => Stream::Stderr,
2953+ _ => unreachable!(),
2954+ };
2955+ let size = u32::from_be_bytes([input[4], input[5], input[6], input[7]]);
2956+ (stream, size)
2957+ }
2958+ }
2959
2960 #[derive(Clone)]
2961 pub struct Client {
2962 @@ -233,17 +289,54 @@ impl Client {
2963 Self { inner }
2964 }
2965
2966- pub async fn call(&self, req: &Request) -> Result<reqwest::Response, Error> {
2967- tracing::debug!("making libpod request: {req:?}");
2968- let req = req.build(&self.inner);
2969- let req = req.build()?;
2970+ pub async fn _call(&self, req: reqwest::Request) -> Result<reqwest::Response, Error> {
2971 let url = req.url().clone();
2972 let res = self.inner.execute(req).await?;
2973 if !res.status().is_server_error() {
2974 tracing::info!("libpod: {}: {}", url, res.status());
2975+ Ok(res)
2976 } else {
2977 tracing::error!("libpod: {}: {}", url, res.status());
2978+ let error_message = res.json::<ErrorMessage>().await?;
2979+ Err(Error::Podman(error_message))
2980 }
2981+ }
2982+
2983+ pub async fn call(&self, req: &Request) -> Result<reqwest::Response, Error> {
2984+ tracing::debug!("making libpod request: {req:?}");
2985+ let req = req.build(&self.inner);
2986+ let req = req.build()?;
2987+ self._call(req).await
2988+ }
2989+
2990+ pub async fn upload_tree(
2991+ &self,
2992+ name: &str,
2993+ src: &Path,
2994+ dst: &str,
2995+ ) -> Result<reqwest::Response, Error> {
2996+ let file = File::open(src).await.unwrap();
2997+ let stream = FramedRead::new(file, BytesCodec::new());
2998+ let req = Request::CopyFiles(container::Copy {
2999+ name: name.to_string(),
3000+ path: dst.to_string(),
3001+ });
3002+ let req = req.build(&self.inner);
3003+ let req = req.body(Body::wrap_stream(stream));
3004+ let req = req.build()?;
3005+ self._call(req).await
3006+ }
3007+
3008+ pub async fn json<T>(&self, req: &Request) -> Result<T, Error>
3009+ where
3010+ T: for<'a> Deserialize<'a> + std::fmt::Debug,
3011+ {
3012+ let res = self
3013+ .call(req)
3014+ .await?
3015+ .error_for_status()?
3016+ .json::<T>()
3017+ .await?;
3018 Ok(res)
3019 }
3020
3021 @@ -257,12 +350,11 @@ impl Client {
3022 ) -> Result<(), Error> {
3023 let name = format!("ayllu-build-{}-{}", ctx.manifest_id, ctx.workflow_id);
3024 let res = self
3025- .call(&Request::CreateExec(exec::Create {
3026+ .json::<HashMap<String, String>>(&Request::CreateExec(exec::Create {
3027 name: name.to_string(),
3028 command: vec![shell.to_string(), "-c".to_string(), input.to_string()],
3029 }))
3030 .await?;
3031- let res = res.json::<HashMap<String, String>>().await.unwrap();
3032 let id = res.get("Id").unwrap();
3033 tracing::info!("created exec id {id}");
3034 let res = self
3035 @@ -271,12 +363,11 @@ impl Client {
3036 assert!(res.status().as_u16() == 101); // FIXME
3037 let conn = res.upgrade().await?;
3038 let mut reader = tokio::io::BufReader::new(conn);
3039-
3040 loop {
3041 let mut header: [u8; 8] = [0, 0, 0, 0, 0, 0, 0, 0];
3042 match reader.read_exact(&mut header).await {
3043 Ok(_) => {
3044- let (stream, size) = container::Header::read(&header);
3045+ let (stream, size) = Header::read(&header);
3046 tracing::debug!("read stream: {stream:?} {size}");
3047 let mut buf = vec![0; size as usize];
3048 reader.read_exact(buf.as_mut_slice()).await.unwrap();
3049 @@ -298,6 +389,7 @@ impl Client {
3050 .await?
3051 .json::<exec::InspectResponse>()
3052 .await?;
3053+
3054 signal.send(res.exit_code).unwrap();
3055 Ok(())
3056 }
3057 diff --git a/ayllu-build/src/main.rs b/ayllu-build/src/main.rs
3058index 72f384d..002fcb7 100644
3059--- a/ayllu-build/src/main.rs
3060+++ b/ayllu-build/src/main.rs
3061 @@ -5,15 +5,20 @@ use tracing::Level;
3062 use ayllu_cmd::build::{Command, Commands};
3063 use ayllu_database::Builder;
3064
3065- use crate::evaluate::{Runtime, Source};
3066+ use crate::{
3067+ evaluate::{Runtime, Source},
3068+ monitor::Monitor,
3069+ };
3070 mod config;
3071 mod error;
3072 mod evaluate;
3073 mod executor;
3074 mod executor_libpod;
3075- // mod executor_local;
3076 mod libpod;
3077 mod models;
3078+ mod monitor;
3079+ mod monitor_libpod;
3080+ mod package;
3081
3082 const DEFAULT_BUILD_FILE: &str = ".ayllu-build.json";
3083
3084 @@ -41,10 +46,18 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
3085 tee_output,
3086 work_dir: workdir.clone(),
3087 };
3088-
3089 let executor = executor_libpod::Libpod::new(Path::new("/tmp/podman.sock"));
3090 rt.evaluate(&executor).await?;
3091 Ok(())
3092 }
3093+ Commands::Monitor => {
3094+ tracing::info!("Ayllu build process has started");
3095+ let monitor = crate::monitor_libpod::Libpod {
3096+ socket_path: Path::new("/tmp/ayllu-build.socket"),
3097+ };
3098+ monitor.initialize(&monitor::InitializeArgs {}).await?;
3099+ monitor.monitor().await?;
3100+ Ok(())
3101+ }
3102 }
3103 }
3104 diff --git a/ayllu-build/src/monitor.rs b/ayllu-build/src/monitor.rs
3105new file mode 100644
3106index 0000000..2692d2d
3107--- /dev/null
3108+++ b/ayllu-build/src/monitor.rs
3109 @@ -0,0 +1,18 @@
3110+ use serde::{Deserialize, Serialize};
3111+
3112+ use crate::error::Error;
3113+
3114+ #[derive(Serialize, Deserialize, Clone, Copy)]
3115+ pub enum Message {
3116+ Ping,
3117+ Pong,
3118+ Shutdown,
3119+ }
3120+
3121+ pub struct InitializeArgs {}
3122+
3123+ /// Monitor process for use within a build environment
3124+ pub trait Monitor {
3125+ async fn initialize(&self, args: &InitializeArgs) -> Result<(), Error>;
3126+ async fn monitor(&self) -> Result<(), Error>;
3127+ }
3128 diff --git a/ayllu-build/src/monitor_libpod.rs b/ayllu-build/src/monitor_libpod.rs
3129new file mode 100644
3130index 0000000..1707987
3131--- /dev/null
3132+++ b/ayllu-build/src/monitor_libpod.rs
3133 @@ -0,0 +1,77 @@
3134+ use std::{path::Path, sync::Arc, time::Duration};
3135+
3136+ use tokio::{
3137+ io::{self, AsyncBufReadExt, AsyncRead, AsyncReadExt, AsyncWriteExt, BufReader},
3138+ net::{UnixListener, UnixStream},
3139+ signal,
3140+ sync::Semaphore,
3141+ };
3142+
3143+ use crate::monitor::{Message, Monitor};
3144+
3145+ pub struct Libpod<'a> {
3146+ pub socket_path: &'a Path,
3147+ }
3148+
3149+ impl Libpod<'_> {
3150+ async fn handle(stream: UnixStream) -> Result<bool, std::io::Error> {
3151+ let (reader, mut writer) = stream.into_split();
3152+ let mut lines = BufReader::new(reader).lines();
3153+
3154+ while let Some(line) = lines.next_line().await? {
3155+ let line = line.trim();
3156+ if line.is_empty() {
3157+ continue;
3158+ }
3159+ let msg = serde_json::from_str::<Message>(line).unwrap();
3160+ match msg {
3161+ Message::Ping => {
3162+ let mut msg = serde_json::to_vec(&Message::Pong).unwrap();
3163+ msg.push(b'\n');
3164+ writer.write_all(&msg).await?;
3165+ }
3166+ Message::Pong => {}
3167+ Message::Shutdown => return Ok(true),
3168+ }
3169+ }
3170+ Ok(false)
3171+ }
3172+ }
3173+
3174+ impl Monitor for Libpod<'_> {
3175+ async fn initialize(
3176+ &self,
3177+ args: &crate::monitor::InitializeArgs,
3178+ ) -> Result<(), crate::error::Error> {
3179+ tracing::info!("Initializing build environment");
3180+ ayllu_git::clone("/_ayllu/src.bundle", Path::new("/src"), None).unwrap();
3181+ Ok(())
3182+ }
3183+
3184+ async fn monitor(&self) -> Result<(), crate::error::Error> {
3185+ tracing::info!("Ayllu monitor running");
3186+ if self.socket_path.exists() {
3187+ std::fs::remove_file(self.socket_path)?;
3188+ }
3189+ let listener = UnixListener::bind(self.socket_path)?;
3190+ tracing::info!("Starting Ayllu monitor listening @ {:?}", self.socket_path);
3191+ loop {
3192+ tokio::select! {
3193+ Ok((stream, addr)) = listener.accept() => {
3194+ tracing::debug!("Handling connection from {addr:?}");
3195+ if Libpod::handle(stream).await.expect("Connection failed") {
3196+ tracing::info!("Got shutdown signal from client");
3197+ break
3198+ }
3199+ }
3200+ _ = signal::ctrl_c() => {
3201+ tracing::info!("Shutting down Ayllu monitor");
3202+ let _ = std::fs::remove_file(self.socket_path);
3203+ break;
3204+ }
3205+ }
3206+ }
3207+
3208+ Ok(())
3209+ }
3210+ }
3211 diff --git a/ayllu-build/src/package.rs b/ayllu-build/src/package.rs
3212new file mode 100644
3213index 0000000..949323e
3214--- /dev/null
3215+++ b/ayllu-build/src/package.rs
3216 @@ -0,0 +1,22 @@
3217+ use std::path::{Path, PathBuf};
3218+ use tar::Builder;
3219+
3220+ pub struct Package<'a> {
3221+ pub temp_dir: &'a Path,
3222+ pub source_dir: &'a Path,
3223+ }
3224+
3225+ impl Package<'_> {
3226+ pub fn build(&self) -> Result<PathBuf, std::io::Error> {
3227+ std::fs::create_dir_all(self.temp_dir)?;
3228+ let tmp_bundle = self.temp_dir.join("src.bundle");
3229+ ayllu_git::bundle(self.source_dir, tmp_bundle.as_path(), None).unwrap();
3230+ let fp = std::fs::File::create(self.temp_dir.join("package.tar"))?;
3231+ let mut a = Builder::new(fp);
3232+ a.append_file(
3233+ "src.bundle",
3234+ &mut std::fs::File::open(tmp_bundle.as_path())?,
3235+ )?;
3236+ Ok(self.temp_dir.join("package.tar").to_path_buf())
3237+ }
3238+ }
3239 diff --git a/crates/cmd/src/build.rs b/crates/cmd/src/build.rs
3240index 659e56f..57b0354 100644
3241--- a/crates/cmd/src/build.rs
3242+++ b/crates/cmd/src/build.rs
3243 @@ -51,4 +51,6 @@ pub enum Commands {
3244 #[arg(short, long, action)]
3245 tee_output: bool,
3246 },
3247+ /// Blocking process to initialize and monitor an active workflow
3248+ Monitor,
3249 }
3250 diff --git a/crates/git/src/bundle.rs b/crates/git/src/bundle.rs
3251new file mode 100644
3252index 0000000..e48fe5c
3253--- /dev/null
3254+++ b/crates/git/src/bundle.rs
3255 @@ -0,0 +1,28 @@
3256+ use std::path::Path;
3257+
3258+ use crate::Error;
3259+
3260+ /// Create a git bundle
3261+ pub fn bundle(src: &Path, dst: &Path, depth: Option<u32>) -> Result<(), Error> {
3262+ tracing::info!("Running git bundle {src:?} -> {dst:?}");
3263+ let dst = dst.to_string_lossy().to_string();
3264+ let mut args = vec!["bundle".to_string(), "create".to_string(), dst];
3265+ if let Some(depth) = depth {
3266+ args.push(format!("-{}", depth));
3267+ }
3268+ args.push("HEAD".to_string());
3269+ let output = std::process::Command::new("git")
3270+ .current_dir(src)
3271+ .args(args)
3272+ .output()?;
3273+ tracing::info!(
3274+ "Stdout:\n{}",
3275+ String::from_utf8_lossy(output.stdout.as_slice())
3276+ );
3277+ tracing::info!(
3278+ "Stderr:\n{}",
3279+ String::from_utf8_lossy(output.stderr.as_slice())
3280+ );
3281+ assert!(output.status.success()); // FIXME
3282+ Ok(())
3283+ }
3284 diff --git a/crates/git/src/lib.rs b/crates/git/src/lib.rs
3285index 95e4ae0..ba72233 100644
3286--- a/crates/git/src/lib.rs
3287+++ b/crates/git/src/lib.rs
3288 @@ -1,3 +1,4 @@
3289+ pub use bundle::bundle;
3290 pub use clone::clone;
3291 pub use config::{ChatKind, ChatLink, Config, Sites};
3292 pub use error::Error;
3293 @@ -5,6 +6,7 @@ pub use lite::{Blob, Branch, Commit, Kind, Note, Stats, Tag, TreeEntry};
3294 pub use scanner::{Scanner, collection, collection_and_name, contains, git_dir, name};
3295 pub use wrapper::{Selector, Wrapper};
3296
3297+ mod bundle;
3298 mod clone;
3299 mod config;
3300 mod error;
3301 diff --git a/quipu/Cargo.toml b/quipu/Cargo.toml
3302index 60862f4..2c9ad9c 100644
3303--- a/quipu/Cargo.toml
3304+++ b/quipu/Cargo.toml
3305 @@ -11,7 +11,7 @@ ayllu_api = { path = "../crates/api" }
3306 ayllu_config = { path = "../crates/config" }
3307 ayllu_cmd = {path = "../crates/cmd"}
3308 tokio = { workspace = true }
3309- reqwest = { version = "0.12.28", features = ["json"] }
3310+ reqwest = { workspace = true }
3311 tracing = { workspace = true }
3312 tracing-subscriber = { workspace = true }
3313 thiserror = { workspace = true }