forked from
microcosm.blue/Allegedly
Server tools to backfill, tail, mirror, and verify PLC logs
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 4
4
5[[package]]
6name = "addr2line"
7version = "0.24.2"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
10dependencies = [
11 "gimli",
12]
13
14[[package]]
15name = "adler2"
16version = "2.0.1"
17source = "registry+https://github.com/rust-lang/crates.io-index"
18checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
19
20[[package]]
21name = "aho-corasick"
22version = "1.1.3"
23source = "registry+https://github.com/rust-lang/crates.io-index"
24checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
25dependencies = [
26 "memchr",
27]
28
29[[package]]
30name = "allegedly"
31version = "0.1.0"
32dependencies = [
33 "anyhow",
34 "async-compression",
35 "chrono",
36 "clap",
37 "env_logger",
38 "flume",
39 "futures",
40 "log",
41 "reqwest",
42 "serde",
43 "serde_json",
44 "thiserror",
45 "tokio",
46 "tokio-postgres",
47 "url",
48]
49
50[[package]]
51name = "android_system_properties"
52version = "0.1.5"
53source = "registry+https://github.com/rust-lang/crates.io-index"
54checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
55dependencies = [
56 "libc",
57]
58
59[[package]]
60name = "anstream"
61version = "0.6.20"
62source = "registry+https://github.com/rust-lang/crates.io-index"
63checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192"
64dependencies = [
65 "anstyle",
66 "anstyle-parse",
67 "anstyle-query",
68 "anstyle-wincon",
69 "colorchoice",
70 "is_terminal_polyfill",
71 "utf8parse",
72]
73
74[[package]]
75name = "anstyle"
76version = "1.0.11"
77source = "registry+https://github.com/rust-lang/crates.io-index"
78checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
79
80[[package]]
81name = "anstyle-parse"
82version = "0.2.7"
83source = "registry+https://github.com/rust-lang/crates.io-index"
84checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
85dependencies = [
86 "utf8parse",
87]
88
89[[package]]
90name = "anstyle-query"
91version = "1.1.4"
92source = "registry+https://github.com/rust-lang/crates.io-index"
93checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
94dependencies = [
95 "windows-sys 0.60.2",
96]
97
98[[package]]
99name = "anstyle-wincon"
100version = "3.0.10"
101source = "registry+https://github.com/rust-lang/crates.io-index"
102checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
103dependencies = [
104 "anstyle",
105 "once_cell_polyfill",
106 "windows-sys 0.60.2",
107]
108
109[[package]]
110name = "anyhow"
111version = "1.0.99"
112source = "registry+https://github.com/rust-lang/crates.io-index"
113checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100"
114
115[[package]]
116name = "async-compression"
117version = "0.4.30"
118source = "registry+https://github.com/rust-lang/crates.io-index"
119checksum = "977eb15ea9efd848bb8a4a1a2500347ed7f0bf794edf0dc3ddcf439f43d36b23"
120dependencies = [
121 "compression-codecs",
122 "compression-core",
123 "futures-core",
124 "futures-io",
125 "pin-project-lite",
126 "tokio",
127]
128
129[[package]]
130name = "async-trait"
131version = "0.1.89"
132source = "registry+https://github.com/rust-lang/crates.io-index"
133checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
134dependencies = [
135 "proc-macro2",
136 "quote",
137 "syn",
138]
139
140[[package]]
141name = "atomic-waker"
142version = "1.1.2"
143source = "registry+https://github.com/rust-lang/crates.io-index"
144checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
145
146[[package]]
147name = "autocfg"
148version = "1.5.0"
149source = "registry+https://github.com/rust-lang/crates.io-index"
150checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
151
152[[package]]
153name = "backtrace"
154version = "0.3.75"
155source = "registry+https://github.com/rust-lang/crates.io-index"
156checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
157dependencies = [
158 "addr2line",
159 "cfg-if",
160 "libc",
161 "miniz_oxide",
162 "object",
163 "rustc-demangle",
164 "windows-targets 0.52.6",
165]
166
167[[package]]
168name = "base64"
169version = "0.22.1"
170source = "registry+https://github.com/rust-lang/crates.io-index"
171checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
172
173[[package]]
174name = "bitflags"
175version = "2.9.4"
176source = "registry+https://github.com/rust-lang/crates.io-index"
177checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394"
178
179[[package]]
180name = "block-buffer"
181version = "0.10.4"
182source = "registry+https://github.com/rust-lang/crates.io-index"
183checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
184dependencies = [
185 "generic-array",
186]
187
188[[package]]
189name = "bumpalo"
190version = "3.19.0"
191source = "registry+https://github.com/rust-lang/crates.io-index"
192checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
193
194[[package]]
195name = "byteorder"
196version = "1.5.0"
197source = "registry+https://github.com/rust-lang/crates.io-index"
198checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
199
200[[package]]
201name = "bytes"
202version = "1.10.1"
203source = "registry+https://github.com/rust-lang/crates.io-index"
204checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
205
206[[package]]
207name = "cc"
208version = "1.2.37"
209source = "registry+https://github.com/rust-lang/crates.io-index"
210checksum = "65193589c6404eb80b450d618eaf9a2cafaaafd57ecce47370519ef674a7bd44"
211dependencies = [
212 "find-msvc-tools",
213 "shlex",
214]
215
216[[package]]
217name = "cfg-if"
218version = "1.0.3"
219source = "registry+https://github.com/rust-lang/crates.io-index"
220checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
221
222[[package]]
223name = "chrono"
224version = "0.4.42"
225source = "registry+https://github.com/rust-lang/crates.io-index"
226checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
227dependencies = [
228 "iana-time-zone",
229 "js-sys",
230 "num-traits",
231 "serde",
232 "wasm-bindgen",
233 "windows-link 0.2.0",
234]
235
236[[package]]
237name = "clap"
238version = "4.5.47"
239source = "registry+https://github.com/rust-lang/crates.io-index"
240checksum = "7eac00902d9d136acd712710d71823fb8ac8004ca445a89e73a41d45aa712931"
241dependencies = [
242 "clap_builder",
243 "clap_derive",
244]
245
246[[package]]
247name = "clap_builder"
248version = "4.5.47"
249source = "registry+https://github.com/rust-lang/crates.io-index"
250checksum = "2ad9bbf750e73b5884fb8a211a9424a1906c1e156724260fdae972f31d70e1d6"
251dependencies = [
252 "anstream",
253 "anstyle",
254 "clap_lex",
255 "strsim",
256]
257
258[[package]]
259name = "clap_derive"
260version = "4.5.47"
261source = "registry+https://github.com/rust-lang/crates.io-index"
262checksum = "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c"
263dependencies = [
264 "heck",
265 "proc-macro2",
266 "quote",
267 "syn",
268]
269
270[[package]]
271name = "clap_lex"
272version = "0.7.5"
273source = "registry+https://github.com/rust-lang/crates.io-index"
274checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
275
276[[package]]
277name = "colorchoice"
278version = "1.0.4"
279source = "registry+https://github.com/rust-lang/crates.io-index"
280checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
281
282[[package]]
283name = "compression-codecs"
284version = "0.4.30"
285source = "registry+https://github.com/rust-lang/crates.io-index"
286checksum = "485abf41ac0c8047c07c87c72c8fb3eb5197f6e9d7ded615dfd1a00ae00a0f64"
287dependencies = [
288 "compression-core",
289 "flate2",
290 "memchr",
291]
292
293[[package]]
294name = "compression-core"
295version = "0.4.29"
296source = "registry+https://github.com/rust-lang/crates.io-index"
297checksum = "e47641d3deaf41fb1538ac1f54735925e275eaf3bf4d55c81b137fba797e5cbb"
298
299[[package]]
300name = "core-foundation"
301version = "0.9.4"
302source = "registry+https://github.com/rust-lang/crates.io-index"
303checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
304dependencies = [
305 "core-foundation-sys",
306 "libc",
307]
308
309[[package]]
310name = "core-foundation-sys"
311version = "0.8.7"
312source = "registry+https://github.com/rust-lang/crates.io-index"
313checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
314
315[[package]]
316name = "cpufeatures"
317version = "0.2.17"
318source = "registry+https://github.com/rust-lang/crates.io-index"
319checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
320dependencies = [
321 "libc",
322]
323
324[[package]]
325name = "crc32fast"
326version = "1.5.0"
327source = "registry+https://github.com/rust-lang/crates.io-index"
328checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
329dependencies = [
330 "cfg-if",
331]
332
333[[package]]
334name = "crypto-common"
335version = "0.1.6"
336source = "registry+https://github.com/rust-lang/crates.io-index"
337checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
338dependencies = [
339 "generic-array",
340 "typenum",
341]
342
343[[package]]
344name = "digest"
345version = "0.10.7"
346source = "registry+https://github.com/rust-lang/crates.io-index"
347checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
348dependencies = [
349 "block-buffer",
350 "crypto-common",
351 "subtle",
352]
353
354[[package]]
355name = "displaydoc"
356version = "0.2.5"
357source = "registry+https://github.com/rust-lang/crates.io-index"
358checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
359dependencies = [
360 "proc-macro2",
361 "quote",
362 "syn",
363]
364
365[[package]]
366name = "encoding_rs"
367version = "0.8.35"
368source = "registry+https://github.com/rust-lang/crates.io-index"
369checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
370dependencies = [
371 "cfg-if",
372]
373
374[[package]]
375name = "env_filter"
376version = "0.1.3"
377source = "registry+https://github.com/rust-lang/crates.io-index"
378checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0"
379dependencies = [
380 "log",
381 "regex",
382]
383
384[[package]]
385name = "env_logger"
386version = "0.11.8"
387source = "registry+https://github.com/rust-lang/crates.io-index"
388checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
389dependencies = [
390 "anstream",
391 "anstyle",
392 "env_filter",
393 "jiff",
394 "log",
395]
396
397[[package]]
398name = "equivalent"
399version = "1.0.2"
400source = "registry+https://github.com/rust-lang/crates.io-index"
401checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
402
403[[package]]
404name = "errno"
405version = "0.3.14"
406source = "registry+https://github.com/rust-lang/crates.io-index"
407checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
408dependencies = [
409 "libc",
410 "windows-sys 0.61.0",
411]
412
413[[package]]
414name = "fallible-iterator"
415version = "0.2.0"
416source = "registry+https://github.com/rust-lang/crates.io-index"
417checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
418
419[[package]]
420name = "fastrand"
421version = "2.3.0"
422source = "registry+https://github.com/rust-lang/crates.io-index"
423checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
424
425[[package]]
426name = "find-msvc-tools"
427version = "0.1.1"
428source = "registry+https://github.com/rust-lang/crates.io-index"
429checksum = "7fd99930f64d146689264c637b5af2f0233a933bef0d8570e2526bf9e083192d"
430
431[[package]]
432name = "flate2"
433version = "1.1.2"
434source = "registry+https://github.com/rust-lang/crates.io-index"
435checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
436dependencies = [
437 "crc32fast",
438 "miniz_oxide",
439]
440
441[[package]]
442name = "flume"
443version = "0.11.1"
444source = "registry+https://github.com/rust-lang/crates.io-index"
445checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
446dependencies = [
447 "futures-core",
448 "futures-sink",
449 "nanorand",
450 "spin",
451]
452
453[[package]]
454name = "fnv"
455version = "1.0.7"
456source = "registry+https://github.com/rust-lang/crates.io-index"
457checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
458
459[[package]]
460name = "foreign-types"
461version = "0.3.2"
462source = "registry+https://github.com/rust-lang/crates.io-index"
463checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
464dependencies = [
465 "foreign-types-shared",
466]
467
468[[package]]
469name = "foreign-types-shared"
470version = "0.1.1"
471source = "registry+https://github.com/rust-lang/crates.io-index"
472checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
473
474[[package]]
475name = "form_urlencoded"
476version = "1.2.2"
477source = "registry+https://github.com/rust-lang/crates.io-index"
478checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
479dependencies = [
480 "percent-encoding",
481]
482
483[[package]]
484name = "futures"
485version = "0.3.31"
486source = "registry+https://github.com/rust-lang/crates.io-index"
487checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
488dependencies = [
489 "futures-channel",
490 "futures-core",
491 "futures-executor",
492 "futures-io",
493 "futures-sink",
494 "futures-task",
495 "futures-util",
496]
497
498[[package]]
499name = "futures-channel"
500version = "0.3.31"
501source = "registry+https://github.com/rust-lang/crates.io-index"
502checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
503dependencies = [
504 "futures-core",
505 "futures-sink",
506]
507
508[[package]]
509name = "futures-core"
510version = "0.3.31"
511source = "registry+https://github.com/rust-lang/crates.io-index"
512checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
513
514[[package]]
515name = "futures-executor"
516version = "0.3.31"
517source = "registry+https://github.com/rust-lang/crates.io-index"
518checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
519dependencies = [
520 "futures-core",
521 "futures-task",
522 "futures-util",
523]
524
525[[package]]
526name = "futures-io"
527version = "0.3.31"
528source = "registry+https://github.com/rust-lang/crates.io-index"
529checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
530
531[[package]]
532name = "futures-macro"
533version = "0.3.31"
534source = "registry+https://github.com/rust-lang/crates.io-index"
535checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
536dependencies = [
537 "proc-macro2",
538 "quote",
539 "syn",
540]
541
542[[package]]
543name = "futures-sink"
544version = "0.3.31"
545source = "registry+https://github.com/rust-lang/crates.io-index"
546checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
547
548[[package]]
549name = "futures-task"
550version = "0.3.31"
551source = "registry+https://github.com/rust-lang/crates.io-index"
552checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
553
554[[package]]
555name = "futures-util"
556version = "0.3.31"
557source = "registry+https://github.com/rust-lang/crates.io-index"
558checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
559dependencies = [
560 "futures-channel",
561 "futures-core",
562 "futures-io",
563 "futures-macro",
564 "futures-sink",
565 "futures-task",
566 "memchr",
567 "pin-project-lite",
568 "pin-utils",
569 "slab",
570]
571
572[[package]]
573name = "generic-array"
574version = "0.14.7"
575source = "registry+https://github.com/rust-lang/crates.io-index"
576checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
577dependencies = [
578 "typenum",
579 "version_check",
580]
581
582[[package]]
583name = "getrandom"
584version = "0.2.16"
585source = "registry+https://github.com/rust-lang/crates.io-index"
586checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
587dependencies = [
588 "cfg-if",
589 "js-sys",
590 "libc",
591 "wasi 0.11.1+wasi-snapshot-preview1",
592 "wasm-bindgen",
593]
594
595[[package]]
596name = "getrandom"
597version = "0.3.3"
598source = "registry+https://github.com/rust-lang/crates.io-index"
599checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
600dependencies = [
601 "cfg-if",
602 "libc",
603 "r-efi",
604 "wasi 0.14.5+wasi-0.2.4",
605]
606
607[[package]]
608name = "gimli"
609version = "0.31.1"
610source = "registry+https://github.com/rust-lang/crates.io-index"
611checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
612
613[[package]]
614name = "h2"
615version = "0.4.12"
616source = "registry+https://github.com/rust-lang/crates.io-index"
617checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
618dependencies = [
619 "atomic-waker",
620 "bytes",
621 "fnv",
622 "futures-core",
623 "futures-sink",
624 "http",
625 "indexmap",
626 "slab",
627 "tokio",
628 "tokio-util",
629 "tracing",
630]
631
632[[package]]
633name = "hashbrown"
634version = "0.15.5"
635source = "registry+https://github.com/rust-lang/crates.io-index"
636checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
637
638[[package]]
639name = "heck"
640version = "0.5.0"
641source = "registry+https://github.com/rust-lang/crates.io-index"
642checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
643
644[[package]]
645name = "hmac"
646version = "0.12.1"
647source = "registry+https://github.com/rust-lang/crates.io-index"
648checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
649dependencies = [
650 "digest",
651]
652
653[[package]]
654name = "http"
655version = "1.3.1"
656source = "registry+https://github.com/rust-lang/crates.io-index"
657checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
658dependencies = [
659 "bytes",
660 "fnv",
661 "itoa",
662]
663
664[[package]]
665name = "http-body"
666version = "1.0.1"
667source = "registry+https://github.com/rust-lang/crates.io-index"
668checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
669dependencies = [
670 "bytes",
671 "http",
672]
673
674[[package]]
675name = "http-body-util"
676version = "0.1.3"
677source = "registry+https://github.com/rust-lang/crates.io-index"
678checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
679dependencies = [
680 "bytes",
681 "futures-core",
682 "http",
683 "http-body",
684 "pin-project-lite",
685]
686
687[[package]]
688name = "httparse"
689version = "1.10.1"
690source = "registry+https://github.com/rust-lang/crates.io-index"
691checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
692
693[[package]]
694name = "hyper"
695version = "1.7.0"
696source = "registry+https://github.com/rust-lang/crates.io-index"
697checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"
698dependencies = [
699 "atomic-waker",
700 "bytes",
701 "futures-channel",
702 "futures-core",
703 "h2",
704 "http",
705 "http-body",
706 "httparse",
707 "itoa",
708 "pin-project-lite",
709 "pin-utils",
710 "smallvec",
711 "tokio",
712 "want",
713]
714
715[[package]]
716name = "hyper-rustls"
717version = "0.27.7"
718source = "registry+https://github.com/rust-lang/crates.io-index"
719checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
720dependencies = [
721 "http",
722 "hyper",
723 "hyper-util",
724 "rustls",
725 "rustls-pki-types",
726 "tokio",
727 "tokio-rustls",
728 "tower-service",
729]
730
731[[package]]
732name = "hyper-tls"
733version = "0.6.0"
734source = "registry+https://github.com/rust-lang/crates.io-index"
735checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
736dependencies = [
737 "bytes",
738 "http-body-util",
739 "hyper",
740 "hyper-util",
741 "native-tls",
742 "tokio",
743 "tokio-native-tls",
744 "tower-service",
745]
746
747[[package]]
748name = "hyper-util"
749version = "0.1.16"
750source = "registry+https://github.com/rust-lang/crates.io-index"
751checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e"
752dependencies = [
753 "base64",
754 "bytes",
755 "futures-channel",
756 "futures-core",
757 "futures-util",
758 "http",
759 "http-body",
760 "hyper",
761 "ipnet",
762 "libc",
763 "percent-encoding",
764 "pin-project-lite",
765 "socket2 0.6.0",
766 "system-configuration",
767 "tokio",
768 "tower-service",
769 "tracing",
770 "windows-registry",
771]
772
773[[package]]
774name = "iana-time-zone"
775version = "0.1.63"
776source = "registry+https://github.com/rust-lang/crates.io-index"
777checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
778dependencies = [
779 "android_system_properties",
780 "core-foundation-sys",
781 "iana-time-zone-haiku",
782 "js-sys",
783 "log",
784 "wasm-bindgen",
785 "windows-core",
786]
787
788[[package]]
789name = "iana-time-zone-haiku"
790version = "0.1.2"
791source = "registry+https://github.com/rust-lang/crates.io-index"
792checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
793dependencies = [
794 "cc",
795]
796
797[[package]]
798name = "icu_collections"
799version = "2.0.0"
800source = "registry+https://github.com/rust-lang/crates.io-index"
801checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
802dependencies = [
803 "displaydoc",
804 "potential_utf",
805 "yoke",
806 "zerofrom",
807 "zerovec",
808]
809
810[[package]]
811name = "icu_locale_core"
812version = "2.0.0"
813source = "registry+https://github.com/rust-lang/crates.io-index"
814checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
815dependencies = [
816 "displaydoc",
817 "litemap",
818 "tinystr",
819 "writeable",
820 "zerovec",
821]
822
823[[package]]
824name = "icu_normalizer"
825version = "2.0.0"
826source = "registry+https://github.com/rust-lang/crates.io-index"
827checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
828dependencies = [
829 "displaydoc",
830 "icu_collections",
831 "icu_normalizer_data",
832 "icu_properties",
833 "icu_provider",
834 "smallvec",
835 "zerovec",
836]
837
838[[package]]
839name = "icu_normalizer_data"
840version = "2.0.0"
841source = "registry+https://github.com/rust-lang/crates.io-index"
842checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
843
844[[package]]
845name = "icu_properties"
846version = "2.0.1"
847source = "registry+https://github.com/rust-lang/crates.io-index"
848checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
849dependencies = [
850 "displaydoc",
851 "icu_collections",
852 "icu_locale_core",
853 "icu_properties_data",
854 "icu_provider",
855 "potential_utf",
856 "zerotrie",
857 "zerovec",
858]
859
860[[package]]
861name = "icu_properties_data"
862version = "2.0.1"
863source = "registry+https://github.com/rust-lang/crates.io-index"
864checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
865
866[[package]]
867name = "icu_provider"
868version = "2.0.0"
869source = "registry+https://github.com/rust-lang/crates.io-index"
870checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
871dependencies = [
872 "displaydoc",
873 "icu_locale_core",
874 "stable_deref_trait",
875 "tinystr",
876 "writeable",
877 "yoke",
878 "zerofrom",
879 "zerotrie",
880 "zerovec",
881]
882
883[[package]]
884name = "idna"
885version = "1.1.0"
886source = "registry+https://github.com/rust-lang/crates.io-index"
887checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
888dependencies = [
889 "idna_adapter",
890 "smallvec",
891 "utf8_iter",
892]
893
894[[package]]
895name = "idna_adapter"
896version = "1.2.1"
897source = "registry+https://github.com/rust-lang/crates.io-index"
898checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
899dependencies = [
900 "icu_normalizer",
901 "icu_properties",
902]
903
904[[package]]
905name = "indexmap"
906version = "2.11.1"
907source = "registry+https://github.com/rust-lang/crates.io-index"
908checksum = "206a8042aec68fa4a62e8d3f7aa4ceb508177d9324faf261e1959e495b7a1921"
909dependencies = [
910 "equivalent",
911 "hashbrown",
912]
913
914[[package]]
915name = "io-uring"
916version = "0.7.10"
917source = "registry+https://github.com/rust-lang/crates.io-index"
918checksum = "046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b"
919dependencies = [
920 "bitflags",
921 "cfg-if",
922 "libc",
923]
924
925[[package]]
926name = "ipnet"
927version = "2.11.0"
928source = "registry+https://github.com/rust-lang/crates.io-index"
929checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
930
931[[package]]
932name = "iri-string"
933version = "0.7.8"
934source = "registry+https://github.com/rust-lang/crates.io-index"
935checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
936dependencies = [
937 "memchr",
938 "serde",
939]
940
941[[package]]
942name = "is_terminal_polyfill"
943version = "1.70.1"
944source = "registry+https://github.com/rust-lang/crates.io-index"
945checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
946
947[[package]]
948name = "itoa"
949version = "1.0.15"
950source = "registry+https://github.com/rust-lang/crates.io-index"
951checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
952
953[[package]]
954name = "jiff"
955version = "0.2.15"
956source = "registry+https://github.com/rust-lang/crates.io-index"
957checksum = "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49"
958dependencies = [
959 "jiff-static",
960 "log",
961 "portable-atomic",
962 "portable-atomic-util",
963 "serde",
964]
965
966[[package]]
967name = "jiff-static"
968version = "0.2.15"
969source = "registry+https://github.com/rust-lang/crates.io-index"
970checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4"
971dependencies = [
972 "proc-macro2",
973 "quote",
974 "syn",
975]
976
977[[package]]
978name = "js-sys"
979version = "0.3.78"
980source = "registry+https://github.com/rust-lang/crates.io-index"
981checksum = "0c0b063578492ceec17683ef2f8c5e89121fbd0b172cbc280635ab7567db2738"
982dependencies = [
983 "once_cell",
984 "wasm-bindgen",
985]
986
987[[package]]
988name = "libc"
989version = "0.2.175"
990source = "registry+https://github.com/rust-lang/crates.io-index"
991checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
992
993[[package]]
994name = "libredox"
995version = "0.1.9"
996source = "registry+https://github.com/rust-lang/crates.io-index"
997checksum = "391290121bad3d37fbddad76d8f5d1c1c314cfc646d143d7e07a3086ddff0ce3"
998dependencies = [
999 "bitflags",
1000 "libc",
1001 "redox_syscall",
1002]
1003
1004[[package]]
1005name = "linux-raw-sys"
1006version = "0.11.0"
1007source = "registry+https://github.com/rust-lang/crates.io-index"
1008checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1009
1010[[package]]
1011name = "litemap"
1012version = "0.8.0"
1013source = "registry+https://github.com/rust-lang/crates.io-index"
1014checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
1015
1016[[package]]
1017name = "lock_api"
1018version = "0.4.13"
1019source = "registry+https://github.com/rust-lang/crates.io-index"
1020checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
1021dependencies = [
1022 "autocfg",
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 = "md-5"
1034version = "0.10.6"
1035source = "registry+https://github.com/rust-lang/crates.io-index"
1036checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
1037dependencies = [
1038 "cfg-if",
1039 "digest",
1040]
1041
1042[[package]]
1043name = "memchr"
1044version = "2.7.5"
1045source = "registry+https://github.com/rust-lang/crates.io-index"
1046checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
1047
1048[[package]]
1049name = "mime"
1050version = "0.3.17"
1051source = "registry+https://github.com/rust-lang/crates.io-index"
1052checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1053
1054[[package]]
1055name = "miniz_oxide"
1056version = "0.8.9"
1057source = "registry+https://github.com/rust-lang/crates.io-index"
1058checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1059dependencies = [
1060 "adler2",
1061]
1062
1063[[package]]
1064name = "mio"
1065version = "1.0.4"
1066source = "registry+https://github.com/rust-lang/crates.io-index"
1067checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
1068dependencies = [
1069 "libc",
1070 "wasi 0.11.1+wasi-snapshot-preview1",
1071 "windows-sys 0.59.0",
1072]
1073
1074[[package]]
1075name = "nanorand"
1076version = "0.7.0"
1077source = "registry+https://github.com/rust-lang/crates.io-index"
1078checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3"
1079dependencies = [
1080 "getrandom 0.2.16",
1081]
1082
1083[[package]]
1084name = "native-tls"
1085version = "0.2.14"
1086source = "registry+https://github.com/rust-lang/crates.io-index"
1087checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
1088dependencies = [
1089 "libc",
1090 "log",
1091 "openssl",
1092 "openssl-probe",
1093 "openssl-sys",
1094 "schannel",
1095 "security-framework",
1096 "security-framework-sys",
1097 "tempfile",
1098]
1099
1100[[package]]
1101name = "num-traits"
1102version = "0.2.19"
1103source = "registry+https://github.com/rust-lang/crates.io-index"
1104checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1105dependencies = [
1106 "autocfg",
1107]
1108
1109[[package]]
1110name = "object"
1111version = "0.36.7"
1112source = "registry+https://github.com/rust-lang/crates.io-index"
1113checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
1114dependencies = [
1115 "memchr",
1116]
1117
1118[[package]]
1119name = "once_cell"
1120version = "1.21.3"
1121source = "registry+https://github.com/rust-lang/crates.io-index"
1122checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1123
1124[[package]]
1125name = "once_cell_polyfill"
1126version = "1.70.1"
1127source = "registry+https://github.com/rust-lang/crates.io-index"
1128checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
1129
1130[[package]]
1131name = "openssl"
1132version = "0.10.73"
1133source = "registry+https://github.com/rust-lang/crates.io-index"
1134checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8"
1135dependencies = [
1136 "bitflags",
1137 "cfg-if",
1138 "foreign-types",
1139 "libc",
1140 "once_cell",
1141 "openssl-macros",
1142 "openssl-sys",
1143]
1144
1145[[package]]
1146name = "openssl-macros"
1147version = "0.1.1"
1148source = "registry+https://github.com/rust-lang/crates.io-index"
1149checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1150dependencies = [
1151 "proc-macro2",
1152 "quote",
1153 "syn",
1154]
1155
1156[[package]]
1157name = "openssl-probe"
1158version = "0.1.6"
1159source = "registry+https://github.com/rust-lang/crates.io-index"
1160checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1161
1162[[package]]
1163name = "openssl-sys"
1164version = "0.9.109"
1165source = "registry+https://github.com/rust-lang/crates.io-index"
1166checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571"
1167dependencies = [
1168 "cc",
1169 "libc",
1170 "pkg-config",
1171 "vcpkg",
1172]
1173
1174[[package]]
1175name = "parking_lot"
1176version = "0.12.4"
1177source = "registry+https://github.com/rust-lang/crates.io-index"
1178checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
1179dependencies = [
1180 "lock_api",
1181 "parking_lot_core",
1182]
1183
1184[[package]]
1185name = "parking_lot_core"
1186version = "0.9.11"
1187source = "registry+https://github.com/rust-lang/crates.io-index"
1188checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
1189dependencies = [
1190 "cfg-if",
1191 "libc",
1192 "redox_syscall",
1193 "smallvec",
1194 "windows-targets 0.52.6",
1195]
1196
1197[[package]]
1198name = "percent-encoding"
1199version = "2.3.2"
1200source = "registry+https://github.com/rust-lang/crates.io-index"
1201checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1202
1203[[package]]
1204name = "phf"
1205version = "0.11.3"
1206source = "registry+https://github.com/rust-lang/crates.io-index"
1207checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
1208dependencies = [
1209 "phf_shared",
1210]
1211
1212[[package]]
1213name = "phf_shared"
1214version = "0.11.3"
1215source = "registry+https://github.com/rust-lang/crates.io-index"
1216checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1217dependencies = [
1218 "siphasher",
1219]
1220
1221[[package]]
1222name = "pin-project-lite"
1223version = "0.2.16"
1224source = "registry+https://github.com/rust-lang/crates.io-index"
1225checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1226
1227[[package]]
1228name = "pin-utils"
1229version = "0.1.0"
1230source = "registry+https://github.com/rust-lang/crates.io-index"
1231checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1232
1233[[package]]
1234name = "pkg-config"
1235version = "0.3.32"
1236source = "registry+https://github.com/rust-lang/crates.io-index"
1237checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1238
1239[[package]]
1240name = "portable-atomic"
1241version = "1.11.1"
1242source = "registry+https://github.com/rust-lang/crates.io-index"
1243checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
1244
1245[[package]]
1246name = "portable-atomic-util"
1247version = "0.2.4"
1248source = "registry+https://github.com/rust-lang/crates.io-index"
1249checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
1250dependencies = [
1251 "portable-atomic",
1252]
1253
1254[[package]]
1255name = "postgres-protocol"
1256version = "0.6.8"
1257source = "registry+https://github.com/rust-lang/crates.io-index"
1258checksum = "76ff0abab4a9b844b93ef7b81f1efc0a366062aaef2cd702c76256b5dc075c54"
1259dependencies = [
1260 "base64",
1261 "byteorder",
1262 "bytes",
1263 "fallible-iterator",
1264 "hmac",
1265 "md-5",
1266 "memchr",
1267 "rand",
1268 "sha2",
1269 "stringprep",
1270]
1271
1272[[package]]
1273name = "postgres-types"
1274version = "0.2.9"
1275source = "registry+https://github.com/rust-lang/crates.io-index"
1276checksum = "613283563cd90e1dfc3518d548caee47e0e725455ed619881f5cf21f36de4b48"
1277dependencies = [
1278 "bytes",
1279 "chrono",
1280 "fallible-iterator",
1281 "postgres-protocol",
1282 "serde",
1283 "serde_json",
1284]
1285
1286[[package]]
1287name = "potential_utf"
1288version = "0.1.3"
1289source = "registry+https://github.com/rust-lang/crates.io-index"
1290checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a"
1291dependencies = [
1292 "zerovec",
1293]
1294
1295[[package]]
1296name = "ppv-lite86"
1297version = "0.2.21"
1298source = "registry+https://github.com/rust-lang/crates.io-index"
1299checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1300dependencies = [
1301 "zerocopy",
1302]
1303
1304[[package]]
1305name = "proc-macro2"
1306version = "1.0.101"
1307source = "registry+https://github.com/rust-lang/crates.io-index"
1308checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
1309dependencies = [
1310 "unicode-ident",
1311]
1312
1313[[package]]
1314name = "quote"
1315version = "1.0.40"
1316source = "registry+https://github.com/rust-lang/crates.io-index"
1317checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
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 0.3.3",
1355]
1356
1357[[package]]
1358name = "redox_syscall"
1359version = "0.5.17"
1360source = "registry+https://github.com/rust-lang/crates.io-index"
1361checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77"
1362dependencies = [
1363 "bitflags",
1364]
1365
1366[[package]]
1367name = "regex"
1368version = "1.11.2"
1369source = "registry+https://github.com/rust-lang/crates.io-index"
1370checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912"
1371dependencies = [
1372 "aho-corasick",
1373 "memchr",
1374 "regex-automata",
1375 "regex-syntax",
1376]
1377
1378[[package]]
1379name = "regex-automata"
1380version = "0.4.10"
1381source = "registry+https://github.com/rust-lang/crates.io-index"
1382checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6"
1383dependencies = [
1384 "aho-corasick",
1385 "memchr",
1386 "regex-syntax",
1387]
1388
1389[[package]]
1390name = "regex-syntax"
1391version = "0.8.6"
1392source = "registry+https://github.com/rust-lang/crates.io-index"
1393checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001"
1394
1395[[package]]
1396name = "reqwest"
1397version = "0.12.23"
1398source = "registry+https://github.com/rust-lang/crates.io-index"
1399checksum = "d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb"
1400dependencies = [
1401 "base64",
1402 "bytes",
1403 "encoding_rs",
1404 "futures-core",
1405 "futures-util",
1406 "h2",
1407 "http",
1408 "http-body",
1409 "http-body-util",
1410 "hyper",
1411 "hyper-rustls",
1412 "hyper-tls",
1413 "hyper-util",
1414 "js-sys",
1415 "log",
1416 "mime",
1417 "native-tls",
1418 "percent-encoding",
1419 "pin-project-lite",
1420 "rustls-pki-types",
1421 "serde",
1422 "serde_json",
1423 "serde_urlencoded",
1424 "sync_wrapper",
1425 "tokio",
1426 "tokio-native-tls",
1427 "tokio-util",
1428 "tower",
1429 "tower-http",
1430 "tower-service",
1431 "url",
1432 "wasm-bindgen",
1433 "wasm-bindgen-futures",
1434 "wasm-streams",
1435 "web-sys",
1436]
1437
1438[[package]]
1439name = "ring"
1440version = "0.17.14"
1441source = "registry+https://github.com/rust-lang/crates.io-index"
1442checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1443dependencies = [
1444 "cc",
1445 "cfg-if",
1446 "getrandom 0.2.16",
1447 "libc",
1448 "untrusted",
1449 "windows-sys 0.52.0",
1450]
1451
1452[[package]]
1453name = "rustc-demangle"
1454version = "0.1.26"
1455source = "registry+https://github.com/rust-lang/crates.io-index"
1456checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
1457
1458[[package]]
1459name = "rustix"
1460version = "1.1.2"
1461source = "registry+https://github.com/rust-lang/crates.io-index"
1462checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
1463dependencies = [
1464 "bitflags",
1465 "errno",
1466 "libc",
1467 "linux-raw-sys",
1468 "windows-sys 0.61.0",
1469]
1470
1471[[package]]
1472name = "rustls"
1473version = "0.23.31"
1474source = "registry+https://github.com/rust-lang/crates.io-index"
1475checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc"
1476dependencies = [
1477 "once_cell",
1478 "rustls-pki-types",
1479 "rustls-webpki",
1480 "subtle",
1481 "zeroize",
1482]
1483
1484[[package]]
1485name = "rustls-pki-types"
1486version = "1.12.0"
1487source = "registry+https://github.com/rust-lang/crates.io-index"
1488checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
1489dependencies = [
1490 "zeroize",
1491]
1492
1493[[package]]
1494name = "rustls-webpki"
1495version = "0.103.5"
1496source = "registry+https://github.com/rust-lang/crates.io-index"
1497checksum = "b5a37813727b78798e53c2bec3f5e8fe12a6d6f8389bf9ca7802add4c9905ad8"
1498dependencies = [
1499 "ring",
1500 "rustls-pki-types",
1501 "untrusted",
1502]
1503
1504[[package]]
1505name = "rustversion"
1506version = "1.0.22"
1507source = "registry+https://github.com/rust-lang/crates.io-index"
1508checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1509
1510[[package]]
1511name = "ryu"
1512version = "1.0.20"
1513source = "registry+https://github.com/rust-lang/crates.io-index"
1514checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1515
1516[[package]]
1517name = "schannel"
1518version = "0.1.28"
1519source = "registry+https://github.com/rust-lang/crates.io-index"
1520checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
1521dependencies = [
1522 "windows-sys 0.61.0",
1523]
1524
1525[[package]]
1526name = "scopeguard"
1527version = "1.2.0"
1528source = "registry+https://github.com/rust-lang/crates.io-index"
1529checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1530
1531[[package]]
1532name = "security-framework"
1533version = "2.11.1"
1534source = "registry+https://github.com/rust-lang/crates.io-index"
1535checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
1536dependencies = [
1537 "bitflags",
1538 "core-foundation",
1539 "core-foundation-sys",
1540 "libc",
1541 "security-framework-sys",
1542]
1543
1544[[package]]
1545name = "security-framework-sys"
1546version = "2.15.0"
1547source = "registry+https://github.com/rust-lang/crates.io-index"
1548checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
1549dependencies = [
1550 "core-foundation-sys",
1551 "libc",
1552]
1553
1554[[package]]
1555name = "serde"
1556version = "1.0.219"
1557source = "registry+https://github.com/rust-lang/crates.io-index"
1558checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
1559dependencies = [
1560 "serde_derive",
1561]
1562
1563[[package]]
1564name = "serde_derive"
1565version = "1.0.219"
1566source = "registry+https://github.com/rust-lang/crates.io-index"
1567checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
1568dependencies = [
1569 "proc-macro2",
1570 "quote",
1571 "syn",
1572]
1573
1574[[package]]
1575name = "serde_json"
1576version = "1.0.143"
1577source = "registry+https://github.com/rust-lang/crates.io-index"
1578checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a"
1579dependencies = [
1580 "itoa",
1581 "memchr",
1582 "ryu",
1583 "serde",
1584]
1585
1586[[package]]
1587name = "serde_urlencoded"
1588version = "0.7.1"
1589source = "registry+https://github.com/rust-lang/crates.io-index"
1590checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1591dependencies = [
1592 "form_urlencoded",
1593 "itoa",
1594 "ryu",
1595 "serde",
1596]
1597
1598[[package]]
1599name = "sha2"
1600version = "0.10.9"
1601source = "registry+https://github.com/rust-lang/crates.io-index"
1602checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1603dependencies = [
1604 "cfg-if",
1605 "cpufeatures",
1606 "digest",
1607]
1608
1609[[package]]
1610name = "shlex"
1611version = "1.3.0"
1612source = "registry+https://github.com/rust-lang/crates.io-index"
1613checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1614
1615[[package]]
1616name = "signal-hook-registry"
1617version = "1.4.6"
1618source = "registry+https://github.com/rust-lang/crates.io-index"
1619checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b"
1620dependencies = [
1621 "libc",
1622]
1623
1624[[package]]
1625name = "siphasher"
1626version = "1.0.1"
1627source = "registry+https://github.com/rust-lang/crates.io-index"
1628checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
1629
1630[[package]]
1631name = "slab"
1632version = "0.4.11"
1633source = "registry+https://github.com/rust-lang/crates.io-index"
1634checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
1635
1636[[package]]
1637name = "smallvec"
1638version = "1.15.1"
1639source = "registry+https://github.com/rust-lang/crates.io-index"
1640checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1641
1642[[package]]
1643name = "socket2"
1644version = "0.5.10"
1645source = "registry+https://github.com/rust-lang/crates.io-index"
1646checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
1647dependencies = [
1648 "libc",
1649 "windows-sys 0.52.0",
1650]
1651
1652[[package]]
1653name = "socket2"
1654version = "0.6.0"
1655source = "registry+https://github.com/rust-lang/crates.io-index"
1656checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
1657dependencies = [
1658 "libc",
1659 "windows-sys 0.59.0",
1660]
1661
1662[[package]]
1663name = "spin"
1664version = "0.9.8"
1665source = "registry+https://github.com/rust-lang/crates.io-index"
1666checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
1667dependencies = [
1668 "lock_api",
1669]
1670
1671[[package]]
1672name = "stable_deref_trait"
1673version = "1.2.0"
1674source = "registry+https://github.com/rust-lang/crates.io-index"
1675checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
1676
1677[[package]]
1678name = "stringprep"
1679version = "0.1.5"
1680source = "registry+https://github.com/rust-lang/crates.io-index"
1681checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
1682dependencies = [
1683 "unicode-bidi",
1684 "unicode-normalization",
1685 "unicode-properties",
1686]
1687
1688[[package]]
1689name = "strsim"
1690version = "0.11.1"
1691source = "registry+https://github.com/rust-lang/crates.io-index"
1692checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1693
1694[[package]]
1695name = "subtle"
1696version = "2.6.1"
1697source = "registry+https://github.com/rust-lang/crates.io-index"
1698checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1699
1700[[package]]
1701name = "syn"
1702version = "2.0.106"
1703source = "registry+https://github.com/rust-lang/crates.io-index"
1704checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
1705dependencies = [
1706 "proc-macro2",
1707 "quote",
1708 "unicode-ident",
1709]
1710
1711[[package]]
1712name = "sync_wrapper"
1713version = "1.0.2"
1714source = "registry+https://github.com/rust-lang/crates.io-index"
1715checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1716dependencies = [
1717 "futures-core",
1718]
1719
1720[[package]]
1721name = "synstructure"
1722version = "0.13.2"
1723source = "registry+https://github.com/rust-lang/crates.io-index"
1724checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1725dependencies = [
1726 "proc-macro2",
1727 "quote",
1728 "syn",
1729]
1730
1731[[package]]
1732name = "system-configuration"
1733version = "0.6.1"
1734source = "registry+https://github.com/rust-lang/crates.io-index"
1735checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
1736dependencies = [
1737 "bitflags",
1738 "core-foundation",
1739 "system-configuration-sys",
1740]
1741
1742[[package]]
1743name = "system-configuration-sys"
1744version = "0.6.0"
1745source = "registry+https://github.com/rust-lang/crates.io-index"
1746checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
1747dependencies = [
1748 "core-foundation-sys",
1749 "libc",
1750]
1751
1752[[package]]
1753name = "tempfile"
1754version = "3.22.0"
1755source = "registry+https://github.com/rust-lang/crates.io-index"
1756checksum = "84fa4d11fadde498443cca10fd3ac23c951f0dc59e080e9f4b93d4df4e4eea53"
1757dependencies = [
1758 "fastrand",
1759 "getrandom 0.3.3",
1760 "once_cell",
1761 "rustix",
1762 "windows-sys 0.61.0",
1763]
1764
1765[[package]]
1766name = "thiserror"
1767version = "2.0.16"
1768source = "registry+https://github.com/rust-lang/crates.io-index"
1769checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0"
1770dependencies = [
1771 "thiserror-impl",
1772]
1773
1774[[package]]
1775name = "thiserror-impl"
1776version = "2.0.16"
1777source = "registry+https://github.com/rust-lang/crates.io-index"
1778checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960"
1779dependencies = [
1780 "proc-macro2",
1781 "quote",
1782 "syn",
1783]
1784
1785[[package]]
1786name = "tinystr"
1787version = "0.8.1"
1788source = "registry+https://github.com/rust-lang/crates.io-index"
1789checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
1790dependencies = [
1791 "displaydoc",
1792 "zerovec",
1793]
1794
1795[[package]]
1796name = "tinyvec"
1797version = "1.10.0"
1798source = "registry+https://github.com/rust-lang/crates.io-index"
1799checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
1800dependencies = [
1801 "tinyvec_macros",
1802]
1803
1804[[package]]
1805name = "tinyvec_macros"
1806version = "0.1.1"
1807source = "registry+https://github.com/rust-lang/crates.io-index"
1808checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1809
1810[[package]]
1811name = "tokio"
1812version = "1.47.1"
1813source = "registry+https://github.com/rust-lang/crates.io-index"
1814checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038"
1815dependencies = [
1816 "backtrace",
1817 "bytes",
1818 "io-uring",
1819 "libc",
1820 "mio",
1821 "parking_lot",
1822 "pin-project-lite",
1823 "signal-hook-registry",
1824 "slab",
1825 "socket2 0.6.0",
1826 "tokio-macros",
1827 "windows-sys 0.59.0",
1828]
1829
1830[[package]]
1831name = "tokio-macros"
1832version = "2.5.0"
1833source = "registry+https://github.com/rust-lang/crates.io-index"
1834checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
1835dependencies = [
1836 "proc-macro2",
1837 "quote",
1838 "syn",
1839]
1840
1841[[package]]
1842name = "tokio-native-tls"
1843version = "0.3.1"
1844source = "registry+https://github.com/rust-lang/crates.io-index"
1845checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
1846dependencies = [
1847 "native-tls",
1848 "tokio",
1849]
1850
1851[[package]]
1852name = "tokio-postgres"
1853version = "0.7.13"
1854source = "registry+https://github.com/rust-lang/crates.io-index"
1855checksum = "6c95d533c83082bb6490e0189acaa0bbeef9084e60471b696ca6988cd0541fb0"
1856dependencies = [
1857 "async-trait",
1858 "byteorder",
1859 "bytes",
1860 "fallible-iterator",
1861 "futures-channel",
1862 "futures-util",
1863 "log",
1864 "parking_lot",
1865 "percent-encoding",
1866 "phf",
1867 "pin-project-lite",
1868 "postgres-protocol",
1869 "postgres-types",
1870 "rand",
1871 "socket2 0.5.10",
1872 "tokio",
1873 "tokio-util",
1874 "whoami",
1875]
1876
1877[[package]]
1878name = "tokio-rustls"
1879version = "0.26.2"
1880source = "registry+https://github.com/rust-lang/crates.io-index"
1881checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
1882dependencies = [
1883 "rustls",
1884 "tokio",
1885]
1886
1887[[package]]
1888name = "tokio-util"
1889version = "0.7.16"
1890source = "registry+https://github.com/rust-lang/crates.io-index"
1891checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
1892dependencies = [
1893 "bytes",
1894 "futures-core",
1895 "futures-sink",
1896 "pin-project-lite",
1897 "tokio",
1898]
1899
1900[[package]]
1901name = "tower"
1902version = "0.5.2"
1903source = "registry+https://github.com/rust-lang/crates.io-index"
1904checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
1905dependencies = [
1906 "futures-core",
1907 "futures-util",
1908 "pin-project-lite",
1909 "sync_wrapper",
1910 "tokio",
1911 "tower-layer",
1912 "tower-service",
1913]
1914
1915[[package]]
1916name = "tower-http"
1917version = "0.6.6"
1918source = "registry+https://github.com/rust-lang/crates.io-index"
1919checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
1920dependencies = [
1921 "bitflags",
1922 "bytes",
1923 "futures-util",
1924 "http",
1925 "http-body",
1926 "iri-string",
1927 "pin-project-lite",
1928 "tower",
1929 "tower-layer",
1930 "tower-service",
1931]
1932
1933[[package]]
1934name = "tower-layer"
1935version = "0.3.3"
1936source = "registry+https://github.com/rust-lang/crates.io-index"
1937checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1938
1939[[package]]
1940name = "tower-service"
1941version = "0.3.3"
1942source = "registry+https://github.com/rust-lang/crates.io-index"
1943checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1944
1945[[package]]
1946name = "tracing"
1947version = "0.1.41"
1948source = "registry+https://github.com/rust-lang/crates.io-index"
1949checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
1950dependencies = [
1951 "pin-project-lite",
1952 "tracing-core",
1953]
1954
1955[[package]]
1956name = "tracing-core"
1957version = "0.1.34"
1958source = "registry+https://github.com/rust-lang/crates.io-index"
1959checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
1960dependencies = [
1961 "once_cell",
1962]
1963
1964[[package]]
1965name = "try-lock"
1966version = "0.2.5"
1967source = "registry+https://github.com/rust-lang/crates.io-index"
1968checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1969
1970[[package]]
1971name = "typenum"
1972version = "1.18.0"
1973source = "registry+https://github.com/rust-lang/crates.io-index"
1974checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
1975
1976[[package]]
1977name = "unicode-bidi"
1978version = "0.3.18"
1979source = "registry+https://github.com/rust-lang/crates.io-index"
1980checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
1981
1982[[package]]
1983name = "unicode-ident"
1984version = "1.0.19"
1985source = "registry+https://github.com/rust-lang/crates.io-index"
1986checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d"
1987
1988[[package]]
1989name = "unicode-normalization"
1990version = "0.1.24"
1991source = "registry+https://github.com/rust-lang/crates.io-index"
1992checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
1993dependencies = [
1994 "tinyvec",
1995]
1996
1997[[package]]
1998name = "unicode-properties"
1999version = "0.1.3"
2000source = "registry+https://github.com/rust-lang/crates.io-index"
2001checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0"
2002
2003[[package]]
2004name = "untrusted"
2005version = "0.9.0"
2006source = "registry+https://github.com/rust-lang/crates.io-index"
2007checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2008
2009[[package]]
2010name = "url"
2011version = "2.5.7"
2012source = "registry+https://github.com/rust-lang/crates.io-index"
2013checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
2014dependencies = [
2015 "form_urlencoded",
2016 "idna",
2017 "percent-encoding",
2018 "serde",
2019]
2020
2021[[package]]
2022name = "utf8_iter"
2023version = "1.0.4"
2024source = "registry+https://github.com/rust-lang/crates.io-index"
2025checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2026
2027[[package]]
2028name = "utf8parse"
2029version = "0.2.2"
2030source = "registry+https://github.com/rust-lang/crates.io-index"
2031checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2032
2033[[package]]
2034name = "vcpkg"
2035version = "0.2.15"
2036source = "registry+https://github.com/rust-lang/crates.io-index"
2037checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2038
2039[[package]]
2040name = "version_check"
2041version = "0.9.5"
2042source = "registry+https://github.com/rust-lang/crates.io-index"
2043checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2044
2045[[package]]
2046name = "want"
2047version = "0.3.1"
2048source = "registry+https://github.com/rust-lang/crates.io-index"
2049checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2050dependencies = [
2051 "try-lock",
2052]
2053
2054[[package]]
2055name = "wasi"
2056version = "0.11.1+wasi-snapshot-preview1"
2057source = "registry+https://github.com/rust-lang/crates.io-index"
2058checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2059
2060[[package]]
2061name = "wasi"
2062version = "0.14.5+wasi-0.2.4"
2063source = "registry+https://github.com/rust-lang/crates.io-index"
2064checksum = "a4494f6290a82f5fe584817a676a34b9d6763e8d9d18204009fb31dceca98fd4"
2065dependencies = [
2066 "wasip2",
2067]
2068
2069[[package]]
2070name = "wasip2"
2071version = "1.0.0+wasi-0.2.4"
2072source = "registry+https://github.com/rust-lang/crates.io-index"
2073checksum = "03fa2761397e5bd52002cd7e73110c71af2109aca4e521a9f40473fe685b0a24"
2074dependencies = [
2075 "wit-bindgen",
2076]
2077
2078[[package]]
2079name = "wasite"
2080version = "0.1.0"
2081source = "registry+https://github.com/rust-lang/crates.io-index"
2082checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
2083
2084[[package]]
2085name = "wasm-bindgen"
2086version = "0.2.101"
2087source = "registry+https://github.com/rust-lang/crates.io-index"
2088checksum = "7e14915cadd45b529bb8d1f343c4ed0ac1de926144b746e2710f9cd05df6603b"
2089dependencies = [
2090 "cfg-if",
2091 "once_cell",
2092 "rustversion",
2093 "wasm-bindgen-macro",
2094 "wasm-bindgen-shared",
2095]
2096
2097[[package]]
2098name = "wasm-bindgen-backend"
2099version = "0.2.101"
2100source = "registry+https://github.com/rust-lang/crates.io-index"
2101checksum = "e28d1ba982ca7923fd01448d5c30c6864d0a14109560296a162f80f305fb93bb"
2102dependencies = [
2103 "bumpalo",
2104 "log",
2105 "proc-macro2",
2106 "quote",
2107 "syn",
2108 "wasm-bindgen-shared",
2109]
2110
2111[[package]]
2112name = "wasm-bindgen-futures"
2113version = "0.4.51"
2114source = "registry+https://github.com/rust-lang/crates.io-index"
2115checksum = "0ca85039a9b469b38336411d6d6ced91f3fc87109a2a27b0c197663f5144dffe"
2116dependencies = [
2117 "cfg-if",
2118 "js-sys",
2119 "once_cell",
2120 "wasm-bindgen",
2121 "web-sys",
2122]
2123
2124[[package]]
2125name = "wasm-bindgen-macro"
2126version = "0.2.101"
2127source = "registry+https://github.com/rust-lang/crates.io-index"
2128checksum = "7c3d463ae3eff775b0c45df9da45d68837702ac35af998361e2c84e7c5ec1b0d"
2129dependencies = [
2130 "quote",
2131 "wasm-bindgen-macro-support",
2132]
2133
2134[[package]]
2135name = "wasm-bindgen-macro-support"
2136version = "0.2.101"
2137source = "registry+https://github.com/rust-lang/crates.io-index"
2138checksum = "7bb4ce89b08211f923caf51d527662b75bdc9c9c7aab40f86dcb9fb85ac552aa"
2139dependencies = [
2140 "proc-macro2",
2141 "quote",
2142 "syn",
2143 "wasm-bindgen-backend",
2144 "wasm-bindgen-shared",
2145]
2146
2147[[package]]
2148name = "wasm-bindgen-shared"
2149version = "0.2.101"
2150source = "registry+https://github.com/rust-lang/crates.io-index"
2151checksum = "f143854a3b13752c6950862c906306adb27c7e839f7414cec8fea35beab624c1"
2152dependencies = [
2153 "unicode-ident",
2154]
2155
2156[[package]]
2157name = "wasm-streams"
2158version = "0.4.2"
2159source = "registry+https://github.com/rust-lang/crates.io-index"
2160checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
2161dependencies = [
2162 "futures-util",
2163 "js-sys",
2164 "wasm-bindgen",
2165 "wasm-bindgen-futures",
2166 "web-sys",
2167]
2168
2169[[package]]
2170name = "web-sys"
2171version = "0.3.78"
2172source = "registry+https://github.com/rust-lang/crates.io-index"
2173checksum = "77e4b637749ff0d92b8fad63aa1f7cff3cbe125fd49c175cd6345e7272638b12"
2174dependencies = [
2175 "js-sys",
2176 "wasm-bindgen",
2177]
2178
2179[[package]]
2180name = "whoami"
2181version = "1.6.1"
2182source = "registry+https://github.com/rust-lang/crates.io-index"
2183checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d"
2184dependencies = [
2185 "libredox",
2186 "wasite",
2187 "web-sys",
2188]
2189
2190[[package]]
2191name = "windows-core"
2192version = "0.61.2"
2193source = "registry+https://github.com/rust-lang/crates.io-index"
2194checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
2195dependencies = [
2196 "windows-implement",
2197 "windows-interface",
2198 "windows-link 0.1.3",
2199 "windows-result",
2200 "windows-strings",
2201]
2202
2203[[package]]
2204name = "windows-implement"
2205version = "0.60.0"
2206source = "registry+https://github.com/rust-lang/crates.io-index"
2207checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
2208dependencies = [
2209 "proc-macro2",
2210 "quote",
2211 "syn",
2212]
2213
2214[[package]]
2215name = "windows-interface"
2216version = "0.59.1"
2217source = "registry+https://github.com/rust-lang/crates.io-index"
2218checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
2219dependencies = [
2220 "proc-macro2",
2221 "quote",
2222 "syn",
2223]
2224
2225[[package]]
2226name = "windows-link"
2227version = "0.1.3"
2228source = "registry+https://github.com/rust-lang/crates.io-index"
2229checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
2230
2231[[package]]
2232name = "windows-link"
2233version = "0.2.0"
2234source = "registry+https://github.com/rust-lang/crates.io-index"
2235checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65"
2236
2237[[package]]
2238name = "windows-registry"
2239version = "0.5.3"
2240source = "registry+https://github.com/rust-lang/crates.io-index"
2241checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e"
2242dependencies = [
2243 "windows-link 0.1.3",
2244 "windows-result",
2245 "windows-strings",
2246]
2247
2248[[package]]
2249name = "windows-result"
2250version = "0.3.4"
2251source = "registry+https://github.com/rust-lang/crates.io-index"
2252checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
2253dependencies = [
2254 "windows-link 0.1.3",
2255]
2256
2257[[package]]
2258name = "windows-strings"
2259version = "0.4.2"
2260source = "registry+https://github.com/rust-lang/crates.io-index"
2261checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
2262dependencies = [
2263 "windows-link 0.1.3",
2264]
2265
2266[[package]]
2267name = "windows-sys"
2268version = "0.52.0"
2269source = "registry+https://github.com/rust-lang/crates.io-index"
2270checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2271dependencies = [
2272 "windows-targets 0.52.6",
2273]
2274
2275[[package]]
2276name = "windows-sys"
2277version = "0.59.0"
2278source = "registry+https://github.com/rust-lang/crates.io-index"
2279checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2280dependencies = [
2281 "windows-targets 0.52.6",
2282]
2283
2284[[package]]
2285name = "windows-sys"
2286version = "0.60.2"
2287source = "registry+https://github.com/rust-lang/crates.io-index"
2288checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2289dependencies = [
2290 "windows-targets 0.53.3",
2291]
2292
2293[[package]]
2294name = "windows-sys"
2295version = "0.61.0"
2296source = "registry+https://github.com/rust-lang/crates.io-index"
2297checksum = "e201184e40b2ede64bc2ea34968b28e33622acdbbf37104f0e4a33f7abe657aa"
2298dependencies = [
2299 "windows-link 0.2.0",
2300]
2301
2302[[package]]
2303name = "windows-targets"
2304version = "0.52.6"
2305source = "registry+https://github.com/rust-lang/crates.io-index"
2306checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2307dependencies = [
2308 "windows_aarch64_gnullvm 0.52.6",
2309 "windows_aarch64_msvc 0.52.6",
2310 "windows_i686_gnu 0.52.6",
2311 "windows_i686_gnullvm 0.52.6",
2312 "windows_i686_msvc 0.52.6",
2313 "windows_x86_64_gnu 0.52.6",
2314 "windows_x86_64_gnullvm 0.52.6",
2315 "windows_x86_64_msvc 0.52.6",
2316]
2317
2318[[package]]
2319name = "windows-targets"
2320version = "0.53.3"
2321source = "registry+https://github.com/rust-lang/crates.io-index"
2322checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
2323dependencies = [
2324 "windows-link 0.1.3",
2325 "windows_aarch64_gnullvm 0.53.0",
2326 "windows_aarch64_msvc 0.53.0",
2327 "windows_i686_gnu 0.53.0",
2328 "windows_i686_gnullvm 0.53.0",
2329 "windows_i686_msvc 0.53.0",
2330 "windows_x86_64_gnu 0.53.0",
2331 "windows_x86_64_gnullvm 0.53.0",
2332 "windows_x86_64_msvc 0.53.0",
2333]
2334
2335[[package]]
2336name = "windows_aarch64_gnullvm"
2337version = "0.52.6"
2338source = "registry+https://github.com/rust-lang/crates.io-index"
2339checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2340
2341[[package]]
2342name = "windows_aarch64_gnullvm"
2343version = "0.53.0"
2344source = "registry+https://github.com/rust-lang/crates.io-index"
2345checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
2346
2347[[package]]
2348name = "windows_aarch64_msvc"
2349version = "0.52.6"
2350source = "registry+https://github.com/rust-lang/crates.io-index"
2351checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2352
2353[[package]]
2354name = "windows_aarch64_msvc"
2355version = "0.53.0"
2356source = "registry+https://github.com/rust-lang/crates.io-index"
2357checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
2358
2359[[package]]
2360name = "windows_i686_gnu"
2361version = "0.52.6"
2362source = "registry+https://github.com/rust-lang/crates.io-index"
2363checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2364
2365[[package]]
2366name = "windows_i686_gnu"
2367version = "0.53.0"
2368source = "registry+https://github.com/rust-lang/crates.io-index"
2369checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
2370
2371[[package]]
2372name = "windows_i686_gnullvm"
2373version = "0.52.6"
2374source = "registry+https://github.com/rust-lang/crates.io-index"
2375checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2376
2377[[package]]
2378name = "windows_i686_gnullvm"
2379version = "0.53.0"
2380source = "registry+https://github.com/rust-lang/crates.io-index"
2381checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
2382
2383[[package]]
2384name = "windows_i686_msvc"
2385version = "0.52.6"
2386source = "registry+https://github.com/rust-lang/crates.io-index"
2387checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2388
2389[[package]]
2390name = "windows_i686_msvc"
2391version = "0.53.0"
2392source = "registry+https://github.com/rust-lang/crates.io-index"
2393checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
2394
2395[[package]]
2396name = "windows_x86_64_gnu"
2397version = "0.52.6"
2398source = "registry+https://github.com/rust-lang/crates.io-index"
2399checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2400
2401[[package]]
2402name = "windows_x86_64_gnu"
2403version = "0.53.0"
2404source = "registry+https://github.com/rust-lang/crates.io-index"
2405checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
2406
2407[[package]]
2408name = "windows_x86_64_gnullvm"
2409version = "0.52.6"
2410source = "registry+https://github.com/rust-lang/crates.io-index"
2411checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2412
2413[[package]]
2414name = "windows_x86_64_gnullvm"
2415version = "0.53.0"
2416source = "registry+https://github.com/rust-lang/crates.io-index"
2417checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
2418
2419[[package]]
2420name = "windows_x86_64_msvc"
2421version = "0.52.6"
2422source = "registry+https://github.com/rust-lang/crates.io-index"
2423checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2424
2425[[package]]
2426name = "windows_x86_64_msvc"
2427version = "0.53.0"
2428source = "registry+https://github.com/rust-lang/crates.io-index"
2429checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
2430
2431[[package]]
2432name = "wit-bindgen"
2433version = "0.45.1"
2434source = "registry+https://github.com/rust-lang/crates.io-index"
2435checksum = "5c573471f125075647d03df72e026074b7203790d41351cd6edc96f46bcccd36"
2436
2437[[package]]
2438name = "writeable"
2439version = "0.6.1"
2440source = "registry+https://github.com/rust-lang/crates.io-index"
2441checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
2442
2443[[package]]
2444name = "yoke"
2445version = "0.8.0"
2446source = "registry+https://github.com/rust-lang/crates.io-index"
2447checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
2448dependencies = [
2449 "serde",
2450 "stable_deref_trait",
2451 "yoke-derive",
2452 "zerofrom",
2453]
2454
2455[[package]]
2456name = "yoke-derive"
2457version = "0.8.0"
2458source = "registry+https://github.com/rust-lang/crates.io-index"
2459checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
2460dependencies = [
2461 "proc-macro2",
2462 "quote",
2463 "syn",
2464 "synstructure",
2465]
2466
2467[[package]]
2468name = "zerocopy"
2469version = "0.8.27"
2470source = "registry+https://github.com/rust-lang/crates.io-index"
2471checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
2472dependencies = [
2473 "zerocopy-derive",
2474]
2475
2476[[package]]
2477name = "zerocopy-derive"
2478version = "0.8.27"
2479source = "registry+https://github.com/rust-lang/crates.io-index"
2480checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
2481dependencies = [
2482 "proc-macro2",
2483 "quote",
2484 "syn",
2485]
2486
2487[[package]]
2488name = "zerofrom"
2489version = "0.1.6"
2490source = "registry+https://github.com/rust-lang/crates.io-index"
2491checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
2492dependencies = [
2493 "zerofrom-derive",
2494]
2495
2496[[package]]
2497name = "zerofrom-derive"
2498version = "0.1.6"
2499source = "registry+https://github.com/rust-lang/crates.io-index"
2500checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
2501dependencies = [
2502 "proc-macro2",
2503 "quote",
2504 "syn",
2505 "synstructure",
2506]
2507
2508[[package]]
2509name = "zeroize"
2510version = "1.8.1"
2511source = "registry+https://github.com/rust-lang/crates.io-index"
2512checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
2513
2514[[package]]
2515name = "zerotrie"
2516version = "0.2.2"
2517source = "registry+https://github.com/rust-lang/crates.io-index"
2518checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
2519dependencies = [
2520 "displaydoc",
2521 "yoke",
2522 "zerofrom",
2523]
2524
2525[[package]]
2526name = "zerovec"
2527version = "0.11.4"
2528source = "registry+https://github.com/rust-lang/crates.io-index"
2529checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
2530dependencies = [
2531 "yoke",
2532 "zerofrom",
2533 "zerovec-derive",
2534]
2535
2536[[package]]
2537name = "zerovec-derive"
2538version = "0.11.1"
2539source = "registry+https://github.com/rust-lang/crates.io-index"
2540checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
2541dependencies = [
2542 "proc-macro2",
2543 "quote",
2544 "syn",
2545]