Parakeet is a Rust-based Bluesky AppServer aiming to implement most of the functionality required to support the Bluesky client
appview
atproto
bluesky
rust
appserver
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 4
4
5[[package]]
6name = "abnf"
7version = "0.13.0"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "087113bd50d9adce24850eed5d0476c7d199d532fce8fab5173650331e09033a"
10dependencies = [
11 "abnf-core",
12 "nom",
13]
14
15[[package]]
16name = "abnf-core"
17version = "0.5.0"
18source = "registry+https://github.com/rust-lang/crates.io-index"
19checksum = "c44e09c43ae1c368fb91a03a566472d0087c26cf7e1b9e8e289c14ede681dd7d"
20dependencies = [
21 "nom",
22]
23
24[[package]]
25name = "adler2"
26version = "2.0.1"
27source = "registry+https://github.com/rust-lang/crates.io-index"
28checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
29
30[[package]]
31name = "ahash"
32version = "0.8.12"
33source = "registry+https://github.com/rust-lang/crates.io-index"
34checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
35dependencies = [
36 "cfg-if",
37 "once_cell",
38 "version_check",
39 "zerocopy",
40]
41
42[[package]]
43name = "aho-corasick"
44version = "1.1.4"
45source = "registry+https://github.com/rust-lang/crates.io-index"
46checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
47dependencies = [
48 "memchr",
49]
50
51[[package]]
52name = "aliasable"
53version = "0.1.3"
54source = "registry+https://github.com/rust-lang/crates.io-index"
55checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd"
56
57[[package]]
58name = "alloc-no-stdlib"
59version = "2.0.4"
60source = "registry+https://github.com/rust-lang/crates.io-index"
61checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
62
63[[package]]
64name = "alloc-stdlib"
65version = "0.2.2"
66source = "registry+https://github.com/rust-lang/crates.io-index"
67checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
68dependencies = [
69 "alloc-no-stdlib",
70]
71
72[[package]]
73name = "allocator-api2"
74version = "0.2.21"
75source = "registry+https://github.com/rust-lang/crates.io-index"
76checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
77
78[[package]]
79name = "android_system_properties"
80version = "0.1.5"
81source = "registry+https://github.com/rust-lang/crates.io-index"
82checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
83dependencies = [
84 "libc",
85]
86
87[[package]]
88name = "anstream"
89version = "0.6.21"
90source = "registry+https://github.com/rust-lang/crates.io-index"
91checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
92dependencies = [
93 "anstyle",
94 "anstyle-parse",
95 "anstyle-query",
96 "anstyle-wincon",
97 "colorchoice",
98 "is_terminal_polyfill",
99 "utf8parse",
100]
101
102[[package]]
103name = "anstyle"
104version = "1.0.13"
105source = "registry+https://github.com/rust-lang/crates.io-index"
106checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
107
108[[package]]
109name = "anstyle-parse"
110version = "0.2.7"
111source = "registry+https://github.com/rust-lang/crates.io-index"
112checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
113dependencies = [
114 "utf8parse",
115]
116
117[[package]]
118name = "anstyle-query"
119version = "1.1.5"
120source = "registry+https://github.com/rust-lang/crates.io-index"
121checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
122dependencies = [
123 "windows-sys 0.61.2",
124]
125
126[[package]]
127name = "anstyle-wincon"
128version = "3.0.11"
129source = "registry+https://github.com/rust-lang/crates.io-index"
130checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
131dependencies = [
132 "anstyle",
133 "once_cell_polyfill",
134 "windows-sys 0.61.2",
135]
136
137[[package]]
138name = "anyhow"
139version = "1.0.100"
140source = "registry+https://github.com/rust-lang/crates.io-index"
141checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
142
143[[package]]
144name = "async-compression"
145version = "0.4.37"
146source = "registry+https://github.com/rust-lang/crates.io-index"
147checksum = "d10e4f991a553474232bc0a31799f6d24b034a84c0971d80d2e2f78b2e576e40"
148dependencies = [
149 "compression-codecs",
150 "compression-core",
151 "pin-project-lite",
152 "tokio",
153]
154
155[[package]]
156name = "async-recursion"
157version = "1.1.1"
158source = "registry+https://github.com/rust-lang/crates.io-index"
159checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
160dependencies = [
161 "proc-macro2",
162 "quote",
163 "syn 2.0.114",
164]
165
166[[package]]
167name = "async-trait"
168version = "0.1.89"
169source = "registry+https://github.com/rust-lang/crates.io-index"
170checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
171dependencies = [
172 "proc-macro2",
173 "quote",
174 "syn 2.0.114",
175]
176
177[[package]]
178name = "atomic"
179version = "0.6.1"
180source = "registry+https://github.com/rust-lang/crates.io-index"
181checksum = "a89cbf775b137e9b968e67227ef7f775587cde3fd31b0d8599dbd0f598a48340"
182dependencies = [
183 "bytemuck",
184]
185
186[[package]]
187name = "atomic-polyfill"
188version = "1.0.3"
189source = "registry+https://github.com/rust-lang/crates.io-index"
190checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4"
191dependencies = [
192 "critical-section",
193]
194
195[[package]]
196name = "atomic-waker"
197version = "1.1.2"
198source = "registry+https://github.com/rust-lang/crates.io-index"
199checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
200
201[[package]]
202name = "autocfg"
203version = "1.5.0"
204source = "registry+https://github.com/rust-lang/crates.io-index"
205checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
206
207[[package]]
208name = "aws-lc-rs"
209version = "1.15.4"
210source = "registry+https://github.com/rust-lang/crates.io-index"
211checksum = "7b7b6141e96a8c160799cc2d5adecd5cbbe5054cb8c7c4af53da0f83bb7ad256"
212dependencies = [
213 "aws-lc-sys",
214 "zeroize",
215]
216
217[[package]]
218name = "aws-lc-sys"
219version = "0.37.0"
220source = "registry+https://github.com/rust-lang/crates.io-index"
221checksum = "5c34dda4df7017c8db52132f0f8a2e0f8161649d15723ed63fc00c82d0f2081a"
222dependencies = [
223 "cc",
224 "cmake",
225 "dunce",
226 "fs_extra",
227]
228
229[[package]]
230name = "axum"
231version = "0.8.8"
232source = "registry+https://github.com/rust-lang/crates.io-index"
233checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
234dependencies = [
235 "axum-core",
236 "bytes",
237 "form_urlencoded",
238 "futures-util",
239 "http",
240 "http-body",
241 "http-body-util",
242 "hyper",
243 "hyper-util",
244 "itoa",
245 "matchit",
246 "memchr",
247 "mime",
248 "percent-encoding",
249 "pin-project-lite",
250 "serde_core",
251 "serde_json",
252 "serde_path_to_error",
253 "serde_urlencoded",
254 "sync_wrapper",
255 "tokio",
256 "tower",
257 "tower-layer",
258 "tower-service",
259 "tracing",
260]
261
262[[package]]
263name = "axum-core"
264version = "0.5.6"
265source = "registry+https://github.com/rust-lang/crates.io-index"
266checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
267dependencies = [
268 "bytes",
269 "futures-core",
270 "http",
271 "http-body",
272 "http-body-util",
273 "mime",
274 "pin-project-lite",
275 "sync_wrapper",
276 "tower-layer",
277 "tower-service",
278 "tracing",
279]
280
281[[package]]
282name = "axum-extra"
283version = "0.10.3"
284source = "registry+https://github.com/rust-lang/crates.io-index"
285checksum = "9963ff19f40c6102c76756ef0a46004c0d58957d87259fc9208ff8441c12ab96"
286dependencies = [
287 "axum",
288 "axum-core",
289 "bytes",
290 "form_urlencoded",
291 "futures-util",
292 "headers",
293 "http",
294 "http-body",
295 "http-body-util",
296 "mime",
297 "pin-project-lite",
298 "rustversion",
299 "serde_core",
300 "serde_html_form",
301 "serde_path_to_error",
302 "tower-layer",
303 "tower-service",
304 "tracing",
305]
306
307[[package]]
308name = "axum-tracing-opentelemetry"
309version = "0.32.3"
310source = "registry+https://github.com/rust-lang/crates.io-index"
311checksum = "10cffc2e3e7b4741cc0d5d571ae67860badd54b79ac2cc4c326fa1e9a2cf3475"
312dependencies = [
313 "axum",
314 "futures-core",
315 "futures-util",
316 "http",
317 "opentelemetry",
318 "opentelemetry-semantic-conventions",
319 "pin-project-lite",
320 "tower",
321 "tracing",
322 "tracing-opentelemetry",
323 "tracing-opentelemetry-instrumentation-sdk",
324]
325
326[[package]]
327name = "base-x"
328version = "0.2.11"
329source = "registry+https://github.com/rust-lang/crates.io-index"
330checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270"
331
332[[package]]
333name = "base16ct"
334version = "0.2.0"
335source = "registry+https://github.com/rust-lang/crates.io-index"
336checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
337
338[[package]]
339name = "base256emoji"
340version = "1.0.2"
341source = "registry+https://github.com/rust-lang/crates.io-index"
342checksum = "b5e9430d9a245a77c92176e649af6e275f20839a48389859d1661e9a128d077c"
343dependencies = [
344 "const-str",
345 "match-lookup",
346]
347
348[[package]]
349name = "base64"
350version = "0.22.1"
351source = "registry+https://github.com/rust-lang/crates.io-index"
352checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
353
354[[package]]
355name = "base64ct"
356version = "1.8.3"
357source = "registry+https://github.com/rust-lang/crates.io-index"
358checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
359
360[[package]]
361name = "bindgen"
362version = "0.72.1"
363source = "registry+https://github.com/rust-lang/crates.io-index"
364checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
365dependencies = [
366 "bitflags 2.10.0",
367 "cexpr",
368 "clang-sys",
369 "itertools 0.13.0",
370 "proc-macro2",
371 "quote",
372 "regex",
373 "rustc-hash",
374 "shlex",
375 "syn 2.0.114",
376]
377
378[[package]]
379name = "bitflags"
380version = "1.3.2"
381source = "registry+https://github.com/rust-lang/crates.io-index"
382checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
383
384[[package]]
385name = "bitflags"
386version = "2.10.0"
387source = "registry+https://github.com/rust-lang/crates.io-index"
388checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
389
390[[package]]
391name = "block-buffer"
392version = "0.10.4"
393source = "registry+https://github.com/rust-lang/crates.io-index"
394checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
395dependencies = [
396 "generic-array",
397]
398
399[[package]]
400name = "bon"
401version = "3.8.2"
402source = "registry+https://github.com/rust-lang/crates.io-index"
403checksum = "234655ec178edd82b891e262ea7cf71f6584bcd09eff94db786be23f1821825c"
404dependencies = [
405 "bon-macros",
406 "rustversion",
407]
408
409[[package]]
410name = "bon-macros"
411version = "3.8.2"
412source = "registry+https://github.com/rust-lang/crates.io-index"
413checksum = "89ec27229c38ed0eb3c0feee3d2c1d6a4379ae44f418a29a658890e062d8f365"
414dependencies = [
415 "darling",
416 "ident_case",
417 "prettyplease",
418 "proc-macro2",
419 "quote",
420 "rustversion",
421 "syn 2.0.114",
422]
423
424[[package]]
425name = "borsh"
426version = "1.6.0"
427source = "registry+https://github.com/rust-lang/crates.io-index"
428checksum = "d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f"
429dependencies = [
430 "cfg_aliases",
431]
432
433[[package]]
434name = "brotli"
435version = "8.0.2"
436source = "registry+https://github.com/rust-lang/crates.io-index"
437checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
438dependencies = [
439 "alloc-no-stdlib",
440 "alloc-stdlib",
441 "brotli-decompressor",
442]
443
444[[package]]
445name = "brotli-decompressor"
446version = "5.0.0"
447source = "registry+https://github.com/rust-lang/crates.io-index"
448checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
449dependencies = [
450 "alloc-no-stdlib",
451 "alloc-stdlib",
452]
453
454[[package]]
455name = "btree-range-map"
456version = "0.7.2"
457source = "registry+https://github.com/rust-lang/crates.io-index"
458checksum = "1be5c9672446d3800bcbcaabaeba121fe22f1fb25700c4562b22faf76d377c33"
459dependencies = [
460 "btree-slab",
461 "cc-traits",
462 "range-traits",
463 "serde",
464 "slab",
465]
466
467[[package]]
468name = "btree-slab"
469version = "0.6.1"
470source = "registry+https://github.com/rust-lang/crates.io-index"
471checksum = "7a2b56d3029f075c4fa892428a098425b86cef5c89ae54073137ece416aef13c"
472dependencies = [
473 "cc-traits",
474 "slab",
475 "smallvec",
476]
477
478[[package]]
479name = "bumpalo"
480version = "3.19.1"
481source = "registry+https://github.com/rust-lang/crates.io-index"
482checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
483
484[[package]]
485name = "bytemuck"
486version = "1.24.0"
487source = "registry+https://github.com/rust-lang/crates.io-index"
488checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
489
490[[package]]
491name = "byteorder"
492version = "1.5.0"
493source = "registry+https://github.com/rust-lang/crates.io-index"
494checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
495
496[[package]]
497name = "byteorder-lite"
498version = "0.1.0"
499source = "registry+https://github.com/rust-lang/crates.io-index"
500checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
501
502[[package]]
503name = "bytes"
504version = "1.11.0"
505source = "registry+https://github.com/rust-lang/crates.io-index"
506checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
507dependencies = [
508 "serde",
509]
510
511[[package]]
512name = "byteview"
513version = "0.10.1"
514source = "registry+https://github.com/rust-lang/crates.io-index"
515checksum = "1c53ba0f290bfc610084c05582d9c5d421662128fc69f4bf236707af6fd321b9"
516
517[[package]]
518name = "bzip2-sys"
519version = "0.1.13+1.0.8"
520source = "registry+https://github.com/rust-lang/crates.io-index"
521checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
522dependencies = [
523 "cc",
524 "pkg-config",
525]
526
527[[package]]
528name = "cbor4ii"
529version = "0.2.14"
530source = "registry+https://github.com/rust-lang/crates.io-index"
531checksum = "b544cf8c89359205f4f990d0e6f3828db42df85b5dac95d09157a250eb0749c4"
532dependencies = [
533 "serde",
534]
535
536[[package]]
537name = "cc"
538version = "1.2.54"
539source = "registry+https://github.com/rust-lang/crates.io-index"
540checksum = "6354c81bbfd62d9cfa9cb3c773c2b7b2a3a482d569de977fd0e961f6e7c00583"
541dependencies = [
542 "find-msvc-tools",
543 "jobserver",
544 "libc",
545 "shlex",
546]
547
548[[package]]
549name = "cc-traits"
550version = "2.0.0"
551source = "registry+https://github.com/rust-lang/crates.io-index"
552checksum = "060303ef31ef4a522737e1b1ab68c67916f2a787bb2f4f54f383279adba962b5"
553dependencies = [
554 "slab",
555]
556
557[[package]]
558name = "cexpr"
559version = "0.6.0"
560source = "registry+https://github.com/rust-lang/crates.io-index"
561checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
562dependencies = [
563 "nom",
564]
565
566[[package]]
567name = "cfg-if"
568version = "1.0.4"
569source = "registry+https://github.com/rust-lang/crates.io-index"
570checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
571
572[[package]]
573name = "cfg_aliases"
574version = "0.2.1"
575source = "registry+https://github.com/rust-lang/crates.io-index"
576checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
577
578[[package]]
579name = "chrono"
580version = "0.4.43"
581source = "registry+https://github.com/rust-lang/crates.io-index"
582checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
583dependencies = [
584 "iana-time-zone",
585 "js-sys",
586 "num-traits",
587 "serde",
588 "wasm-bindgen",
589 "windows-link",
590]
591
592[[package]]
593name = "ciborium"
594version = "0.2.2"
595source = "registry+https://github.com/rust-lang/crates.io-index"
596checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
597dependencies = [
598 "ciborium-io",
599 "ciborium-ll",
600 "serde",
601]
602
603[[package]]
604name = "ciborium-io"
605version = "0.2.2"
606source = "registry+https://github.com/rust-lang/crates.io-index"
607checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
608
609[[package]]
610name = "ciborium-ll"
611version = "0.2.2"
612source = "registry+https://github.com/rust-lang/crates.io-index"
613checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
614dependencies = [
615 "ciborium-io",
616 "half",
617]
618
619[[package]]
620name = "cid"
621version = "0.11.1"
622source = "registry+https://github.com/rust-lang/crates.io-index"
623checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a"
624dependencies = [
625 "core2",
626 "multibase",
627 "multihash",
628 "serde",
629 "serde_bytes",
630 "unsigned-varint 0.8.0",
631]
632
633[[package]]
634name = "clang-sys"
635version = "1.8.1"
636source = "registry+https://github.com/rust-lang/crates.io-index"
637checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
638dependencies = [
639 "glob",
640 "libc",
641 "libloading",
642]
643
644[[package]]
645name = "clap"
646version = "4.5.56"
647source = "registry+https://github.com/rust-lang/crates.io-index"
648checksum = "a75ca66430e33a14957acc24c5077b503e7d374151b2b4b3a10c83b4ceb4be0e"
649dependencies = [
650 "clap_builder",
651 "clap_derive",
652]
653
654[[package]]
655name = "clap_builder"
656version = "4.5.56"
657source = "registry+https://github.com/rust-lang/crates.io-index"
658checksum = "793207c7fa6300a0608d1080b858e5fdbe713cdc1c8db9fb17777d8a13e63df0"
659dependencies = [
660 "anstream",
661 "anstyle",
662 "clap_lex",
663 "strsim",
664]
665
666[[package]]
667name = "clap_derive"
668version = "4.5.55"
669source = "registry+https://github.com/rust-lang/crates.io-index"
670checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
671dependencies = [
672 "heck 0.5.0",
673 "proc-macro2",
674 "quote",
675 "syn 2.0.114",
676]
677
678[[package]]
679name = "clap_lex"
680version = "0.7.7"
681source = "registry+https://github.com/rust-lang/crates.io-index"
682checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
683
684[[package]]
685name = "cmake"
686version = "0.1.57"
687source = "registry+https://github.com/rust-lang/crates.io-index"
688checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
689dependencies = [
690 "cc",
691]
692
693[[package]]
694name = "cobs"
695version = "0.3.0"
696source = "registry+https://github.com/rust-lang/crates.io-index"
697checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
698dependencies = [
699 "thiserror 2.0.18",
700]
701
702[[package]]
703name = "colorchoice"
704version = "1.0.4"
705source = "registry+https://github.com/rust-lang/crates.io-index"
706checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
707
708[[package]]
709name = "combine"
710version = "4.6.7"
711source = "registry+https://github.com/rust-lang/crates.io-index"
712checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
713dependencies = [
714 "bytes",
715 "futures-core",
716 "memchr",
717 "pin-project-lite",
718 "tokio",
719 "tokio-util",
720]
721
722[[package]]
723name = "compare"
724version = "0.0.6"
725source = "registry+https://github.com/rust-lang/crates.io-index"
726checksum = "ea0095f6103c2a8b44acd6fd15960c801dafebf02e21940360833e0673f48ba7"
727
728[[package]]
729name = "compression-codecs"
730version = "0.4.36"
731source = "registry+https://github.com/rust-lang/crates.io-index"
732checksum = "00828ba6fd27b45a448e57dbfe84f1029d4c9f26b368157e9a448a5f49a2ec2a"
733dependencies = [
734 "brotli",
735 "compression-core",
736 "flate2",
737 "memchr",
738]
739
740[[package]]
741name = "compression-core"
742version = "0.4.31"
743source = "registry+https://github.com/rust-lang/crates.io-index"
744checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d"
745
746[[package]]
747name = "const-oid"
748version = "0.9.6"
749source = "registry+https://github.com/rust-lang/crates.io-index"
750checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
751
752[[package]]
753name = "const-str"
754version = "0.4.3"
755source = "registry+https://github.com/rust-lang/crates.io-index"
756checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3"
757
758[[package]]
759name = "consumer"
760version = "0.1.0"
761dependencies = [
762 "chrono",
763 "ciborium",
764 "clap",
765 "deadpool-postgres",
766 "eyre",
767 "figment",
768 "foldhash 0.1.5",
769 "futures",
770 "ipld-core",
771 "iroh-car",
772 "jacquard-common",
773 "jacquard-identity",
774 "lexica",
775 "metrics",
776 "metrics-exporter-prometheus",
777 "parakeet-db",
778 "parakeet-index",
779 "redis",
780 "repo-stream",
781 "reqwest",
782 "serde",
783 "serde_bytes",
784 "serde_ipld_dagcbor",
785 "serde_json",
786 "serde_with",
787 "sled",
788 "thiserror 2.0.18",
789 "tokio",
790 "tokio-postgres",
791 "tokio-stream",
792 "tokio-tungstenite",
793 "tokio-util",
794 "tracing",
795 "tracing-subscriber",
796]
797
798[[package]]
799name = "cordyceps"
800version = "0.3.4"
801source = "registry+https://github.com/rust-lang/crates.io-index"
802checksum = "688d7fbb8092b8de775ef2536f36c8c31f2bc4006ece2e8d8ad2d17d00ce0a2a"
803dependencies = [
804 "loom",
805 "tracing",
806]
807
808[[package]]
809name = "core-foundation"
810version = "0.9.4"
811source = "registry+https://github.com/rust-lang/crates.io-index"
812checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
813dependencies = [
814 "core-foundation-sys",
815 "libc",
816]
817
818[[package]]
819name = "core-foundation"
820version = "0.10.1"
821source = "registry+https://github.com/rust-lang/crates.io-index"
822checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
823dependencies = [
824 "core-foundation-sys",
825 "libc",
826]
827
828[[package]]
829name = "core-foundation-sys"
830version = "0.8.7"
831source = "registry+https://github.com/rust-lang/crates.io-index"
832checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
833
834[[package]]
835name = "core2"
836version = "0.4.0"
837source = "registry+https://github.com/rust-lang/crates.io-index"
838checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
839dependencies = [
840 "memchr",
841]
842
843[[package]]
844name = "cpufeatures"
845version = "0.2.17"
846source = "registry+https://github.com/rust-lang/crates.io-index"
847checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
848dependencies = [
849 "libc",
850]
851
852[[package]]
853name = "crc32fast"
854version = "1.5.0"
855source = "registry+https://github.com/rust-lang/crates.io-index"
856checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
857dependencies = [
858 "cfg-if",
859]
860
861[[package]]
862name = "critical-section"
863version = "1.2.0"
864source = "registry+https://github.com/rust-lang/crates.io-index"
865checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
866
867[[package]]
868name = "crossbeam-channel"
869version = "0.5.15"
870source = "registry+https://github.com/rust-lang/crates.io-index"
871checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
872dependencies = [
873 "crossbeam-utils",
874]
875
876[[package]]
877name = "crossbeam-epoch"
878version = "0.9.18"
879source = "registry+https://github.com/rust-lang/crates.io-index"
880checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
881dependencies = [
882 "crossbeam-utils",
883]
884
885[[package]]
886name = "crossbeam-skiplist"
887version = "0.1.3"
888source = "registry+https://github.com/rust-lang/crates.io-index"
889checksum = "df29de440c58ca2cc6e587ec3d22347551a32435fbde9d2bff64e78a9ffa151b"
890dependencies = [
891 "crossbeam-epoch",
892 "crossbeam-utils",
893]
894
895[[package]]
896name = "crossbeam-utils"
897version = "0.8.21"
898source = "registry+https://github.com/rust-lang/crates.io-index"
899checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
900
901[[package]]
902name = "crunchy"
903version = "0.2.4"
904source = "registry+https://github.com/rust-lang/crates.io-index"
905checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
906
907[[package]]
908name = "crypto-bigint"
909version = "0.5.5"
910source = "registry+https://github.com/rust-lang/crates.io-index"
911checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
912dependencies = [
913 "generic-array",
914 "rand_core 0.6.4",
915 "subtle",
916 "zeroize",
917]
918
919[[package]]
920name = "crypto-common"
921version = "0.1.6"
922source = "registry+https://github.com/rust-lang/crates.io-index"
923checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
924dependencies = [
925 "generic-array",
926 "typenum",
927]
928
929[[package]]
930name = "curve25519-dalek"
931version = "4.1.3"
932source = "registry+https://github.com/rust-lang/crates.io-index"
933checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
934dependencies = [
935 "cfg-if",
936 "cpufeatures",
937 "curve25519-dalek-derive",
938 "digest",
939 "fiat-crypto",
940 "rustc_version",
941 "subtle",
942 "zeroize",
943]
944
945[[package]]
946name = "curve25519-dalek-derive"
947version = "0.1.1"
948source = "registry+https://github.com/rust-lang/crates.io-index"
949checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
950dependencies = [
951 "proc-macro2",
952 "quote",
953 "syn 2.0.114",
954]
955
956[[package]]
957name = "darling"
958version = "0.21.3"
959source = "registry+https://github.com/rust-lang/crates.io-index"
960checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
961dependencies = [
962 "darling_core",
963 "darling_macro",
964]
965
966[[package]]
967name = "darling_core"
968version = "0.21.3"
969source = "registry+https://github.com/rust-lang/crates.io-index"
970checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
971dependencies = [
972 "fnv",
973 "ident_case",
974 "proc-macro2",
975 "quote",
976 "strsim",
977 "syn 2.0.114",
978]
979
980[[package]]
981name = "darling_macro"
982version = "0.21.3"
983source = "registry+https://github.com/rust-lang/crates.io-index"
984checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
985dependencies = [
986 "darling_core",
987 "quote",
988 "syn 2.0.114",
989]
990
991[[package]]
992name = "dashmap"
993version = "6.1.0"
994source = "registry+https://github.com/rust-lang/crates.io-index"
995checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
996dependencies = [
997 "cfg-if",
998 "crossbeam-utils",
999 "hashbrown 0.14.5",
1000 "lock_api",
1001 "once_cell",
1002 "parking_lot_core 0.9.12",
1003]
1004
1005[[package]]
1006name = "data-encoding"
1007version = "2.10.0"
1008source = "registry+https://github.com/rust-lang/crates.io-index"
1009checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
1010
1011[[package]]
1012name = "data-encoding-macro"
1013version = "0.1.19"
1014source = "registry+https://github.com/rust-lang/crates.io-index"
1015checksum = "8142a83c17aa9461d637e649271eae18bf2edd00e91f2e105df36c3c16355bdb"
1016dependencies = [
1017 "data-encoding",
1018 "data-encoding-macro-internal",
1019]
1020
1021[[package]]
1022name = "data-encoding-macro-internal"
1023version = "0.1.17"
1024source = "registry+https://github.com/rust-lang/crates.io-index"
1025checksum = "7ab67060fc6b8ef687992d439ca0fa36e7ed17e9a0b16b25b601e8757df720de"
1026dependencies = [
1027 "data-encoding",
1028 "syn 2.0.114",
1029]
1030
1031[[package]]
1032name = "dataloader"
1033version = "0.18.0"
1034dependencies = [
1035 "futures",
1036 "tokio",
1037]
1038
1039[[package]]
1040name = "deadpool"
1041version = "0.12.3"
1042source = "registry+https://github.com/rust-lang/crates.io-index"
1043checksum = "0be2b1d1d6ec8d846f05e137292d0b89133caf95ef33695424c09568bdd39b1b"
1044dependencies = [
1045 "deadpool-runtime",
1046 "lazy_static",
1047 "num_cpus",
1048 "serde",
1049 "tokio",
1050]
1051
1052[[package]]
1053name = "deadpool-postgres"
1054version = "0.14.1"
1055source = "registry+https://github.com/rust-lang/crates.io-index"
1056checksum = "3d697d376cbfa018c23eb4caab1fd1883dd9c906a8c034e8d9a3cb06a7e0bef9"
1057dependencies = [
1058 "async-trait",
1059 "deadpool",
1060 "getrandom 0.2.17",
1061 "serde",
1062 "tokio",
1063 "tokio-postgres",
1064 "tracing",
1065]
1066
1067[[package]]
1068name = "deadpool-runtime"
1069version = "0.1.4"
1070source = "registry+https://github.com/rust-lang/crates.io-index"
1071checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
1072dependencies = [
1073 "tokio",
1074]
1075
1076[[package]]
1077name = "der"
1078version = "0.7.10"
1079source = "registry+https://github.com/rust-lang/crates.io-index"
1080checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
1081dependencies = [
1082 "const-oid",
1083 "pem-rfc7468",
1084 "zeroize",
1085]
1086
1087[[package]]
1088name = "deranged"
1089version = "0.5.5"
1090source = "registry+https://github.com/rust-lang/crates.io-index"
1091checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
1092dependencies = [
1093 "powerfmt",
1094 "serde_core",
1095]
1096
1097[[package]]
1098name = "derive_more"
1099version = "1.0.0"
1100source = "registry+https://github.com/rust-lang/crates.io-index"
1101checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05"
1102dependencies = [
1103 "derive_more-impl",
1104]
1105
1106[[package]]
1107name = "derive_more-impl"
1108version = "1.0.0"
1109source = "registry+https://github.com/rust-lang/crates.io-index"
1110checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22"
1111dependencies = [
1112 "proc-macro2",
1113 "quote",
1114 "syn 2.0.114",
1115 "unicode-xid",
1116]
1117
1118[[package]]
1119name = "diatomic-waker"
1120version = "0.2.3"
1121source = "registry+https://github.com/rust-lang/crates.io-index"
1122checksum = "ab03c107fafeb3ee9f5925686dbb7a73bc76e3932abb0d2b365cb64b169cf04c"
1123
1124[[package]]
1125name = "diesel"
1126version = "2.3.6"
1127source = "registry+https://github.com/rust-lang/crates.io-index"
1128checksum = "d9b6c2fc184a6fb6ebcf5f9a5e3bbfa84d8fd268cdfcce4ed508979a6259494d"
1129dependencies = [
1130 "bitflags 2.10.0",
1131 "byteorder",
1132 "chrono",
1133 "diesel_derives",
1134 "downcast-rs",
1135 "itoa",
1136 "serde_json",
1137]
1138
1139[[package]]
1140name = "diesel-async"
1141version = "0.7.4"
1142source = "registry+https://github.com/rust-lang/crates.io-index"
1143checksum = "13096fb8dae53f2d411c4b523bec85f45552ed3044a2ab4d85fb2092d9cb4f34"
1144dependencies = [
1145 "deadpool",
1146 "diesel",
1147 "diesel_migrations",
1148 "futures-core",
1149 "futures-util",
1150 "scoped-futures",
1151 "tokio",
1152 "tokio-postgres",
1153]
1154
1155[[package]]
1156name = "diesel_derives"
1157version = "2.3.7"
1158source = "registry+https://github.com/rust-lang/crates.io-index"
1159checksum = "47618bf0fac06bb670c036e48404c26a865e6a71af4114dfd97dfe89936e404e"
1160dependencies = [
1161 "diesel_table_macro_syntax",
1162 "dsl_auto_type",
1163 "proc-macro2",
1164 "quote",
1165 "syn 2.0.114",
1166]
1167
1168[[package]]
1169name = "diesel_migrations"
1170version = "2.3.1"
1171source = "registry+https://github.com/rust-lang/crates.io-index"
1172checksum = "745fd255645f0f1135f9ec55c7b00e0882192af9683ab4731e4bba3da82b8f9c"
1173dependencies = [
1174 "diesel",
1175 "migrations_internals",
1176 "migrations_macros",
1177]
1178
1179[[package]]
1180name = "diesel_table_macro_syntax"
1181version = "0.3.0"
1182source = "registry+https://github.com/rust-lang/crates.io-index"
1183checksum = "fe2444076b48641147115697648dc743c2c00b61adade0f01ce67133c7babe8c"
1184dependencies = [
1185 "syn 2.0.114",
1186]
1187
1188[[package]]
1189name = "digest"
1190version = "0.10.7"
1191source = "registry+https://github.com/rust-lang/crates.io-index"
1192checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
1193dependencies = [
1194 "block-buffer",
1195 "const-oid",
1196 "crypto-common",
1197 "subtle",
1198]
1199
1200[[package]]
1201name = "displaydoc"
1202version = "0.2.5"
1203source = "registry+https://github.com/rust-lang/crates.io-index"
1204checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
1205dependencies = [
1206 "proc-macro2",
1207 "quote",
1208 "syn 2.0.114",
1209]
1210
1211[[package]]
1212name = "downcast-rs"
1213version = "2.0.2"
1214source = "registry+https://github.com/rust-lang/crates.io-index"
1215checksum = "117240f60069e65410b3ae1bb213295bd828f707b5bec6596a1afc8793ce0cbc"
1216
1217[[package]]
1218name = "dsl_auto_type"
1219version = "0.2.0"
1220source = "registry+https://github.com/rust-lang/crates.io-index"
1221checksum = "dd122633e4bef06db27737f21d3738fb89c8f6d5360d6d9d7635dda142a7757e"
1222dependencies = [
1223 "darling",
1224 "either",
1225 "heck 0.5.0",
1226 "proc-macro2",
1227 "quote",
1228 "syn 2.0.114",
1229]
1230
1231[[package]]
1232name = "dunce"
1233version = "1.0.5"
1234source = "registry+https://github.com/rust-lang/crates.io-index"
1235checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
1236
1237[[package]]
1238name = "dyn-clone"
1239version = "1.0.20"
1240source = "registry+https://github.com/rust-lang/crates.io-index"
1241checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
1242
1243[[package]]
1244name = "ecdsa"
1245version = "0.16.9"
1246source = "registry+https://github.com/rust-lang/crates.io-index"
1247checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
1248dependencies = [
1249 "der",
1250 "digest",
1251 "elliptic-curve",
1252 "rfc6979",
1253 "signature",
1254 "spki",
1255]
1256
1257[[package]]
1258name = "ed25519"
1259version = "2.2.3"
1260source = "registry+https://github.com/rust-lang/crates.io-index"
1261checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
1262dependencies = [
1263 "pkcs8",
1264 "signature",
1265]
1266
1267[[package]]
1268name = "ed25519-dalek"
1269version = "2.2.0"
1270source = "registry+https://github.com/rust-lang/crates.io-index"
1271checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
1272dependencies = [
1273 "curve25519-dalek",
1274 "ed25519",
1275 "serde",
1276 "sha2",
1277 "subtle",
1278 "zeroize",
1279]
1280
1281[[package]]
1282name = "either"
1283version = "1.15.0"
1284source = "registry+https://github.com/rust-lang/crates.io-index"
1285checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
1286
1287[[package]]
1288name = "elliptic-curve"
1289version = "0.13.8"
1290source = "registry+https://github.com/rust-lang/crates.io-index"
1291checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
1292dependencies = [
1293 "base16ct",
1294 "crypto-bigint",
1295 "digest",
1296 "ff",
1297 "generic-array",
1298 "group",
1299 "hkdf",
1300 "pem-rfc7468",
1301 "pkcs8",
1302 "rand_core 0.6.4",
1303 "sec1",
1304 "subtle",
1305 "zeroize",
1306]
1307
1308[[package]]
1309name = "embedded-io"
1310version = "0.4.0"
1311source = "registry+https://github.com/rust-lang/crates.io-index"
1312checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
1313
1314[[package]]
1315name = "embedded-io"
1316version = "0.6.1"
1317source = "registry+https://github.com/rust-lang/crates.io-index"
1318checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
1319
1320[[package]]
1321name = "encoding_rs"
1322version = "0.8.35"
1323source = "registry+https://github.com/rust-lang/crates.io-index"
1324checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
1325dependencies = [
1326 "cfg-if",
1327]
1328
1329[[package]]
1330name = "enum-as-inner"
1331version = "0.6.1"
1332source = "registry+https://github.com/rust-lang/crates.io-index"
1333checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
1334dependencies = [
1335 "heck 0.5.0",
1336 "proc-macro2",
1337 "quote",
1338 "syn 2.0.114",
1339]
1340
1341[[package]]
1342name = "enum_dispatch"
1343version = "0.3.13"
1344source = "registry+https://github.com/rust-lang/crates.io-index"
1345checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
1346dependencies = [
1347 "once_cell",
1348 "proc-macro2",
1349 "quote",
1350 "syn 2.0.114",
1351]
1352
1353[[package]]
1354name = "equivalent"
1355version = "1.0.2"
1356source = "registry+https://github.com/rust-lang/crates.io-index"
1357checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
1358
1359[[package]]
1360name = "errno"
1361version = "0.3.14"
1362source = "registry+https://github.com/rust-lang/crates.io-index"
1363checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
1364dependencies = [
1365 "libc",
1366 "windows-sys 0.61.2",
1367]
1368
1369[[package]]
1370name = "eyre"
1371version = "0.6.12"
1372source = "registry+https://github.com/rust-lang/crates.io-index"
1373checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec"
1374dependencies = [
1375 "indenter",
1376 "once_cell",
1377]
1378
1379[[package]]
1380name = "fallible-iterator"
1381version = "0.2.0"
1382source = "registry+https://github.com/rust-lang/crates.io-index"
1383checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
1384
1385[[package]]
1386name = "fastrand"
1387version = "2.3.0"
1388source = "registry+https://github.com/rust-lang/crates.io-index"
1389checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
1390
1391[[package]]
1392name = "ff"
1393version = "0.13.1"
1394source = "registry+https://github.com/rust-lang/crates.io-index"
1395checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
1396dependencies = [
1397 "rand_core 0.6.4",
1398 "subtle",
1399]
1400
1401[[package]]
1402name = "fiat-crypto"
1403version = "0.2.9"
1404source = "registry+https://github.com/rust-lang/crates.io-index"
1405checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
1406
1407[[package]]
1408name = "figment"
1409version = "0.10.19"
1410source = "registry+https://github.com/rust-lang/crates.io-index"
1411checksum = "8cb01cd46b0cf372153850f4c6c272d9cbea2da513e07538405148f95bd789f3"
1412dependencies = [
1413 "atomic",
1414 "pear",
1415 "serde",
1416 "toml 0.8.23",
1417 "uncased",
1418 "version_check",
1419]
1420
1421[[package]]
1422name = "find-msvc-tools"
1423version = "0.1.8"
1424source = "registry+https://github.com/rust-lang/crates.io-index"
1425checksum = "8591b0bcc8a98a64310a2fae1bb3e9b8564dd10e381e6e28010fde8e8e8568db"
1426
1427[[package]]
1428name = "fixedbitset"
1429version = "0.5.7"
1430source = "registry+https://github.com/rust-lang/crates.io-index"
1431checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
1432
1433[[package]]
1434name = "fjall"
1435version = "3.0.2"
1436source = "registry+https://github.com/rust-lang/crates.io-index"
1437checksum = "5a2799b4198427a08c774838e44d0b77f677208f19a1927671cd2cd36bb30d69"
1438dependencies = [
1439 "byteorder-lite",
1440 "byteview",
1441 "dashmap",
1442 "flume",
1443 "log",
1444 "lsm-tree",
1445 "tempfile",
1446 "xxhash-rust",
1447]
1448
1449[[package]]
1450name = "flate2"
1451version = "1.1.8"
1452source = "registry+https://github.com/rust-lang/crates.io-index"
1453checksum = "b375d6465b98090a5f25b1c7703f3859783755aa9a80433b36e0379a3ec2f369"
1454dependencies = [
1455 "crc32fast",
1456 "miniz_oxide",
1457]
1458
1459[[package]]
1460name = "flume"
1461version = "0.12.0"
1462source = "registry+https://github.com/rust-lang/crates.io-index"
1463checksum = "5e139bc46ca777eb5efaf62df0ab8cc5fd400866427e56c68b22e414e53bd3be"
1464dependencies = [
1465 "spin 0.9.8",
1466]
1467
1468[[package]]
1469name = "fnv"
1470version = "1.0.7"
1471source = "registry+https://github.com/rust-lang/crates.io-index"
1472checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1473
1474[[package]]
1475name = "foldhash"
1476version = "0.1.5"
1477source = "registry+https://github.com/rust-lang/crates.io-index"
1478checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1479
1480[[package]]
1481name = "foldhash"
1482version = "0.2.0"
1483source = "registry+https://github.com/rust-lang/crates.io-index"
1484checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
1485
1486[[package]]
1487name = "foreign-types"
1488version = "0.3.2"
1489source = "registry+https://github.com/rust-lang/crates.io-index"
1490checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
1491dependencies = [
1492 "foreign-types-shared",
1493]
1494
1495[[package]]
1496name = "foreign-types-shared"
1497version = "0.1.1"
1498source = "registry+https://github.com/rust-lang/crates.io-index"
1499checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
1500
1501[[package]]
1502name = "form_urlencoded"
1503version = "1.2.2"
1504source = "registry+https://github.com/rust-lang/crates.io-index"
1505checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1506dependencies = [
1507 "percent-encoding",
1508]
1509
1510[[package]]
1511name = "fs2"
1512version = "0.4.3"
1513source = "registry+https://github.com/rust-lang/crates.io-index"
1514checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
1515dependencies = [
1516 "libc",
1517 "winapi",
1518]
1519
1520[[package]]
1521name = "fs_extra"
1522version = "1.3.0"
1523source = "registry+https://github.com/rust-lang/crates.io-index"
1524checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
1525
1526[[package]]
1527name = "futures"
1528version = "0.3.31"
1529source = "registry+https://github.com/rust-lang/crates.io-index"
1530checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
1531dependencies = [
1532 "futures-channel",
1533 "futures-core",
1534 "futures-executor",
1535 "futures-io",
1536 "futures-sink",
1537 "futures-task",
1538 "futures-util",
1539]
1540
1541[[package]]
1542name = "futures-buffered"
1543version = "0.2.12"
1544source = "registry+https://github.com/rust-lang/crates.io-index"
1545checksum = "a8e0e1f38ec07ba4abbde21eed377082f17ccb988be9d988a5adbf4bafc118fd"
1546dependencies = [
1547 "cordyceps",
1548 "diatomic-waker",
1549 "futures-core",
1550 "pin-project-lite",
1551 "spin 0.10.0",
1552]
1553
1554[[package]]
1555name = "futures-channel"
1556version = "0.3.31"
1557source = "registry+https://github.com/rust-lang/crates.io-index"
1558checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
1559dependencies = [
1560 "futures-core",
1561 "futures-sink",
1562]
1563
1564[[package]]
1565name = "futures-core"
1566version = "0.3.31"
1567source = "registry+https://github.com/rust-lang/crates.io-index"
1568checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
1569
1570[[package]]
1571name = "futures-executor"
1572version = "0.3.31"
1573source = "registry+https://github.com/rust-lang/crates.io-index"
1574checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
1575dependencies = [
1576 "futures-core",
1577 "futures-task",
1578 "futures-util",
1579]
1580
1581[[package]]
1582name = "futures-io"
1583version = "0.3.31"
1584source = "registry+https://github.com/rust-lang/crates.io-index"
1585checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
1586
1587[[package]]
1588name = "futures-lite"
1589version = "2.6.1"
1590source = "registry+https://github.com/rust-lang/crates.io-index"
1591checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
1592dependencies = [
1593 "fastrand",
1594 "futures-core",
1595 "futures-io",
1596 "parking",
1597 "pin-project-lite",
1598]
1599
1600[[package]]
1601name = "futures-macro"
1602version = "0.3.31"
1603source = "registry+https://github.com/rust-lang/crates.io-index"
1604checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
1605dependencies = [
1606 "proc-macro2",
1607 "quote",
1608 "syn 2.0.114",
1609]
1610
1611[[package]]
1612name = "futures-sink"
1613version = "0.3.31"
1614source = "registry+https://github.com/rust-lang/crates.io-index"
1615checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
1616
1617[[package]]
1618name = "futures-task"
1619version = "0.3.31"
1620source = "registry+https://github.com/rust-lang/crates.io-index"
1621checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
1622
1623[[package]]
1624name = "futures-util"
1625version = "0.3.31"
1626source = "registry+https://github.com/rust-lang/crates.io-index"
1627checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
1628dependencies = [
1629 "futures-channel",
1630 "futures-core",
1631 "futures-io",
1632 "futures-macro",
1633 "futures-sink",
1634 "futures-task",
1635 "memchr",
1636 "pin-project-lite",
1637 "pin-utils",
1638 "slab",
1639]
1640
1641[[package]]
1642name = "fxhash"
1643version = "0.2.1"
1644source = "registry+https://github.com/rust-lang/crates.io-index"
1645checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
1646dependencies = [
1647 "byteorder",
1648]
1649
1650[[package]]
1651name = "generator"
1652version = "0.8.8"
1653source = "registry+https://github.com/rust-lang/crates.io-index"
1654checksum = "52f04ae4152da20c76fe800fa48659201d5cf627c5149ca0b707b69d7eef6cf9"
1655dependencies = [
1656 "cc",
1657 "cfg-if",
1658 "libc",
1659 "log",
1660 "rustversion",
1661 "windows-link",
1662 "windows-result",
1663]
1664
1665[[package]]
1666name = "generic-array"
1667version = "0.14.9"
1668source = "registry+https://github.com/rust-lang/crates.io-index"
1669checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
1670dependencies = [
1671 "typenum",
1672 "version_check",
1673 "zeroize",
1674]
1675
1676[[package]]
1677name = "getrandom"
1678version = "0.2.17"
1679source = "registry+https://github.com/rust-lang/crates.io-index"
1680checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1681dependencies = [
1682 "cfg-if",
1683 "js-sys",
1684 "libc",
1685 "wasi 0.11.1+wasi-snapshot-preview1",
1686 "wasm-bindgen",
1687]
1688
1689[[package]]
1690name = "getrandom"
1691version = "0.3.4"
1692source = "registry+https://github.com/rust-lang/crates.io-index"
1693checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1694dependencies = [
1695 "cfg-if",
1696 "js-sys",
1697 "libc",
1698 "r-efi",
1699 "wasip2",
1700 "wasm-bindgen",
1701]
1702
1703[[package]]
1704name = "glob"
1705version = "0.3.3"
1706source = "registry+https://github.com/rust-lang/crates.io-index"
1707checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1708
1709[[package]]
1710name = "group"
1711version = "0.13.0"
1712source = "registry+https://github.com/rust-lang/crates.io-index"
1713checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
1714dependencies = [
1715 "ff",
1716 "rand_core 0.6.4",
1717 "subtle",
1718]
1719
1720[[package]]
1721name = "h2"
1722version = "0.4.13"
1723source = "registry+https://github.com/rust-lang/crates.io-index"
1724checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
1725dependencies = [
1726 "atomic-waker",
1727 "bytes",
1728 "fnv",
1729 "futures-core",
1730 "futures-sink",
1731 "http",
1732 "indexmap 2.13.0",
1733 "slab",
1734 "tokio",
1735 "tokio-util",
1736 "tracing",
1737]
1738
1739[[package]]
1740name = "half"
1741version = "2.7.1"
1742source = "registry+https://github.com/rust-lang/crates.io-index"
1743checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1744dependencies = [
1745 "cfg-if",
1746 "crunchy",
1747 "zerocopy",
1748]
1749
1750[[package]]
1751name = "hash32"
1752version = "0.2.1"
1753source = "registry+https://github.com/rust-lang/crates.io-index"
1754checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67"
1755dependencies = [
1756 "byteorder",
1757]
1758
1759[[package]]
1760name = "hashbrown"
1761version = "0.12.3"
1762source = "registry+https://github.com/rust-lang/crates.io-index"
1763checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1764
1765[[package]]
1766name = "hashbrown"
1767version = "0.14.5"
1768source = "registry+https://github.com/rust-lang/crates.io-index"
1769checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1770
1771[[package]]
1772name = "hashbrown"
1773version = "0.15.5"
1774source = "registry+https://github.com/rust-lang/crates.io-index"
1775checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1776dependencies = [
1777 "foldhash 0.1.5",
1778]
1779
1780[[package]]
1781name = "hashbrown"
1782version = "0.16.1"
1783source = "registry+https://github.com/rust-lang/crates.io-index"
1784checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1785dependencies = [
1786 "allocator-api2",
1787 "equivalent",
1788 "foldhash 0.2.0",
1789]
1790
1791[[package]]
1792name = "headers"
1793version = "0.4.1"
1794source = "registry+https://github.com/rust-lang/crates.io-index"
1795checksum = "b3314d5adb5d94bcdf56771f2e50dbbc80bb4bdf88967526706205ac9eff24eb"
1796dependencies = [
1797 "base64",
1798 "bytes",
1799 "headers-core",
1800 "http",
1801 "httpdate",
1802 "mime",
1803 "sha1",
1804]
1805
1806[[package]]
1807name = "headers-core"
1808version = "0.3.0"
1809source = "registry+https://github.com/rust-lang/crates.io-index"
1810checksum = "54b4a22553d4242c49fddb9ba998a99962b5cc6f22cb5a3482bec22522403ce4"
1811dependencies = [
1812 "http",
1813]
1814
1815[[package]]
1816name = "heapless"
1817version = "0.7.17"
1818source = "registry+https://github.com/rust-lang/crates.io-index"
1819checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f"
1820dependencies = [
1821 "atomic-polyfill",
1822 "hash32",
1823 "rustc_version",
1824 "serde",
1825 "spin 0.9.8",
1826 "stable_deref_trait",
1827]
1828
1829[[package]]
1830name = "heck"
1831version = "0.4.1"
1832source = "registry+https://github.com/rust-lang/crates.io-index"
1833checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
1834
1835[[package]]
1836name = "heck"
1837version = "0.5.0"
1838source = "registry+https://github.com/rust-lang/crates.io-index"
1839checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1840
1841[[package]]
1842name = "hermit-abi"
1843version = "0.5.2"
1844source = "registry+https://github.com/rust-lang/crates.io-index"
1845checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1846
1847[[package]]
1848name = "hex"
1849version = "0.4.3"
1850source = "registry+https://github.com/rust-lang/crates.io-index"
1851checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1852
1853[[package]]
1854name = "hex_fmt"
1855version = "0.3.0"
1856source = "registry+https://github.com/rust-lang/crates.io-index"
1857checksum = "b07f60793ff0a4d9cef0f18e63b5357e06209987153a64648c972c1e5aff336f"
1858
1859[[package]]
1860name = "hickory-proto"
1861version = "0.24.4"
1862source = "registry+https://github.com/rust-lang/crates.io-index"
1863checksum = "92652067c9ce6f66ce53cc38d1169daa36e6e7eb7dd3b63b5103bd9d97117248"
1864dependencies = [
1865 "async-trait",
1866 "cfg-if",
1867 "data-encoding",
1868 "enum-as-inner",
1869 "futures-channel",
1870 "futures-io",
1871 "futures-util",
1872 "idna",
1873 "ipnet",
1874 "once_cell",
1875 "rand 0.8.5",
1876 "thiserror 1.0.69",
1877 "tinyvec",
1878 "tokio",
1879 "tracing",
1880 "url",
1881]
1882
1883[[package]]
1884name = "hickory-resolver"
1885version = "0.24.4"
1886source = "registry+https://github.com/rust-lang/crates.io-index"
1887checksum = "cbb117a1ca520e111743ab2f6688eddee69db4e0ea242545a604dce8a66fd22e"
1888dependencies = [
1889 "cfg-if",
1890 "futures-util",
1891 "hickory-proto",
1892 "ipconfig",
1893 "lru-cache",
1894 "once_cell",
1895 "parking_lot 0.12.5",
1896 "rand 0.8.5",
1897 "resolv-conf",
1898 "smallvec",
1899 "thiserror 1.0.69",
1900 "tokio",
1901 "tracing",
1902]
1903
1904[[package]]
1905name = "hkdf"
1906version = "0.12.4"
1907source = "registry+https://github.com/rust-lang/crates.io-index"
1908checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
1909dependencies = [
1910 "hmac",
1911]
1912
1913[[package]]
1914name = "hmac"
1915version = "0.12.1"
1916source = "registry+https://github.com/rust-lang/crates.io-index"
1917checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1918dependencies = [
1919 "digest",
1920]
1921
1922[[package]]
1923name = "http"
1924version = "1.4.0"
1925source = "registry+https://github.com/rust-lang/crates.io-index"
1926checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1927dependencies = [
1928 "bytes",
1929 "itoa",
1930]
1931
1932[[package]]
1933name = "http-body"
1934version = "1.0.1"
1935source = "registry+https://github.com/rust-lang/crates.io-index"
1936checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1937dependencies = [
1938 "bytes",
1939 "http",
1940]
1941
1942[[package]]
1943name = "http-body-util"
1944version = "0.1.3"
1945source = "registry+https://github.com/rust-lang/crates.io-index"
1946checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1947dependencies = [
1948 "bytes",
1949 "futures-core",
1950 "http",
1951 "http-body",
1952 "pin-project-lite",
1953]
1954
1955[[package]]
1956name = "httparse"
1957version = "1.10.1"
1958source = "registry+https://github.com/rust-lang/crates.io-index"
1959checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1960
1961[[package]]
1962name = "httpdate"
1963version = "1.0.3"
1964source = "registry+https://github.com/rust-lang/crates.io-index"
1965checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1966
1967[[package]]
1968name = "hyper"
1969version = "1.8.1"
1970source = "registry+https://github.com/rust-lang/crates.io-index"
1971checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1972dependencies = [
1973 "atomic-waker",
1974 "bytes",
1975 "futures-channel",
1976 "futures-core",
1977 "h2",
1978 "http",
1979 "http-body",
1980 "httparse",
1981 "httpdate",
1982 "itoa",
1983 "pin-project-lite",
1984 "pin-utils",
1985 "smallvec",
1986 "tokio",
1987 "want",
1988]
1989
1990[[package]]
1991name = "hyper-rustls"
1992version = "0.27.7"
1993source = "registry+https://github.com/rust-lang/crates.io-index"
1994checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1995dependencies = [
1996 "http",
1997 "hyper",
1998 "hyper-util",
1999 "rustls",
2000 "rustls-native-certs",
2001 "rustls-pki-types",
2002 "tokio",
2003 "tokio-rustls",
2004 "tower-service",
2005 "webpki-roots",
2006]
2007
2008[[package]]
2009name = "hyper-timeout"
2010version = "0.5.2"
2011source = "registry+https://github.com/rust-lang/crates.io-index"
2012checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
2013dependencies = [
2014 "hyper",
2015 "hyper-util",
2016 "pin-project-lite",
2017 "tokio",
2018 "tower-service",
2019]
2020
2021[[package]]
2022name = "hyper-tls"
2023version = "0.6.0"
2024source = "registry+https://github.com/rust-lang/crates.io-index"
2025checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
2026dependencies = [
2027 "bytes",
2028 "http-body-util",
2029 "hyper",
2030 "hyper-util",
2031 "native-tls",
2032 "tokio",
2033 "tokio-native-tls",
2034 "tower-service",
2035]
2036
2037[[package]]
2038name = "hyper-util"
2039version = "0.1.19"
2040source = "registry+https://github.com/rust-lang/crates.io-index"
2041checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
2042dependencies = [
2043 "base64",
2044 "bytes",
2045 "futures-channel",
2046 "futures-core",
2047 "futures-util",
2048 "http",
2049 "http-body",
2050 "hyper",
2051 "ipnet",
2052 "libc",
2053 "percent-encoding",
2054 "pin-project-lite",
2055 "socket2 0.6.2",
2056 "system-configuration",
2057 "tokio",
2058 "tower-service",
2059 "tracing",
2060 "windows-registry",
2061]
2062
2063[[package]]
2064name = "iana-time-zone"
2065version = "0.1.65"
2066source = "registry+https://github.com/rust-lang/crates.io-index"
2067checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
2068dependencies = [
2069 "android_system_properties",
2070 "core-foundation-sys",
2071 "iana-time-zone-haiku",
2072 "js-sys",
2073 "log",
2074 "wasm-bindgen",
2075 "windows-core",
2076]
2077
2078[[package]]
2079name = "iana-time-zone-haiku"
2080version = "0.1.2"
2081source = "registry+https://github.com/rust-lang/crates.io-index"
2082checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
2083dependencies = [
2084 "cc",
2085]
2086
2087[[package]]
2088name = "icu_collections"
2089version = "2.1.1"
2090source = "registry+https://github.com/rust-lang/crates.io-index"
2091checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
2092dependencies = [
2093 "displaydoc",
2094 "potential_utf",
2095 "yoke",
2096 "zerofrom",
2097 "zerovec",
2098]
2099
2100[[package]]
2101name = "icu_locale_core"
2102version = "2.1.1"
2103source = "registry+https://github.com/rust-lang/crates.io-index"
2104checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
2105dependencies = [
2106 "displaydoc",
2107 "litemap",
2108 "tinystr",
2109 "writeable",
2110 "zerovec",
2111]
2112
2113[[package]]
2114name = "icu_normalizer"
2115version = "2.1.1"
2116source = "registry+https://github.com/rust-lang/crates.io-index"
2117checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
2118dependencies = [
2119 "icu_collections",
2120 "icu_normalizer_data",
2121 "icu_properties",
2122 "icu_provider",
2123 "smallvec",
2124 "zerovec",
2125]
2126
2127[[package]]
2128name = "icu_normalizer_data"
2129version = "2.1.1"
2130source = "registry+https://github.com/rust-lang/crates.io-index"
2131checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
2132
2133[[package]]
2134name = "icu_properties"
2135version = "2.1.2"
2136source = "registry+https://github.com/rust-lang/crates.io-index"
2137checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
2138dependencies = [
2139 "icu_collections",
2140 "icu_locale_core",
2141 "icu_properties_data",
2142 "icu_provider",
2143 "zerotrie",
2144 "zerovec",
2145]
2146
2147[[package]]
2148name = "icu_properties_data"
2149version = "2.1.2"
2150source = "registry+https://github.com/rust-lang/crates.io-index"
2151checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
2152
2153[[package]]
2154name = "icu_provider"
2155version = "2.1.1"
2156source = "registry+https://github.com/rust-lang/crates.io-index"
2157checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
2158dependencies = [
2159 "displaydoc",
2160 "icu_locale_core",
2161 "writeable",
2162 "yoke",
2163 "zerofrom",
2164 "zerotrie",
2165 "zerovec",
2166]
2167
2168[[package]]
2169name = "ident_case"
2170version = "1.0.1"
2171source = "registry+https://github.com/rust-lang/crates.io-index"
2172checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2173
2174[[package]]
2175name = "idna"
2176version = "1.1.0"
2177source = "registry+https://github.com/rust-lang/crates.io-index"
2178checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
2179dependencies = [
2180 "idna_adapter",
2181 "smallvec",
2182 "utf8_iter",
2183]
2184
2185[[package]]
2186name = "idna_adapter"
2187version = "1.2.1"
2188source = "registry+https://github.com/rust-lang/crates.io-index"
2189checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
2190dependencies = [
2191 "icu_normalizer",
2192 "icu_properties",
2193]
2194
2195[[package]]
2196name = "indenter"
2197version = "0.3.4"
2198source = "registry+https://github.com/rust-lang/crates.io-index"
2199checksum = "964de6e86d545b246d84badc0fef527924ace5134f30641c203ef52ba83f58d5"
2200
2201[[package]]
2202name = "indexmap"
2203version = "1.9.3"
2204source = "registry+https://github.com/rust-lang/crates.io-index"
2205checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
2206dependencies = [
2207 "autocfg",
2208 "hashbrown 0.12.3",
2209 "serde",
2210]
2211
2212[[package]]
2213name = "indexmap"
2214version = "2.13.0"
2215source = "registry+https://github.com/rust-lang/crates.io-index"
2216checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
2217dependencies = [
2218 "equivalent",
2219 "hashbrown 0.16.1",
2220 "serde",
2221 "serde_core",
2222]
2223
2224[[package]]
2225name = "indoc"
2226version = "2.0.7"
2227source = "registry+https://github.com/rust-lang/crates.io-index"
2228checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
2229dependencies = [
2230 "rustversion",
2231]
2232
2233[[package]]
2234name = "inlinable_string"
2235version = "0.1.15"
2236source = "registry+https://github.com/rust-lang/crates.io-index"
2237checksum = "c8fae54786f62fb2918dcfae3d568594e50eb9b5c25bf04371af6fe7516452fb"
2238
2239[[package]]
2240name = "instant"
2241version = "0.1.13"
2242source = "registry+https://github.com/rust-lang/crates.io-index"
2243checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
2244dependencies = [
2245 "cfg-if",
2246]
2247
2248[[package]]
2249name = "interval-heap"
2250version = "0.0.5"
2251source = "registry+https://github.com/rust-lang/crates.io-index"
2252checksum = "11274e5e8e89b8607cfedc2910b6626e998779b48a019151c7604d0adcb86ac6"
2253dependencies = [
2254 "compare",
2255]
2256
2257[[package]]
2258name = "inventory"
2259version = "0.3.21"
2260source = "registry+https://github.com/rust-lang/crates.io-index"
2261checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e"
2262dependencies = [
2263 "rustversion",
2264]
2265
2266[[package]]
2267name = "ipconfig"
2268version = "0.3.2"
2269source = "registry+https://github.com/rust-lang/crates.io-index"
2270checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f"
2271dependencies = [
2272 "socket2 0.5.10",
2273 "widestring",
2274 "windows-sys 0.48.0",
2275 "winreg",
2276]
2277
2278[[package]]
2279name = "ipld-core"
2280version = "0.4.2"
2281source = "registry+https://github.com/rust-lang/crates.io-index"
2282checksum = "104718b1cc124d92a6d01ca9c9258a7df311405debb3408c445a36452f9bf8db"
2283dependencies = [
2284 "cid",
2285 "serde",
2286 "serde_bytes",
2287]
2288
2289[[package]]
2290name = "ipnet"
2291version = "2.11.0"
2292source = "registry+https://github.com/rust-lang/crates.io-index"
2293checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
2294
2295[[package]]
2296name = "iri-string"
2297version = "0.7.10"
2298source = "registry+https://github.com/rust-lang/crates.io-index"
2299checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
2300dependencies = [
2301 "memchr",
2302 "serde",
2303]
2304
2305[[package]]
2306name = "iroh-car"
2307version = "0.5.1"
2308source = "registry+https://github.com/rust-lang/crates.io-index"
2309checksum = "cb7f8cd4cb9aa083fba8b52e921764252d0b4dcb1cd6d120b809dbfe1106e81a"
2310dependencies = [
2311 "anyhow",
2312 "cid",
2313 "futures",
2314 "serde",
2315 "serde_ipld_dagcbor",
2316 "thiserror 1.0.69",
2317 "tokio",
2318 "unsigned-varint 0.7.2",
2319]
2320
2321[[package]]
2322name = "is_terminal_polyfill"
2323version = "1.70.2"
2324source = "registry+https://github.com/rust-lang/crates.io-index"
2325checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
2326
2327[[package]]
2328name = "itertools"
2329version = "0.13.0"
2330source = "registry+https://github.com/rust-lang/crates.io-index"
2331checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
2332dependencies = [
2333 "either",
2334]
2335
2336[[package]]
2337name = "itertools"
2338version = "0.14.0"
2339source = "registry+https://github.com/rust-lang/crates.io-index"
2340checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
2341dependencies = [
2342 "either",
2343]
2344
2345[[package]]
2346name = "itoa"
2347version = "1.0.17"
2348source = "registry+https://github.com/rust-lang/crates.io-index"
2349checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
2350
2351[[package]]
2352name = "jacquard-api"
2353version = "0.9.5"
2354source = "registry+https://github.com/rust-lang/crates.io-index"
2355checksum = "4979fb1848c1dd7ac8fd12745bc71f56f6da61374407d5f9b06005467a954e5a"
2356dependencies = [
2357 "bon",
2358 "bytes",
2359 "jacquard-common",
2360 "jacquard-derive",
2361 "jacquard-lexicon",
2362 "miette",
2363 "rustversion",
2364 "serde",
2365 "serde_bytes",
2366 "serde_ipld_dagcbor",
2367 "thiserror 2.0.18",
2368 "unicode-segmentation",
2369]
2370
2371[[package]]
2372name = "jacquard-common"
2373version = "0.9.5"
2374source = "registry+https://github.com/rust-lang/crates.io-index"
2375checksum = "1751921e0bdae5e0077afade6161545e9ef7698306c868f800916e99ecbcaae9"
2376dependencies = [
2377 "base64",
2378 "bon",
2379 "bytes",
2380 "chrono",
2381 "cid",
2382 "getrandom 0.2.17",
2383 "getrandom 0.3.4",
2384 "http",
2385 "ipld-core",
2386 "k256",
2387 "langtag",
2388 "miette",
2389 "multibase",
2390 "multihash",
2391 "ouroboros",
2392 "p256",
2393 "postcard",
2394 "rand 0.9.2",
2395 "regex",
2396 "regex-lite",
2397 "reqwest",
2398 "serde",
2399 "serde_bytes",
2400 "serde_html_form",
2401 "serde_ipld_dagcbor",
2402 "serde_json",
2403 "signature",
2404 "smol_str",
2405 "thiserror 2.0.18",
2406 "tokio",
2407 "tokio-util",
2408 "trait-variant",
2409 "url",
2410]
2411
2412[[package]]
2413name = "jacquard-derive"
2414version = "0.9.5"
2415source = "registry+https://github.com/rust-lang/crates.io-index"
2416checksum = "9c8d73dfee07943fdab93569ed1c28b06c6921ed891c08b415c4a323ff67e593"
2417dependencies = [
2418 "heck 0.5.0",
2419 "jacquard-lexicon",
2420 "proc-macro2",
2421 "quote",
2422 "syn 2.0.114",
2423]
2424
2425[[package]]
2426name = "jacquard-identity"
2427version = "0.9.5"
2428source = "registry+https://github.com/rust-lang/crates.io-index"
2429checksum = "e7aaefa819fa4213cf59f180dba932f018a7cd0599582fd38474ee2a38c16cf2"
2430dependencies = [
2431 "bon",
2432 "bytes",
2433 "hickory-resolver",
2434 "http",
2435 "jacquard-api",
2436 "jacquard-common",
2437 "jacquard-lexicon",
2438 "miette",
2439 "mini-moka-wasm",
2440 "n0-future",
2441 "percent-encoding",
2442 "reqwest",
2443 "serde",
2444 "serde_html_form",
2445 "serde_json",
2446 "thiserror 2.0.18",
2447 "tokio",
2448 "trait-variant",
2449 "url",
2450 "urlencoding",
2451]
2452
2453[[package]]
2454name = "jacquard-lexicon"
2455version = "0.9.5"
2456source = "registry+https://github.com/rust-lang/crates.io-index"
2457checksum = "8411aff546569b0a1e0ef669bed2380cec1c00d48f02f3fcd57a71545321b3d8"
2458dependencies = [
2459 "cid",
2460 "dashmap",
2461 "heck 0.5.0",
2462 "inventory",
2463 "jacquard-common",
2464 "miette",
2465 "multihash",
2466 "prettyplease",
2467 "proc-macro2",
2468 "quote",
2469 "serde",
2470 "serde_ipld_dagcbor",
2471 "serde_json",
2472 "serde_repr",
2473 "serde_with",
2474 "sha2",
2475 "syn 2.0.114",
2476 "thiserror 2.0.18",
2477 "unicode-segmentation",
2478]
2479
2480[[package]]
2481name = "jobserver"
2482version = "0.1.34"
2483source = "registry+https://github.com/rust-lang/crates.io-index"
2484checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
2485dependencies = [
2486 "getrandom 0.3.4",
2487 "libc",
2488]
2489
2490[[package]]
2491name = "js-sys"
2492version = "0.3.85"
2493source = "registry+https://github.com/rust-lang/crates.io-index"
2494checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
2495dependencies = [
2496 "once_cell",
2497 "wasm-bindgen",
2498]
2499
2500[[package]]
2501name = "jsonwebtoken"
2502version = "9.3.0"
2503source = "git+https://gitlab.com/parakeet-social/jsonwebtoken?branch=es256k#ca566f348e0f1eab3660634e2ca307fe1350f3d9"
2504dependencies = [
2505 "base64",
2506 "ed25519-dalek",
2507 "getrandom 0.2.17",
2508 "hmac",
2509 "js-sys",
2510 "k256",
2511 "p256",
2512 "p384",
2513 "pem",
2514 "rand 0.8.5",
2515 "rand_core 0.6.4",
2516 "rsa",
2517 "serde",
2518 "serde_json",
2519 "sha2",
2520 "simple_asn1",
2521]
2522
2523[[package]]
2524name = "k256"
2525version = "0.13.4"
2526source = "registry+https://github.com/rust-lang/crates.io-index"
2527checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b"
2528dependencies = [
2529 "cfg-if",
2530 "ecdsa",
2531 "elliptic-curve",
2532 "once_cell",
2533 "sha2",
2534 "signature",
2535]
2536
2537[[package]]
2538name = "langtag"
2539version = "0.4.0"
2540source = "registry+https://github.com/rust-lang/crates.io-index"
2541checksum = "9ecb4c689a30e48ebeaa14237f34037e300dd072e6ad21a9ec72e810ff3c6600"
2542dependencies = [
2543 "serde",
2544 "static-regular-grammar",
2545 "thiserror 1.0.69",
2546]
2547
2548[[package]]
2549name = "lazy_static"
2550version = "1.5.0"
2551source = "registry+https://github.com/rust-lang/crates.io-index"
2552checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
2553dependencies = [
2554 "spin 0.9.8",
2555]
2556
2557[[package]]
2558name = "lexica"
2559version = "0.1.0"
2560dependencies = [
2561 "chrono",
2562 "cid",
2563 "jacquard-common",
2564 "serde",
2565 "serde_json",
2566]
2567
2568[[package]]
2569name = "libc"
2570version = "0.2.180"
2571source = "registry+https://github.com/rust-lang/crates.io-index"
2572checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
2573
2574[[package]]
2575name = "libloading"
2576version = "0.8.9"
2577source = "registry+https://github.com/rust-lang/crates.io-index"
2578checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
2579dependencies = [
2580 "cfg-if",
2581 "windows-link",
2582]
2583
2584[[package]]
2585name = "libm"
2586version = "0.2.16"
2587source = "registry+https://github.com/rust-lang/crates.io-index"
2588checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
2589
2590[[package]]
2591name = "libredox"
2592version = "0.1.12"
2593source = "registry+https://github.com/rust-lang/crates.io-index"
2594checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
2595dependencies = [
2596 "bitflags 2.10.0",
2597 "libc",
2598]
2599
2600[[package]]
2601name = "librocksdb-sys"
2602version = "0.17.3+10.4.2"
2603source = "registry+https://github.com/rust-lang/crates.io-index"
2604checksum = "cef2a00ee60fe526157c9023edab23943fae1ce2ab6f4abb2a807c1746835de9"
2605dependencies = [
2606 "bindgen",
2607 "bzip2-sys",
2608 "cc",
2609 "libc",
2610 "libz-sys",
2611 "lz4-sys",
2612]
2613
2614[[package]]
2615name = "libz-sys"
2616version = "1.1.23"
2617source = "registry+https://github.com/rust-lang/crates.io-index"
2618checksum = "15d118bbf3771060e7311cc7bb0545b01d08a8b4a7de949198dec1fa0ca1c0f7"
2619dependencies = [
2620 "cc",
2621 "pkg-config",
2622 "vcpkg",
2623]
2624
2625[[package]]
2626name = "linked-hash-map"
2627version = "0.5.6"
2628source = "registry+https://github.com/rust-lang/crates.io-index"
2629checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
2630
2631[[package]]
2632name = "linux-raw-sys"
2633version = "0.11.0"
2634source = "registry+https://github.com/rust-lang/crates.io-index"
2635checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
2636
2637[[package]]
2638name = "litemap"
2639version = "0.8.1"
2640source = "registry+https://github.com/rust-lang/crates.io-index"
2641checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
2642
2643[[package]]
2644name = "lock_api"
2645version = "0.4.14"
2646source = "registry+https://github.com/rust-lang/crates.io-index"
2647checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
2648dependencies = [
2649 "scopeguard",
2650]
2651
2652[[package]]
2653name = "log"
2654version = "0.4.29"
2655source = "registry+https://github.com/rust-lang/crates.io-index"
2656checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
2657
2658[[package]]
2659name = "loom"
2660version = "0.7.2"
2661source = "registry+https://github.com/rust-lang/crates.io-index"
2662checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca"
2663dependencies = [
2664 "cfg-if",
2665 "generator",
2666 "scoped-tls",
2667 "tracing",
2668 "tracing-subscriber",
2669]
2670
2671[[package]]
2672name = "lru-cache"
2673version = "0.1.2"
2674source = "registry+https://github.com/rust-lang/crates.io-index"
2675checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
2676dependencies = [
2677 "linked-hash-map",
2678]
2679
2680[[package]]
2681name = "lru-slab"
2682version = "0.1.2"
2683source = "registry+https://github.com/rust-lang/crates.io-index"
2684checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
2685
2686[[package]]
2687name = "lsm-tree"
2688version = "3.0.2"
2689source = "registry+https://github.com/rust-lang/crates.io-index"
2690checksum = "86e8d0b8e0cf2531a437788ce94d95570dbaabfe9888db20022c2d5ccec9b221"
2691dependencies = [
2692 "byteorder-lite",
2693 "byteview",
2694 "crossbeam-skiplist",
2695 "enum_dispatch",
2696 "interval-heap",
2697 "log",
2698 "quick_cache",
2699 "rustc-hash",
2700 "self_cell",
2701 "sfa",
2702 "tempfile",
2703 "varint-rs",
2704 "xxhash-rust",
2705]
2706
2707[[package]]
2708name = "lz4-sys"
2709version = "1.11.1+lz4-1.10.0"
2710source = "registry+https://github.com/rust-lang/crates.io-index"
2711checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6"
2712dependencies = [
2713 "cc",
2714 "libc",
2715]
2716
2717[[package]]
2718name = "match-lookup"
2719version = "0.1.2"
2720source = "registry+https://github.com/rust-lang/crates.io-index"
2721checksum = "757aee279b8bdbb9f9e676796fd459e4207a1f986e87886700abf589f5abf771"
2722dependencies = [
2723 "proc-macro2",
2724 "quote",
2725 "syn 2.0.114",
2726]
2727
2728[[package]]
2729name = "matchers"
2730version = "0.2.0"
2731source = "registry+https://github.com/rust-lang/crates.io-index"
2732checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
2733dependencies = [
2734 "regex-automata",
2735]
2736
2737[[package]]
2738name = "matchit"
2739version = "0.8.4"
2740source = "registry+https://github.com/rust-lang/crates.io-index"
2741checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
2742
2743[[package]]
2744name = "md-5"
2745version = "0.10.6"
2746source = "registry+https://github.com/rust-lang/crates.io-index"
2747checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
2748dependencies = [
2749 "cfg-if",
2750 "digest",
2751]
2752
2753[[package]]
2754name = "memchr"
2755version = "2.7.6"
2756source = "registry+https://github.com/rust-lang/crates.io-index"
2757checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
2758
2759[[package]]
2760name = "metrics"
2761version = "0.24.3"
2762source = "registry+https://github.com/rust-lang/crates.io-index"
2763checksum = "5d5312e9ba3771cfa961b585728215e3d972c950a3eed9252aa093d6301277e8"
2764dependencies = [
2765 "ahash",
2766 "portable-atomic",
2767]
2768
2769[[package]]
2770name = "metrics-exporter-prometheus"
2771version = "0.16.2"
2772source = "registry+https://github.com/rust-lang/crates.io-index"
2773checksum = "dd7399781913e5393588a8d8c6a2867bf85fb38eaf2502fdce465aad2dc6f034"
2774dependencies = [
2775 "base64",
2776 "http-body-util",
2777 "hyper",
2778 "hyper-rustls",
2779 "hyper-util",
2780 "indexmap 2.13.0",
2781 "ipnet",
2782 "metrics",
2783 "metrics-util",
2784 "quanta",
2785 "thiserror 1.0.69",
2786 "tokio",
2787 "tracing",
2788]
2789
2790[[package]]
2791name = "metrics-util"
2792version = "0.19.1"
2793source = "registry+https://github.com/rust-lang/crates.io-index"
2794checksum = "b8496cc523d1f94c1385dd8f0f0c2c480b2b8aeccb5b7e4485ad6365523ae376"
2795dependencies = [
2796 "crossbeam-epoch",
2797 "crossbeam-utils",
2798 "hashbrown 0.15.5",
2799 "metrics",
2800 "quanta",
2801 "rand 0.9.2",
2802 "rand_xoshiro",
2803 "sketches-ddsketch",
2804]
2805
2806[[package]]
2807name = "miette"
2808version = "7.6.0"
2809source = "registry+https://github.com/rust-lang/crates.io-index"
2810checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
2811dependencies = [
2812 "cfg-if",
2813 "miette-derive",
2814 "unicode-width",
2815]
2816
2817[[package]]
2818name = "miette-derive"
2819version = "7.6.0"
2820source = "registry+https://github.com/rust-lang/crates.io-index"
2821checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
2822dependencies = [
2823 "proc-macro2",
2824 "quote",
2825 "syn 2.0.114",
2826]
2827
2828[[package]]
2829name = "migrations_internals"
2830version = "2.3.0"
2831source = "registry+https://github.com/rust-lang/crates.io-index"
2832checksum = "36c791ecdf977c99f45f23280405d7723727470f6689a5e6dbf513ac547ae10d"
2833dependencies = [
2834 "serde",
2835 "toml 0.9.11+spec-1.1.0",
2836]
2837
2838[[package]]
2839name = "migrations_macros"
2840version = "2.3.0"
2841source = "registry+https://github.com/rust-lang/crates.io-index"
2842checksum = "36fc5ac76be324cfd2d3f2cf0fdf5d5d3c4f14ed8aaebadb09e304ba42282703"
2843dependencies = [
2844 "migrations_internals",
2845 "proc-macro2",
2846 "quote",
2847]
2848
2849[[package]]
2850name = "mime"
2851version = "0.3.17"
2852source = "registry+https://github.com/rust-lang/crates.io-index"
2853checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2854
2855[[package]]
2856name = "mini-moka-wasm"
2857version = "0.10.99"
2858source = "registry+https://github.com/rust-lang/crates.io-index"
2859checksum = "0102b9a2ad50fa47ca89eead2316c8222285ecfbd3f69ce99564fbe4253866e8"
2860dependencies = [
2861 "crossbeam-channel",
2862 "crossbeam-utils",
2863 "dashmap",
2864 "smallvec",
2865 "tagptr",
2866 "triomphe",
2867 "web-time",
2868]
2869
2870[[package]]
2871name = "minimal-lexical"
2872version = "0.2.1"
2873source = "registry+https://github.com/rust-lang/crates.io-index"
2874checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2875
2876[[package]]
2877name = "miniz_oxide"
2878version = "0.8.9"
2879source = "registry+https://github.com/rust-lang/crates.io-index"
2880checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
2881dependencies = [
2882 "adler2",
2883 "simd-adler32",
2884]
2885
2886[[package]]
2887name = "mio"
2888version = "1.1.1"
2889source = "registry+https://github.com/rust-lang/crates.io-index"
2890checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
2891dependencies = [
2892 "libc",
2893 "wasi 0.11.1+wasi-snapshot-preview1",
2894 "windows-sys 0.61.2",
2895]
2896
2897[[package]]
2898name = "multibase"
2899version = "0.9.2"
2900source = "registry+https://github.com/rust-lang/crates.io-index"
2901checksum = "8694bb4835f452b0e3bb06dbebb1d6fc5385b6ca1caf2e55fd165c042390ec77"
2902dependencies = [
2903 "base-x",
2904 "base256emoji",
2905 "data-encoding",
2906 "data-encoding-macro",
2907]
2908
2909[[package]]
2910name = "multihash"
2911version = "0.19.3"
2912source = "registry+https://github.com/rust-lang/crates.io-index"
2913checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d"
2914dependencies = [
2915 "core2",
2916 "serde",
2917 "unsigned-varint 0.8.0",
2918]
2919
2920[[package]]
2921name = "multimap"
2922version = "0.10.1"
2923source = "registry+https://github.com/rust-lang/crates.io-index"
2924checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
2925
2926[[package]]
2927name = "n0-future"
2928version = "0.1.3"
2929source = "registry+https://github.com/rust-lang/crates.io-index"
2930checksum = "7bb0e5d99e681ab3c938842b96fcb41bf8a7bb4bfdb11ccbd653a7e83e06c794"
2931dependencies = [
2932 "cfg_aliases",
2933 "derive_more",
2934 "futures-buffered",
2935 "futures-lite",
2936 "futures-util",
2937 "js-sys",
2938 "pin-project",
2939 "send_wrapper",
2940 "tokio",
2941 "tokio-util",
2942 "wasm-bindgen",
2943 "wasm-bindgen-futures",
2944 "web-time",
2945]
2946
2947[[package]]
2948name = "native-tls"
2949version = "0.2.14"
2950source = "registry+https://github.com/rust-lang/crates.io-index"
2951checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
2952dependencies = [
2953 "libc",
2954 "log",
2955 "openssl",
2956 "openssl-probe 0.1.6",
2957 "openssl-sys",
2958 "schannel",
2959 "security-framework 2.11.1",
2960 "security-framework-sys",
2961 "tempfile",
2962]
2963
2964[[package]]
2965name = "nom"
2966version = "7.1.3"
2967source = "registry+https://github.com/rust-lang/crates.io-index"
2968checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2969dependencies = [
2970 "memchr",
2971 "minimal-lexical",
2972]
2973
2974[[package]]
2975name = "nu-ansi-term"
2976version = "0.50.3"
2977source = "registry+https://github.com/rust-lang/crates.io-index"
2978checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
2979dependencies = [
2980 "windows-sys 0.61.2",
2981]
2982
2983[[package]]
2984name = "num-bigint"
2985version = "0.4.6"
2986source = "registry+https://github.com/rust-lang/crates.io-index"
2987checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
2988dependencies = [
2989 "num-integer",
2990 "num-traits",
2991]
2992
2993[[package]]
2994name = "num-bigint-dig"
2995version = "0.8.6"
2996source = "registry+https://github.com/rust-lang/crates.io-index"
2997checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
2998dependencies = [
2999 "lazy_static",
3000 "libm",
3001 "num-integer",
3002 "num-iter",
3003 "num-traits",
3004 "rand 0.8.5",
3005 "smallvec",
3006 "zeroize",
3007]
3008
3009[[package]]
3010name = "num-conv"
3011version = "0.2.0"
3012source = "registry+https://github.com/rust-lang/crates.io-index"
3013checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
3014
3015[[package]]
3016name = "num-integer"
3017version = "0.1.46"
3018source = "registry+https://github.com/rust-lang/crates.io-index"
3019checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
3020dependencies = [
3021 "num-traits",
3022]
3023
3024[[package]]
3025name = "num-iter"
3026version = "0.1.45"
3027source = "registry+https://github.com/rust-lang/crates.io-index"
3028checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
3029dependencies = [
3030 "autocfg",
3031 "num-integer",
3032 "num-traits",
3033]
3034
3035[[package]]
3036name = "num-traits"
3037version = "0.2.19"
3038source = "registry+https://github.com/rust-lang/crates.io-index"
3039checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
3040dependencies = [
3041 "autocfg",
3042 "libm",
3043]
3044
3045[[package]]
3046name = "num_cpus"
3047version = "1.17.0"
3048source = "registry+https://github.com/rust-lang/crates.io-index"
3049checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
3050dependencies = [
3051 "hermit-abi",
3052 "libc",
3053]
3054
3055[[package]]
3056name = "once_cell"
3057version = "1.21.3"
3058source = "registry+https://github.com/rust-lang/crates.io-index"
3059checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
3060
3061[[package]]
3062name = "once_cell_polyfill"
3063version = "1.70.2"
3064source = "registry+https://github.com/rust-lang/crates.io-index"
3065checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
3066
3067[[package]]
3068name = "openssl"
3069version = "0.10.75"
3070source = "registry+https://github.com/rust-lang/crates.io-index"
3071checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328"
3072dependencies = [
3073 "bitflags 2.10.0",
3074 "cfg-if",
3075 "foreign-types",
3076 "libc",
3077 "once_cell",
3078 "openssl-macros",
3079 "openssl-sys",
3080]
3081
3082[[package]]
3083name = "openssl-macros"
3084version = "0.1.1"
3085source = "registry+https://github.com/rust-lang/crates.io-index"
3086checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
3087dependencies = [
3088 "proc-macro2",
3089 "quote",
3090 "syn 2.0.114",
3091]
3092
3093[[package]]
3094name = "openssl-probe"
3095version = "0.1.6"
3096source = "registry+https://github.com/rust-lang/crates.io-index"
3097checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
3098
3099[[package]]
3100name = "openssl-probe"
3101version = "0.2.1"
3102source = "registry+https://github.com/rust-lang/crates.io-index"
3103checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
3104
3105[[package]]
3106name = "openssl-sys"
3107version = "0.9.111"
3108source = "registry+https://github.com/rust-lang/crates.io-index"
3109checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321"
3110dependencies = [
3111 "cc",
3112 "libc",
3113 "pkg-config",
3114 "vcpkg",
3115]
3116
3117[[package]]
3118name = "opentelemetry"
3119version = "0.31.0"
3120source = "registry+https://github.com/rust-lang/crates.io-index"
3121checksum = "b84bcd6ae87133e903af7ef497404dda70c60d0ea14895fc8a5e6722754fc2a0"
3122dependencies = [
3123 "futures-core",
3124 "futures-sink",
3125 "js-sys",
3126 "pin-project-lite",
3127 "thiserror 2.0.18",
3128 "tracing",
3129]
3130
3131[[package]]
3132name = "opentelemetry-http"
3133version = "0.31.0"
3134source = "registry+https://github.com/rust-lang/crates.io-index"
3135checksum = "d7a6d09a73194e6b66df7c8f1b680f156d916a1a942abf2de06823dd02b7855d"
3136dependencies = [
3137 "async-trait",
3138 "bytes",
3139 "http",
3140 "opentelemetry",
3141 "reqwest",
3142]
3143
3144[[package]]
3145name = "opentelemetry-otlp"
3146version = "0.31.0"
3147source = "registry+https://github.com/rust-lang/crates.io-index"
3148checksum = "7a2366db2dca4d2ad033cad11e6ee42844fd727007af5ad04a1730f4cb8163bf"
3149dependencies = [
3150 "http",
3151 "opentelemetry",
3152 "opentelemetry-http",
3153 "opentelemetry-proto",
3154 "opentelemetry_sdk",
3155 "prost",
3156 "reqwest",
3157 "thiserror 2.0.18",
3158 "tracing",
3159]
3160
3161[[package]]
3162name = "opentelemetry-proto"
3163version = "0.31.0"
3164source = "registry+https://github.com/rust-lang/crates.io-index"
3165checksum = "a7175df06de5eaee9909d4805a3d07e28bb752c34cab57fa9cff549da596b30f"
3166dependencies = [
3167 "opentelemetry",
3168 "opentelemetry_sdk",
3169 "prost",
3170 "tonic",
3171 "tonic-prost",
3172]
3173
3174[[package]]
3175name = "opentelemetry-semantic-conventions"
3176version = "0.31.0"
3177source = "registry+https://github.com/rust-lang/crates.io-index"
3178checksum = "e62e29dfe041afb8ed2a6c9737ab57db4907285d999ef8ad3a59092a36bdc846"
3179
3180[[package]]
3181name = "opentelemetry_sdk"
3182version = "0.31.0"
3183source = "registry+https://github.com/rust-lang/crates.io-index"
3184checksum = "e14ae4f5991976fd48df6d843de219ca6d31b01daaab2dad5af2badeded372bd"
3185dependencies = [
3186 "futures-channel",
3187 "futures-executor",
3188 "futures-util",
3189 "opentelemetry",
3190 "percent-encoding",
3191 "rand 0.9.2",
3192 "thiserror 2.0.18",
3193]
3194
3195[[package]]
3196name = "ouroboros"
3197version = "0.18.5"
3198source = "registry+https://github.com/rust-lang/crates.io-index"
3199checksum = "1e0f050db9c44b97a94723127e6be766ac5c340c48f2c4bb3ffa11713744be59"
3200dependencies = [
3201 "aliasable",
3202 "ouroboros_macro",
3203 "static_assertions",
3204]
3205
3206[[package]]
3207name = "ouroboros_macro"
3208version = "0.18.5"
3209source = "registry+https://github.com/rust-lang/crates.io-index"
3210checksum = "3c7028bdd3d43083f6d8d4d5187680d0d3560d54df4cc9d752005268b41e64d0"
3211dependencies = [
3212 "heck 0.4.1",
3213 "proc-macro2",
3214 "proc-macro2-diagnostics",
3215 "quote",
3216 "syn 2.0.114",
3217]
3218
3219[[package]]
3220name = "p256"
3221version = "0.13.2"
3222source = "registry+https://github.com/rust-lang/crates.io-index"
3223checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
3224dependencies = [
3225 "ecdsa",
3226 "elliptic-curve",
3227 "primeorder",
3228 "sha2",
3229]
3230
3231[[package]]
3232name = "p384"
3233version = "0.13.1"
3234source = "registry+https://github.com/rust-lang/crates.io-index"
3235checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
3236dependencies = [
3237 "ecdsa",
3238 "elliptic-curve",
3239 "primeorder",
3240 "sha2",
3241]
3242
3243[[package]]
3244name = "parakeet"
3245version = "0.1.0"
3246dependencies = [
3247 "async-recursion",
3248 "axum",
3249 "axum-extra",
3250 "axum-tracing-opentelemetry",
3251 "base64",
3252 "chrono",
3253 "dataloader",
3254 "deadpool",
3255 "diesel",
3256 "diesel-async",
3257 "diesel_migrations",
3258 "eyre",
3259 "figment",
3260 "itertools 0.14.0",
3261 "jacquard-common",
3262 "jacquard-identity",
3263 "jsonwebtoken",
3264 "lexica",
3265 "multibase",
3266 "opentelemetry",
3267 "opentelemetry-otlp",
3268 "opentelemetry_sdk",
3269 "parakeet-db",
3270 "parakeet-index",
3271 "redis",
3272 "reqwest",
3273 "serde",
3274 "serde_ipld_dagcbor",
3275 "serde_json",
3276 "tokio",
3277 "tower",
3278 "tower-http",
3279 "tracing",
3280 "tracing-opentelemetry",
3281 "tracing-subscriber",
3282]
3283
3284[[package]]
3285name = "parakeet-db"
3286version = "0.1.0"
3287dependencies = [
3288 "chrono",
3289 "diesel",
3290 "postgres-types",
3291 "serde",
3292 "serde_json",
3293]
3294
3295[[package]]
3296name = "parakeet-index"
3297version = "0.1.0"
3298dependencies = [
3299 "eyre",
3300 "figment",
3301 "itertools 0.14.0",
3302 "opentelemetry",
3303 "opentelemetry-otlp",
3304 "opentelemetry_sdk",
3305 "prost",
3306 "rocksdb",
3307 "serde",
3308 "tokio",
3309 "tonic",
3310 "tonic-health",
3311 "tonic-prost",
3312 "tonic-prost-build",
3313 "tonic-tracing-opentelemetry",
3314 "tower",
3315 "tracing",
3316 "tracing-opentelemetry",
3317 "tracing-subscriber",
3318]
3319
3320[[package]]
3321name = "parking"
3322version = "2.2.1"
3323source = "registry+https://github.com/rust-lang/crates.io-index"
3324checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
3325
3326[[package]]
3327name = "parking_lot"
3328version = "0.11.2"
3329source = "registry+https://github.com/rust-lang/crates.io-index"
3330checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
3331dependencies = [
3332 "instant",
3333 "lock_api",
3334 "parking_lot_core 0.8.6",
3335]
3336
3337[[package]]
3338name = "parking_lot"
3339version = "0.12.5"
3340source = "registry+https://github.com/rust-lang/crates.io-index"
3341checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
3342dependencies = [
3343 "lock_api",
3344 "parking_lot_core 0.9.12",
3345]
3346
3347[[package]]
3348name = "parking_lot_core"
3349version = "0.8.6"
3350source = "registry+https://github.com/rust-lang/crates.io-index"
3351checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
3352dependencies = [
3353 "cfg-if",
3354 "instant",
3355 "libc",
3356 "redox_syscall 0.2.16",
3357 "smallvec",
3358 "winapi",
3359]
3360
3361[[package]]
3362name = "parking_lot_core"
3363version = "0.9.12"
3364source = "registry+https://github.com/rust-lang/crates.io-index"
3365checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
3366dependencies = [
3367 "cfg-if",
3368 "libc",
3369 "redox_syscall 0.5.18",
3370 "smallvec",
3371 "windows-link",
3372]
3373
3374[[package]]
3375name = "pear"
3376version = "0.2.9"
3377source = "registry+https://github.com/rust-lang/crates.io-index"
3378checksum = "bdeeaa00ce488657faba8ebf44ab9361f9365a97bd39ffb8a60663f57ff4b467"
3379dependencies = [
3380 "inlinable_string",
3381 "pear_codegen",
3382 "yansi",
3383]
3384
3385[[package]]
3386name = "pear_codegen"
3387version = "0.2.9"
3388source = "registry+https://github.com/rust-lang/crates.io-index"
3389checksum = "4bab5b985dc082b345f812b7df84e1bef27e7207b39e448439ba8bd69c93f147"
3390dependencies = [
3391 "proc-macro2",
3392 "proc-macro2-diagnostics",
3393 "quote",
3394 "syn 2.0.114",
3395]
3396
3397[[package]]
3398name = "pem"
3399version = "3.0.6"
3400source = "registry+https://github.com/rust-lang/crates.io-index"
3401checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
3402dependencies = [
3403 "base64",
3404 "serde_core",
3405]
3406
3407[[package]]
3408name = "pem-rfc7468"
3409version = "0.7.0"
3410source = "registry+https://github.com/rust-lang/crates.io-index"
3411checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
3412dependencies = [
3413 "base64ct",
3414]
3415
3416[[package]]
3417name = "percent-encoding"
3418version = "2.3.2"
3419source = "registry+https://github.com/rust-lang/crates.io-index"
3420checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
3421
3422[[package]]
3423name = "petgraph"
3424version = "0.8.3"
3425source = "registry+https://github.com/rust-lang/crates.io-index"
3426checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
3427dependencies = [
3428 "fixedbitset",
3429 "hashbrown 0.15.5",
3430 "indexmap 2.13.0",
3431]
3432
3433[[package]]
3434name = "phf"
3435version = "0.13.1"
3436source = "registry+https://github.com/rust-lang/crates.io-index"
3437checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
3438dependencies = [
3439 "phf_shared",
3440 "serde",
3441]
3442
3443[[package]]
3444name = "phf_shared"
3445version = "0.13.1"
3446source = "registry+https://github.com/rust-lang/crates.io-index"
3447checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
3448dependencies = [
3449 "siphasher",
3450]
3451
3452[[package]]
3453name = "pin-project"
3454version = "1.1.10"
3455source = "registry+https://github.com/rust-lang/crates.io-index"
3456checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
3457dependencies = [
3458 "pin-project-internal",
3459]
3460
3461[[package]]
3462name = "pin-project-internal"
3463version = "1.1.10"
3464source = "registry+https://github.com/rust-lang/crates.io-index"
3465checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
3466dependencies = [
3467 "proc-macro2",
3468 "quote",
3469 "syn 2.0.114",
3470]
3471
3472[[package]]
3473name = "pin-project-lite"
3474version = "0.2.16"
3475source = "registry+https://github.com/rust-lang/crates.io-index"
3476checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
3477
3478[[package]]
3479name = "pin-utils"
3480version = "0.1.0"
3481source = "registry+https://github.com/rust-lang/crates.io-index"
3482checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
3483
3484[[package]]
3485name = "pkcs1"
3486version = "0.7.5"
3487source = "registry+https://github.com/rust-lang/crates.io-index"
3488checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
3489dependencies = [
3490 "der",
3491 "pkcs8",
3492 "spki",
3493]
3494
3495[[package]]
3496name = "pkcs8"
3497version = "0.10.2"
3498source = "registry+https://github.com/rust-lang/crates.io-index"
3499checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
3500dependencies = [
3501 "der",
3502 "spki",
3503]
3504
3505[[package]]
3506name = "pkg-config"
3507version = "0.3.32"
3508source = "registry+https://github.com/rust-lang/crates.io-index"
3509checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
3510
3511[[package]]
3512name = "portable-atomic"
3513version = "1.13.0"
3514source = "registry+https://github.com/rust-lang/crates.io-index"
3515checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
3516
3517[[package]]
3518name = "postcard"
3519version = "1.1.3"
3520source = "registry+https://github.com/rust-lang/crates.io-index"
3521checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
3522dependencies = [
3523 "cobs",
3524 "embedded-io 0.4.0",
3525 "embedded-io 0.6.1",
3526 "heapless",
3527 "serde",
3528]
3529
3530[[package]]
3531name = "postgres-protocol"
3532version = "0.6.10"
3533source = "registry+https://github.com/rust-lang/crates.io-index"
3534checksum = "3ee9dd5fe15055d2b6806f4736aa0c9637217074e224bbec46d4041b91bb9491"
3535dependencies = [
3536 "base64",
3537 "byteorder",
3538 "bytes",
3539 "fallible-iterator",
3540 "hmac",
3541 "md-5",
3542 "memchr",
3543 "rand 0.9.2",
3544 "sha2",
3545 "stringprep",
3546]
3547
3548[[package]]
3549name = "postgres-types"
3550version = "0.2.12"
3551source = "registry+https://github.com/rust-lang/crates.io-index"
3552checksum = "54b858f82211e84682fecd373f68e1ceae642d8d751a1ebd13f33de6257b3e20"
3553dependencies = [
3554 "bytes",
3555 "chrono",
3556 "fallible-iterator",
3557 "postgres-protocol",
3558 "serde_core",
3559 "serde_json",
3560]
3561
3562[[package]]
3563name = "potential_utf"
3564version = "0.1.4"
3565source = "registry+https://github.com/rust-lang/crates.io-index"
3566checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
3567dependencies = [
3568 "zerovec",
3569]
3570
3571[[package]]
3572name = "powerfmt"
3573version = "0.2.0"
3574source = "registry+https://github.com/rust-lang/crates.io-index"
3575checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
3576
3577[[package]]
3578name = "ppv-lite86"
3579version = "0.2.21"
3580source = "registry+https://github.com/rust-lang/crates.io-index"
3581checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
3582dependencies = [
3583 "zerocopy",
3584]
3585
3586[[package]]
3587name = "prettyplease"
3588version = "0.2.37"
3589source = "registry+https://github.com/rust-lang/crates.io-index"
3590checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
3591dependencies = [
3592 "proc-macro2",
3593 "syn 2.0.114",
3594]
3595
3596[[package]]
3597name = "primeorder"
3598version = "0.13.6"
3599source = "registry+https://github.com/rust-lang/crates.io-index"
3600checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
3601dependencies = [
3602 "elliptic-curve",
3603]
3604
3605[[package]]
3606name = "proc-macro-error"
3607version = "1.0.4"
3608source = "registry+https://github.com/rust-lang/crates.io-index"
3609checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
3610dependencies = [
3611 "proc-macro-error-attr",
3612 "proc-macro2",
3613 "quote",
3614 "syn 1.0.109",
3615 "version_check",
3616]
3617
3618[[package]]
3619name = "proc-macro-error-attr"
3620version = "1.0.4"
3621source = "registry+https://github.com/rust-lang/crates.io-index"
3622checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
3623dependencies = [
3624 "proc-macro2",
3625 "quote",
3626 "version_check",
3627]
3628
3629[[package]]
3630name = "proc-macro2"
3631version = "1.0.106"
3632source = "registry+https://github.com/rust-lang/crates.io-index"
3633checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
3634dependencies = [
3635 "unicode-ident",
3636]
3637
3638[[package]]
3639name = "proc-macro2-diagnostics"
3640version = "0.10.1"
3641source = "registry+https://github.com/rust-lang/crates.io-index"
3642checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8"
3643dependencies = [
3644 "proc-macro2",
3645 "quote",
3646 "syn 2.0.114",
3647 "version_check",
3648 "yansi",
3649]
3650
3651[[package]]
3652name = "prost"
3653version = "0.14.3"
3654source = "registry+https://github.com/rust-lang/crates.io-index"
3655checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568"
3656dependencies = [
3657 "bytes",
3658 "prost-derive",
3659]
3660
3661[[package]]
3662name = "prost-build"
3663version = "0.14.3"
3664source = "registry+https://github.com/rust-lang/crates.io-index"
3665checksum = "343d3bd7056eda839b03204e68deff7d1b13aba7af2b2fd16890697274262ee7"
3666dependencies = [
3667 "heck 0.5.0",
3668 "itertools 0.14.0",
3669 "log",
3670 "multimap",
3671 "petgraph",
3672 "prettyplease",
3673 "prost",
3674 "prost-types",
3675 "pulldown-cmark",
3676 "pulldown-cmark-to-cmark",
3677 "regex",
3678 "syn 2.0.114",
3679 "tempfile",
3680]
3681
3682[[package]]
3683name = "prost-derive"
3684version = "0.14.3"
3685source = "registry+https://github.com/rust-lang/crates.io-index"
3686checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b"
3687dependencies = [
3688 "anyhow",
3689 "itertools 0.14.0",
3690 "proc-macro2",
3691 "quote",
3692 "syn 2.0.114",
3693]
3694
3695[[package]]
3696name = "prost-types"
3697version = "0.14.3"
3698source = "registry+https://github.com/rust-lang/crates.io-index"
3699checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7"
3700dependencies = [
3701 "prost",
3702]
3703
3704[[package]]
3705name = "pulldown-cmark"
3706version = "0.13.0"
3707source = "registry+https://github.com/rust-lang/crates.io-index"
3708checksum = "1e8bbe1a966bd2f362681a44f6edce3c2310ac21e4d5067a6e7ec396297a6ea0"
3709dependencies = [
3710 "bitflags 2.10.0",
3711 "memchr",
3712 "unicase",
3713]
3714
3715[[package]]
3716name = "pulldown-cmark-to-cmark"
3717version = "22.0.0"
3718source = "registry+https://github.com/rust-lang/crates.io-index"
3719checksum = "50793def1b900256624a709439404384204a5dc3a6ec580281bfaac35e882e90"
3720dependencies = [
3721 "pulldown-cmark",
3722]
3723
3724[[package]]
3725name = "quanta"
3726version = "0.12.6"
3727source = "registry+https://github.com/rust-lang/crates.io-index"
3728checksum = "f3ab5a9d756f0d97bdc89019bd2e4ea098cf9cde50ee7564dde6b81ccc8f06c7"
3729dependencies = [
3730 "crossbeam-utils",
3731 "libc",
3732 "once_cell",
3733 "raw-cpuid",
3734 "wasi 0.11.1+wasi-snapshot-preview1",
3735 "web-sys",
3736 "winapi",
3737]
3738
3739[[package]]
3740name = "quick_cache"
3741version = "0.6.18"
3742source = "registry+https://github.com/rust-lang/crates.io-index"
3743checksum = "7ada44a88ef953a3294f6eb55d2007ba44646015e18613d2f213016379203ef3"
3744dependencies = [
3745 "equivalent",
3746 "hashbrown 0.16.1",
3747]
3748
3749[[package]]
3750name = "quinn"
3751version = "0.11.9"
3752source = "registry+https://github.com/rust-lang/crates.io-index"
3753checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
3754dependencies = [
3755 "bytes",
3756 "cfg_aliases",
3757 "pin-project-lite",
3758 "quinn-proto",
3759 "quinn-udp",
3760 "rustc-hash",
3761 "rustls",
3762 "socket2 0.6.2",
3763 "thiserror 2.0.18",
3764 "tokio",
3765 "tracing",
3766 "web-time",
3767]
3768
3769[[package]]
3770name = "quinn-proto"
3771version = "0.11.13"
3772source = "registry+https://github.com/rust-lang/crates.io-index"
3773checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
3774dependencies = [
3775 "bytes",
3776 "getrandom 0.3.4",
3777 "lru-slab",
3778 "rand 0.9.2",
3779 "ring",
3780 "rustc-hash",
3781 "rustls",
3782 "rustls-pki-types",
3783 "slab",
3784 "thiserror 2.0.18",
3785 "tinyvec",
3786 "tracing",
3787 "web-time",
3788]
3789
3790[[package]]
3791name = "quinn-udp"
3792version = "0.5.14"
3793source = "registry+https://github.com/rust-lang/crates.io-index"
3794checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
3795dependencies = [
3796 "cfg_aliases",
3797 "libc",
3798 "once_cell",
3799 "socket2 0.6.2",
3800 "tracing",
3801 "windows-sys 0.60.2",
3802]
3803
3804[[package]]
3805name = "quote"
3806version = "1.0.44"
3807source = "registry+https://github.com/rust-lang/crates.io-index"
3808checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
3809dependencies = [
3810 "proc-macro2",
3811]
3812
3813[[package]]
3814name = "r-efi"
3815version = "5.3.0"
3816source = "registry+https://github.com/rust-lang/crates.io-index"
3817checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
3818
3819[[package]]
3820name = "rand"
3821version = "0.8.5"
3822source = "registry+https://github.com/rust-lang/crates.io-index"
3823checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
3824dependencies = [
3825 "libc",
3826 "rand_chacha 0.3.1",
3827 "rand_core 0.6.4",
3828]
3829
3830[[package]]
3831name = "rand"
3832version = "0.9.2"
3833source = "registry+https://github.com/rust-lang/crates.io-index"
3834checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
3835dependencies = [
3836 "rand_chacha 0.9.0",
3837 "rand_core 0.9.5",
3838]
3839
3840[[package]]
3841name = "rand_chacha"
3842version = "0.3.1"
3843source = "registry+https://github.com/rust-lang/crates.io-index"
3844checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
3845dependencies = [
3846 "ppv-lite86",
3847 "rand_core 0.6.4",
3848]
3849
3850[[package]]
3851name = "rand_chacha"
3852version = "0.9.0"
3853source = "registry+https://github.com/rust-lang/crates.io-index"
3854checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
3855dependencies = [
3856 "ppv-lite86",
3857 "rand_core 0.9.5",
3858]
3859
3860[[package]]
3861name = "rand_core"
3862version = "0.6.4"
3863source = "registry+https://github.com/rust-lang/crates.io-index"
3864checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
3865dependencies = [
3866 "getrandom 0.2.17",
3867]
3868
3869[[package]]
3870name = "rand_core"
3871version = "0.9.5"
3872source = "registry+https://github.com/rust-lang/crates.io-index"
3873checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
3874dependencies = [
3875 "getrandom 0.3.4",
3876]
3877
3878[[package]]
3879name = "rand_xoshiro"
3880version = "0.7.0"
3881source = "registry+https://github.com/rust-lang/crates.io-index"
3882checksum = "f703f4665700daf5512dcca5f43afa6af89f09db47fb56be587f80636bda2d41"
3883dependencies = [
3884 "rand_core 0.9.5",
3885]
3886
3887[[package]]
3888name = "range-traits"
3889version = "0.3.2"
3890source = "registry+https://github.com/rust-lang/crates.io-index"
3891checksum = "d20581732dd76fa913c7dff1a2412b714afe3573e94d41c34719de73337cc8ab"
3892
3893[[package]]
3894name = "raw-cpuid"
3895version = "11.6.0"
3896source = "registry+https://github.com/rust-lang/crates.io-index"
3897checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
3898dependencies = [
3899 "bitflags 2.10.0",
3900]
3901
3902[[package]]
3903name = "redis"
3904version = "0.32.7"
3905source = "registry+https://github.com/rust-lang/crates.io-index"
3906checksum = "014cc767fefab6a3e798ca45112bccad9c6e0e218fbd49720042716c73cfef44"
3907dependencies = [
3908 "bytes",
3909 "cfg-if",
3910 "combine",
3911 "futures-util",
3912 "itoa",
3913 "native-tls",
3914 "num-bigint",
3915 "percent-encoding",
3916 "pin-project-lite",
3917 "ryu",
3918 "sha1_smol",
3919 "socket2 0.6.2",
3920 "tokio",
3921 "tokio-native-tls",
3922 "tokio-util",
3923 "url",
3924]
3925
3926[[package]]
3927name = "redox_syscall"
3928version = "0.2.16"
3929source = "registry+https://github.com/rust-lang/crates.io-index"
3930checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
3931dependencies = [
3932 "bitflags 1.3.2",
3933]
3934
3935[[package]]
3936name = "redox_syscall"
3937version = "0.5.18"
3938source = "registry+https://github.com/rust-lang/crates.io-index"
3939checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
3940dependencies = [
3941 "bitflags 2.10.0",
3942]
3943
3944[[package]]
3945name = "ref-cast"
3946version = "1.0.25"
3947source = "registry+https://github.com/rust-lang/crates.io-index"
3948checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
3949dependencies = [
3950 "ref-cast-impl",
3951]
3952
3953[[package]]
3954name = "ref-cast-impl"
3955version = "1.0.25"
3956source = "registry+https://github.com/rust-lang/crates.io-index"
3957checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
3958dependencies = [
3959 "proc-macro2",
3960 "quote",
3961 "syn 2.0.114",
3962]
3963
3964[[package]]
3965name = "regex"
3966version = "1.12.2"
3967source = "registry+https://github.com/rust-lang/crates.io-index"
3968checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
3969dependencies = [
3970 "aho-corasick",
3971 "memchr",
3972 "regex-automata",
3973 "regex-syntax",
3974]
3975
3976[[package]]
3977name = "regex-automata"
3978version = "0.4.13"
3979source = "registry+https://github.com/rust-lang/crates.io-index"
3980checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
3981dependencies = [
3982 "aho-corasick",
3983 "memchr",
3984 "regex-syntax",
3985]
3986
3987[[package]]
3988name = "regex-lite"
3989version = "0.1.8"
3990source = "registry+https://github.com/rust-lang/crates.io-index"
3991checksum = "8d942b98df5e658f56f20d592c7f868833fe38115e65c33003d8cd224b0155da"
3992
3993[[package]]
3994name = "regex-syntax"
3995version = "0.8.8"
3996source = "registry+https://github.com/rust-lang/crates.io-index"
3997checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
3998
3999[[package]]
4000name = "repo-stream"
4001version = "0.4.0"
4002source = "registry+https://github.com/rust-lang/crates.io-index"
4003checksum = "6c95af4a1465ac3a5a5aa4921b60f8761c1e126deb53a5b1a2e40abd0ec6ae1f"
4004dependencies = [
4005 "cid",
4006 "fjall",
4007 "hashbrown 0.16.1",
4008 "iroh-car",
4009 "log",
4010 "serde",
4011 "serde_bytes",
4012 "serde_ipld_dagcbor",
4013 "sha2",
4014 "thiserror 2.0.18",
4015 "tokio",
4016]
4017
4018[[package]]
4019name = "reqwest"
4020version = "0.12.28"
4021source = "registry+https://github.com/rust-lang/crates.io-index"
4022checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
4023dependencies = [
4024 "base64",
4025 "bytes",
4026 "encoding_rs",
4027 "futures-channel",
4028 "futures-core",
4029 "futures-util",
4030 "h2",
4031 "http",
4032 "http-body",
4033 "http-body-util",
4034 "hyper",
4035 "hyper-rustls",
4036 "hyper-tls",
4037 "hyper-util",
4038 "js-sys",
4039 "log",
4040 "mime",
4041 "native-tls",
4042 "percent-encoding",
4043 "pin-project-lite",
4044 "quinn",
4045 "rustls",
4046 "rustls-native-certs",
4047 "rustls-pki-types",
4048 "serde",
4049 "serde_json",
4050 "serde_urlencoded",
4051 "sync_wrapper",
4052 "tokio",
4053 "tokio-native-tls",
4054 "tokio-rustls",
4055 "tokio-util",
4056 "tower",
4057 "tower-http",
4058 "tower-service",
4059 "url",
4060 "wasm-bindgen",
4061 "wasm-bindgen-futures",
4062 "wasm-streams",
4063 "web-sys",
4064 "webpki-roots",
4065]
4066
4067[[package]]
4068name = "resolv-conf"
4069version = "0.7.6"
4070source = "registry+https://github.com/rust-lang/crates.io-index"
4071checksum = "1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7"
4072
4073[[package]]
4074name = "rfc6979"
4075version = "0.4.0"
4076source = "registry+https://github.com/rust-lang/crates.io-index"
4077checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
4078dependencies = [
4079 "hmac",
4080 "subtle",
4081]
4082
4083[[package]]
4084name = "ring"
4085version = "0.17.14"
4086source = "registry+https://github.com/rust-lang/crates.io-index"
4087checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
4088dependencies = [
4089 "cc",
4090 "cfg-if",
4091 "getrandom 0.2.17",
4092 "libc",
4093 "untrusted",
4094 "windows-sys 0.52.0",
4095]
4096
4097[[package]]
4098name = "rocksdb"
4099version = "0.24.0"
4100source = "registry+https://github.com/rust-lang/crates.io-index"
4101checksum = "ddb7af00d2b17dbd07d82c0063e25411959748ff03e8d4f96134c2ff41fce34f"
4102dependencies = [
4103 "libc",
4104 "librocksdb-sys",
4105]
4106
4107[[package]]
4108name = "rsa"
4109version = "0.9.10"
4110source = "registry+https://github.com/rust-lang/crates.io-index"
4111checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
4112dependencies = [
4113 "const-oid",
4114 "digest",
4115 "num-bigint-dig",
4116 "num-integer",
4117 "num-traits",
4118 "pkcs1",
4119 "pkcs8",
4120 "rand_core 0.6.4",
4121 "signature",
4122 "spki",
4123 "subtle",
4124 "zeroize",
4125]
4126
4127[[package]]
4128name = "rustc-hash"
4129version = "2.1.1"
4130source = "registry+https://github.com/rust-lang/crates.io-index"
4131checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
4132
4133[[package]]
4134name = "rustc_version"
4135version = "0.4.1"
4136source = "registry+https://github.com/rust-lang/crates.io-index"
4137checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
4138dependencies = [
4139 "semver",
4140]
4141
4142[[package]]
4143name = "rustix"
4144version = "1.1.3"
4145source = "registry+https://github.com/rust-lang/crates.io-index"
4146checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
4147dependencies = [
4148 "bitflags 2.10.0",
4149 "errno",
4150 "libc",
4151 "linux-raw-sys",
4152 "windows-sys 0.61.2",
4153]
4154
4155[[package]]
4156name = "rustls"
4157version = "0.23.36"
4158source = "registry+https://github.com/rust-lang/crates.io-index"
4159checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
4160dependencies = [
4161 "aws-lc-rs",
4162 "once_cell",
4163 "ring",
4164 "rustls-pki-types",
4165 "rustls-webpki",
4166 "subtle",
4167 "zeroize",
4168]
4169
4170[[package]]
4171name = "rustls-native-certs"
4172version = "0.8.3"
4173source = "registry+https://github.com/rust-lang/crates.io-index"
4174checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
4175dependencies = [
4176 "openssl-probe 0.2.1",
4177 "rustls-pki-types",
4178 "schannel",
4179 "security-framework 3.5.1",
4180]
4181
4182[[package]]
4183name = "rustls-pki-types"
4184version = "1.14.0"
4185source = "registry+https://github.com/rust-lang/crates.io-index"
4186checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
4187dependencies = [
4188 "web-time",
4189 "zeroize",
4190]
4191
4192[[package]]
4193name = "rustls-webpki"
4194version = "0.103.9"
4195source = "registry+https://github.com/rust-lang/crates.io-index"
4196checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
4197dependencies = [
4198 "aws-lc-rs",
4199 "ring",
4200 "rustls-pki-types",
4201 "untrusted",
4202]
4203
4204[[package]]
4205name = "rustversion"
4206version = "1.0.22"
4207source = "registry+https://github.com/rust-lang/crates.io-index"
4208checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
4209
4210[[package]]
4211name = "ryu"
4212version = "1.0.22"
4213source = "registry+https://github.com/rust-lang/crates.io-index"
4214checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
4215
4216[[package]]
4217name = "schannel"
4218version = "0.1.28"
4219source = "registry+https://github.com/rust-lang/crates.io-index"
4220checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
4221dependencies = [
4222 "windows-sys 0.61.2",
4223]
4224
4225[[package]]
4226name = "schemars"
4227version = "0.9.0"
4228source = "registry+https://github.com/rust-lang/crates.io-index"
4229checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
4230dependencies = [
4231 "dyn-clone",
4232 "ref-cast",
4233 "serde",
4234 "serde_json",
4235]
4236
4237[[package]]
4238name = "schemars"
4239version = "1.2.0"
4240source = "registry+https://github.com/rust-lang/crates.io-index"
4241checksum = "54e910108742c57a770f492731f99be216a52fadd361b06c8fb59d74ccc267d2"
4242dependencies = [
4243 "dyn-clone",
4244 "ref-cast",
4245 "serde",
4246 "serde_json",
4247]
4248
4249[[package]]
4250name = "scoped-futures"
4251version = "0.1.4"
4252source = "registry+https://github.com/rust-lang/crates.io-index"
4253checksum = "1b24aae2d0636530f359e9d5ef0c04669d11c5e756699b27a6a6d845d8329091"
4254dependencies = [
4255 "pin-project-lite",
4256]
4257
4258[[package]]
4259name = "scoped-tls"
4260version = "1.0.1"
4261source = "registry+https://github.com/rust-lang/crates.io-index"
4262checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
4263
4264[[package]]
4265name = "scopeguard"
4266version = "1.2.0"
4267source = "registry+https://github.com/rust-lang/crates.io-index"
4268checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
4269
4270[[package]]
4271name = "sec1"
4272version = "0.7.3"
4273source = "registry+https://github.com/rust-lang/crates.io-index"
4274checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
4275dependencies = [
4276 "base16ct",
4277 "der",
4278 "generic-array",
4279 "pkcs8",
4280 "subtle",
4281 "zeroize",
4282]
4283
4284[[package]]
4285name = "security-framework"
4286version = "2.11.1"
4287source = "registry+https://github.com/rust-lang/crates.io-index"
4288checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
4289dependencies = [
4290 "bitflags 2.10.0",
4291 "core-foundation 0.9.4",
4292 "core-foundation-sys",
4293 "libc",
4294 "security-framework-sys",
4295]
4296
4297[[package]]
4298name = "security-framework"
4299version = "3.5.1"
4300source = "registry+https://github.com/rust-lang/crates.io-index"
4301checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
4302dependencies = [
4303 "bitflags 2.10.0",
4304 "core-foundation 0.10.1",
4305 "core-foundation-sys",
4306 "libc",
4307 "security-framework-sys",
4308]
4309
4310[[package]]
4311name = "security-framework-sys"
4312version = "2.15.0"
4313source = "registry+https://github.com/rust-lang/crates.io-index"
4314checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
4315dependencies = [
4316 "core-foundation-sys",
4317 "libc",
4318]
4319
4320[[package]]
4321name = "self_cell"
4322version = "1.2.2"
4323source = "registry+https://github.com/rust-lang/crates.io-index"
4324checksum = "b12e76d157a900eb52e81bc6e9f3069344290341720e9178cde2407113ac8d89"
4325
4326[[package]]
4327name = "semver"
4328version = "1.0.27"
4329source = "registry+https://github.com/rust-lang/crates.io-index"
4330checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
4331
4332[[package]]
4333name = "send_wrapper"
4334version = "0.6.0"
4335source = "registry+https://github.com/rust-lang/crates.io-index"
4336checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73"
4337
4338[[package]]
4339name = "serde"
4340version = "1.0.228"
4341source = "registry+https://github.com/rust-lang/crates.io-index"
4342checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
4343dependencies = [
4344 "serde_core",
4345 "serde_derive",
4346]
4347
4348[[package]]
4349name = "serde_bytes"
4350version = "0.11.19"
4351source = "registry+https://github.com/rust-lang/crates.io-index"
4352checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8"
4353dependencies = [
4354 "serde",
4355 "serde_core",
4356]
4357
4358[[package]]
4359name = "serde_core"
4360version = "1.0.228"
4361source = "registry+https://github.com/rust-lang/crates.io-index"
4362checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
4363dependencies = [
4364 "serde_derive",
4365]
4366
4367[[package]]
4368name = "serde_derive"
4369version = "1.0.228"
4370source = "registry+https://github.com/rust-lang/crates.io-index"
4371checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
4372dependencies = [
4373 "proc-macro2",
4374 "quote",
4375 "syn 2.0.114",
4376]
4377
4378[[package]]
4379name = "serde_html_form"
4380version = "0.2.8"
4381source = "registry+https://github.com/rust-lang/crates.io-index"
4382checksum = "b2f2d7ff8a2140333718bb329f5c40fc5f0865b84c426183ce14c97d2ab8154f"
4383dependencies = [
4384 "form_urlencoded",
4385 "indexmap 2.13.0",
4386 "itoa",
4387 "ryu",
4388 "serde_core",
4389]
4390
4391[[package]]
4392name = "serde_ipld_dagcbor"
4393version = "0.6.4"
4394source = "registry+https://github.com/rust-lang/crates.io-index"
4395checksum = "46182f4f08349a02b45c998ba3215d3f9de826246ba02bb9dddfe9a2a2100778"
4396dependencies = [
4397 "cbor4ii",
4398 "ipld-core",
4399 "scopeguard",
4400 "serde",
4401]
4402
4403[[package]]
4404name = "serde_json"
4405version = "1.0.149"
4406source = "registry+https://github.com/rust-lang/crates.io-index"
4407checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
4408dependencies = [
4409 "itoa",
4410 "memchr",
4411 "serde",
4412 "serde_core",
4413 "zmij",
4414]
4415
4416[[package]]
4417name = "serde_path_to_error"
4418version = "0.1.20"
4419source = "registry+https://github.com/rust-lang/crates.io-index"
4420checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
4421dependencies = [
4422 "itoa",
4423 "serde",
4424 "serde_core",
4425]
4426
4427[[package]]
4428name = "serde_repr"
4429version = "0.1.20"
4430source = "registry+https://github.com/rust-lang/crates.io-index"
4431checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
4432dependencies = [
4433 "proc-macro2",
4434 "quote",
4435 "syn 2.0.114",
4436]
4437
4438[[package]]
4439name = "serde_spanned"
4440version = "0.6.9"
4441source = "registry+https://github.com/rust-lang/crates.io-index"
4442checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
4443dependencies = [
4444 "serde",
4445]
4446
4447[[package]]
4448name = "serde_spanned"
4449version = "1.0.4"
4450source = "registry+https://github.com/rust-lang/crates.io-index"
4451checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
4452dependencies = [
4453 "serde_core",
4454]
4455
4456[[package]]
4457name = "serde_urlencoded"
4458version = "0.7.1"
4459source = "registry+https://github.com/rust-lang/crates.io-index"
4460checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
4461dependencies = [
4462 "form_urlencoded",
4463 "itoa",
4464 "ryu",
4465 "serde",
4466]
4467
4468[[package]]
4469name = "serde_with"
4470version = "3.16.1"
4471source = "registry+https://github.com/rust-lang/crates.io-index"
4472checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7"
4473dependencies = [
4474 "base64",
4475 "chrono",
4476 "hex",
4477 "indexmap 1.9.3",
4478 "indexmap 2.13.0",
4479 "schemars 0.9.0",
4480 "schemars 1.2.0",
4481 "serde_core",
4482 "serde_json",
4483 "serde_with_macros",
4484 "time",
4485]
4486
4487[[package]]
4488name = "serde_with_macros"
4489version = "3.16.1"
4490source = "registry+https://github.com/rust-lang/crates.io-index"
4491checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c"
4492dependencies = [
4493 "darling",
4494 "proc-macro2",
4495 "quote",
4496 "syn 2.0.114",
4497]
4498
4499[[package]]
4500name = "sfa"
4501version = "1.0.0"
4502source = "registry+https://github.com/rust-lang/crates.io-index"
4503checksum = "a1296838937cab56cd6c4eeeb8718ec777383700c33f060e2869867bd01d1175"
4504dependencies = [
4505 "byteorder-lite",
4506 "log",
4507 "xxhash-rust",
4508]
4509
4510[[package]]
4511name = "sha1"
4512version = "0.10.6"
4513source = "registry+https://github.com/rust-lang/crates.io-index"
4514checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
4515dependencies = [
4516 "cfg-if",
4517 "cpufeatures",
4518 "digest",
4519]
4520
4521[[package]]
4522name = "sha1_smol"
4523version = "1.0.1"
4524source = "registry+https://github.com/rust-lang/crates.io-index"
4525checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
4526
4527[[package]]
4528name = "sha2"
4529version = "0.10.9"
4530source = "registry+https://github.com/rust-lang/crates.io-index"
4531checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
4532dependencies = [
4533 "cfg-if",
4534 "cpufeatures",
4535 "digest",
4536]
4537
4538[[package]]
4539name = "sharded-slab"
4540version = "0.1.7"
4541source = "registry+https://github.com/rust-lang/crates.io-index"
4542checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
4543dependencies = [
4544 "lazy_static",
4545]
4546
4547[[package]]
4548name = "shlex"
4549version = "1.3.0"
4550source = "registry+https://github.com/rust-lang/crates.io-index"
4551checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
4552
4553[[package]]
4554name = "signal-hook-registry"
4555version = "1.4.8"
4556source = "registry+https://github.com/rust-lang/crates.io-index"
4557checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
4558dependencies = [
4559 "errno",
4560 "libc",
4561]
4562
4563[[package]]
4564name = "signature"
4565version = "2.2.0"
4566source = "registry+https://github.com/rust-lang/crates.io-index"
4567checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
4568dependencies = [
4569 "digest",
4570 "rand_core 0.6.4",
4571]
4572
4573[[package]]
4574name = "simd-adler32"
4575version = "0.3.8"
4576source = "registry+https://github.com/rust-lang/crates.io-index"
4577checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
4578
4579[[package]]
4580name = "simple_asn1"
4581version = "0.6.3"
4582source = "registry+https://github.com/rust-lang/crates.io-index"
4583checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb"
4584dependencies = [
4585 "num-bigint",
4586 "num-traits",
4587 "thiserror 2.0.18",
4588 "time",
4589]
4590
4591[[package]]
4592name = "siphasher"
4593version = "1.0.2"
4594source = "registry+https://github.com/rust-lang/crates.io-index"
4595checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
4596
4597[[package]]
4598name = "sketches-ddsketch"
4599version = "0.3.0"
4600source = "registry+https://github.com/rust-lang/crates.io-index"
4601checksum = "c1e9a774a6c28142ac54bb25d25562e6bcf957493a184f15ad4eebccb23e410a"
4602
4603[[package]]
4604name = "slab"
4605version = "0.4.11"
4606source = "registry+https://github.com/rust-lang/crates.io-index"
4607checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
4608
4609[[package]]
4610name = "sled"
4611version = "0.34.7"
4612source = "registry+https://github.com/rust-lang/crates.io-index"
4613checksum = "7f96b4737c2ce5987354855aed3797279def4ebf734436c6aa4552cf8e169935"
4614dependencies = [
4615 "crc32fast",
4616 "crossbeam-epoch",
4617 "crossbeam-utils",
4618 "fs2",
4619 "fxhash",
4620 "libc",
4621 "log",
4622 "parking_lot 0.11.2",
4623]
4624
4625[[package]]
4626name = "smallvec"
4627version = "1.15.1"
4628source = "registry+https://github.com/rust-lang/crates.io-index"
4629checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
4630
4631[[package]]
4632name = "smol_str"
4633version = "0.3.5"
4634source = "registry+https://github.com/rust-lang/crates.io-index"
4635checksum = "0f7a918bd2a9951d18ee6e48f076843e8e73a9a5d22cf05bcd4b7a81bdd04e17"
4636dependencies = [
4637 "borsh",
4638 "serde_core",
4639]
4640
4641[[package]]
4642name = "socket2"
4643version = "0.5.10"
4644source = "registry+https://github.com/rust-lang/crates.io-index"
4645checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
4646dependencies = [
4647 "libc",
4648 "windows-sys 0.52.0",
4649]
4650
4651[[package]]
4652name = "socket2"
4653version = "0.6.2"
4654source = "registry+https://github.com/rust-lang/crates.io-index"
4655checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
4656dependencies = [
4657 "libc",
4658 "windows-sys 0.60.2",
4659]
4660
4661[[package]]
4662name = "spin"
4663version = "0.9.8"
4664source = "registry+https://github.com/rust-lang/crates.io-index"
4665checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
4666dependencies = [
4667 "lock_api",
4668]
4669
4670[[package]]
4671name = "spin"
4672version = "0.10.0"
4673source = "registry+https://github.com/rust-lang/crates.io-index"
4674checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591"
4675
4676[[package]]
4677name = "spki"
4678version = "0.7.3"
4679source = "registry+https://github.com/rust-lang/crates.io-index"
4680checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
4681dependencies = [
4682 "base64ct",
4683 "der",
4684]
4685
4686[[package]]
4687name = "stable_deref_trait"
4688version = "1.2.1"
4689source = "registry+https://github.com/rust-lang/crates.io-index"
4690checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
4691
4692[[package]]
4693name = "static-regular-grammar"
4694version = "2.0.2"
4695source = "registry+https://github.com/rust-lang/crates.io-index"
4696checksum = "4f4a6c40247579acfbb138c3cd7de3dab113ab4ac6227f1b7de7d626ee667957"
4697dependencies = [
4698 "abnf",
4699 "btree-range-map",
4700 "ciborium",
4701 "hex_fmt",
4702 "indoc",
4703 "proc-macro-error",
4704 "proc-macro2",
4705 "quote",
4706 "serde",
4707 "sha2",
4708 "syn 2.0.114",
4709 "thiserror 1.0.69",
4710]
4711
4712[[package]]
4713name = "static_assertions"
4714version = "1.1.0"
4715source = "registry+https://github.com/rust-lang/crates.io-index"
4716checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
4717
4718[[package]]
4719name = "stringprep"
4720version = "0.1.5"
4721source = "registry+https://github.com/rust-lang/crates.io-index"
4722checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
4723dependencies = [
4724 "unicode-bidi",
4725 "unicode-normalization",
4726 "unicode-properties",
4727]
4728
4729[[package]]
4730name = "strsim"
4731version = "0.11.1"
4732source = "registry+https://github.com/rust-lang/crates.io-index"
4733checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
4734
4735[[package]]
4736name = "subtle"
4737version = "2.6.1"
4738source = "registry+https://github.com/rust-lang/crates.io-index"
4739checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
4740
4741[[package]]
4742name = "syn"
4743version = "1.0.109"
4744source = "registry+https://github.com/rust-lang/crates.io-index"
4745checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
4746dependencies = [
4747 "proc-macro2",
4748 "unicode-ident",
4749]
4750
4751[[package]]
4752name = "syn"
4753version = "2.0.114"
4754source = "registry+https://github.com/rust-lang/crates.io-index"
4755checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
4756dependencies = [
4757 "proc-macro2",
4758 "quote",
4759 "unicode-ident",
4760]
4761
4762[[package]]
4763name = "sync_wrapper"
4764version = "1.0.2"
4765source = "registry+https://github.com/rust-lang/crates.io-index"
4766checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
4767dependencies = [
4768 "futures-core",
4769]
4770
4771[[package]]
4772name = "synstructure"
4773version = "0.13.2"
4774source = "registry+https://github.com/rust-lang/crates.io-index"
4775checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
4776dependencies = [
4777 "proc-macro2",
4778 "quote",
4779 "syn 2.0.114",
4780]
4781
4782[[package]]
4783name = "system-configuration"
4784version = "0.6.1"
4785source = "registry+https://github.com/rust-lang/crates.io-index"
4786checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
4787dependencies = [
4788 "bitflags 2.10.0",
4789 "core-foundation 0.9.4",
4790 "system-configuration-sys",
4791]
4792
4793[[package]]
4794name = "system-configuration-sys"
4795version = "0.6.0"
4796source = "registry+https://github.com/rust-lang/crates.io-index"
4797checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
4798dependencies = [
4799 "core-foundation-sys",
4800 "libc",
4801]
4802
4803[[package]]
4804name = "tagptr"
4805version = "0.2.0"
4806source = "registry+https://github.com/rust-lang/crates.io-index"
4807checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
4808
4809[[package]]
4810name = "tempfile"
4811version = "3.24.0"
4812source = "registry+https://github.com/rust-lang/crates.io-index"
4813checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
4814dependencies = [
4815 "fastrand",
4816 "getrandom 0.3.4",
4817 "once_cell",
4818 "rustix",
4819 "windows-sys 0.61.2",
4820]
4821
4822[[package]]
4823name = "thiserror"
4824version = "1.0.69"
4825source = "registry+https://github.com/rust-lang/crates.io-index"
4826checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
4827dependencies = [
4828 "thiserror-impl 1.0.69",
4829]
4830
4831[[package]]
4832name = "thiserror"
4833version = "2.0.18"
4834source = "registry+https://github.com/rust-lang/crates.io-index"
4835checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
4836dependencies = [
4837 "thiserror-impl 2.0.18",
4838]
4839
4840[[package]]
4841name = "thiserror-impl"
4842version = "1.0.69"
4843source = "registry+https://github.com/rust-lang/crates.io-index"
4844checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
4845dependencies = [
4846 "proc-macro2",
4847 "quote",
4848 "syn 2.0.114",
4849]
4850
4851[[package]]
4852name = "thiserror-impl"
4853version = "2.0.18"
4854source = "registry+https://github.com/rust-lang/crates.io-index"
4855checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
4856dependencies = [
4857 "proc-macro2",
4858 "quote",
4859 "syn 2.0.114",
4860]
4861
4862[[package]]
4863name = "thread_local"
4864version = "1.1.9"
4865source = "registry+https://github.com/rust-lang/crates.io-index"
4866checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
4867dependencies = [
4868 "cfg-if",
4869]
4870
4871[[package]]
4872name = "time"
4873version = "0.3.46"
4874source = "registry+https://github.com/rust-lang/crates.io-index"
4875checksum = "9da98b7d9b7dad93488a84b8248efc35352b0b2657397d4167e7ad67e5d535e5"
4876dependencies = [
4877 "deranged",
4878 "itoa",
4879 "num-conv",
4880 "powerfmt",
4881 "serde_core",
4882 "time-core",
4883 "time-macros",
4884]
4885
4886[[package]]
4887name = "time-core"
4888version = "0.1.8"
4889source = "registry+https://github.com/rust-lang/crates.io-index"
4890checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
4891
4892[[package]]
4893name = "time-macros"
4894version = "0.2.26"
4895source = "registry+https://github.com/rust-lang/crates.io-index"
4896checksum = "78cc610bac2dcee56805c99642447d4c5dbde4d01f752ffea0199aee1f601dc4"
4897dependencies = [
4898 "num-conv",
4899 "time-core",
4900]
4901
4902[[package]]
4903name = "tinystr"
4904version = "0.8.2"
4905source = "registry+https://github.com/rust-lang/crates.io-index"
4906checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
4907dependencies = [
4908 "displaydoc",
4909 "zerovec",
4910]
4911
4912[[package]]
4913name = "tinyvec"
4914version = "1.10.0"
4915source = "registry+https://github.com/rust-lang/crates.io-index"
4916checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
4917dependencies = [
4918 "tinyvec_macros",
4919]
4920
4921[[package]]
4922name = "tinyvec_macros"
4923version = "0.1.1"
4924source = "registry+https://github.com/rust-lang/crates.io-index"
4925checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
4926
4927[[package]]
4928name = "tokio"
4929version = "1.49.0"
4930source = "registry+https://github.com/rust-lang/crates.io-index"
4931checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
4932dependencies = [
4933 "bytes",
4934 "libc",
4935 "mio",
4936 "parking_lot 0.12.5",
4937 "pin-project-lite",
4938 "signal-hook-registry",
4939 "socket2 0.6.2",
4940 "tokio-macros",
4941 "windows-sys 0.61.2",
4942]
4943
4944[[package]]
4945name = "tokio-macros"
4946version = "2.6.0"
4947source = "registry+https://github.com/rust-lang/crates.io-index"
4948checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
4949dependencies = [
4950 "proc-macro2",
4951 "quote",
4952 "syn 2.0.114",
4953]
4954
4955[[package]]
4956name = "tokio-native-tls"
4957version = "0.3.1"
4958source = "registry+https://github.com/rust-lang/crates.io-index"
4959checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
4960dependencies = [
4961 "native-tls",
4962 "tokio",
4963]
4964
4965[[package]]
4966name = "tokio-postgres"
4967version = "0.7.16"
4968source = "registry+https://github.com/rust-lang/crates.io-index"
4969checksum = "dcea47c8f71744367793f16c2db1f11cb859d28f436bdb4ca9193eb1f787ee42"
4970dependencies = [
4971 "async-trait",
4972 "byteorder",
4973 "bytes",
4974 "fallible-iterator",
4975 "futures-channel",
4976 "futures-util",
4977 "log",
4978 "parking_lot 0.12.5",
4979 "percent-encoding",
4980 "phf",
4981 "pin-project-lite",
4982 "postgres-protocol",
4983 "postgres-types",
4984 "rand 0.9.2",
4985 "socket2 0.6.2",
4986 "tokio",
4987 "tokio-util",
4988 "whoami",
4989]
4990
4991[[package]]
4992name = "tokio-rustls"
4993version = "0.26.4"
4994source = "registry+https://github.com/rust-lang/crates.io-index"
4995checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
4996dependencies = [
4997 "rustls",
4998 "tokio",
4999]
5000
5001[[package]]
5002name = "tokio-stream"
5003version = "0.1.18"
5004source = "registry+https://github.com/rust-lang/crates.io-index"
5005checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
5006dependencies = [
5007 "futures-core",
5008 "pin-project-lite",
5009 "tokio",
5010 "tokio-util",
5011]
5012
5013[[package]]
5014name = "tokio-tungstenite"
5015version = "0.26.2"
5016source = "registry+https://github.com/rust-lang/crates.io-index"
5017checksum = "7a9daff607c6d2bf6c16fd681ccb7eecc83e4e2cdc1ca067ffaadfca5de7f084"
5018dependencies = [
5019 "futures-util",
5020 "log",
5021 "native-tls",
5022 "tokio",
5023 "tokio-native-tls",
5024 "tungstenite",
5025]
5026
5027[[package]]
5028name = "tokio-util"
5029version = "0.7.18"
5030source = "registry+https://github.com/rust-lang/crates.io-index"
5031checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
5032dependencies = [
5033 "bytes",
5034 "futures-core",
5035 "futures-sink",
5036 "futures-util",
5037 "pin-project-lite",
5038 "tokio",
5039]
5040
5041[[package]]
5042name = "toml"
5043version = "0.8.23"
5044source = "registry+https://github.com/rust-lang/crates.io-index"
5045checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
5046dependencies = [
5047 "serde",
5048 "serde_spanned 0.6.9",
5049 "toml_datetime 0.6.11",
5050 "toml_edit",
5051]
5052
5053[[package]]
5054name = "toml"
5055version = "0.9.11+spec-1.1.0"
5056source = "registry+https://github.com/rust-lang/crates.io-index"
5057checksum = "f3afc9a848309fe1aaffaed6e1546a7a14de1f935dc9d89d32afd9a44bab7c46"
5058dependencies = [
5059 "serde_core",
5060 "serde_spanned 1.0.4",
5061 "toml_datetime 0.7.5+spec-1.1.0",
5062 "toml_parser",
5063 "winnow",
5064]
5065
5066[[package]]
5067name = "toml_datetime"
5068version = "0.6.11"
5069source = "registry+https://github.com/rust-lang/crates.io-index"
5070checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
5071dependencies = [
5072 "serde",
5073]
5074
5075[[package]]
5076name = "toml_datetime"
5077version = "0.7.5+spec-1.1.0"
5078source = "registry+https://github.com/rust-lang/crates.io-index"
5079checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
5080dependencies = [
5081 "serde_core",
5082]
5083
5084[[package]]
5085name = "toml_edit"
5086version = "0.22.27"
5087source = "registry+https://github.com/rust-lang/crates.io-index"
5088checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
5089dependencies = [
5090 "indexmap 2.13.0",
5091 "serde",
5092 "serde_spanned 0.6.9",
5093 "toml_datetime 0.6.11",
5094 "toml_write",
5095 "winnow",
5096]
5097
5098[[package]]
5099name = "toml_parser"
5100version = "1.0.6+spec-1.1.0"
5101source = "registry+https://github.com/rust-lang/crates.io-index"
5102checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
5103dependencies = [
5104 "winnow",
5105]
5106
5107[[package]]
5108name = "toml_write"
5109version = "0.1.2"
5110source = "registry+https://github.com/rust-lang/crates.io-index"
5111checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
5112
5113[[package]]
5114name = "tonic"
5115version = "0.14.3"
5116source = "registry+https://github.com/rust-lang/crates.io-index"
5117checksum = "a286e33f82f8a1ee2df63f4fa35c0becf4a85a0cb03091a15fd7bf0b402dc94a"
5118dependencies = [
5119 "async-trait",
5120 "axum",
5121 "base64",
5122 "bytes",
5123 "h2",
5124 "http",
5125 "http-body",
5126 "http-body-util",
5127 "hyper",
5128 "hyper-timeout",
5129 "hyper-util",
5130 "percent-encoding",
5131 "pin-project",
5132 "socket2 0.6.2",
5133 "sync_wrapper",
5134 "tokio",
5135 "tokio-stream",
5136 "tower",
5137 "tower-layer",
5138 "tower-service",
5139 "tracing",
5140]
5141
5142[[package]]
5143name = "tonic-build"
5144version = "0.14.3"
5145source = "registry+https://github.com/rust-lang/crates.io-index"
5146checksum = "27aac809edf60b741e2d7db6367214d078856b8a5bff0087e94ff330fb97b6fc"
5147dependencies = [
5148 "prettyplease",
5149 "proc-macro2",
5150 "quote",
5151 "syn 2.0.114",
5152]
5153
5154[[package]]
5155name = "tonic-health"
5156version = "0.14.3"
5157source = "registry+https://github.com/rust-lang/crates.io-index"
5158checksum = "8dbde2c702c4be12b9b2f6f7e6c824a84a7b7be177070cada8ee575a581af359"
5159dependencies = [
5160 "prost",
5161 "tokio",
5162 "tokio-stream",
5163 "tonic",
5164 "tonic-prost",
5165]
5166
5167[[package]]
5168name = "tonic-prost"
5169version = "0.14.3"
5170source = "registry+https://github.com/rust-lang/crates.io-index"
5171checksum = "d6c55a2d6a14174563de34409c9f92ff981d006f56da9c6ecd40d9d4a31500b0"
5172dependencies = [
5173 "bytes",
5174 "prost",
5175 "tonic",
5176]
5177
5178[[package]]
5179name = "tonic-prost-build"
5180version = "0.14.3"
5181source = "registry+https://github.com/rust-lang/crates.io-index"
5182checksum = "a4556786613791cfef4ed134aa670b61a85cfcacf71543ef33e8d801abae988f"
5183dependencies = [
5184 "prettyplease",
5185 "proc-macro2",
5186 "prost-build",
5187 "prost-types",
5188 "quote",
5189 "syn 2.0.114",
5190 "tempfile",
5191 "tonic-build",
5192]
5193
5194[[package]]
5195name = "tonic-tracing-opentelemetry"
5196version = "0.32.1"
5197source = "registry+https://github.com/rust-lang/crates.io-index"
5198checksum = "ebfd23b34386cc0f12d249a8ef34e56734a7b36eb743bb8045b42557376cd65b"
5199dependencies = [
5200 "futures-core",
5201 "futures-util",
5202 "http",
5203 "http-body",
5204 "hyper",
5205 "opentelemetry",
5206 "pin-project-lite",
5207 "tonic",
5208 "tower",
5209 "tracing",
5210 "tracing-opentelemetry",
5211 "tracing-opentelemetry-instrumentation-sdk",
5212]
5213
5214[[package]]
5215name = "tower"
5216version = "0.5.3"
5217source = "registry+https://github.com/rust-lang/crates.io-index"
5218checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
5219dependencies = [
5220 "futures-core",
5221 "futures-util",
5222 "indexmap 2.13.0",
5223 "pin-project-lite",
5224 "slab",
5225 "sync_wrapper",
5226 "tokio",
5227 "tokio-util",
5228 "tower-layer",
5229 "tower-service",
5230 "tracing",
5231]
5232
5233[[package]]
5234name = "tower-http"
5235version = "0.6.8"
5236source = "registry+https://github.com/rust-lang/crates.io-index"
5237checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
5238dependencies = [
5239 "async-compression",
5240 "bitflags 2.10.0",
5241 "bytes",
5242 "futures-core",
5243 "futures-util",
5244 "http",
5245 "http-body",
5246 "http-body-util",
5247 "iri-string",
5248 "pin-project-lite",
5249 "tokio",
5250 "tokio-util",
5251 "tower",
5252 "tower-layer",
5253 "tower-service",
5254 "tracing",
5255]
5256
5257[[package]]
5258name = "tower-layer"
5259version = "0.3.3"
5260source = "registry+https://github.com/rust-lang/crates.io-index"
5261checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
5262
5263[[package]]
5264name = "tower-service"
5265version = "0.3.3"
5266source = "registry+https://github.com/rust-lang/crates.io-index"
5267checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
5268
5269[[package]]
5270name = "tracing"
5271version = "0.1.44"
5272source = "registry+https://github.com/rust-lang/crates.io-index"
5273checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
5274dependencies = [
5275 "log",
5276 "pin-project-lite",
5277 "tracing-attributes",
5278 "tracing-core",
5279]
5280
5281[[package]]
5282name = "tracing-attributes"
5283version = "0.1.31"
5284source = "registry+https://github.com/rust-lang/crates.io-index"
5285checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
5286dependencies = [
5287 "proc-macro2",
5288 "quote",
5289 "syn 2.0.114",
5290]
5291
5292[[package]]
5293name = "tracing-core"
5294version = "0.1.36"
5295source = "registry+https://github.com/rust-lang/crates.io-index"
5296checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
5297dependencies = [
5298 "once_cell",
5299 "valuable",
5300]
5301
5302[[package]]
5303name = "tracing-log"
5304version = "0.2.0"
5305source = "registry+https://github.com/rust-lang/crates.io-index"
5306checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
5307dependencies = [
5308 "log",
5309 "once_cell",
5310 "tracing-core",
5311]
5312
5313[[package]]
5314name = "tracing-opentelemetry"
5315version = "0.32.1"
5316source = "registry+https://github.com/rust-lang/crates.io-index"
5317checksum = "1ac28f2d093c6c477eaa76b23525478f38de514fa9aeb1285738d4b97a9552fc"
5318dependencies = [
5319 "js-sys",
5320 "opentelemetry",
5321 "smallvec",
5322 "tracing",
5323 "tracing-core",
5324 "tracing-log",
5325 "tracing-subscriber",
5326 "web-time",
5327]
5328
5329[[package]]
5330name = "tracing-opentelemetry-instrumentation-sdk"
5331version = "0.32.3"
5332source = "registry+https://github.com/rust-lang/crates.io-index"
5333checksum = "95d05242e88c440ef1bc997c7ae5e0ed76085c5d817ca29c0be12f0813b024e7"
5334dependencies = [
5335 "http",
5336 "opentelemetry",
5337 "opentelemetry-semantic-conventions",
5338 "tracing",
5339 "tracing-opentelemetry",
5340]
5341
5342[[package]]
5343name = "tracing-serde"
5344version = "0.2.0"
5345source = "registry+https://github.com/rust-lang/crates.io-index"
5346checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1"
5347dependencies = [
5348 "serde",
5349 "tracing-core",
5350]
5351
5352[[package]]
5353name = "tracing-subscriber"
5354version = "0.3.22"
5355source = "registry+https://github.com/rust-lang/crates.io-index"
5356checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
5357dependencies = [
5358 "matchers",
5359 "nu-ansi-term",
5360 "once_cell",
5361 "regex-automata",
5362 "serde",
5363 "serde_json",
5364 "sharded-slab",
5365 "smallvec",
5366 "thread_local",
5367 "tracing",
5368 "tracing-core",
5369 "tracing-log",
5370 "tracing-serde",
5371]
5372
5373[[package]]
5374name = "trait-variant"
5375version = "0.1.2"
5376source = "registry+https://github.com/rust-lang/crates.io-index"
5377checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7"
5378dependencies = [
5379 "proc-macro2",
5380 "quote",
5381 "syn 2.0.114",
5382]
5383
5384[[package]]
5385name = "triomphe"
5386version = "0.1.15"
5387source = "registry+https://github.com/rust-lang/crates.io-index"
5388checksum = "dd69c5aa8f924c7519d6372789a74eac5b94fb0f8fcf0d4a97eb0bfc3e785f39"
5389
5390[[package]]
5391name = "try-lock"
5392version = "0.2.5"
5393source = "registry+https://github.com/rust-lang/crates.io-index"
5394checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
5395
5396[[package]]
5397name = "tungstenite"
5398version = "0.26.2"
5399source = "registry+https://github.com/rust-lang/crates.io-index"
5400checksum = "4793cb5e56680ecbb1d843515b23b6de9a75eb04b66643e256a396d43be33c13"
5401dependencies = [
5402 "bytes",
5403 "data-encoding",
5404 "http",
5405 "httparse",
5406 "log",
5407 "native-tls",
5408 "rand 0.9.2",
5409 "sha1",
5410 "thiserror 2.0.18",
5411 "utf-8",
5412]
5413
5414[[package]]
5415name = "typenum"
5416version = "1.19.0"
5417source = "registry+https://github.com/rust-lang/crates.io-index"
5418checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
5419
5420[[package]]
5421name = "uncased"
5422version = "0.9.10"
5423source = "registry+https://github.com/rust-lang/crates.io-index"
5424checksum = "e1b88fcfe09e89d3866a5c11019378088af2d24c3fbd4f0543f96b479ec90697"
5425dependencies = [
5426 "version_check",
5427]
5428
5429[[package]]
5430name = "unicase"
5431version = "2.9.0"
5432source = "registry+https://github.com/rust-lang/crates.io-index"
5433checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
5434
5435[[package]]
5436name = "unicode-bidi"
5437version = "0.3.18"
5438source = "registry+https://github.com/rust-lang/crates.io-index"
5439checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
5440
5441[[package]]
5442name = "unicode-ident"
5443version = "1.0.22"
5444source = "registry+https://github.com/rust-lang/crates.io-index"
5445checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
5446
5447[[package]]
5448name = "unicode-normalization"
5449version = "0.1.25"
5450source = "registry+https://github.com/rust-lang/crates.io-index"
5451checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
5452dependencies = [
5453 "tinyvec",
5454]
5455
5456[[package]]
5457name = "unicode-properties"
5458version = "0.1.4"
5459source = "registry+https://github.com/rust-lang/crates.io-index"
5460checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
5461
5462[[package]]
5463name = "unicode-segmentation"
5464version = "1.12.0"
5465source = "registry+https://github.com/rust-lang/crates.io-index"
5466checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
5467
5468[[package]]
5469name = "unicode-width"
5470version = "0.1.14"
5471source = "registry+https://github.com/rust-lang/crates.io-index"
5472checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
5473
5474[[package]]
5475name = "unicode-xid"
5476version = "0.2.6"
5477source = "registry+https://github.com/rust-lang/crates.io-index"
5478checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
5479
5480[[package]]
5481name = "unsigned-varint"
5482version = "0.7.2"
5483source = "registry+https://github.com/rust-lang/crates.io-index"
5484checksum = "6889a77d49f1f013504cec6bf97a2c730394adedaeb1deb5ea08949a50541105"
5485
5486[[package]]
5487name = "unsigned-varint"
5488version = "0.8.0"
5489source = "registry+https://github.com/rust-lang/crates.io-index"
5490checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06"
5491
5492[[package]]
5493name = "untrusted"
5494version = "0.9.0"
5495source = "registry+https://github.com/rust-lang/crates.io-index"
5496checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
5497
5498[[package]]
5499name = "url"
5500version = "2.5.8"
5501source = "registry+https://github.com/rust-lang/crates.io-index"
5502checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
5503dependencies = [
5504 "form_urlencoded",
5505 "idna",
5506 "percent-encoding",
5507 "serde",
5508 "serde_derive",
5509]
5510
5511[[package]]
5512name = "urlencoding"
5513version = "2.1.3"
5514source = "registry+https://github.com/rust-lang/crates.io-index"
5515checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
5516
5517[[package]]
5518name = "utf-8"
5519version = "0.7.6"
5520source = "registry+https://github.com/rust-lang/crates.io-index"
5521checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
5522
5523[[package]]
5524name = "utf8_iter"
5525version = "1.0.4"
5526source = "registry+https://github.com/rust-lang/crates.io-index"
5527checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
5528
5529[[package]]
5530name = "utf8parse"
5531version = "0.2.2"
5532source = "registry+https://github.com/rust-lang/crates.io-index"
5533checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
5534
5535[[package]]
5536name = "valuable"
5537version = "0.1.1"
5538source = "registry+https://github.com/rust-lang/crates.io-index"
5539checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
5540
5541[[package]]
5542name = "varint-rs"
5543version = "2.2.0"
5544source = "registry+https://github.com/rust-lang/crates.io-index"
5545checksum = "8f54a172d0620933a27a4360d3db3e2ae0dd6cceae9730751a036bbf182c4b23"
5546
5547[[package]]
5548name = "vcpkg"
5549version = "0.2.15"
5550source = "registry+https://github.com/rust-lang/crates.io-index"
5551checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
5552
5553[[package]]
5554name = "version_check"
5555version = "0.9.5"
5556source = "registry+https://github.com/rust-lang/crates.io-index"
5557checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
5558
5559[[package]]
5560name = "want"
5561version = "0.3.1"
5562source = "registry+https://github.com/rust-lang/crates.io-index"
5563checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
5564dependencies = [
5565 "try-lock",
5566]
5567
5568[[package]]
5569name = "wasi"
5570version = "0.11.1+wasi-snapshot-preview1"
5571source = "registry+https://github.com/rust-lang/crates.io-index"
5572checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
5573
5574[[package]]
5575name = "wasi"
5576version = "0.14.7+wasi-0.2.4"
5577source = "registry+https://github.com/rust-lang/crates.io-index"
5578checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
5579dependencies = [
5580 "wasip2",
5581]
5582
5583[[package]]
5584name = "wasip2"
5585version = "1.0.2+wasi-0.2.9"
5586source = "registry+https://github.com/rust-lang/crates.io-index"
5587checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
5588dependencies = [
5589 "wit-bindgen",
5590]
5591
5592[[package]]
5593name = "wasite"
5594version = "1.0.2"
5595source = "registry+https://github.com/rust-lang/crates.io-index"
5596checksum = "66fe902b4a6b8028a753d5424909b764ccf79b7a209eac9bf97e59cda9f71a42"
5597dependencies = [
5598 "wasi 0.14.7+wasi-0.2.4",
5599]
5600
5601[[package]]
5602name = "wasm-bindgen"
5603version = "0.2.108"
5604source = "registry+https://github.com/rust-lang/crates.io-index"
5605checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
5606dependencies = [
5607 "cfg-if",
5608 "once_cell",
5609 "rustversion",
5610 "wasm-bindgen-macro",
5611 "wasm-bindgen-shared",
5612]
5613
5614[[package]]
5615name = "wasm-bindgen-futures"
5616version = "0.4.58"
5617source = "registry+https://github.com/rust-lang/crates.io-index"
5618checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
5619dependencies = [
5620 "cfg-if",
5621 "futures-util",
5622 "js-sys",
5623 "once_cell",
5624 "wasm-bindgen",
5625 "web-sys",
5626]
5627
5628[[package]]
5629name = "wasm-bindgen-macro"
5630version = "0.2.108"
5631source = "registry+https://github.com/rust-lang/crates.io-index"
5632checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
5633dependencies = [
5634 "quote",
5635 "wasm-bindgen-macro-support",
5636]
5637
5638[[package]]
5639name = "wasm-bindgen-macro-support"
5640version = "0.2.108"
5641source = "registry+https://github.com/rust-lang/crates.io-index"
5642checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
5643dependencies = [
5644 "bumpalo",
5645 "proc-macro2",
5646 "quote",
5647 "syn 2.0.114",
5648 "wasm-bindgen-shared",
5649]
5650
5651[[package]]
5652name = "wasm-bindgen-shared"
5653version = "0.2.108"
5654source = "registry+https://github.com/rust-lang/crates.io-index"
5655checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
5656dependencies = [
5657 "unicode-ident",
5658]
5659
5660[[package]]
5661name = "wasm-streams"
5662version = "0.4.2"
5663source = "registry+https://github.com/rust-lang/crates.io-index"
5664checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
5665dependencies = [
5666 "futures-util",
5667 "js-sys",
5668 "wasm-bindgen",
5669 "wasm-bindgen-futures",
5670 "web-sys",
5671]
5672
5673[[package]]
5674name = "web-sys"
5675version = "0.3.85"
5676source = "registry+https://github.com/rust-lang/crates.io-index"
5677checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
5678dependencies = [
5679 "js-sys",
5680 "wasm-bindgen",
5681]
5682
5683[[package]]
5684name = "web-time"
5685version = "1.1.0"
5686source = "registry+https://github.com/rust-lang/crates.io-index"
5687checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
5688dependencies = [
5689 "js-sys",
5690 "wasm-bindgen",
5691]
5692
5693[[package]]
5694name = "webpki-roots"
5695version = "1.0.5"
5696source = "registry+https://github.com/rust-lang/crates.io-index"
5697checksum = "12bed680863276c63889429bfd6cab3b99943659923822de1c8a39c49e4d722c"
5698dependencies = [
5699 "rustls-pki-types",
5700]
5701
5702[[package]]
5703name = "whoami"
5704version = "2.1.0"
5705source = "registry+https://github.com/rust-lang/crates.io-index"
5706checksum = "8fae98cf96deed1b7572272dfc777713c249ae40aa1cf8862e091e8b745f5361"
5707dependencies = [
5708 "libredox",
5709 "wasite",
5710 "web-sys",
5711]
5712
5713[[package]]
5714name = "widestring"
5715version = "1.2.1"
5716source = "registry+https://github.com/rust-lang/crates.io-index"
5717checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
5718
5719[[package]]
5720name = "winapi"
5721version = "0.3.9"
5722source = "registry+https://github.com/rust-lang/crates.io-index"
5723checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
5724dependencies = [
5725 "winapi-i686-pc-windows-gnu",
5726 "winapi-x86_64-pc-windows-gnu",
5727]
5728
5729[[package]]
5730name = "winapi-i686-pc-windows-gnu"
5731version = "0.4.0"
5732source = "registry+https://github.com/rust-lang/crates.io-index"
5733checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
5734
5735[[package]]
5736name = "winapi-x86_64-pc-windows-gnu"
5737version = "0.4.0"
5738source = "registry+https://github.com/rust-lang/crates.io-index"
5739checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
5740
5741[[package]]
5742name = "windows-core"
5743version = "0.62.2"
5744source = "registry+https://github.com/rust-lang/crates.io-index"
5745checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
5746dependencies = [
5747 "windows-implement",
5748 "windows-interface",
5749 "windows-link",
5750 "windows-result",
5751 "windows-strings",
5752]
5753
5754[[package]]
5755name = "windows-implement"
5756version = "0.60.2"
5757source = "registry+https://github.com/rust-lang/crates.io-index"
5758checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
5759dependencies = [
5760 "proc-macro2",
5761 "quote",
5762 "syn 2.0.114",
5763]
5764
5765[[package]]
5766name = "windows-interface"
5767version = "0.59.3"
5768source = "registry+https://github.com/rust-lang/crates.io-index"
5769checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
5770dependencies = [
5771 "proc-macro2",
5772 "quote",
5773 "syn 2.0.114",
5774]
5775
5776[[package]]
5777name = "windows-link"
5778version = "0.2.1"
5779source = "registry+https://github.com/rust-lang/crates.io-index"
5780checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
5781
5782[[package]]
5783name = "windows-registry"
5784version = "0.6.1"
5785source = "registry+https://github.com/rust-lang/crates.io-index"
5786checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
5787dependencies = [
5788 "windows-link",
5789 "windows-result",
5790 "windows-strings",
5791]
5792
5793[[package]]
5794name = "windows-result"
5795version = "0.4.1"
5796source = "registry+https://github.com/rust-lang/crates.io-index"
5797checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
5798dependencies = [
5799 "windows-link",
5800]
5801
5802[[package]]
5803name = "windows-strings"
5804version = "0.5.1"
5805source = "registry+https://github.com/rust-lang/crates.io-index"
5806checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
5807dependencies = [
5808 "windows-link",
5809]
5810
5811[[package]]
5812name = "windows-sys"
5813version = "0.48.0"
5814source = "registry+https://github.com/rust-lang/crates.io-index"
5815checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
5816dependencies = [
5817 "windows-targets 0.48.5",
5818]
5819
5820[[package]]
5821name = "windows-sys"
5822version = "0.52.0"
5823source = "registry+https://github.com/rust-lang/crates.io-index"
5824checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
5825dependencies = [
5826 "windows-targets 0.52.6",
5827]
5828
5829[[package]]
5830name = "windows-sys"
5831version = "0.60.2"
5832source = "registry+https://github.com/rust-lang/crates.io-index"
5833checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
5834dependencies = [
5835 "windows-targets 0.53.5",
5836]
5837
5838[[package]]
5839name = "windows-sys"
5840version = "0.61.2"
5841source = "registry+https://github.com/rust-lang/crates.io-index"
5842checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
5843dependencies = [
5844 "windows-link",
5845]
5846
5847[[package]]
5848name = "windows-targets"
5849version = "0.48.5"
5850source = "registry+https://github.com/rust-lang/crates.io-index"
5851checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
5852dependencies = [
5853 "windows_aarch64_gnullvm 0.48.5",
5854 "windows_aarch64_msvc 0.48.5",
5855 "windows_i686_gnu 0.48.5",
5856 "windows_i686_msvc 0.48.5",
5857 "windows_x86_64_gnu 0.48.5",
5858 "windows_x86_64_gnullvm 0.48.5",
5859 "windows_x86_64_msvc 0.48.5",
5860]
5861
5862[[package]]
5863name = "windows-targets"
5864version = "0.52.6"
5865source = "registry+https://github.com/rust-lang/crates.io-index"
5866checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
5867dependencies = [
5868 "windows_aarch64_gnullvm 0.52.6",
5869 "windows_aarch64_msvc 0.52.6",
5870 "windows_i686_gnu 0.52.6",
5871 "windows_i686_gnullvm 0.52.6",
5872 "windows_i686_msvc 0.52.6",
5873 "windows_x86_64_gnu 0.52.6",
5874 "windows_x86_64_gnullvm 0.52.6",
5875 "windows_x86_64_msvc 0.52.6",
5876]
5877
5878[[package]]
5879name = "windows-targets"
5880version = "0.53.5"
5881source = "registry+https://github.com/rust-lang/crates.io-index"
5882checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
5883dependencies = [
5884 "windows-link",
5885 "windows_aarch64_gnullvm 0.53.1",
5886 "windows_aarch64_msvc 0.53.1",
5887 "windows_i686_gnu 0.53.1",
5888 "windows_i686_gnullvm 0.53.1",
5889 "windows_i686_msvc 0.53.1",
5890 "windows_x86_64_gnu 0.53.1",
5891 "windows_x86_64_gnullvm 0.53.1",
5892 "windows_x86_64_msvc 0.53.1",
5893]
5894
5895[[package]]
5896name = "windows_aarch64_gnullvm"
5897version = "0.48.5"
5898source = "registry+https://github.com/rust-lang/crates.io-index"
5899checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
5900
5901[[package]]
5902name = "windows_aarch64_gnullvm"
5903version = "0.52.6"
5904source = "registry+https://github.com/rust-lang/crates.io-index"
5905checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
5906
5907[[package]]
5908name = "windows_aarch64_gnullvm"
5909version = "0.53.1"
5910source = "registry+https://github.com/rust-lang/crates.io-index"
5911checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
5912
5913[[package]]
5914name = "windows_aarch64_msvc"
5915version = "0.48.5"
5916source = "registry+https://github.com/rust-lang/crates.io-index"
5917checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
5918
5919[[package]]
5920name = "windows_aarch64_msvc"
5921version = "0.52.6"
5922source = "registry+https://github.com/rust-lang/crates.io-index"
5923checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
5924
5925[[package]]
5926name = "windows_aarch64_msvc"
5927version = "0.53.1"
5928source = "registry+https://github.com/rust-lang/crates.io-index"
5929checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
5930
5931[[package]]
5932name = "windows_i686_gnu"
5933version = "0.48.5"
5934source = "registry+https://github.com/rust-lang/crates.io-index"
5935checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
5936
5937[[package]]
5938name = "windows_i686_gnu"
5939version = "0.52.6"
5940source = "registry+https://github.com/rust-lang/crates.io-index"
5941checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
5942
5943[[package]]
5944name = "windows_i686_gnu"
5945version = "0.53.1"
5946source = "registry+https://github.com/rust-lang/crates.io-index"
5947checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
5948
5949[[package]]
5950name = "windows_i686_gnullvm"
5951version = "0.52.6"
5952source = "registry+https://github.com/rust-lang/crates.io-index"
5953checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
5954
5955[[package]]
5956name = "windows_i686_gnullvm"
5957version = "0.53.1"
5958source = "registry+https://github.com/rust-lang/crates.io-index"
5959checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
5960
5961[[package]]
5962name = "windows_i686_msvc"
5963version = "0.48.5"
5964source = "registry+https://github.com/rust-lang/crates.io-index"
5965checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
5966
5967[[package]]
5968name = "windows_i686_msvc"
5969version = "0.52.6"
5970source = "registry+https://github.com/rust-lang/crates.io-index"
5971checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
5972
5973[[package]]
5974name = "windows_i686_msvc"
5975version = "0.53.1"
5976source = "registry+https://github.com/rust-lang/crates.io-index"
5977checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
5978
5979[[package]]
5980name = "windows_x86_64_gnu"
5981version = "0.48.5"
5982source = "registry+https://github.com/rust-lang/crates.io-index"
5983checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
5984
5985[[package]]
5986name = "windows_x86_64_gnu"
5987version = "0.52.6"
5988source = "registry+https://github.com/rust-lang/crates.io-index"
5989checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
5990
5991[[package]]
5992name = "windows_x86_64_gnu"
5993version = "0.53.1"
5994source = "registry+https://github.com/rust-lang/crates.io-index"
5995checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
5996
5997[[package]]
5998name = "windows_x86_64_gnullvm"
5999version = "0.48.5"
6000source = "registry+https://github.com/rust-lang/crates.io-index"
6001checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
6002
6003[[package]]
6004name = "windows_x86_64_gnullvm"
6005version = "0.52.6"
6006source = "registry+https://github.com/rust-lang/crates.io-index"
6007checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
6008
6009[[package]]
6010name = "windows_x86_64_gnullvm"
6011version = "0.53.1"
6012source = "registry+https://github.com/rust-lang/crates.io-index"
6013checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
6014
6015[[package]]
6016name = "windows_x86_64_msvc"
6017version = "0.48.5"
6018source = "registry+https://github.com/rust-lang/crates.io-index"
6019checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
6020
6021[[package]]
6022name = "windows_x86_64_msvc"
6023version = "0.52.6"
6024source = "registry+https://github.com/rust-lang/crates.io-index"
6025checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
6026
6027[[package]]
6028name = "windows_x86_64_msvc"
6029version = "0.53.1"
6030source = "registry+https://github.com/rust-lang/crates.io-index"
6031checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
6032
6033[[package]]
6034name = "winnow"
6035version = "0.7.14"
6036source = "registry+https://github.com/rust-lang/crates.io-index"
6037checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
6038dependencies = [
6039 "memchr",
6040]
6041
6042[[package]]
6043name = "winreg"
6044version = "0.50.0"
6045source = "registry+https://github.com/rust-lang/crates.io-index"
6046checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
6047dependencies = [
6048 "cfg-if",
6049 "windows-sys 0.48.0",
6050]
6051
6052[[package]]
6053name = "wit-bindgen"
6054version = "0.51.0"
6055source = "registry+https://github.com/rust-lang/crates.io-index"
6056checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
6057
6058[[package]]
6059name = "writeable"
6060version = "0.6.2"
6061source = "registry+https://github.com/rust-lang/crates.io-index"
6062checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
6063
6064[[package]]
6065name = "xxhash-rust"
6066version = "0.8.15"
6067source = "registry+https://github.com/rust-lang/crates.io-index"
6068checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
6069
6070[[package]]
6071name = "yansi"
6072version = "1.0.1"
6073source = "registry+https://github.com/rust-lang/crates.io-index"
6074checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
6075
6076[[package]]
6077name = "yoke"
6078version = "0.8.1"
6079source = "registry+https://github.com/rust-lang/crates.io-index"
6080checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
6081dependencies = [
6082 "stable_deref_trait",
6083 "yoke-derive",
6084 "zerofrom",
6085]
6086
6087[[package]]
6088name = "yoke-derive"
6089version = "0.8.1"
6090source = "registry+https://github.com/rust-lang/crates.io-index"
6091checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
6092dependencies = [
6093 "proc-macro2",
6094 "quote",
6095 "syn 2.0.114",
6096 "synstructure",
6097]
6098
6099[[package]]
6100name = "zerocopy"
6101version = "0.8.35"
6102source = "registry+https://github.com/rust-lang/crates.io-index"
6103checksum = "fdea86ddd5568519879b8187e1cf04e24fce28f7fe046ceecbce472ff19a2572"
6104dependencies = [
6105 "zerocopy-derive",
6106]
6107
6108[[package]]
6109name = "zerocopy-derive"
6110version = "0.8.35"
6111source = "registry+https://github.com/rust-lang/crates.io-index"
6112checksum = "0c15e1b46eff7c6c91195752e0eeed8ef040e391cdece7c25376957d5f15df22"
6113dependencies = [
6114 "proc-macro2",
6115 "quote",
6116 "syn 2.0.114",
6117]
6118
6119[[package]]
6120name = "zerofrom"
6121version = "0.1.6"
6122source = "registry+https://github.com/rust-lang/crates.io-index"
6123checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
6124dependencies = [
6125 "zerofrom-derive",
6126]
6127
6128[[package]]
6129name = "zerofrom-derive"
6130version = "0.1.6"
6131source = "registry+https://github.com/rust-lang/crates.io-index"
6132checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
6133dependencies = [
6134 "proc-macro2",
6135 "quote",
6136 "syn 2.0.114",
6137 "synstructure",
6138]
6139
6140[[package]]
6141name = "zeroize"
6142version = "1.8.2"
6143source = "registry+https://github.com/rust-lang/crates.io-index"
6144checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
6145
6146[[package]]
6147name = "zerotrie"
6148version = "0.2.3"
6149source = "registry+https://github.com/rust-lang/crates.io-index"
6150checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
6151dependencies = [
6152 "displaydoc",
6153 "yoke",
6154 "zerofrom",
6155]
6156
6157[[package]]
6158name = "zerovec"
6159version = "0.11.5"
6160source = "registry+https://github.com/rust-lang/crates.io-index"
6161checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
6162dependencies = [
6163 "yoke",
6164 "zerofrom",
6165 "zerovec-derive",
6166]
6167
6168[[package]]
6169name = "zerovec-derive"
6170version = "0.11.2"
6171source = "registry+https://github.com/rust-lang/crates.io-index"
6172checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
6173dependencies = [
6174 "proc-macro2",
6175 "quote",
6176 "syn 2.0.114",
6177]
6178
6179[[package]]
6180name = "zmij"
6181version = "1.0.17"
6182source = "registry+https://github.com/rust-lang/crates.io-index"
6183checksum = "02aae0f83f69aafc94776e879363e9771d7ecbffe2c7fbb6c14c5e00dfe88439"