Gleam + Relm4 foreign node POC over Erlang distribution
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 4
4
5[[package]]
6name = "adler32"
7version = "1.2.0"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
10
11[[package]]
12name = "allocator-api2"
13version = "0.2.21"
14source = "registry+https://github.com/rust-lang/crates.io-index"
15checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
16
17[[package]]
18name = "anstream"
19version = "1.0.0"
20source = "registry+https://github.com/rust-lang/crates.io-index"
21checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
22dependencies = [
23 "anstyle",
24 "anstyle-parse",
25 "anstyle-query",
26 "anstyle-wincon",
27 "colorchoice",
28 "is_terminal_polyfill",
29 "utf8parse",
30]
31
32[[package]]
33name = "anstyle"
34version = "1.0.14"
35source = "registry+https://github.com/rust-lang/crates.io-index"
36checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
37
38[[package]]
39name = "anstyle-parse"
40version = "1.0.0"
41source = "registry+https://github.com/rust-lang/crates.io-index"
42checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
43dependencies = [
44 "utf8parse",
45]
46
47[[package]]
48name = "anstyle-query"
49version = "1.1.5"
50source = "registry+https://github.com/rust-lang/crates.io-index"
51checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
52dependencies = [
53 "windows-sys",
54]
55
56[[package]]
57name = "anstyle-wincon"
58version = "3.0.11"
59source = "registry+https://github.com/rust-lang/crates.io-index"
60checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
61dependencies = [
62 "anstyle",
63 "once_cell_polyfill",
64 "windows-sys",
65]
66
67[[package]]
68name = "async-channel"
69version = "2.5.0"
70source = "registry+https://github.com/rust-lang/crates.io-index"
71checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
72dependencies = [
73 "concurrent-queue",
74 "event-listener-strategy",
75 "futures-core",
76 "pin-project-lite",
77]
78
79[[package]]
80name = "async-executor"
81version = "1.14.0"
82source = "registry+https://github.com/rust-lang/crates.io-index"
83checksum = "c96bf972d85afc50bf5ab8fe2d54d1586b4e0b46c97c50a0c9e71e2f7bcd812a"
84dependencies = [
85 "async-task",
86 "concurrent-queue",
87 "fastrand",
88 "futures-lite",
89 "pin-project-lite",
90 "slab",
91]
92
93[[package]]
94name = "async-fs"
95version = "2.2.0"
96source = "registry+https://github.com/rust-lang/crates.io-index"
97checksum = "8034a681df4aed8b8edbd7fbe472401ecf009251c8b40556b304567052e294c5"
98dependencies = [
99 "async-lock",
100 "blocking",
101 "futures-lite",
102]
103
104[[package]]
105name = "async-io"
106version = "2.6.0"
107source = "registry+https://github.com/rust-lang/crates.io-index"
108checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc"
109dependencies = [
110 "autocfg",
111 "cfg-if",
112 "concurrent-queue",
113 "futures-io",
114 "futures-lite",
115 "parking",
116 "polling",
117 "rustix",
118 "slab",
119 "windows-sys",
120]
121
122[[package]]
123name = "async-lock"
124version = "3.4.2"
125source = "registry+https://github.com/rust-lang/crates.io-index"
126checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311"
127dependencies = [
128 "event-listener",
129 "event-listener-strategy",
130 "pin-project-lite",
131]
132
133[[package]]
134name = "async-net"
135version = "2.0.0"
136source = "registry+https://github.com/rust-lang/crates.io-index"
137checksum = "b948000fad4873c1c9339d60f2623323a0cfd3816e5181033c6a5cb68b2accf7"
138dependencies = [
139 "async-io",
140 "blocking",
141 "futures-lite",
142]
143
144[[package]]
145name = "async-process"
146version = "2.5.0"
147source = "registry+https://github.com/rust-lang/crates.io-index"
148checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75"
149dependencies = [
150 "async-channel",
151 "async-io",
152 "async-lock",
153 "async-signal",
154 "async-task",
155 "blocking",
156 "cfg-if",
157 "event-listener",
158 "futures-lite",
159 "rustix",
160]
161
162[[package]]
163name = "async-signal"
164version = "0.2.14"
165source = "registry+https://github.com/rust-lang/crates.io-index"
166checksum = "52b5aaafa020cf5053a01f2a60e8ff5dccf550f0f77ec54a4e47285ac2bab485"
167dependencies = [
168 "async-io",
169 "async-lock",
170 "atomic-waker",
171 "cfg-if",
172 "futures-core",
173 "futures-io",
174 "rustix",
175 "signal-hook-registry",
176 "slab",
177 "windows-sys",
178]
179
180[[package]]
181name = "async-task"
182version = "4.7.1"
183source = "registry+https://github.com/rust-lang/crates.io-index"
184checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
185
186[[package]]
187name = "atomic-waker"
188version = "1.1.2"
189source = "registry+https://github.com/rust-lang/crates.io-index"
190checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
191
192[[package]]
193name = "autocfg"
194version = "1.5.1"
195source = "registry+https://github.com/rust-lang/crates.io-index"
196checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
197
198[[package]]
199name = "bitflags"
200version = "2.13.1"
201source = "registry+https://github.com/rust-lang/crates.io-index"
202checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
203
204[[package]]
205name = "blocking"
206version = "1.6.2"
207source = "registry+https://github.com/rust-lang/crates.io-index"
208checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21"
209dependencies = [
210 "async-channel",
211 "async-task",
212 "futures-io",
213 "futures-lite",
214 "piper",
215]
216
217[[package]]
218name = "bumpalo"
219version = "3.20.3"
220source = "registry+https://github.com/rust-lang/crates.io-index"
221checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
222
223[[package]]
224name = "cairo-rs"
225version = "0.22.0"
226source = "registry+https://github.com/rust-lang/crates.io-index"
227checksum = "5cc8d9aa793480744cd9a0524fef1a2e197d9eaa0f739cde19d16aba530dcb95"
228dependencies = [
229 "bitflags",
230 "cairo-sys-rs",
231 "glib",
232 "libc",
233]
234
235[[package]]
236name = "cairo-sys-rs"
237version = "0.22.0"
238source = "registry+https://github.com/rust-lang/crates.io-index"
239checksum = "f8b4985713047f5faee02b8db6a6ef32bbb50269ff53c1aee716d1d195b76d54"
240dependencies = [
241 "glib-sys",
242 "libc",
243 "system-deps",
244]
245
246[[package]]
247name = "cfg-expr"
248version = "0.20.8"
249source = "registry+https://github.com/rust-lang/crates.io-index"
250checksum = "fb693542bcafa528e198be0ebd9d3632ca5b7c93dbe7237460e199910835997c"
251dependencies = [
252 "smallvec",
253 "target-lexicon",
254]
255
256[[package]]
257name = "cfg-if"
258version = "1.0.4"
259source = "registry+https://github.com/rust-lang/crates.io-index"
260checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
261
262[[package]]
263name = "chacha20"
264version = "0.10.1"
265source = "registry+https://github.com/rust-lang/crates.io-index"
266checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
267dependencies = [
268 "cfg-if",
269 "cpufeatures",
270 "rand_core",
271]
272
273[[package]]
274name = "clap"
275version = "4.6.4"
276source = "registry+https://github.com/rust-lang/crates.io-index"
277checksum = "d91e0c145792ef73a6ad36d27c75ac09f1832222a3c209689d90f534685ee5b7"
278dependencies = [
279 "clap_builder",
280 "clap_derive",
281]
282
283[[package]]
284name = "clap_builder"
285version = "4.6.2"
286source = "registry+https://github.com/rust-lang/crates.io-index"
287checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
288dependencies = [
289 "anstream",
290 "anstyle",
291 "clap_lex",
292 "strsim",
293]
294
295[[package]]
296name = "clap_derive"
297version = "4.6.4"
298source = "registry+https://github.com/rust-lang/crates.io-index"
299checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
300dependencies = [
301 "heck",
302 "proc-macro2",
303 "quote",
304 "syn 3.0.3",
305]
306
307[[package]]
308name = "clap_lex"
309version = "1.1.0"
310source = "registry+https://github.com/rust-lang/crates.io-index"
311checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
312
313[[package]]
314name = "colorchoice"
315version = "1.0.5"
316source = "registry+https://github.com/rust-lang/crates.io-index"
317checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
318
319[[package]]
320name = "concurrent-queue"
321version = "2.5.0"
322source = "registry+https://github.com/rust-lang/crates.io-index"
323checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
324dependencies = [
325 "crossbeam-utils",
326]
327
328[[package]]
329name = "cpufeatures"
330version = "0.3.0"
331source = "registry+https://github.com/rust-lang/crates.io-index"
332checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
333dependencies = [
334 "libc",
335]
336
337[[package]]
338name = "crc32fast"
339version = "1.5.0"
340source = "registry+https://github.com/rust-lang/crates.io-index"
341checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
342dependencies = [
343 "cfg-if",
344]
345
346[[package]]
347name = "crossbeam-utils"
348version = "0.8.22"
349source = "registry+https://github.com/rust-lang/crates.io-index"
350checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
351
352[[package]]
353name = "dary_heap"
354version = "0.3.9"
355source = "registry+https://github.com/rust-lang/crates.io-index"
356checksum = "8b1e3a325bc115f096c8b77bbf027a7c2592230e70be2d985be950d3d5e60ebe"
357
358[[package]]
359name = "eetf"
360version = "0.11.0"
361source = "registry+https://github.com/rust-lang/crates.io-index"
362checksum = "b59d5a438de6099b4fd27f69d61a67c3b7758e3950fa6b1cef7d679d1e74a7d0"
363dependencies = [
364 "libflate",
365 "num-bigint",
366 "num-traits",
367]
368
369[[package]]
370name = "equivalent"
371version = "1.0.2"
372source = "registry+https://github.com/rust-lang/crates.io-index"
373checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
374
375[[package]]
376name = "erl_dist"
377version = "0.8.0"
378source = "registry+https://github.com/rust-lang/crates.io-index"
379checksum = "61525240382fc8a099fe85ff7ed1aa1a806addf265fe1254867ab3a689d14015"
380dependencies = [
381 "eetf",
382 "futures",
383 "md5",
384 "rand",
385]
386
387[[package]]
388name = "errno"
389version = "0.3.14"
390source = "registry+https://github.com/rust-lang/crates.io-index"
391checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
392dependencies = [
393 "libc",
394 "windows-sys",
395]
396
397[[package]]
398name = "event-listener"
399version = "5.4.1"
400source = "registry+https://github.com/rust-lang/crates.io-index"
401checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
402dependencies = [
403 "concurrent-queue",
404 "parking",
405 "pin-project-lite",
406]
407
408[[package]]
409name = "event-listener-strategy"
410version = "0.5.4"
411source = "registry+https://github.com/rust-lang/crates.io-index"
412checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
413dependencies = [
414 "event-listener",
415 "pin-project-lite",
416]
417
418[[package]]
419name = "fastrand"
420version = "2.5.0"
421source = "registry+https://github.com/rust-lang/crates.io-index"
422checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
423dependencies = [
424 "getrandom",
425]
426
427[[package]]
428name = "field-offset"
429version = "0.3.6"
430source = "registry+https://github.com/rust-lang/crates.io-index"
431checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f"
432dependencies = [
433 "memoffset",
434 "rustc_version",
435]
436
437[[package]]
438name = "flume"
439version = "0.12.0"
440source = "registry+https://github.com/rust-lang/crates.io-index"
441checksum = "5e139bc46ca777eb5efaf62df0ab8cc5fd400866427e56c68b22e414e53bd3be"
442dependencies = [
443 "fastrand",
444 "futures-core",
445 "futures-sink",
446 "spin",
447]
448
449[[package]]
450name = "foldhash"
451version = "0.2.0"
452source = "registry+https://github.com/rust-lang/crates.io-index"
453checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
454
455[[package]]
456name = "fragile"
457version = "2.1.0"
458source = "registry+https://github.com/rust-lang/crates.io-index"
459checksum = "8878864ba14bb86e818a412bfd6f18f9eabd4ec0f008a28e8f7eb61db532fcf9"
460dependencies = [
461 "futures-core",
462]
463
464[[package]]
465name = "futures"
466version = "0.3.33"
467source = "registry+https://github.com/rust-lang/crates.io-index"
468checksum = "a88cf1f829d945f548cf8fec32c61b1f202b6d93b45848602fc02af4b12ad218"
469dependencies = [
470 "futures-channel",
471 "futures-core",
472 "futures-executor",
473 "futures-io",
474 "futures-sink",
475 "futures-task",
476 "futures-util",
477]
478
479[[package]]
480name = "futures-channel"
481version = "0.3.33"
482source = "registry+https://github.com/rust-lang/crates.io-index"
483checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae"
484dependencies = [
485 "futures-core",
486 "futures-sink",
487]
488
489[[package]]
490name = "futures-core"
491version = "0.3.33"
492source = "registry+https://github.com/rust-lang/crates.io-index"
493checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
494
495[[package]]
496name = "futures-executor"
497version = "0.3.33"
498source = "registry+https://github.com/rust-lang/crates.io-index"
499checksum = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458"
500dependencies = [
501 "futures-core",
502 "futures-task",
503 "futures-util",
504]
505
506[[package]]
507name = "futures-io"
508version = "0.3.33"
509source = "registry+https://github.com/rust-lang/crates.io-index"
510checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a"
511
512[[package]]
513name = "futures-lite"
514version = "2.6.1"
515source = "registry+https://github.com/rust-lang/crates.io-index"
516checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
517dependencies = [
518 "fastrand",
519 "futures-core",
520 "futures-io",
521 "parking",
522 "pin-project-lite",
523]
524
525[[package]]
526name = "futures-macro"
527version = "0.3.33"
528source = "registry+https://github.com/rust-lang/crates.io-index"
529checksum = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b"
530dependencies = [
531 "proc-macro2",
532 "quote",
533 "syn 2.0.119",
534]
535
536[[package]]
537name = "futures-sink"
538version = "0.3.33"
539source = "registry+https://github.com/rust-lang/crates.io-index"
540checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307"
541
542[[package]]
543name = "futures-task"
544version = "0.3.33"
545source = "registry+https://github.com/rust-lang/crates.io-index"
546checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
547
548[[package]]
549name = "futures-util"
550version = "0.3.33"
551source = "registry+https://github.com/rust-lang/crates.io-index"
552checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
553dependencies = [
554 "futures-channel",
555 "futures-core",
556 "futures-io",
557 "futures-macro",
558 "futures-sink",
559 "futures-task",
560 "memchr",
561 "pin-project-lite",
562 "slab",
563]
564
565[[package]]
566name = "gdk-pixbuf"
567version = "0.22.0"
568source = "registry+https://github.com/rust-lang/crates.io-index"
569checksum = "25f420376dbee041b2db374ce4573892a36222bb3f6c0c43e24f0d67eae9b646"
570dependencies = [
571 "gdk-pixbuf-sys",
572 "gio",
573 "glib",
574 "libc",
575]
576
577[[package]]
578name = "gdk-pixbuf-sys"
579version = "0.22.0"
580source = "registry+https://github.com/rust-lang/crates.io-index"
581checksum = "48f31b37b1fc4b48b54f6b91b7ef04c18e00b4585d98359dd7b998774bbd91fb"
582dependencies = [
583 "gio-sys",
584 "glib-sys",
585 "gobject-sys",
586 "libc",
587 "system-deps",
588]
589
590[[package]]
591name = "gdk4"
592version = "0.11.4"
593source = "registry+https://github.com/rust-lang/crates.io-index"
594checksum = "d81e2a6c6ecba2aab60633a98df1868b03fa0bfdce8105edc27c1bccf71f0e39"
595dependencies = [
596 "cairo-rs",
597 "gdk-pixbuf",
598 "gdk4-sys",
599 "gio",
600 "glib",
601 "libc",
602 "pango",
603]
604
605[[package]]
606name = "gdk4-sys"
607version = "0.11.4"
608source = "registry+https://github.com/rust-lang/crates.io-index"
609checksum = "3d8f608d8d7d229975c4d0d026f5d3071598c4ddab3c5262b0a31840fec78d13"
610dependencies = [
611 "cairo-sys-rs",
612 "gdk-pixbuf-sys",
613 "gio-sys",
614 "glib-sys",
615 "gobject-sys",
616 "libc",
617 "pango-sys",
618 "pkg-config",
619 "system-deps",
620]
621
622[[package]]
623name = "getrandom"
624version = "0.4.3"
625source = "registry+https://github.com/rust-lang/crates.io-index"
626checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
627dependencies = [
628 "cfg-if",
629 "js-sys",
630 "libc",
631 "r-efi",
632 "rand_core",
633 "wasm-bindgen",
634]
635
636[[package]]
637name = "gio"
638version = "0.22.8"
639source = "registry+https://github.com/rust-lang/crates.io-index"
640checksum = "8b3e1f669909c326b9413bde5a742097b8c90a7d78f45326db13668984769ded"
641dependencies = [
642 "futures-channel",
643 "futures-core",
644 "futures-io",
645 "futures-util",
646 "gio-sys",
647 "glib",
648 "libc",
649 "pin-project-lite",
650 "smallvec",
651]
652
653[[package]]
654name = "gio-sys"
655version = "0.22.8"
656source = "registry+https://github.com/rust-lang/crates.io-index"
657checksum = "353fdc7da7cd16da916104b1e0e4e7de380ec9c8aaa20d4d742d66310ab4b0d5"
658dependencies = [
659 "glib-sys",
660 "gobject-sys",
661 "libc",
662 "system-deps",
663 "windows-sys",
664]
665
666[[package]]
667name = "gleamtk-ui"
668version = "0.1.0"
669dependencies = [
670 "async-channel",
671 "clap",
672 "eetf",
673 "erl_dist",
674 "futures",
675 "gtk4",
676 "libadwaita",
677 "relm4",
678 "smol",
679]
680
681[[package]]
682name = "glib"
683version = "0.22.8"
684source = "registry+https://github.com/rust-lang/crates.io-index"
685checksum = "ddbcf514bd1881fc1b960e4e52b4e82873f4da3bceddbd58d42827b508888100"
686dependencies = [
687 "bitflags",
688 "futures-channel",
689 "futures-core",
690 "futures-executor",
691 "futures-task",
692 "futures-util",
693 "gio-sys",
694 "glib-macros",
695 "glib-sys",
696 "gobject-sys",
697 "libc",
698 "memchr",
699 "smallvec",
700]
701
702[[package]]
703name = "glib-macros"
704version = "0.22.6"
705source = "registry+https://github.com/rust-lang/crates.io-index"
706checksum = "506d23499707c7142898429757e8d9a3871d965239a2cb66dfa05052be6d6f19"
707dependencies = [
708 "heck",
709 "proc-macro2",
710 "quote",
711 "syn 2.0.119",
712]
713
714[[package]]
715name = "glib-sys"
716version = "0.22.8"
717source = "registry+https://github.com/rust-lang/crates.io-index"
718checksum = "030967459f9f676851872c6304adea7825c6d462ec9b72554c733cf0c5952233"
719dependencies = [
720 "libc",
721 "system-deps",
722]
723
724[[package]]
725name = "gobject-sys"
726version = "0.22.6"
727source = "registry+https://github.com/rust-lang/crates.io-index"
728checksum = "22a861859b887a79cf461359c192c97a57d8fb0229dd291232e57aa11f6fa72c"
729dependencies = [
730 "glib-sys",
731 "libc",
732 "system-deps",
733]
734
735[[package]]
736name = "graphene-rs"
737version = "0.22.8"
738source = "registry+https://github.com/rust-lang/crates.io-index"
739checksum = "eb856b9c558971c3f13ab692358926da710b046932a4e087aedcc35b040d7dff"
740dependencies = [
741 "glib",
742 "graphene-sys",
743]
744
745[[package]]
746name = "graphene-sys"
747version = "0.22.8"
748source = "registry+https://github.com/rust-lang/crates.io-index"
749checksum = "5c7ffdfde88f3570d3705e0d8a2433e036d387a1f2930bbf47eafcb5f569fd04"
750dependencies = [
751 "glib-sys",
752 "libc",
753 "system-deps",
754]
755
756[[package]]
757name = "gsk4"
758version = "0.11.4"
759source = "registry+https://github.com/rust-lang/crates.io-index"
760checksum = "b867be1c5f14dcb8f552c0eff6e9a9b1da5f8b43943e8efc3a63c889d84952ff"
761dependencies = [
762 "cairo-rs",
763 "gdk4",
764 "glib",
765 "graphene-rs",
766 "gsk4-sys",
767 "libc",
768 "pango",
769]
770
771[[package]]
772name = "gsk4-sys"
773version = "0.11.4"
774source = "registry+https://github.com/rust-lang/crates.io-index"
775checksum = "5b7c7eb2e681ee896646cfb8872b431f24d09f53ba9283289d9b10caa6707088"
776dependencies = [
777 "cairo-sys-rs",
778 "gdk4-sys",
779 "glib-sys",
780 "gobject-sys",
781 "graphene-sys",
782 "libc",
783 "pango-sys",
784 "system-deps",
785]
786
787[[package]]
788name = "gtk4"
789version = "0.11.4"
790source = "registry+https://github.com/rust-lang/crates.io-index"
791checksum = "98a0a0466484f64b07b5b8184d43fa46be78eb0b8e04ae4e179af31d770b76d9"
792dependencies = [
793 "cairo-rs",
794 "field-offset",
795 "futures-channel",
796 "gdk-pixbuf",
797 "gdk4",
798 "gio",
799 "glib",
800 "graphene-rs",
801 "gsk4",
802 "gtk4-macros",
803 "gtk4-sys",
804 "libc",
805 "pango",
806]
807
808[[package]]
809name = "gtk4-macros"
810version = "0.11.4"
811source = "registry+https://github.com/rust-lang/crates.io-index"
812checksum = "5ac7179400a36a04de039c24206bb841c5596992b907b43b23ee8d5bdc40d00e"
813dependencies = [
814 "proc-macro-crate",
815 "proc-macro2",
816 "quote",
817 "syn 2.0.119",
818]
819
820[[package]]
821name = "gtk4-sys"
822version = "0.11.4"
823source = "registry+https://github.com/rust-lang/crates.io-index"
824checksum = "82b8f954786af0b1984425c4446b77f5ff6594346181316be3f850caab1c6f01"
825dependencies = [
826 "cairo-sys-rs",
827 "gdk-pixbuf-sys",
828 "gdk4-sys",
829 "gio-sys",
830 "glib-sys",
831 "gobject-sys",
832 "graphene-sys",
833 "gsk4-sys",
834 "libc",
835 "pango-sys",
836 "system-deps",
837]
838
839[[package]]
840name = "hashbrown"
841version = "0.16.1"
842source = "registry+https://github.com/rust-lang/crates.io-index"
843checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
844dependencies = [
845 "allocator-api2",
846 "equivalent",
847 "foldhash",
848]
849
850[[package]]
851name = "hashbrown"
852version = "0.17.1"
853source = "registry+https://github.com/rust-lang/crates.io-index"
854checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
855
856[[package]]
857name = "heck"
858version = "0.5.0"
859source = "registry+https://github.com/rust-lang/crates.io-index"
860checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
861
862[[package]]
863name = "hermit-abi"
864version = "0.5.2"
865source = "registry+https://github.com/rust-lang/crates.io-index"
866checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
867
868[[package]]
869name = "indexmap"
870version = "2.14.0"
871source = "registry+https://github.com/rust-lang/crates.io-index"
872checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
873dependencies = [
874 "equivalent",
875 "hashbrown 0.17.1",
876]
877
878[[package]]
879name = "is_terminal_polyfill"
880version = "1.70.2"
881source = "registry+https://github.com/rust-lang/crates.io-index"
882checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
883
884[[package]]
885name = "js-sys"
886version = "0.3.103"
887source = "registry+https://github.com/rust-lang/crates.io-index"
888checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
889dependencies = [
890 "cfg-if",
891 "wasm-bindgen",
892]
893
894[[package]]
895name = "libadwaita"
896version = "0.9.2"
897source = "registry+https://github.com/rust-lang/crates.io-index"
898checksum = "85b9900e67182a4b5b1f157b448d94f0715c8b9770cce21cf000801917f53bfa"
899dependencies = [
900 "gdk4",
901 "gio",
902 "glib",
903 "gtk4",
904 "libadwaita-sys",
905 "pango",
906]
907
908[[package]]
909name = "libadwaita-sys"
910version = "0.9.2"
911source = "registry+https://github.com/rust-lang/crates.io-index"
912checksum = "28d3c27642b389852aa99341bd4a4c19ec6f8a2b63ebdd7f5ba1952198079ccd"
913dependencies = [
914 "gdk4-sys",
915 "gio-sys",
916 "glib-sys",
917 "gobject-sys",
918 "gtk4-sys",
919 "libc",
920 "pango-sys",
921 "system-deps",
922]
923
924[[package]]
925name = "libc"
926version = "0.2.189"
927source = "registry+https://github.com/rust-lang/crates.io-index"
928checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
929
930[[package]]
931name = "libflate"
932version = "2.3.1"
933source = "registry+https://github.com/rust-lang/crates.io-index"
934checksum = "a4da9b700e758e57152a1fd1c52cbdc5727c1aa6d8743dc1acda917398f1d76c"
935dependencies = [
936 "adler32",
937 "crc32fast",
938 "dary_heap",
939 "libflate_lz77",
940 "no_std_io2",
941]
942
943[[package]]
944name = "libflate_lz77"
945version = "2.3.0"
946source = "registry+https://github.com/rust-lang/crates.io-index"
947checksum = "ff7a10e427698aef6eef269482776debfef63384d30f13aad39a1a95e0e098fd"
948dependencies = [
949 "hashbrown 0.16.1",
950 "no_std_io2",
951 "rle-decode-fast",
952]
953
954[[package]]
955name = "linux-raw-sys"
956version = "0.12.1"
957source = "registry+https://github.com/rust-lang/crates.io-index"
958checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
959
960[[package]]
961name = "lock_api"
962version = "0.4.14"
963source = "registry+https://github.com/rust-lang/crates.io-index"
964checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
965dependencies = [
966 "scopeguard",
967]
968
969[[package]]
970name = "md5"
971version = "0.8.1"
972source = "registry+https://github.com/rust-lang/crates.io-index"
973checksum = "7ebb8d8732c6a6df3d8f032a82911cfc747e00efb95cc46e8d0acd5b5b88570c"
974
975[[package]]
976name = "memchr"
977version = "2.8.3"
978source = "registry+https://github.com/rust-lang/crates.io-index"
979checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
980
981[[package]]
982name = "memoffset"
983version = "0.9.1"
984source = "registry+https://github.com/rust-lang/crates.io-index"
985checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
986dependencies = [
987 "autocfg",
988]
989
990[[package]]
991name = "no_std_io2"
992version = "0.9.4"
993source = "registry+https://github.com/rust-lang/crates.io-index"
994checksum = "418abd1b6d34fbf6cae440dc874771b0525a604428704c76e48b29a5e67b8003"
995dependencies = [
996 "memchr",
997]
998
999[[package]]
1000name = "num-bigint"
1001version = "0.4.8"
1002source = "registry+https://github.com/rust-lang/crates.io-index"
1003checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
1004dependencies = [
1005 "num-integer",
1006 "num-traits",
1007]
1008
1009[[package]]
1010name = "num-integer"
1011version = "0.1.46"
1012source = "registry+https://github.com/rust-lang/crates.io-index"
1013checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1014dependencies = [
1015 "num-traits",
1016]
1017
1018[[package]]
1019name = "num-traits"
1020version = "0.2.19"
1021source = "registry+https://github.com/rust-lang/crates.io-index"
1022checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1023dependencies = [
1024 "autocfg",
1025]
1026
1027[[package]]
1028name = "once_cell"
1029version = "1.21.4"
1030source = "registry+https://github.com/rust-lang/crates.io-index"
1031checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1032
1033[[package]]
1034name = "once_cell_polyfill"
1035version = "1.70.2"
1036source = "registry+https://github.com/rust-lang/crates.io-index"
1037checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1038
1039[[package]]
1040name = "pango"
1041version = "0.22.8"
1042source = "registry+https://github.com/rust-lang/crates.io-index"
1043checksum = "5d800d8d0de2ad5d0fb046f5344dbaba14a003cf3dd27cc21d85893d35ea316c"
1044dependencies = [
1045 "gio",
1046 "glib",
1047 "pango-sys",
1048]
1049
1050[[package]]
1051name = "pango-sys"
1052version = "0.22.0"
1053source = "registry+https://github.com/rust-lang/crates.io-index"
1054checksum = "bbd111a20ca90fedf03e09c59783c679c00900f1d8491cca5399f5e33609d5d6"
1055dependencies = [
1056 "glib-sys",
1057 "gobject-sys",
1058 "libc",
1059 "system-deps",
1060]
1061
1062[[package]]
1063name = "parking"
1064version = "2.2.1"
1065source = "registry+https://github.com/rust-lang/crates.io-index"
1066checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1067
1068[[package]]
1069name = "pin-project-lite"
1070version = "0.2.17"
1071source = "registry+https://github.com/rust-lang/crates.io-index"
1072checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1073
1074[[package]]
1075name = "piper"
1076version = "0.2.5"
1077source = "registry+https://github.com/rust-lang/crates.io-index"
1078checksum = "c835479a4443ded371d6c535cbfd8d31ad92c5d23ae9770a61bc155e4992a3c1"
1079dependencies = [
1080 "atomic-waker",
1081 "fastrand",
1082 "futures-io",
1083]
1084
1085[[package]]
1086name = "pkg-config"
1087version = "0.3.33"
1088source = "registry+https://github.com/rust-lang/crates.io-index"
1089checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1090
1091[[package]]
1092name = "polling"
1093version = "3.11.0"
1094source = "registry+https://github.com/rust-lang/crates.io-index"
1095checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
1096dependencies = [
1097 "cfg-if",
1098 "concurrent-queue",
1099 "hermit-abi",
1100 "pin-project-lite",
1101 "rustix",
1102 "windows-sys",
1103]
1104
1105[[package]]
1106name = "proc-macro-crate"
1107version = "3.5.0"
1108source = "registry+https://github.com/rust-lang/crates.io-index"
1109checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
1110dependencies = [
1111 "toml_edit",
1112]
1113
1114[[package]]
1115name = "proc-macro2"
1116version = "1.0.107"
1117source = "registry+https://github.com/rust-lang/crates.io-index"
1118checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
1119dependencies = [
1120 "unicode-ident",
1121]
1122
1123[[package]]
1124name = "quote"
1125version = "1.0.47"
1126source = "registry+https://github.com/rust-lang/crates.io-index"
1127checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
1128dependencies = [
1129 "proc-macro2",
1130]
1131
1132[[package]]
1133name = "r-efi"
1134version = "6.0.0"
1135source = "registry+https://github.com/rust-lang/crates.io-index"
1136checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1137
1138[[package]]
1139name = "rand"
1140version = "0.10.2"
1141source = "registry+https://github.com/rust-lang/crates.io-index"
1142checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
1143dependencies = [
1144 "chacha20",
1145 "getrandom",
1146 "rand_core",
1147]
1148
1149[[package]]
1150name = "rand_core"
1151version = "0.10.1"
1152source = "registry+https://github.com/rust-lang/crates.io-index"
1153checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
1154
1155[[package]]
1156name = "relm4"
1157version = "0.11.0"
1158source = "registry+https://github.com/rust-lang/crates.io-index"
1159checksum = "6420f090f0545e9ec9656469d139a4e1b66ff9c30b808fe2247892724f71a198"
1160dependencies = [
1161 "flume",
1162 "fragile",
1163 "futures",
1164 "gtk4",
1165 "libadwaita",
1166 "once_cell",
1167 "relm4-css",
1168 "relm4-macros",
1169 "tokio",
1170 "tracing",
1171]
1172
1173[[package]]
1174name = "relm4-css"
1175version = "0.11.0"
1176source = "registry+https://github.com/rust-lang/crates.io-index"
1177checksum = "f3b81d263f784b103c815afa29124486b59741eca069ce7a5999efb14f13c368"
1178
1179[[package]]
1180name = "relm4-macros"
1181version = "0.11.0"
1182source = "registry+https://github.com/rust-lang/crates.io-index"
1183checksum = "36c9dbf50a60c82375e66b61d522c936b187a11b25c0a42e91c516326ad24a4f"
1184dependencies = [
1185 "proc-macro2",
1186 "quote",
1187 "syn 2.0.119",
1188]
1189
1190[[package]]
1191name = "rle-decode-fast"
1192version = "1.0.3"
1193source = "registry+https://github.com/rust-lang/crates.io-index"
1194checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422"
1195
1196[[package]]
1197name = "rustc_version"
1198version = "0.4.1"
1199source = "registry+https://github.com/rust-lang/crates.io-index"
1200checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1201dependencies = [
1202 "semver",
1203]
1204
1205[[package]]
1206name = "rustix"
1207version = "1.1.4"
1208source = "registry+https://github.com/rust-lang/crates.io-index"
1209checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1210dependencies = [
1211 "bitflags",
1212 "errno",
1213 "libc",
1214 "linux-raw-sys",
1215 "windows-sys",
1216]
1217
1218[[package]]
1219name = "rustversion"
1220version = "1.0.23"
1221source = "registry+https://github.com/rust-lang/crates.io-index"
1222checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1223
1224[[package]]
1225name = "scopeguard"
1226version = "1.2.0"
1227source = "registry+https://github.com/rust-lang/crates.io-index"
1228checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1229
1230[[package]]
1231name = "semver"
1232version = "1.0.28"
1233source = "registry+https://github.com/rust-lang/crates.io-index"
1234checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1235
1236[[package]]
1237name = "serde_core"
1238version = "1.0.229"
1239source = "registry+https://github.com/rust-lang/crates.io-index"
1240checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1241dependencies = [
1242 "serde_derive",
1243]
1244
1245[[package]]
1246name = "serde_derive"
1247version = "1.0.229"
1248source = "registry+https://github.com/rust-lang/crates.io-index"
1249checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1250dependencies = [
1251 "proc-macro2",
1252 "quote",
1253 "syn 3.0.3",
1254]
1255
1256[[package]]
1257name = "serde_spanned"
1258version = "1.1.1"
1259source = "registry+https://github.com/rust-lang/crates.io-index"
1260checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
1261dependencies = [
1262 "serde_core",
1263]
1264
1265[[package]]
1266name = "signal-hook-registry"
1267version = "1.4.8"
1268source = "registry+https://github.com/rust-lang/crates.io-index"
1269checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1270dependencies = [
1271 "errno",
1272 "libc",
1273]
1274
1275[[package]]
1276name = "slab"
1277version = "0.4.12"
1278source = "registry+https://github.com/rust-lang/crates.io-index"
1279checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1280
1281[[package]]
1282name = "smallvec"
1283version = "1.15.2"
1284source = "registry+https://github.com/rust-lang/crates.io-index"
1285checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1286
1287[[package]]
1288name = "smol"
1289version = "2.0.2"
1290source = "registry+https://github.com/rust-lang/crates.io-index"
1291checksum = "a33bd3e260892199c3ccfc487c88b2da2265080acb316cd920da72fdfd7c599f"
1292dependencies = [
1293 "async-channel",
1294 "async-executor",
1295 "async-fs",
1296 "async-io",
1297 "async-lock",
1298 "async-net",
1299 "async-process",
1300 "blocking",
1301 "futures-lite",
1302]
1303
1304[[package]]
1305name = "spin"
1306version = "0.9.9"
1307source = "registry+https://github.com/rust-lang/crates.io-index"
1308checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e"
1309dependencies = [
1310 "lock_api",
1311]
1312
1313[[package]]
1314name = "strsim"
1315version = "0.11.1"
1316source = "registry+https://github.com/rust-lang/crates.io-index"
1317checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1318
1319[[package]]
1320name = "syn"
1321version = "2.0.119"
1322source = "registry+https://github.com/rust-lang/crates.io-index"
1323checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1324dependencies = [
1325 "proc-macro2",
1326 "quote",
1327 "unicode-ident",
1328]
1329
1330[[package]]
1331name = "syn"
1332version = "3.0.3"
1333source = "registry+https://github.com/rust-lang/crates.io-index"
1334checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
1335dependencies = [
1336 "proc-macro2",
1337 "quote",
1338 "unicode-ident",
1339]
1340
1341[[package]]
1342name = "system-deps"
1343version = "7.0.8"
1344source = "registry+https://github.com/rust-lang/crates.io-index"
1345checksum = "396a35feb67335377e0251fcbc1092fc85c484bd4e3a7a54319399da127796e7"
1346dependencies = [
1347 "cfg-expr",
1348 "heck",
1349 "pkg-config",
1350 "toml",
1351 "version-compare",
1352]
1353
1354[[package]]
1355name = "target-lexicon"
1356version = "0.13.5"
1357source = "registry+https://github.com/rust-lang/crates.io-index"
1358checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1359
1360[[package]]
1361name = "tokio"
1362version = "1.53.1"
1363source = "registry+https://github.com/rust-lang/crates.io-index"
1364checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
1365dependencies = [
1366 "pin-project-lite",
1367]
1368
1369[[package]]
1370name = "toml"
1371version = "1.1.3+spec-1.1.0"
1372source = "registry+https://github.com/rust-lang/crates.io-index"
1373checksum = "53c96ecdfa941c8fc4fcaed14f99ada8ebed502eef533015095a07e3301d4c3c"
1374dependencies = [
1375 "indexmap",
1376 "serde_core",
1377 "serde_spanned",
1378 "toml_datetime",
1379 "toml_parser",
1380 "toml_writer",
1381 "winnow",
1382]
1383
1384[[package]]
1385name = "toml_datetime"
1386version = "1.1.1+spec-1.1.0"
1387source = "registry+https://github.com/rust-lang/crates.io-index"
1388checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
1389dependencies = [
1390 "serde_core",
1391]
1392
1393[[package]]
1394name = "toml_edit"
1395version = "0.25.13+spec-1.1.0"
1396source = "registry+https://github.com/rust-lang/crates.io-index"
1397checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b"
1398dependencies = [
1399 "indexmap",
1400 "toml_datetime",
1401 "toml_parser",
1402 "winnow",
1403]
1404
1405[[package]]
1406name = "toml_parser"
1407version = "1.1.2+spec-1.1.0"
1408source = "registry+https://github.com/rust-lang/crates.io-index"
1409checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
1410dependencies = [
1411 "winnow",
1412]
1413
1414[[package]]
1415name = "toml_writer"
1416version = "1.1.2+spec-1.1.0"
1417source = "registry+https://github.com/rust-lang/crates.io-index"
1418checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
1419
1420[[package]]
1421name = "tracing"
1422version = "0.1.44"
1423source = "registry+https://github.com/rust-lang/crates.io-index"
1424checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1425dependencies = [
1426 "pin-project-lite",
1427 "tracing-attributes",
1428 "tracing-core",
1429]
1430
1431[[package]]
1432name = "tracing-attributes"
1433version = "0.1.31"
1434source = "registry+https://github.com/rust-lang/crates.io-index"
1435checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1436dependencies = [
1437 "proc-macro2",
1438 "quote",
1439 "syn 2.0.119",
1440]
1441
1442[[package]]
1443name = "tracing-core"
1444version = "0.1.36"
1445source = "registry+https://github.com/rust-lang/crates.io-index"
1446checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1447dependencies = [
1448 "once_cell",
1449]
1450
1451[[package]]
1452name = "unicode-ident"
1453version = "1.0.24"
1454source = "registry+https://github.com/rust-lang/crates.io-index"
1455checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1456
1457[[package]]
1458name = "utf8parse"
1459version = "0.2.2"
1460source = "registry+https://github.com/rust-lang/crates.io-index"
1461checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1462
1463[[package]]
1464name = "version-compare"
1465version = "0.2.1"
1466source = "registry+https://github.com/rust-lang/crates.io-index"
1467checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e"
1468
1469[[package]]
1470name = "wasm-bindgen"
1471version = "0.2.126"
1472source = "registry+https://github.com/rust-lang/crates.io-index"
1473checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
1474dependencies = [
1475 "cfg-if",
1476 "once_cell",
1477 "rustversion",
1478 "wasm-bindgen-macro",
1479 "wasm-bindgen-shared",
1480]
1481
1482[[package]]
1483name = "wasm-bindgen-macro"
1484version = "0.2.126"
1485source = "registry+https://github.com/rust-lang/crates.io-index"
1486checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
1487dependencies = [
1488 "quote",
1489 "wasm-bindgen-macro-support",
1490]
1491
1492[[package]]
1493name = "wasm-bindgen-macro-support"
1494version = "0.2.126"
1495source = "registry+https://github.com/rust-lang/crates.io-index"
1496checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
1497dependencies = [
1498 "bumpalo",
1499 "proc-macro2",
1500 "quote",
1501 "syn 2.0.119",
1502 "wasm-bindgen-shared",
1503]
1504
1505[[package]]
1506name = "wasm-bindgen-shared"
1507version = "0.2.126"
1508source = "registry+https://github.com/rust-lang/crates.io-index"
1509checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
1510dependencies = [
1511 "unicode-ident",
1512]
1513
1514[[package]]
1515name = "windows-link"
1516version = "0.2.1"
1517source = "registry+https://github.com/rust-lang/crates.io-index"
1518checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1519
1520[[package]]
1521name = "windows-sys"
1522version = "0.61.2"
1523source = "registry+https://github.com/rust-lang/crates.io-index"
1524checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1525dependencies = [
1526 "windows-link",
1527]
1528
1529[[package]]
1530name = "winnow"
1531version = "1.0.4"
1532source = "registry+https://github.com/rust-lang/crates.io-index"
1533checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
1534dependencies = [
1535 "memchr",
1536]