Simple notification http server
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 4
4
5[[package]]
6name = "actix-codec"
7version = "0.5.2"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a"
10dependencies = [
11 "bitflags",
12 "bytes",
13 "futures-core",
14 "futures-sink",
15 "memchr",
16 "pin-project-lite",
17 "tokio",
18 "tokio-util",
19 "tracing",
20]
21
22[[package]]
23name = "actix-http"
24version = "3.11.2"
25source = "registry+https://github.com/rust-lang/crates.io-index"
26checksum = "7926860314cbe2fb5d1f13731e387ab43bd32bca224e82e6e2db85de0a3dba49"
27dependencies = [
28 "actix-codec",
29 "actix-rt",
30 "actix-service",
31 "actix-utils",
32 "base64",
33 "bitflags",
34 "brotli",
35 "bytes",
36 "bytestring",
37 "derive_more",
38 "encoding_rs",
39 "flate2",
40 "foldhash",
41 "futures-core",
42 "h2",
43 "http",
44 "httparse",
45 "httpdate",
46 "itoa",
47 "language-tags",
48 "local-channel",
49 "mime",
50 "percent-encoding",
51 "pin-project-lite",
52 "rand",
53 "sha1",
54 "smallvec",
55 "tokio",
56 "tokio-util",
57 "tracing",
58 "zstd",
59]
60
61[[package]]
62name = "actix-macros"
63version = "0.2.4"
64source = "registry+https://github.com/rust-lang/crates.io-index"
65checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
66dependencies = [
67 "quote",
68 "syn",
69]
70
71[[package]]
72name = "actix-router"
73version = "0.5.3"
74source = "registry+https://github.com/rust-lang/crates.io-index"
75checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8"
76dependencies = [
77 "bytestring",
78 "cfg-if",
79 "http",
80 "regex",
81 "regex-lite",
82 "serde",
83 "tracing",
84]
85
86[[package]]
87name = "actix-rt"
88version = "2.11.0"
89source = "registry+https://github.com/rust-lang/crates.io-index"
90checksum = "92589714878ca59a7626ea19734f0e07a6a875197eec751bb5d3f99e64998c63"
91dependencies = [
92 "futures-core",
93 "tokio",
94]
95
96[[package]]
97name = "actix-server"
98version = "2.6.0"
99source = "registry+https://github.com/rust-lang/crates.io-index"
100checksum = "a65064ea4a457eaf07f2fba30b4c695bf43b721790e9530d26cb6f9019ff7502"
101dependencies = [
102 "actix-rt",
103 "actix-service",
104 "actix-utils",
105 "futures-core",
106 "futures-util",
107 "mio",
108 "socket2 0.5.10",
109 "tokio",
110 "tracing",
111]
112
113[[package]]
114name = "actix-service"
115version = "2.0.3"
116source = "registry+https://github.com/rust-lang/crates.io-index"
117checksum = "9e46f36bf0e5af44bdc4bdb36fbbd421aa98c79a9bce724e1edeb3894e10dc7f"
118dependencies = [
119 "futures-core",
120 "pin-project-lite",
121]
122
123[[package]]
124name = "actix-utils"
125version = "3.0.1"
126source = "registry+https://github.com/rust-lang/crates.io-index"
127checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8"
128dependencies = [
129 "local-waker",
130 "pin-project-lite",
131]
132
133[[package]]
134name = "actix-web"
135version = "4.12.0"
136source = "registry+https://github.com/rust-lang/crates.io-index"
137checksum = "2233f53f6cb18ae038ce1f0713ca0c72ca0c4b71fe9aaeb59924ce2c89c6dd85"
138dependencies = [
139 "actix-codec",
140 "actix-http",
141 "actix-macros",
142 "actix-router",
143 "actix-rt",
144 "actix-server",
145 "actix-service",
146 "actix-utils",
147 "actix-web-codegen",
148 "bytes",
149 "bytestring",
150 "cfg-if",
151 "cookie",
152 "derive_more",
153 "encoding_rs",
154 "foldhash",
155 "futures-core",
156 "futures-util",
157 "impl-more",
158 "itoa",
159 "language-tags",
160 "log",
161 "mime",
162 "once_cell",
163 "pin-project-lite",
164 "regex",
165 "regex-lite",
166 "serde",
167 "serde_json",
168 "serde_urlencoded",
169 "smallvec",
170 "socket2 0.6.1",
171 "time",
172 "tracing",
173 "url",
174]
175
176[[package]]
177name = "actix-web-codegen"
178version = "4.3.0"
179source = "registry+https://github.com/rust-lang/crates.io-index"
180checksum = "f591380e2e68490b5dfaf1dd1aa0ebe78d84ba7067078512b4ea6e4492d622b8"
181dependencies = [
182 "actix-router",
183 "proc-macro2",
184 "quote",
185 "syn",
186]
187
188[[package]]
189name = "adler2"
190version = "2.0.1"
191source = "registry+https://github.com/rust-lang/crates.io-index"
192checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
193
194[[package]]
195name = "aho-corasick"
196version = "1.1.4"
197source = "registry+https://github.com/rust-lang/crates.io-index"
198checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
199dependencies = [
200 "memchr",
201]
202
203[[package]]
204name = "alloc-no-stdlib"
205version = "2.0.4"
206source = "registry+https://github.com/rust-lang/crates.io-index"
207checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
208
209[[package]]
210name = "alloc-stdlib"
211version = "0.2.2"
212source = "registry+https://github.com/rust-lang/crates.io-index"
213checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
214dependencies = [
215 "alloc-no-stdlib",
216]
217
218[[package]]
219name = "async-broadcast"
220version = "0.7.2"
221source = "registry+https://github.com/rust-lang/crates.io-index"
222checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532"
223dependencies = [
224 "event-listener",
225 "event-listener-strategy",
226 "futures-core",
227 "pin-project-lite",
228]
229
230[[package]]
231name = "async-channel"
232version = "2.5.0"
233source = "registry+https://github.com/rust-lang/crates.io-index"
234checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
235dependencies = [
236 "concurrent-queue",
237 "event-listener-strategy",
238 "futures-core",
239 "pin-project-lite",
240]
241
242[[package]]
243name = "async-executor"
244version = "1.13.3"
245source = "registry+https://github.com/rust-lang/crates.io-index"
246checksum = "497c00e0fd83a72a79a39fcbd8e3e2f055d6f6c7e025f3b3d91f4f8e76527fb8"
247dependencies = [
248 "async-task",
249 "concurrent-queue",
250 "fastrand",
251 "futures-lite",
252 "pin-project-lite",
253 "slab",
254]
255
256[[package]]
257name = "async-io"
258version = "2.6.0"
259source = "registry+https://github.com/rust-lang/crates.io-index"
260checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc"
261dependencies = [
262 "autocfg",
263 "cfg-if",
264 "concurrent-queue",
265 "futures-io",
266 "futures-lite",
267 "parking",
268 "polling",
269 "rustix",
270 "slab",
271 "windows-sys 0.61.2",
272]
273
274[[package]]
275name = "async-lock"
276version = "3.4.1"
277source = "registry+https://github.com/rust-lang/crates.io-index"
278checksum = "5fd03604047cee9b6ce9de9f70c6cd540a0520c813cbd49bae61f33ab80ed1dc"
279dependencies = [
280 "event-listener",
281 "event-listener-strategy",
282 "pin-project-lite",
283]
284
285[[package]]
286name = "async-process"
287version = "2.5.0"
288source = "registry+https://github.com/rust-lang/crates.io-index"
289checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75"
290dependencies = [
291 "async-channel",
292 "async-io",
293 "async-lock",
294 "async-signal",
295 "async-task",
296 "blocking",
297 "cfg-if",
298 "event-listener",
299 "futures-lite",
300 "rustix",
301]
302
303[[package]]
304name = "async-recursion"
305version = "1.1.1"
306source = "registry+https://github.com/rust-lang/crates.io-index"
307checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
308dependencies = [
309 "proc-macro2",
310 "quote",
311 "syn",
312]
313
314[[package]]
315name = "async-signal"
316version = "0.2.13"
317source = "registry+https://github.com/rust-lang/crates.io-index"
318checksum = "43c070bbf59cd3570b6b2dd54cd772527c7c3620fce8be898406dd3ed6adc64c"
319dependencies = [
320 "async-io",
321 "async-lock",
322 "atomic-waker",
323 "cfg-if",
324 "futures-core",
325 "futures-io",
326 "rustix",
327 "signal-hook-registry",
328 "slab",
329 "windows-sys 0.61.2",
330]
331
332[[package]]
333name = "async-task"
334version = "4.7.1"
335source = "registry+https://github.com/rust-lang/crates.io-index"
336checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
337
338[[package]]
339name = "async-trait"
340version = "0.1.89"
341source = "registry+https://github.com/rust-lang/crates.io-index"
342checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
343dependencies = [
344 "proc-macro2",
345 "quote",
346 "syn",
347]
348
349[[package]]
350name = "atomic-waker"
351version = "1.1.2"
352source = "registry+https://github.com/rust-lang/crates.io-index"
353checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
354
355[[package]]
356name = "autocfg"
357version = "1.5.0"
358source = "registry+https://github.com/rust-lang/crates.io-index"
359checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
360
361[[package]]
362name = "base64"
363version = "0.22.1"
364source = "registry+https://github.com/rust-lang/crates.io-index"
365checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
366
367[[package]]
368name = "bitflags"
369version = "2.10.0"
370source = "registry+https://github.com/rust-lang/crates.io-index"
371checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
372
373[[package]]
374name = "block-buffer"
375version = "0.10.4"
376source = "registry+https://github.com/rust-lang/crates.io-index"
377checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
378dependencies = [
379 "generic-array",
380]
381
382[[package]]
383name = "block2"
384version = "0.6.2"
385source = "registry+https://github.com/rust-lang/crates.io-index"
386checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
387dependencies = [
388 "objc2",
389]
390
391[[package]]
392name = "blocking"
393version = "1.6.2"
394source = "registry+https://github.com/rust-lang/crates.io-index"
395checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21"
396dependencies = [
397 "async-channel",
398 "async-task",
399 "futures-io",
400 "futures-lite",
401 "piper",
402]
403
404[[package]]
405name = "brotli"
406version = "8.0.2"
407source = "registry+https://github.com/rust-lang/crates.io-index"
408checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
409dependencies = [
410 "alloc-no-stdlib",
411 "alloc-stdlib",
412 "brotli-decompressor",
413]
414
415[[package]]
416name = "brotli-decompressor"
417version = "5.0.0"
418source = "registry+https://github.com/rust-lang/crates.io-index"
419checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
420dependencies = [
421 "alloc-no-stdlib",
422 "alloc-stdlib",
423]
424
425[[package]]
426name = "bumpalo"
427version = "3.19.0"
428source = "registry+https://github.com/rust-lang/crates.io-index"
429checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
430
431[[package]]
432name = "bytes"
433version = "1.11.0"
434source = "registry+https://github.com/rust-lang/crates.io-index"
435checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
436
437[[package]]
438name = "bytestring"
439version = "1.5.0"
440source = "registry+https://github.com/rust-lang/crates.io-index"
441checksum = "113b4343b5f6617e7ad401ced8de3cc8b012e73a594347c307b90db3e9271289"
442dependencies = [
443 "bytes",
444]
445
446[[package]]
447name = "cc"
448version = "1.2.47"
449source = "registry+https://github.com/rust-lang/crates.io-index"
450checksum = "cd405d82c84ff7f35739f175f67d8b9fb7687a0e84ccdc78bd3568839827cf07"
451dependencies = [
452 "find-msvc-tools",
453 "jobserver",
454 "libc",
455 "shlex",
456]
457
458[[package]]
459name = "cfg-if"
460version = "1.0.4"
461source = "registry+https://github.com/rust-lang/crates.io-index"
462checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
463
464[[package]]
465name = "cfg_aliases"
466version = "0.2.1"
467source = "registry+https://github.com/rust-lang/crates.io-index"
468checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
469
470[[package]]
471name = "concurrent-queue"
472version = "2.5.0"
473source = "registry+https://github.com/rust-lang/crates.io-index"
474checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
475dependencies = [
476 "crossbeam-utils",
477]
478
479[[package]]
480name = "cookie"
481version = "0.16.2"
482source = "registry+https://github.com/rust-lang/crates.io-index"
483checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb"
484dependencies = [
485 "percent-encoding",
486 "time",
487 "version_check",
488]
489
490[[package]]
491name = "cpufeatures"
492version = "0.2.17"
493source = "registry+https://github.com/rust-lang/crates.io-index"
494checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
495dependencies = [
496 "libc",
497]
498
499[[package]]
500name = "crc32fast"
501version = "1.5.0"
502source = "registry+https://github.com/rust-lang/crates.io-index"
503checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
504dependencies = [
505 "cfg-if",
506]
507
508[[package]]
509name = "crossbeam-utils"
510version = "0.8.21"
511source = "registry+https://github.com/rust-lang/crates.io-index"
512checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
513
514[[package]]
515name = "crypto-common"
516version = "0.1.7"
517source = "registry+https://github.com/rust-lang/crates.io-index"
518checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
519dependencies = [
520 "generic-array",
521 "typenum",
522]
523
524[[package]]
525name = "deranged"
526version = "0.5.5"
527source = "registry+https://github.com/rust-lang/crates.io-index"
528checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
529dependencies = [
530 "powerfmt",
531]
532
533[[package]]
534name = "derive_more"
535version = "2.0.1"
536source = "registry+https://github.com/rust-lang/crates.io-index"
537checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678"
538dependencies = [
539 "derive_more-impl",
540]
541
542[[package]]
543name = "derive_more-impl"
544version = "2.0.1"
545source = "registry+https://github.com/rust-lang/crates.io-index"
546checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
547dependencies = [
548 "proc-macro2",
549 "quote",
550 "syn",
551 "unicode-xid",
552]
553
554[[package]]
555name = "digest"
556version = "0.10.7"
557source = "registry+https://github.com/rust-lang/crates.io-index"
558checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
559dependencies = [
560 "block-buffer",
561 "crypto-common",
562]
563
564[[package]]
565name = "dispatch2"
566version = "0.3.0"
567source = "registry+https://github.com/rust-lang/crates.io-index"
568checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec"
569dependencies = [
570 "bitflags",
571 "objc2",
572]
573
574[[package]]
575name = "displaydoc"
576version = "0.2.5"
577source = "registry+https://github.com/rust-lang/crates.io-index"
578checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
579dependencies = [
580 "proc-macro2",
581 "quote",
582 "syn",
583]
584
585[[package]]
586name = "encoding_rs"
587version = "0.8.35"
588source = "registry+https://github.com/rust-lang/crates.io-index"
589checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
590dependencies = [
591 "cfg-if",
592]
593
594[[package]]
595name = "endi"
596version = "1.1.0"
597source = "registry+https://github.com/rust-lang/crates.io-index"
598checksum = "a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf"
599
600[[package]]
601name = "enumflags2"
602version = "0.7.12"
603source = "registry+https://github.com/rust-lang/crates.io-index"
604checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef"
605dependencies = [
606 "enumflags2_derive",
607 "serde",
608]
609
610[[package]]
611name = "enumflags2_derive"
612version = "0.7.12"
613source = "registry+https://github.com/rust-lang/crates.io-index"
614checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827"
615dependencies = [
616 "proc-macro2",
617 "quote",
618 "syn",
619]
620
621[[package]]
622name = "equivalent"
623version = "1.0.2"
624source = "registry+https://github.com/rust-lang/crates.io-index"
625checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
626
627[[package]]
628name = "errno"
629version = "0.3.14"
630source = "registry+https://github.com/rust-lang/crates.io-index"
631checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
632dependencies = [
633 "libc",
634 "windows-sys 0.61.2",
635]
636
637[[package]]
638name = "event-listener"
639version = "5.4.1"
640source = "registry+https://github.com/rust-lang/crates.io-index"
641checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
642dependencies = [
643 "concurrent-queue",
644 "parking",
645 "pin-project-lite",
646]
647
648[[package]]
649name = "event-listener-strategy"
650version = "0.5.4"
651source = "registry+https://github.com/rust-lang/crates.io-index"
652checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
653dependencies = [
654 "event-listener",
655 "pin-project-lite",
656]
657
658[[package]]
659name = "fastrand"
660version = "2.3.0"
661source = "registry+https://github.com/rust-lang/crates.io-index"
662checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
663
664[[package]]
665name = "find-msvc-tools"
666version = "0.1.5"
667source = "registry+https://github.com/rust-lang/crates.io-index"
668checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
669
670[[package]]
671name = "flate2"
672version = "1.1.5"
673source = "registry+https://github.com/rust-lang/crates.io-index"
674checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
675dependencies = [
676 "crc32fast",
677 "miniz_oxide",
678]
679
680[[package]]
681name = "fnv"
682version = "1.0.7"
683source = "registry+https://github.com/rust-lang/crates.io-index"
684checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
685
686[[package]]
687name = "foldhash"
688version = "0.1.5"
689source = "registry+https://github.com/rust-lang/crates.io-index"
690checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
691
692[[package]]
693name = "form_urlencoded"
694version = "1.2.2"
695source = "registry+https://github.com/rust-lang/crates.io-index"
696checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
697dependencies = [
698 "percent-encoding",
699]
700
701[[package]]
702name = "futures-core"
703version = "0.3.31"
704source = "registry+https://github.com/rust-lang/crates.io-index"
705checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
706
707[[package]]
708name = "futures-io"
709version = "0.3.31"
710source = "registry+https://github.com/rust-lang/crates.io-index"
711checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
712
713[[package]]
714name = "futures-lite"
715version = "2.6.1"
716source = "registry+https://github.com/rust-lang/crates.io-index"
717checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
718dependencies = [
719 "fastrand",
720 "futures-core",
721 "futures-io",
722 "parking",
723 "pin-project-lite",
724]
725
726[[package]]
727name = "futures-sink"
728version = "0.3.31"
729source = "registry+https://github.com/rust-lang/crates.io-index"
730checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
731
732[[package]]
733name = "futures-task"
734version = "0.3.31"
735source = "registry+https://github.com/rust-lang/crates.io-index"
736checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
737
738[[package]]
739name = "futures-util"
740version = "0.3.31"
741source = "registry+https://github.com/rust-lang/crates.io-index"
742checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
743dependencies = [
744 "futures-core",
745 "futures-task",
746 "pin-project-lite",
747 "pin-utils",
748]
749
750[[package]]
751name = "generic-array"
752version = "0.14.7"
753source = "registry+https://github.com/rust-lang/crates.io-index"
754checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
755dependencies = [
756 "typenum",
757 "version_check",
758]
759
760[[package]]
761name = "getrandom"
762version = "0.3.4"
763source = "registry+https://github.com/rust-lang/crates.io-index"
764checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
765dependencies = [
766 "cfg-if",
767 "libc",
768 "r-efi",
769 "wasip2",
770]
771
772[[package]]
773name = "h2"
774version = "0.3.27"
775source = "registry+https://github.com/rust-lang/crates.io-index"
776checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
777dependencies = [
778 "bytes",
779 "fnv",
780 "futures-core",
781 "futures-sink",
782 "futures-util",
783 "http",
784 "indexmap",
785 "slab",
786 "tokio",
787 "tokio-util",
788 "tracing",
789]
790
791[[package]]
792name = "hashbrown"
793version = "0.16.1"
794source = "registry+https://github.com/rust-lang/crates.io-index"
795checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
796
797[[package]]
798name = "hermit-abi"
799version = "0.5.2"
800source = "registry+https://github.com/rust-lang/crates.io-index"
801checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
802
803[[package]]
804name = "hex"
805version = "0.4.3"
806source = "registry+https://github.com/rust-lang/crates.io-index"
807checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
808
809[[package]]
810name = "http"
811version = "0.2.12"
812source = "registry+https://github.com/rust-lang/crates.io-index"
813checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
814dependencies = [
815 "bytes",
816 "fnv",
817 "itoa",
818]
819
820[[package]]
821name = "httparse"
822version = "1.10.1"
823source = "registry+https://github.com/rust-lang/crates.io-index"
824checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
825
826[[package]]
827name = "httpdate"
828version = "1.0.3"
829source = "registry+https://github.com/rust-lang/crates.io-index"
830checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
831
832[[package]]
833name = "icu_collections"
834version = "2.1.1"
835source = "registry+https://github.com/rust-lang/crates.io-index"
836checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
837dependencies = [
838 "displaydoc",
839 "potential_utf",
840 "yoke",
841 "zerofrom",
842 "zerovec",
843]
844
845[[package]]
846name = "icu_locale_core"
847version = "2.1.1"
848source = "registry+https://github.com/rust-lang/crates.io-index"
849checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
850dependencies = [
851 "displaydoc",
852 "litemap",
853 "tinystr",
854 "writeable",
855 "zerovec",
856]
857
858[[package]]
859name = "icu_normalizer"
860version = "2.1.1"
861source = "registry+https://github.com/rust-lang/crates.io-index"
862checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
863dependencies = [
864 "icu_collections",
865 "icu_normalizer_data",
866 "icu_properties",
867 "icu_provider",
868 "smallvec",
869 "zerovec",
870]
871
872[[package]]
873name = "icu_normalizer_data"
874version = "2.1.1"
875source = "registry+https://github.com/rust-lang/crates.io-index"
876checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
877
878[[package]]
879name = "icu_properties"
880version = "2.1.1"
881source = "registry+https://github.com/rust-lang/crates.io-index"
882checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99"
883dependencies = [
884 "icu_collections",
885 "icu_locale_core",
886 "icu_properties_data",
887 "icu_provider",
888 "zerotrie",
889 "zerovec",
890]
891
892[[package]]
893name = "icu_properties_data"
894version = "2.1.1"
895source = "registry+https://github.com/rust-lang/crates.io-index"
896checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899"
897
898[[package]]
899name = "icu_provider"
900version = "2.1.1"
901source = "registry+https://github.com/rust-lang/crates.io-index"
902checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
903dependencies = [
904 "displaydoc",
905 "icu_locale_core",
906 "writeable",
907 "yoke",
908 "zerofrom",
909 "zerotrie",
910 "zerovec",
911]
912
913[[package]]
914name = "idna"
915version = "1.1.0"
916source = "registry+https://github.com/rust-lang/crates.io-index"
917checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
918dependencies = [
919 "idna_adapter",
920 "smallvec",
921 "utf8_iter",
922]
923
924[[package]]
925name = "idna_adapter"
926version = "1.2.1"
927source = "registry+https://github.com/rust-lang/crates.io-index"
928checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
929dependencies = [
930 "icu_normalizer",
931 "icu_properties",
932]
933
934[[package]]
935name = "impl-more"
936version = "0.1.9"
937source = "registry+https://github.com/rust-lang/crates.io-index"
938checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2"
939
940[[package]]
941name = "indexmap"
942version = "2.12.1"
943source = "registry+https://github.com/rust-lang/crates.io-index"
944checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
945dependencies = [
946 "equivalent",
947 "hashbrown",
948]
949
950[[package]]
951name = "itoa"
952version = "1.0.15"
953source = "registry+https://github.com/rust-lang/crates.io-index"
954checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
955
956[[package]]
957name = "jobserver"
958version = "0.1.34"
959source = "registry+https://github.com/rust-lang/crates.io-index"
960checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
961dependencies = [
962 "getrandom",
963 "libc",
964]
965
966[[package]]
967name = "js-sys"
968version = "0.3.82"
969source = "registry+https://github.com/rust-lang/crates.io-index"
970checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
971dependencies = [
972 "once_cell",
973 "wasm-bindgen",
974]
975
976[[package]]
977name = "language-tags"
978version = "0.3.2"
979source = "registry+https://github.com/rust-lang/crates.io-index"
980checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
981
982[[package]]
983name = "libc"
984version = "0.2.177"
985source = "registry+https://github.com/rust-lang/crates.io-index"
986checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
987
988[[package]]
989name = "linux-raw-sys"
990version = "0.11.0"
991source = "registry+https://github.com/rust-lang/crates.io-index"
992checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
993
994[[package]]
995name = "litemap"
996version = "0.8.1"
997source = "registry+https://github.com/rust-lang/crates.io-index"
998checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
999
1000[[package]]
1001name = "local-channel"
1002version = "0.1.5"
1003source = "registry+https://github.com/rust-lang/crates.io-index"
1004checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8"
1005dependencies = [
1006 "futures-core",
1007 "futures-sink",
1008 "local-waker",
1009]
1010
1011[[package]]
1012name = "local-waker"
1013version = "0.1.4"
1014source = "registry+https://github.com/rust-lang/crates.io-index"
1015checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487"
1016
1017[[package]]
1018name = "lock_api"
1019version = "0.4.14"
1020source = "registry+https://github.com/rust-lang/crates.io-index"
1021checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1022dependencies = [
1023 "scopeguard",
1024]
1025
1026[[package]]
1027name = "log"
1028version = "0.4.28"
1029source = "registry+https://github.com/rust-lang/crates.io-index"
1030checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
1031
1032[[package]]
1033name = "mac-notification-sys"
1034version = "0.6.8"
1035source = "registry+https://github.com/rust-lang/crates.io-index"
1036checksum = "4ee70bb2bba058d58e252d2944582d634fc884fc9c489a966d428dedcf653e97"
1037dependencies = [
1038 "cc",
1039 "objc2",
1040 "objc2-foundation",
1041 "time",
1042]
1043
1044[[package]]
1045name = "memchr"
1046version = "2.7.6"
1047source = "registry+https://github.com/rust-lang/crates.io-index"
1048checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1049
1050[[package]]
1051name = "memoffset"
1052version = "0.9.1"
1053source = "registry+https://github.com/rust-lang/crates.io-index"
1054checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1055dependencies = [
1056 "autocfg",
1057]
1058
1059[[package]]
1060name = "mime"
1061version = "0.3.17"
1062source = "registry+https://github.com/rust-lang/crates.io-index"
1063checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1064
1065[[package]]
1066name = "miniz_oxide"
1067version = "0.8.9"
1068source = "registry+https://github.com/rust-lang/crates.io-index"
1069checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1070dependencies = [
1071 "adler2",
1072 "simd-adler32",
1073]
1074
1075[[package]]
1076name = "mio"
1077version = "1.1.0"
1078source = "registry+https://github.com/rust-lang/crates.io-index"
1079checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873"
1080dependencies = [
1081 "libc",
1082 "log",
1083 "wasi",
1084 "windows-sys 0.61.2",
1085]
1086
1087[[package]]
1088name = "nix"
1089version = "0.30.1"
1090source = "registry+https://github.com/rust-lang/crates.io-index"
1091checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
1092dependencies = [
1093 "bitflags",
1094 "cfg-if",
1095 "cfg_aliases",
1096 "libc",
1097 "memoffset",
1098]
1099
1100[[package]]
1101name = "notify-me"
1102version = "0.1.0"
1103dependencies = [
1104 "actix-web",
1105 "notify-rust",
1106 "serde",
1107]
1108
1109[[package]]
1110name = "notify-rust"
1111version = "4.11.7"
1112source = "registry+https://github.com/rust-lang/crates.io-index"
1113checksum = "6442248665a5aa2514e794af3b39661a8e73033b1cc5e59899e1276117ee4400"
1114dependencies = [
1115 "futures-lite",
1116 "log",
1117 "mac-notification-sys",
1118 "serde",
1119 "tauri-winrt-notification",
1120 "zbus",
1121]
1122
1123[[package]]
1124name = "num-conv"
1125version = "0.1.0"
1126source = "registry+https://github.com/rust-lang/crates.io-index"
1127checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1128
1129[[package]]
1130name = "objc2"
1131version = "0.6.3"
1132source = "registry+https://github.com/rust-lang/crates.io-index"
1133checksum = "b7c2599ce0ec54857b29ce62166b0ed9b4f6f1a70ccc9a71165b6154caca8c05"
1134dependencies = [
1135 "objc2-encode",
1136]
1137
1138[[package]]
1139name = "objc2-core-foundation"
1140version = "0.3.2"
1141source = "registry+https://github.com/rust-lang/crates.io-index"
1142checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
1143dependencies = [
1144 "bitflags",
1145 "dispatch2",
1146 "objc2",
1147]
1148
1149[[package]]
1150name = "objc2-encode"
1151version = "4.1.0"
1152source = "registry+https://github.com/rust-lang/crates.io-index"
1153checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
1154
1155[[package]]
1156name = "objc2-foundation"
1157version = "0.3.2"
1158source = "registry+https://github.com/rust-lang/crates.io-index"
1159checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
1160dependencies = [
1161 "bitflags",
1162 "block2",
1163 "libc",
1164 "objc2",
1165 "objc2-core-foundation",
1166]
1167
1168[[package]]
1169name = "once_cell"
1170version = "1.21.3"
1171source = "registry+https://github.com/rust-lang/crates.io-index"
1172checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1173
1174[[package]]
1175name = "ordered-stream"
1176version = "0.2.0"
1177source = "registry+https://github.com/rust-lang/crates.io-index"
1178checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
1179dependencies = [
1180 "futures-core",
1181 "pin-project-lite",
1182]
1183
1184[[package]]
1185name = "parking"
1186version = "2.2.1"
1187source = "registry+https://github.com/rust-lang/crates.io-index"
1188checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1189
1190[[package]]
1191name = "parking_lot"
1192version = "0.12.5"
1193source = "registry+https://github.com/rust-lang/crates.io-index"
1194checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1195dependencies = [
1196 "lock_api",
1197 "parking_lot_core",
1198]
1199
1200[[package]]
1201name = "parking_lot_core"
1202version = "0.9.12"
1203source = "registry+https://github.com/rust-lang/crates.io-index"
1204checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1205dependencies = [
1206 "cfg-if",
1207 "libc",
1208 "redox_syscall",
1209 "smallvec",
1210 "windows-link 0.2.1",
1211]
1212
1213[[package]]
1214name = "percent-encoding"
1215version = "2.3.2"
1216source = "registry+https://github.com/rust-lang/crates.io-index"
1217checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1218
1219[[package]]
1220name = "pin-project-lite"
1221version = "0.2.16"
1222source = "registry+https://github.com/rust-lang/crates.io-index"
1223checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1224
1225[[package]]
1226name = "pin-utils"
1227version = "0.1.0"
1228source = "registry+https://github.com/rust-lang/crates.io-index"
1229checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1230
1231[[package]]
1232name = "piper"
1233version = "0.2.4"
1234source = "registry+https://github.com/rust-lang/crates.io-index"
1235checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066"
1236dependencies = [
1237 "atomic-waker",
1238 "fastrand",
1239 "futures-io",
1240]
1241
1242[[package]]
1243name = "pkg-config"
1244version = "0.3.32"
1245source = "registry+https://github.com/rust-lang/crates.io-index"
1246checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1247
1248[[package]]
1249name = "polling"
1250version = "3.11.0"
1251source = "registry+https://github.com/rust-lang/crates.io-index"
1252checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
1253dependencies = [
1254 "cfg-if",
1255 "concurrent-queue",
1256 "hermit-abi",
1257 "pin-project-lite",
1258 "rustix",
1259 "windows-sys 0.61.2",
1260]
1261
1262[[package]]
1263name = "potential_utf"
1264version = "0.1.4"
1265source = "registry+https://github.com/rust-lang/crates.io-index"
1266checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1267dependencies = [
1268 "zerovec",
1269]
1270
1271[[package]]
1272name = "powerfmt"
1273version = "0.2.0"
1274source = "registry+https://github.com/rust-lang/crates.io-index"
1275checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1276
1277[[package]]
1278name = "ppv-lite86"
1279version = "0.2.21"
1280source = "registry+https://github.com/rust-lang/crates.io-index"
1281checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1282dependencies = [
1283 "zerocopy",
1284]
1285
1286[[package]]
1287name = "proc-macro-crate"
1288version = "3.4.0"
1289source = "registry+https://github.com/rust-lang/crates.io-index"
1290checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
1291dependencies = [
1292 "toml_edit",
1293]
1294
1295[[package]]
1296name = "proc-macro2"
1297version = "1.0.103"
1298source = "registry+https://github.com/rust-lang/crates.io-index"
1299checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
1300dependencies = [
1301 "unicode-ident",
1302]
1303
1304[[package]]
1305name = "quick-xml"
1306version = "0.37.5"
1307source = "registry+https://github.com/rust-lang/crates.io-index"
1308checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
1309dependencies = [
1310 "memchr",
1311]
1312
1313[[package]]
1314name = "quote"
1315version = "1.0.42"
1316source = "registry+https://github.com/rust-lang/crates.io-index"
1317checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
1318dependencies = [
1319 "proc-macro2",
1320]
1321
1322[[package]]
1323name = "r-efi"
1324version = "5.3.0"
1325source = "registry+https://github.com/rust-lang/crates.io-index"
1326checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1327
1328[[package]]
1329name = "rand"
1330version = "0.9.2"
1331source = "registry+https://github.com/rust-lang/crates.io-index"
1332checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1333dependencies = [
1334 "rand_chacha",
1335 "rand_core",
1336]
1337
1338[[package]]
1339name = "rand_chacha"
1340version = "0.9.0"
1341source = "registry+https://github.com/rust-lang/crates.io-index"
1342checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1343dependencies = [
1344 "ppv-lite86",
1345 "rand_core",
1346]
1347
1348[[package]]
1349name = "rand_core"
1350version = "0.9.3"
1351source = "registry+https://github.com/rust-lang/crates.io-index"
1352checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
1353dependencies = [
1354 "getrandom",
1355]
1356
1357[[package]]
1358name = "redox_syscall"
1359version = "0.5.18"
1360source = "registry+https://github.com/rust-lang/crates.io-index"
1361checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1362dependencies = [
1363 "bitflags",
1364]
1365
1366[[package]]
1367name = "regex"
1368version = "1.12.2"
1369source = "registry+https://github.com/rust-lang/crates.io-index"
1370checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
1371dependencies = [
1372 "aho-corasick",
1373 "memchr",
1374 "regex-automata",
1375 "regex-syntax",
1376]
1377
1378[[package]]
1379name = "regex-automata"
1380version = "0.4.13"
1381source = "registry+https://github.com/rust-lang/crates.io-index"
1382checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
1383dependencies = [
1384 "aho-corasick",
1385 "memchr",
1386 "regex-syntax",
1387]
1388
1389[[package]]
1390name = "regex-lite"
1391version = "0.1.8"
1392source = "registry+https://github.com/rust-lang/crates.io-index"
1393checksum = "8d942b98df5e658f56f20d592c7f868833fe38115e65c33003d8cd224b0155da"
1394
1395[[package]]
1396name = "regex-syntax"
1397version = "0.8.8"
1398source = "registry+https://github.com/rust-lang/crates.io-index"
1399checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
1400
1401[[package]]
1402name = "rustix"
1403version = "1.1.2"
1404source = "registry+https://github.com/rust-lang/crates.io-index"
1405checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
1406dependencies = [
1407 "bitflags",
1408 "errno",
1409 "libc",
1410 "linux-raw-sys",
1411 "windows-sys 0.61.2",
1412]
1413
1414[[package]]
1415name = "rustversion"
1416version = "1.0.22"
1417source = "registry+https://github.com/rust-lang/crates.io-index"
1418checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1419
1420[[package]]
1421name = "ryu"
1422version = "1.0.20"
1423source = "registry+https://github.com/rust-lang/crates.io-index"
1424checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1425
1426[[package]]
1427name = "scopeguard"
1428version = "1.2.0"
1429source = "registry+https://github.com/rust-lang/crates.io-index"
1430checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1431
1432[[package]]
1433name = "serde"
1434version = "1.0.228"
1435source = "registry+https://github.com/rust-lang/crates.io-index"
1436checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1437dependencies = [
1438 "serde_core",
1439 "serde_derive",
1440]
1441
1442[[package]]
1443name = "serde_core"
1444version = "1.0.228"
1445source = "registry+https://github.com/rust-lang/crates.io-index"
1446checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1447dependencies = [
1448 "serde_derive",
1449]
1450
1451[[package]]
1452name = "serde_derive"
1453version = "1.0.228"
1454source = "registry+https://github.com/rust-lang/crates.io-index"
1455checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1456dependencies = [
1457 "proc-macro2",
1458 "quote",
1459 "syn",
1460]
1461
1462[[package]]
1463name = "serde_json"
1464version = "1.0.145"
1465source = "registry+https://github.com/rust-lang/crates.io-index"
1466checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
1467dependencies = [
1468 "itoa",
1469 "memchr",
1470 "ryu",
1471 "serde",
1472 "serde_core",
1473]
1474
1475[[package]]
1476name = "serde_repr"
1477version = "0.1.20"
1478source = "registry+https://github.com/rust-lang/crates.io-index"
1479checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
1480dependencies = [
1481 "proc-macro2",
1482 "quote",
1483 "syn",
1484]
1485
1486[[package]]
1487name = "serde_urlencoded"
1488version = "0.7.1"
1489source = "registry+https://github.com/rust-lang/crates.io-index"
1490checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1491dependencies = [
1492 "form_urlencoded",
1493 "itoa",
1494 "ryu",
1495 "serde",
1496]
1497
1498[[package]]
1499name = "sha1"
1500version = "0.10.6"
1501source = "registry+https://github.com/rust-lang/crates.io-index"
1502checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
1503dependencies = [
1504 "cfg-if",
1505 "cpufeatures",
1506 "digest",
1507]
1508
1509[[package]]
1510name = "shlex"
1511version = "1.3.0"
1512source = "registry+https://github.com/rust-lang/crates.io-index"
1513checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1514
1515[[package]]
1516name = "signal-hook-registry"
1517version = "1.4.7"
1518source = "registry+https://github.com/rust-lang/crates.io-index"
1519checksum = "7664a098b8e616bdfcc2dc0e9ac44eb231eedf41db4e9fe95d8d32ec728dedad"
1520dependencies = [
1521 "libc",
1522]
1523
1524[[package]]
1525name = "simd-adler32"
1526version = "0.3.7"
1527source = "registry+https://github.com/rust-lang/crates.io-index"
1528checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
1529
1530[[package]]
1531name = "slab"
1532version = "0.4.11"
1533source = "registry+https://github.com/rust-lang/crates.io-index"
1534checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
1535
1536[[package]]
1537name = "smallvec"
1538version = "1.15.1"
1539source = "registry+https://github.com/rust-lang/crates.io-index"
1540checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1541
1542[[package]]
1543name = "socket2"
1544version = "0.5.10"
1545source = "registry+https://github.com/rust-lang/crates.io-index"
1546checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
1547dependencies = [
1548 "libc",
1549 "windows-sys 0.52.0",
1550]
1551
1552[[package]]
1553name = "socket2"
1554version = "0.6.1"
1555source = "registry+https://github.com/rust-lang/crates.io-index"
1556checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
1557dependencies = [
1558 "libc",
1559 "windows-sys 0.60.2",
1560]
1561
1562[[package]]
1563name = "stable_deref_trait"
1564version = "1.2.1"
1565source = "registry+https://github.com/rust-lang/crates.io-index"
1566checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1567
1568[[package]]
1569name = "static_assertions"
1570version = "1.1.0"
1571source = "registry+https://github.com/rust-lang/crates.io-index"
1572checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1573
1574[[package]]
1575name = "syn"
1576version = "2.0.110"
1577source = "registry+https://github.com/rust-lang/crates.io-index"
1578checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea"
1579dependencies = [
1580 "proc-macro2",
1581 "quote",
1582 "unicode-ident",
1583]
1584
1585[[package]]
1586name = "synstructure"
1587version = "0.13.2"
1588source = "registry+https://github.com/rust-lang/crates.io-index"
1589checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1590dependencies = [
1591 "proc-macro2",
1592 "quote",
1593 "syn",
1594]
1595
1596[[package]]
1597name = "tauri-winrt-notification"
1598version = "0.7.2"
1599source = "registry+https://github.com/rust-lang/crates.io-index"
1600checksum = "0b1e66e07de489fe43a46678dd0b8df65e0c973909df1b60ba33874e297ba9b9"
1601dependencies = [
1602 "quick-xml",
1603 "thiserror",
1604 "windows",
1605 "windows-version",
1606]
1607
1608[[package]]
1609name = "tempfile"
1610version = "3.23.0"
1611source = "registry+https://github.com/rust-lang/crates.io-index"
1612checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
1613dependencies = [
1614 "fastrand",
1615 "getrandom",
1616 "once_cell",
1617 "rustix",
1618 "windows-sys 0.61.2",
1619]
1620
1621[[package]]
1622name = "thiserror"
1623version = "2.0.17"
1624source = "registry+https://github.com/rust-lang/crates.io-index"
1625checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
1626dependencies = [
1627 "thiserror-impl",
1628]
1629
1630[[package]]
1631name = "thiserror-impl"
1632version = "2.0.17"
1633source = "registry+https://github.com/rust-lang/crates.io-index"
1634checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
1635dependencies = [
1636 "proc-macro2",
1637 "quote",
1638 "syn",
1639]
1640
1641[[package]]
1642name = "time"
1643version = "0.3.44"
1644source = "registry+https://github.com/rust-lang/crates.io-index"
1645checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
1646dependencies = [
1647 "deranged",
1648 "itoa",
1649 "num-conv",
1650 "powerfmt",
1651 "serde",
1652 "time-core",
1653 "time-macros",
1654]
1655
1656[[package]]
1657name = "time-core"
1658version = "0.1.6"
1659source = "registry+https://github.com/rust-lang/crates.io-index"
1660checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
1661
1662[[package]]
1663name = "time-macros"
1664version = "0.2.24"
1665source = "registry+https://github.com/rust-lang/crates.io-index"
1666checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3"
1667dependencies = [
1668 "num-conv",
1669 "time-core",
1670]
1671
1672[[package]]
1673name = "tinystr"
1674version = "0.8.2"
1675source = "registry+https://github.com/rust-lang/crates.io-index"
1676checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
1677dependencies = [
1678 "displaydoc",
1679 "zerovec",
1680]
1681
1682[[package]]
1683name = "tokio"
1684version = "1.48.0"
1685source = "registry+https://github.com/rust-lang/crates.io-index"
1686checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
1687dependencies = [
1688 "bytes",
1689 "libc",
1690 "mio",
1691 "parking_lot",
1692 "pin-project-lite",
1693 "signal-hook-registry",
1694 "socket2 0.6.1",
1695 "windows-sys 0.61.2",
1696]
1697
1698[[package]]
1699name = "tokio-util"
1700version = "0.7.17"
1701source = "registry+https://github.com/rust-lang/crates.io-index"
1702checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594"
1703dependencies = [
1704 "bytes",
1705 "futures-core",
1706 "futures-sink",
1707 "pin-project-lite",
1708 "tokio",
1709]
1710
1711[[package]]
1712name = "toml_datetime"
1713version = "0.7.3"
1714source = "registry+https://github.com/rust-lang/crates.io-index"
1715checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
1716dependencies = [
1717 "serde_core",
1718]
1719
1720[[package]]
1721name = "toml_edit"
1722version = "0.23.7"
1723source = "registry+https://github.com/rust-lang/crates.io-index"
1724checksum = "6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d"
1725dependencies = [
1726 "indexmap",
1727 "toml_datetime",
1728 "toml_parser",
1729 "winnow",
1730]
1731
1732[[package]]
1733name = "toml_parser"
1734version = "1.0.4"
1735source = "registry+https://github.com/rust-lang/crates.io-index"
1736checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
1737dependencies = [
1738 "winnow",
1739]
1740
1741[[package]]
1742name = "tracing"
1743version = "0.1.41"
1744source = "registry+https://github.com/rust-lang/crates.io-index"
1745checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
1746dependencies = [
1747 "log",
1748 "pin-project-lite",
1749 "tracing-attributes",
1750 "tracing-core",
1751]
1752
1753[[package]]
1754name = "tracing-attributes"
1755version = "0.1.30"
1756source = "registry+https://github.com/rust-lang/crates.io-index"
1757checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
1758dependencies = [
1759 "proc-macro2",
1760 "quote",
1761 "syn",
1762]
1763
1764[[package]]
1765name = "tracing-core"
1766version = "0.1.34"
1767source = "registry+https://github.com/rust-lang/crates.io-index"
1768checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
1769dependencies = [
1770 "once_cell",
1771]
1772
1773[[package]]
1774name = "typenum"
1775version = "1.19.0"
1776source = "registry+https://github.com/rust-lang/crates.io-index"
1777checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1778
1779[[package]]
1780name = "uds_windows"
1781version = "1.1.0"
1782source = "registry+https://github.com/rust-lang/crates.io-index"
1783checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9"
1784dependencies = [
1785 "memoffset",
1786 "tempfile",
1787 "winapi",
1788]
1789
1790[[package]]
1791name = "unicode-ident"
1792version = "1.0.22"
1793source = "registry+https://github.com/rust-lang/crates.io-index"
1794checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
1795
1796[[package]]
1797name = "unicode-xid"
1798version = "0.2.6"
1799source = "registry+https://github.com/rust-lang/crates.io-index"
1800checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1801
1802[[package]]
1803name = "url"
1804version = "2.5.7"
1805source = "registry+https://github.com/rust-lang/crates.io-index"
1806checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
1807dependencies = [
1808 "form_urlencoded",
1809 "idna",
1810 "percent-encoding",
1811 "serde",
1812]
1813
1814[[package]]
1815name = "utf8_iter"
1816version = "1.0.4"
1817source = "registry+https://github.com/rust-lang/crates.io-index"
1818checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1819
1820[[package]]
1821name = "uuid"
1822version = "1.18.1"
1823source = "registry+https://github.com/rust-lang/crates.io-index"
1824checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
1825dependencies = [
1826 "js-sys",
1827 "serde",
1828 "wasm-bindgen",
1829]
1830
1831[[package]]
1832name = "version_check"
1833version = "0.9.5"
1834source = "registry+https://github.com/rust-lang/crates.io-index"
1835checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1836
1837[[package]]
1838name = "wasi"
1839version = "0.11.1+wasi-snapshot-preview1"
1840source = "registry+https://github.com/rust-lang/crates.io-index"
1841checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1842
1843[[package]]
1844name = "wasip2"
1845version = "1.0.1+wasi-0.2.4"
1846source = "registry+https://github.com/rust-lang/crates.io-index"
1847checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
1848dependencies = [
1849 "wit-bindgen",
1850]
1851
1852[[package]]
1853name = "wasm-bindgen"
1854version = "0.2.105"
1855source = "registry+https://github.com/rust-lang/crates.io-index"
1856checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
1857dependencies = [
1858 "cfg-if",
1859 "once_cell",
1860 "rustversion",
1861 "wasm-bindgen-macro",
1862 "wasm-bindgen-shared",
1863]
1864
1865[[package]]
1866name = "wasm-bindgen-macro"
1867version = "0.2.105"
1868source = "registry+https://github.com/rust-lang/crates.io-index"
1869checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
1870dependencies = [
1871 "quote",
1872 "wasm-bindgen-macro-support",
1873]
1874
1875[[package]]
1876name = "wasm-bindgen-macro-support"
1877version = "0.2.105"
1878source = "registry+https://github.com/rust-lang/crates.io-index"
1879checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
1880dependencies = [
1881 "bumpalo",
1882 "proc-macro2",
1883 "quote",
1884 "syn",
1885 "wasm-bindgen-shared",
1886]
1887
1888[[package]]
1889name = "wasm-bindgen-shared"
1890version = "0.2.105"
1891source = "registry+https://github.com/rust-lang/crates.io-index"
1892checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
1893dependencies = [
1894 "unicode-ident",
1895]
1896
1897[[package]]
1898name = "winapi"
1899version = "0.3.9"
1900source = "registry+https://github.com/rust-lang/crates.io-index"
1901checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1902dependencies = [
1903 "winapi-i686-pc-windows-gnu",
1904 "winapi-x86_64-pc-windows-gnu",
1905]
1906
1907[[package]]
1908name = "winapi-i686-pc-windows-gnu"
1909version = "0.4.0"
1910source = "registry+https://github.com/rust-lang/crates.io-index"
1911checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1912
1913[[package]]
1914name = "winapi-x86_64-pc-windows-gnu"
1915version = "0.4.0"
1916source = "registry+https://github.com/rust-lang/crates.io-index"
1917checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1918
1919[[package]]
1920name = "windows"
1921version = "0.61.3"
1922source = "registry+https://github.com/rust-lang/crates.io-index"
1923checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
1924dependencies = [
1925 "windows-collections",
1926 "windows-core",
1927 "windows-future",
1928 "windows-link 0.1.3",
1929 "windows-numerics",
1930]
1931
1932[[package]]
1933name = "windows-collections"
1934version = "0.2.0"
1935source = "registry+https://github.com/rust-lang/crates.io-index"
1936checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
1937dependencies = [
1938 "windows-core",
1939]
1940
1941[[package]]
1942name = "windows-core"
1943version = "0.61.2"
1944source = "registry+https://github.com/rust-lang/crates.io-index"
1945checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
1946dependencies = [
1947 "windows-implement",
1948 "windows-interface",
1949 "windows-link 0.1.3",
1950 "windows-result",
1951 "windows-strings",
1952]
1953
1954[[package]]
1955name = "windows-future"
1956version = "0.2.1"
1957source = "registry+https://github.com/rust-lang/crates.io-index"
1958checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
1959dependencies = [
1960 "windows-core",
1961 "windows-link 0.1.3",
1962 "windows-threading",
1963]
1964
1965[[package]]
1966name = "windows-implement"
1967version = "0.60.2"
1968source = "registry+https://github.com/rust-lang/crates.io-index"
1969checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1970dependencies = [
1971 "proc-macro2",
1972 "quote",
1973 "syn",
1974]
1975
1976[[package]]
1977name = "windows-interface"
1978version = "0.59.3"
1979source = "registry+https://github.com/rust-lang/crates.io-index"
1980checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1981dependencies = [
1982 "proc-macro2",
1983 "quote",
1984 "syn",
1985]
1986
1987[[package]]
1988name = "windows-link"
1989version = "0.1.3"
1990source = "registry+https://github.com/rust-lang/crates.io-index"
1991checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
1992
1993[[package]]
1994name = "windows-link"
1995version = "0.2.1"
1996source = "registry+https://github.com/rust-lang/crates.io-index"
1997checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1998
1999[[package]]
2000name = "windows-numerics"
2001version = "0.2.0"
2002source = "registry+https://github.com/rust-lang/crates.io-index"
2003checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
2004dependencies = [
2005 "windows-core",
2006 "windows-link 0.1.3",
2007]
2008
2009[[package]]
2010name = "windows-result"
2011version = "0.3.4"
2012source = "registry+https://github.com/rust-lang/crates.io-index"
2013checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
2014dependencies = [
2015 "windows-link 0.1.3",
2016]
2017
2018[[package]]
2019name = "windows-strings"
2020version = "0.4.2"
2021source = "registry+https://github.com/rust-lang/crates.io-index"
2022checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
2023dependencies = [
2024 "windows-link 0.1.3",
2025]
2026
2027[[package]]
2028name = "windows-sys"
2029version = "0.52.0"
2030source = "registry+https://github.com/rust-lang/crates.io-index"
2031checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2032dependencies = [
2033 "windows-targets 0.52.6",
2034]
2035
2036[[package]]
2037name = "windows-sys"
2038version = "0.60.2"
2039source = "registry+https://github.com/rust-lang/crates.io-index"
2040checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2041dependencies = [
2042 "windows-targets 0.53.5",
2043]
2044
2045[[package]]
2046name = "windows-sys"
2047version = "0.61.2"
2048source = "registry+https://github.com/rust-lang/crates.io-index"
2049checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2050dependencies = [
2051 "windows-link 0.2.1",
2052]
2053
2054[[package]]
2055name = "windows-targets"
2056version = "0.52.6"
2057source = "registry+https://github.com/rust-lang/crates.io-index"
2058checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2059dependencies = [
2060 "windows_aarch64_gnullvm 0.52.6",
2061 "windows_aarch64_msvc 0.52.6",
2062 "windows_i686_gnu 0.52.6",
2063 "windows_i686_gnullvm 0.52.6",
2064 "windows_i686_msvc 0.52.6",
2065 "windows_x86_64_gnu 0.52.6",
2066 "windows_x86_64_gnullvm 0.52.6",
2067 "windows_x86_64_msvc 0.52.6",
2068]
2069
2070[[package]]
2071name = "windows-targets"
2072version = "0.53.5"
2073source = "registry+https://github.com/rust-lang/crates.io-index"
2074checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
2075dependencies = [
2076 "windows-link 0.2.1",
2077 "windows_aarch64_gnullvm 0.53.1",
2078 "windows_aarch64_msvc 0.53.1",
2079 "windows_i686_gnu 0.53.1",
2080 "windows_i686_gnullvm 0.53.1",
2081 "windows_i686_msvc 0.53.1",
2082 "windows_x86_64_gnu 0.53.1",
2083 "windows_x86_64_gnullvm 0.53.1",
2084 "windows_x86_64_msvc 0.53.1",
2085]
2086
2087[[package]]
2088name = "windows-threading"
2089version = "0.1.0"
2090source = "registry+https://github.com/rust-lang/crates.io-index"
2091checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
2092dependencies = [
2093 "windows-link 0.1.3",
2094]
2095
2096[[package]]
2097name = "windows-version"
2098version = "0.1.7"
2099source = "registry+https://github.com/rust-lang/crates.io-index"
2100checksum = "e4060a1da109b9d0326b7262c8e12c84df67cc0dbc9e33cf49e01ccc2eb63631"
2101dependencies = [
2102 "windows-link 0.2.1",
2103]
2104
2105[[package]]
2106name = "windows_aarch64_gnullvm"
2107version = "0.52.6"
2108source = "registry+https://github.com/rust-lang/crates.io-index"
2109checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2110
2111[[package]]
2112name = "windows_aarch64_gnullvm"
2113version = "0.53.1"
2114source = "registry+https://github.com/rust-lang/crates.io-index"
2115checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
2116
2117[[package]]
2118name = "windows_aarch64_msvc"
2119version = "0.52.6"
2120source = "registry+https://github.com/rust-lang/crates.io-index"
2121checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2122
2123[[package]]
2124name = "windows_aarch64_msvc"
2125version = "0.53.1"
2126source = "registry+https://github.com/rust-lang/crates.io-index"
2127checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
2128
2129[[package]]
2130name = "windows_i686_gnu"
2131version = "0.52.6"
2132source = "registry+https://github.com/rust-lang/crates.io-index"
2133checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2134
2135[[package]]
2136name = "windows_i686_gnu"
2137version = "0.53.1"
2138source = "registry+https://github.com/rust-lang/crates.io-index"
2139checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
2140
2141[[package]]
2142name = "windows_i686_gnullvm"
2143version = "0.52.6"
2144source = "registry+https://github.com/rust-lang/crates.io-index"
2145checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2146
2147[[package]]
2148name = "windows_i686_gnullvm"
2149version = "0.53.1"
2150source = "registry+https://github.com/rust-lang/crates.io-index"
2151checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
2152
2153[[package]]
2154name = "windows_i686_msvc"
2155version = "0.52.6"
2156source = "registry+https://github.com/rust-lang/crates.io-index"
2157checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2158
2159[[package]]
2160name = "windows_i686_msvc"
2161version = "0.53.1"
2162source = "registry+https://github.com/rust-lang/crates.io-index"
2163checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
2164
2165[[package]]
2166name = "windows_x86_64_gnu"
2167version = "0.52.6"
2168source = "registry+https://github.com/rust-lang/crates.io-index"
2169checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2170
2171[[package]]
2172name = "windows_x86_64_gnu"
2173version = "0.53.1"
2174source = "registry+https://github.com/rust-lang/crates.io-index"
2175checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
2176
2177[[package]]
2178name = "windows_x86_64_gnullvm"
2179version = "0.52.6"
2180source = "registry+https://github.com/rust-lang/crates.io-index"
2181checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2182
2183[[package]]
2184name = "windows_x86_64_gnullvm"
2185version = "0.53.1"
2186source = "registry+https://github.com/rust-lang/crates.io-index"
2187checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
2188
2189[[package]]
2190name = "windows_x86_64_msvc"
2191version = "0.52.6"
2192source = "registry+https://github.com/rust-lang/crates.io-index"
2193checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2194
2195[[package]]
2196name = "windows_x86_64_msvc"
2197version = "0.53.1"
2198source = "registry+https://github.com/rust-lang/crates.io-index"
2199checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2200
2201[[package]]
2202name = "winnow"
2203version = "0.7.13"
2204source = "registry+https://github.com/rust-lang/crates.io-index"
2205checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
2206dependencies = [
2207 "memchr",
2208]
2209
2210[[package]]
2211name = "wit-bindgen"
2212version = "0.46.0"
2213source = "registry+https://github.com/rust-lang/crates.io-index"
2214checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
2215
2216[[package]]
2217name = "writeable"
2218version = "0.6.2"
2219source = "registry+https://github.com/rust-lang/crates.io-index"
2220checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
2221
2222[[package]]
2223name = "yoke"
2224version = "0.8.1"
2225source = "registry+https://github.com/rust-lang/crates.io-index"
2226checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
2227dependencies = [
2228 "stable_deref_trait",
2229 "yoke-derive",
2230 "zerofrom",
2231]
2232
2233[[package]]
2234name = "yoke-derive"
2235version = "0.8.1"
2236source = "registry+https://github.com/rust-lang/crates.io-index"
2237checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
2238dependencies = [
2239 "proc-macro2",
2240 "quote",
2241 "syn",
2242 "synstructure",
2243]
2244
2245[[package]]
2246name = "zbus"
2247version = "5.12.0"
2248source = "registry+https://github.com/rust-lang/crates.io-index"
2249checksum = "b622b18155f7a93d1cd2dc8c01d2d6a44e08fb9ebb7b3f9e6ed101488bad6c91"
2250dependencies = [
2251 "async-broadcast",
2252 "async-executor",
2253 "async-io",
2254 "async-lock",
2255 "async-process",
2256 "async-recursion",
2257 "async-task",
2258 "async-trait",
2259 "blocking",
2260 "enumflags2",
2261 "event-listener",
2262 "futures-core",
2263 "futures-lite",
2264 "hex",
2265 "nix",
2266 "ordered-stream",
2267 "serde",
2268 "serde_repr",
2269 "tracing",
2270 "uds_windows",
2271 "uuid",
2272 "windows-sys 0.61.2",
2273 "winnow",
2274 "zbus_macros",
2275 "zbus_names",
2276 "zvariant",
2277]
2278
2279[[package]]
2280name = "zbus_macros"
2281version = "5.12.0"
2282source = "registry+https://github.com/rust-lang/crates.io-index"
2283checksum = "1cdb94821ca8a87ca9c298b5d1cbd80e2a8b67115d99f6e4551ac49e42b6a314"
2284dependencies = [
2285 "proc-macro-crate",
2286 "proc-macro2",
2287 "quote",
2288 "syn",
2289 "zbus_names",
2290 "zvariant",
2291 "zvariant_utils",
2292]
2293
2294[[package]]
2295name = "zbus_names"
2296version = "4.2.0"
2297source = "registry+https://github.com/rust-lang/crates.io-index"
2298checksum = "7be68e64bf6ce8db94f63e72f0c7eb9a60d733f7e0499e628dfab0f84d6bcb97"
2299dependencies = [
2300 "serde",
2301 "static_assertions",
2302 "winnow",
2303 "zvariant",
2304]
2305
2306[[package]]
2307name = "zerocopy"
2308version = "0.8.28"
2309source = "registry+https://github.com/rust-lang/crates.io-index"
2310checksum = "43fa6694ed34d6e57407afbccdeecfa268c470a7d2a5b0cf49ce9fcc345afb90"
2311dependencies = [
2312 "zerocopy-derive",
2313]
2314
2315[[package]]
2316name = "zerocopy-derive"
2317version = "0.8.28"
2318source = "registry+https://github.com/rust-lang/crates.io-index"
2319checksum = "c640b22cd9817fae95be82f0d2f90b11f7605f6c319d16705c459b27ac2cbc26"
2320dependencies = [
2321 "proc-macro2",
2322 "quote",
2323 "syn",
2324]
2325
2326[[package]]
2327name = "zerofrom"
2328version = "0.1.6"
2329source = "registry+https://github.com/rust-lang/crates.io-index"
2330checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
2331dependencies = [
2332 "zerofrom-derive",
2333]
2334
2335[[package]]
2336name = "zerofrom-derive"
2337version = "0.1.6"
2338source = "registry+https://github.com/rust-lang/crates.io-index"
2339checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
2340dependencies = [
2341 "proc-macro2",
2342 "quote",
2343 "syn",
2344 "synstructure",
2345]
2346
2347[[package]]
2348name = "zerotrie"
2349version = "0.2.3"
2350source = "registry+https://github.com/rust-lang/crates.io-index"
2351checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
2352dependencies = [
2353 "displaydoc",
2354 "yoke",
2355 "zerofrom",
2356]
2357
2358[[package]]
2359name = "zerovec"
2360version = "0.11.5"
2361source = "registry+https://github.com/rust-lang/crates.io-index"
2362checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
2363dependencies = [
2364 "yoke",
2365 "zerofrom",
2366 "zerovec-derive",
2367]
2368
2369[[package]]
2370name = "zerovec-derive"
2371version = "0.11.2"
2372source = "registry+https://github.com/rust-lang/crates.io-index"
2373checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
2374dependencies = [
2375 "proc-macro2",
2376 "quote",
2377 "syn",
2378]
2379
2380[[package]]
2381name = "zstd"
2382version = "0.13.3"
2383source = "registry+https://github.com/rust-lang/crates.io-index"
2384checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
2385dependencies = [
2386 "zstd-safe",
2387]
2388
2389[[package]]
2390name = "zstd-safe"
2391version = "7.2.4"
2392source = "registry+https://github.com/rust-lang/crates.io-index"
2393checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
2394dependencies = [
2395 "zstd-sys",
2396]
2397
2398[[package]]
2399name = "zstd-sys"
2400version = "2.0.16+zstd.1.5.7"
2401source = "registry+https://github.com/rust-lang/crates.io-index"
2402checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
2403dependencies = [
2404 "cc",
2405 "pkg-config",
2406]
2407
2408[[package]]
2409name = "zvariant"
2410version = "5.8.0"
2411source = "registry+https://github.com/rust-lang/crates.io-index"
2412checksum = "2be61892e4f2b1772727be11630a62664a1826b62efa43a6fe7449521cb8744c"
2413dependencies = [
2414 "endi",
2415 "enumflags2",
2416 "serde",
2417 "winnow",
2418 "zvariant_derive",
2419 "zvariant_utils",
2420]
2421
2422[[package]]
2423name = "zvariant_derive"
2424version = "5.8.0"
2425source = "registry+https://github.com/rust-lang/crates.io-index"
2426checksum = "da58575a1b2b20766513b1ec59d8e2e68db2745379f961f86650655e862d2006"
2427dependencies = [
2428 "proc-macro-crate",
2429 "proc-macro2",
2430 "quote",
2431 "syn",
2432 "zvariant_utils",
2433]
2434
2435[[package]]
2436name = "zvariant_utils"
2437version = "3.2.1"
2438source = "registry+https://github.com/rust-lang/crates.io-index"
2439checksum = "c6949d142f89f6916deca2232cf26a8afacf2b9fdc35ce766105e104478be599"
2440dependencies = [
2441 "proc-macro2",
2442 "quote",
2443 "serde",
2444 "syn",
2445 "winnow",
2446]