tracks lexicons and how many times they appeared on the jetstream
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 4
4
5[[package]]
6name = "addr2line"
7version = "0.24.2"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
10dependencies = [
11 "gimli",
12]
13
14[[package]]
15name = "adler2"
16version = "2.0.1"
17source = "registry+https://github.com/rust-lang/crates.io-index"
18checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
19
20[[package]]
21name = "aho-corasick"
22version = "1.1.3"
23source = "registry+https://github.com/rust-lang/crates.io-index"
24checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
25dependencies = [
26 "memchr",
27]
28
29[[package]]
30name = "alloc-no-stdlib"
31version = "2.0.4"
32source = "registry+https://github.com/rust-lang/crates.io-index"
33checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
34
35[[package]]
36name = "alloc-stdlib"
37version = "0.2.2"
38source = "registry+https://github.com/rust-lang/crates.io-index"
39checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
40dependencies = [
41 "alloc-no-stdlib",
42]
43
44[[package]]
45name = "anyhow"
46version = "1.0.98"
47source = "registry+https://github.com/rust-lang/crates.io-index"
48checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
49
50[[package]]
51name = "async-compression"
52version = "0.4.25"
53source = "registry+https://github.com/rust-lang/crates.io-index"
54checksum = "40f6024f3f856663b45fd0c9b6f2024034a702f453549449e0d84a305900dad4"
55dependencies = [
56 "brotli",
57 "flate2",
58 "futures-core",
59 "memchr",
60 "pin-project-lite",
61 "tokio",
62 "zstd",
63 "zstd-safe",
64]
65
66[[package]]
67name = "async-trait"
68version = "0.1.88"
69source = "registry+https://github.com/rust-lang/crates.io-index"
70checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
71dependencies = [
72 "proc-macro2",
73 "quote",
74 "syn",
75]
76
77[[package]]
78name = "atomic-waker"
79version = "1.1.2"
80source = "registry+https://github.com/rust-lang/crates.io-index"
81checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
82
83[[package]]
84name = "autocfg"
85version = "1.5.0"
86source = "registry+https://github.com/rust-lang/crates.io-index"
87checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
88
89[[package]]
90name = "axum"
91version = "0.8.4"
92source = "registry+https://github.com/rust-lang/crates.io-index"
93checksum = "021e862c184ae977658b36c4500f7feac3221ca5da43e3f25bd04ab6c79a29b5"
94dependencies = [
95 "axum-core",
96 "bytes",
97 "form_urlencoded",
98 "futures-util",
99 "http",
100 "http-body",
101 "http-body-util",
102 "hyper",
103 "hyper-util",
104 "itoa",
105 "matchit",
106 "memchr",
107 "mime",
108 "percent-encoding",
109 "pin-project-lite",
110 "rustversion",
111 "serde",
112 "serde_json",
113 "serde_path_to_error",
114 "serde_urlencoded",
115 "sync_wrapper",
116 "tokio",
117 "tower",
118 "tower-layer",
119 "tower-service",
120 "tracing",
121]
122
123[[package]]
124name = "axum-core"
125version = "0.5.2"
126source = "registry+https://github.com/rust-lang/crates.io-index"
127checksum = "68464cd0412f486726fb3373129ef5d2993f90c34bc2bc1c1e9943b2f4fc7ca6"
128dependencies = [
129 "bytes",
130 "futures-core",
131 "http",
132 "http-body",
133 "http-body-util",
134 "mime",
135 "pin-project-lite",
136 "rustversion",
137 "sync_wrapper",
138 "tower-layer",
139 "tower-service",
140 "tracing",
141]
142
143[[package]]
144name = "axum-tws"
145version = "0.5.0"
146source = "git+https://github.com/90-008/axum-tws.git#34b89132c5331d6faae9b10912977f9dae5d53ff"
147dependencies = [
148 "axum-core",
149 "base64",
150 "bytes",
151 "futures-util",
152 "http",
153 "hyper",
154 "hyper-util",
155 "sha1",
156 "tokio",
157 "tokio-websockets",
158]
159
160[[package]]
161name = "backtrace"
162version = "0.3.75"
163source = "registry+https://github.com/rust-lang/crates.io-index"
164checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
165dependencies = [
166 "addr2line",
167 "cfg-if",
168 "libc",
169 "miniz_oxide",
170 "object",
171 "rustc-demangle",
172 "windows-targets 0.52.6",
173]
174
175[[package]]
176name = "base64"
177version = "0.22.1"
178source = "registry+https://github.com/rust-lang/crates.io-index"
179checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
180
181[[package]]
182name = "bitflags"
183version = "2.9.1"
184source = "registry+https://github.com/rust-lang/crates.io-index"
185checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
186
187[[package]]
188name = "block-buffer"
189version = "0.10.4"
190source = "registry+https://github.com/rust-lang/crates.io-index"
191checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
192dependencies = [
193 "generic-array",
194]
195
196[[package]]
197name = "borsh"
198version = "1.5.7"
199source = "registry+https://github.com/rust-lang/crates.io-index"
200checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce"
201dependencies = [
202 "cfg_aliases",
203]
204
205[[package]]
206name = "branches"
207version = "0.2.2"
208source = "registry+https://github.com/rust-lang/crates.io-index"
209checksum = "a918aa7a861caeba57e502465c30e3a0d74ae02ee0b9db2933602fdb6a3a90e5"
210dependencies = [
211 "rustc_version",
212]
213
214[[package]]
215name = "brotli"
216version = "8.0.1"
217source = "registry+https://github.com/rust-lang/crates.io-index"
218checksum = "9991eea70ea4f293524138648e41ee89b0b2b12ddef3b255effa43c8056e0e0d"
219dependencies = [
220 "alloc-no-stdlib",
221 "alloc-stdlib",
222 "brotli-decompressor",
223]
224
225[[package]]
226name = "brotli-decompressor"
227version = "5.0.0"
228source = "registry+https://github.com/rust-lang/crates.io-index"
229checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
230dependencies = [
231 "alloc-no-stdlib",
232 "alloc-stdlib",
233]
234
235[[package]]
236name = "bumpalo"
237version = "3.19.0"
238source = "registry+https://github.com/rust-lang/crates.io-index"
239checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
240
241[[package]]
242name = "bytecheck"
243version = "0.8.1"
244source = "registry+https://github.com/rust-lang/crates.io-index"
245checksum = "50690fb3370fb9fe3550372746084c46f2ac8c9685c583d2be10eefd89d3d1a3"
246dependencies = [
247 "bytecheck_derive",
248 "ptr_meta",
249 "rancor",
250 "simdutf8",
251]
252
253[[package]]
254name = "bytecheck_derive"
255version = "0.8.1"
256source = "registry+https://github.com/rust-lang/crates.io-index"
257checksum = "efb7846e0cb180355c2dec69e721edafa36919850f1a9f52ffba4ebc0393cb71"
258dependencies = [
259 "proc-macro2",
260 "quote",
261 "syn",
262]
263
264[[package]]
265name = "byteorder"
266version = "1.5.0"
267source = "registry+https://github.com/rust-lang/crates.io-index"
268checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
269
270[[package]]
271name = "bytes"
272version = "1.10.1"
273source = "registry+https://github.com/rust-lang/crates.io-index"
274checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
275
276[[package]]
277name = "byteview"
278version = "0.6.1"
279source = "registry+https://github.com/rust-lang/crates.io-index"
280checksum = "6236364b88b9b6d0bc181ba374cf1ab55ba3ef97a1cb6f8cddad48a273767fb5"
281
282[[package]]
283name = "cc"
284version = "1.2.30"
285source = "registry+https://github.com/rust-lang/crates.io-index"
286checksum = "deec109607ca693028562ed836a5f1c4b8bd77755c4e132fc5ce11b0b6211ae7"
287dependencies = [
288 "jobserver",
289 "libc",
290 "shlex",
291]
292
293[[package]]
294name = "cesu8"
295version = "1.1.0"
296source = "registry+https://github.com/rust-lang/crates.io-index"
297checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
298
299[[package]]
300name = "cfg-if"
301version = "1.0.1"
302source = "registry+https://github.com/rust-lang/crates.io-index"
303checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
304
305[[package]]
306name = "cfg_aliases"
307version = "0.2.1"
308source = "registry+https://github.com/rust-lang/crates.io-index"
309checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
310
311[[package]]
312name = "cmake"
313version = "0.1.54"
314source = "registry+https://github.com/rust-lang/crates.io-index"
315checksum = "e7caa3f9de89ddbe2c607f4101924c5abec803763ae9534e4f4d7d8f84aa81f0"
316dependencies = [
317 "cc",
318]
319
320[[package]]
321name = "combine"
322version = "4.6.7"
323source = "registry+https://github.com/rust-lang/crates.io-index"
324checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
325dependencies = [
326 "bytes",
327 "memchr",
328]
329
330[[package]]
331name = "compare"
332version = "0.0.6"
333source = "registry+https://github.com/rust-lang/crates.io-index"
334checksum = "ea0095f6103c2a8b44acd6fd15960c801dafebf02e21940360833e0673f48ba7"
335
336[[package]]
337name = "core-foundation"
338version = "0.10.1"
339source = "registry+https://github.com/rust-lang/crates.io-index"
340checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
341dependencies = [
342 "core-foundation-sys",
343 "libc",
344]
345
346[[package]]
347name = "core-foundation-sys"
348version = "0.8.7"
349source = "registry+https://github.com/rust-lang/crates.io-index"
350checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
351
352[[package]]
353name = "cpufeatures"
354version = "0.2.17"
355source = "registry+https://github.com/rust-lang/crates.io-index"
356checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
357dependencies = [
358 "libc",
359]
360
361[[package]]
362name = "crc32fast"
363version = "1.5.0"
364source = "registry+https://github.com/rust-lang/crates.io-index"
365checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
366dependencies = [
367 "cfg-if",
368]
369
370[[package]]
371name = "crossbeam-deque"
372version = "0.8.6"
373source = "registry+https://github.com/rust-lang/crates.io-index"
374checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
375dependencies = [
376 "crossbeam-epoch",
377 "crossbeam-utils",
378]
379
380[[package]]
381name = "crossbeam-epoch"
382version = "0.9.18"
383source = "registry+https://github.com/rust-lang/crates.io-index"
384checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
385dependencies = [
386 "crossbeam-utils",
387]
388
389[[package]]
390name = "crossbeam-skiplist"
391version = "0.1.3"
392source = "registry+https://github.com/rust-lang/crates.io-index"
393checksum = "df29de440c58ca2cc6e587ec3d22347551a32435fbde9d2bff64e78a9ffa151b"
394dependencies = [
395 "crossbeam-epoch",
396 "crossbeam-utils",
397]
398
399[[package]]
400name = "crossbeam-utils"
401version = "0.8.21"
402source = "registry+https://github.com/rust-lang/crates.io-index"
403checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
404
405[[package]]
406name = "crypto-common"
407version = "0.1.6"
408source = "registry+https://github.com/rust-lang/crates.io-index"
409checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
410dependencies = [
411 "generic-array",
412 "typenum",
413]
414
415[[package]]
416name = "dashmap"
417version = "6.1.0"
418source = "registry+https://github.com/rust-lang/crates.io-index"
419checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
420dependencies = [
421 "cfg-if",
422 "crossbeam-utils",
423 "hashbrown 0.14.5",
424 "lock_api",
425 "once_cell",
426 "parking_lot_core",
427]
428
429[[package]]
430name = "digest"
431version = "0.10.7"
432source = "registry+https://github.com/rust-lang/crates.io-index"
433checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
434dependencies = [
435 "block-buffer",
436 "crypto-common",
437]
438
439[[package]]
440name = "double-ended-peekable"
441version = "0.1.0"
442source = "registry+https://github.com/rust-lang/crates.io-index"
443checksum = "c0d05e1c0dbad51b52c38bda7adceef61b9efc2baf04acfe8726a8c4630a6f57"
444
445[[package]]
446name = "either"
447version = "1.15.0"
448source = "registry+https://github.com/rust-lang/crates.io-index"
449checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
450
451[[package]]
452name = "enum_dispatch"
453version = "0.3.13"
454source = "registry+https://github.com/rust-lang/crates.io-index"
455checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
456dependencies = [
457 "once_cell",
458 "proc-macro2",
459 "quote",
460 "syn",
461]
462
463[[package]]
464name = "equivalent"
465version = "1.0.2"
466source = "registry+https://github.com/rust-lang/crates.io-index"
467checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
468
469[[package]]
470name = "errno"
471version = "0.3.13"
472source = "registry+https://github.com/rust-lang/crates.io-index"
473checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
474dependencies = [
475 "libc",
476 "windows-sys 0.60.2",
477]
478
479[[package]]
480name = "fastrand"
481version = "2.3.0"
482source = "registry+https://github.com/rust-lang/crates.io-index"
483checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
484
485[[package]]
486name = "fjall"
487version = "2.11.2"
488source = "registry+https://github.com/rust-lang/crates.io-index"
489checksum = "0b25ad44cd4360a0448a9b5a0a6f1c7a621101cca4578706d43c9a821418aebc"
490dependencies = [
491 "byteorder",
492 "byteview",
493 "dashmap",
494 "log",
495 "lsm-tree",
496 "path-absolutize",
497 "std-semaphore",
498 "tempfile",
499 "xxhash-rust",
500]
501
502[[package]]
503name = "flate2"
504version = "1.1.2"
505source = "registry+https://github.com/rust-lang/crates.io-index"
506checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
507dependencies = [
508 "crc32fast",
509 "miniz_oxide",
510]
511
512[[package]]
513name = "fnv"
514version = "1.0.7"
515source = "registry+https://github.com/rust-lang/crates.io-index"
516checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
517
518[[package]]
519name = "form_urlencoded"
520version = "1.2.1"
521source = "registry+https://github.com/rust-lang/crates.io-index"
522checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
523dependencies = [
524 "percent-encoding",
525]
526
527[[package]]
528name = "futures-channel"
529version = "0.3.31"
530source = "registry+https://github.com/rust-lang/crates.io-index"
531checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
532dependencies = [
533 "futures-core",
534]
535
536[[package]]
537name = "futures-core"
538version = "0.3.31"
539source = "registry+https://github.com/rust-lang/crates.io-index"
540checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
541
542[[package]]
543name = "futures-macro"
544version = "0.3.31"
545source = "registry+https://github.com/rust-lang/crates.io-index"
546checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
547dependencies = [
548 "proc-macro2",
549 "quote",
550 "syn",
551]
552
553[[package]]
554name = "futures-sink"
555version = "0.3.31"
556source = "registry+https://github.com/rust-lang/crates.io-index"
557checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
558
559[[package]]
560name = "futures-task"
561version = "0.3.31"
562source = "registry+https://github.com/rust-lang/crates.io-index"
563checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
564
565[[package]]
566name = "futures-util"
567version = "0.3.31"
568source = "registry+https://github.com/rust-lang/crates.io-index"
569checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
570dependencies = [
571 "futures-core",
572 "futures-macro",
573 "futures-sink",
574 "futures-task",
575 "pin-project-lite",
576 "pin-utils",
577 "slab",
578]
579
580[[package]]
581name = "generic-array"
582version = "0.14.7"
583source = "registry+https://github.com/rust-lang/crates.io-index"
584checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
585dependencies = [
586 "typenum",
587 "version_check",
588]
589
590[[package]]
591name = "getrandom"
592version = "0.2.16"
593source = "registry+https://github.com/rust-lang/crates.io-index"
594checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
595dependencies = [
596 "cfg-if",
597 "libc",
598 "wasi 0.11.1+wasi-snapshot-preview1",
599]
600
601[[package]]
602name = "getrandom"
603version = "0.3.3"
604source = "registry+https://github.com/rust-lang/crates.io-index"
605checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
606dependencies = [
607 "cfg-if",
608 "libc",
609 "r-efi",
610 "wasi 0.14.2+wasi-0.2.4",
611]
612
613[[package]]
614name = "gimli"
615version = "0.31.1"
616source = "registry+https://github.com/rust-lang/crates.io-index"
617checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
618
619[[package]]
620name = "guardian"
621version = "1.3.0"
622source = "registry+https://github.com/rust-lang/crates.io-index"
623checksum = "17e2ac29387b1aa07a1e448f7bb4f35b500787971e965b02842b900afa5c8f6f"
624
625[[package]]
626name = "h2"
627version = "0.4.11"
628source = "registry+https://github.com/rust-lang/crates.io-index"
629checksum = "17da50a276f1e01e0ba6c029e47b7100754904ee8a278f886546e98575380785"
630dependencies = [
631 "atomic-waker",
632 "bytes",
633 "fnv",
634 "futures-core",
635 "futures-sink",
636 "http",
637 "indexmap",
638 "slab",
639 "tokio",
640 "tokio-util",
641 "tracing",
642]
643
644[[package]]
645name = "hashbrown"
646version = "0.14.5"
647source = "registry+https://github.com/rust-lang/crates.io-index"
648checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
649
650[[package]]
651name = "hashbrown"
652version = "0.15.4"
653source = "registry+https://github.com/rust-lang/crates.io-index"
654checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
655
656[[package]]
657name = "hermit-abi"
658version = "0.5.2"
659source = "registry+https://github.com/rust-lang/crates.io-index"
660checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
661
662[[package]]
663name = "http"
664version = "1.3.1"
665source = "registry+https://github.com/rust-lang/crates.io-index"
666checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
667dependencies = [
668 "bytes",
669 "fnv",
670 "itoa",
671]
672
673[[package]]
674name = "http-body"
675version = "1.0.1"
676source = "registry+https://github.com/rust-lang/crates.io-index"
677checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
678dependencies = [
679 "bytes",
680 "http",
681]
682
683[[package]]
684name = "http-body-util"
685version = "0.1.3"
686source = "registry+https://github.com/rust-lang/crates.io-index"
687checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
688dependencies = [
689 "bytes",
690 "futures-core",
691 "http",
692 "http-body",
693 "pin-project-lite",
694]
695
696[[package]]
697name = "httparse"
698version = "1.10.1"
699source = "registry+https://github.com/rust-lang/crates.io-index"
700checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
701
702[[package]]
703name = "httpdate"
704version = "1.0.3"
705source = "registry+https://github.com/rust-lang/crates.io-index"
706checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
707
708[[package]]
709name = "hyper"
710version = "1.6.0"
711source = "registry+https://github.com/rust-lang/crates.io-index"
712checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
713dependencies = [
714 "bytes",
715 "futures-channel",
716 "futures-util",
717 "h2",
718 "http",
719 "http-body",
720 "httparse",
721 "httpdate",
722 "itoa",
723 "pin-project-lite",
724 "smallvec",
725 "tokio",
726]
727
728[[package]]
729name = "hyper-util"
730version = "0.1.16"
731source = "registry+https://github.com/rust-lang/crates.io-index"
732checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e"
733dependencies = [
734 "bytes",
735 "futures-core",
736 "http",
737 "http-body",
738 "hyper",
739 "pin-project-lite",
740 "tokio",
741 "tower-service",
742]
743
744[[package]]
745name = "indexmap"
746version = "2.10.0"
747source = "registry+https://github.com/rust-lang/crates.io-index"
748checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
749dependencies = [
750 "equivalent",
751 "hashbrown 0.15.4",
752]
753
754[[package]]
755name = "interval-heap"
756version = "0.0.5"
757source = "registry+https://github.com/rust-lang/crates.io-index"
758checksum = "11274e5e8e89b8607cfedc2910b6626e998779b48a019151c7604d0adcb86ac6"
759dependencies = [
760 "compare",
761]
762
763[[package]]
764name = "io-uring"
765version = "0.7.9"
766source = "registry+https://github.com/rust-lang/crates.io-index"
767checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4"
768dependencies = [
769 "bitflags",
770 "cfg-if",
771 "libc",
772]
773
774[[package]]
775name = "itertools"
776version = "0.14.0"
777source = "registry+https://github.com/rust-lang/crates.io-index"
778checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
779dependencies = [
780 "either",
781]
782
783[[package]]
784name = "itoa"
785version = "1.0.15"
786source = "registry+https://github.com/rust-lang/crates.io-index"
787checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
788
789[[package]]
790name = "jni"
791version = "0.21.1"
792source = "registry+https://github.com/rust-lang/crates.io-index"
793checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
794dependencies = [
795 "cesu8",
796 "cfg-if",
797 "combine",
798 "jni-sys",
799 "log",
800 "thiserror",
801 "walkdir",
802 "windows-sys 0.45.0",
803]
804
805[[package]]
806name = "jni-sys"
807version = "0.3.0"
808source = "registry+https://github.com/rust-lang/crates.io-index"
809checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
810
811[[package]]
812name = "jobserver"
813version = "0.1.33"
814source = "registry+https://github.com/rust-lang/crates.io-index"
815checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
816dependencies = [
817 "getrandom 0.3.3",
818 "libc",
819]
820
821[[package]]
822name = "js-sys"
823version = "0.3.77"
824source = "registry+https://github.com/rust-lang/crates.io-index"
825checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
826dependencies = [
827 "once_cell",
828 "wasm-bindgen",
829]
830
831[[package]]
832name = "lazy_static"
833version = "1.5.0"
834source = "registry+https://github.com/rust-lang/crates.io-index"
835checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
836
837[[package]]
838name = "libc"
839version = "0.2.174"
840source = "registry+https://github.com/rust-lang/crates.io-index"
841checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
842
843[[package]]
844name = "linux-raw-sys"
845version = "0.9.4"
846source = "registry+https://github.com/rust-lang/crates.io-index"
847checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
848
849[[package]]
850name = "lock_api"
851version = "0.4.13"
852source = "registry+https://github.com/rust-lang/crates.io-index"
853checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
854dependencies = [
855 "autocfg",
856 "scopeguard",
857]
858
859[[package]]
860name = "log"
861version = "0.4.27"
862source = "registry+https://github.com/rust-lang/crates.io-index"
863checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
864
865[[package]]
866name = "lsm-tree"
867version = "2.10.2"
868source = "registry+https://github.com/rust-lang/crates.io-index"
869checksum = "55b6d7475a8dd22e749186968daacf8e2a77932b061b1bd263157987bbfc0c6c"
870dependencies = [
871 "byteorder",
872 "crossbeam-skiplist",
873 "double-ended-peekable",
874 "enum_dispatch",
875 "guardian",
876 "interval-heap",
877 "log",
878 "lz4_flex",
879 "miniz_oxide",
880 "path-absolutize",
881 "quick_cache",
882 "rustc-hash",
883 "self_cell",
884 "tempfile",
885 "value-log",
886 "varint-rs",
887 "xxhash-rust",
888]
889
890[[package]]
891name = "lz4_flex"
892version = "0.11.3"
893source = "registry+https://github.com/rust-lang/crates.io-index"
894checksum = "75761162ae2b0e580d7e7c390558127e5f01b4194debd6221fd8c207fc80e3f5"
895
896[[package]]
897name = "matchers"
898version = "0.1.0"
899source = "registry+https://github.com/rust-lang/crates.io-index"
900checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
901dependencies = [
902 "regex-automata 0.1.10",
903]
904
905[[package]]
906name = "matchit"
907version = "0.8.4"
908source = "registry+https://github.com/rust-lang/crates.io-index"
909checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
910
911[[package]]
912name = "memchr"
913version = "2.7.5"
914source = "registry+https://github.com/rust-lang/crates.io-index"
915checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
916
917[[package]]
918name = "mime"
919version = "0.3.17"
920source = "registry+https://github.com/rust-lang/crates.io-index"
921checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
922
923[[package]]
924name = "miniz_oxide"
925version = "0.8.9"
926source = "registry+https://github.com/rust-lang/crates.io-index"
927checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
928dependencies = [
929 "adler2",
930]
931
932[[package]]
933name = "mio"
934version = "1.0.4"
935source = "registry+https://github.com/rust-lang/crates.io-index"
936checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
937dependencies = [
938 "libc",
939 "wasi 0.11.1+wasi-snapshot-preview1",
940 "windows-sys 0.59.0",
941]
942
943[[package]]
944name = "munge"
945version = "0.4.5"
946source = "registry+https://github.com/rust-lang/crates.io-index"
947checksum = "9cce144fab80fbb74ec5b89d1ca9d41ddf6b644ab7e986f7d3ed0aab31625cb1"
948dependencies = [
949 "munge_macro",
950]
951
952[[package]]
953name = "munge_macro"
954version = "0.4.5"
955source = "registry+https://github.com/rust-lang/crates.io-index"
956checksum = "574af9cd5b9971cbfdf535d6a8d533778481b241c447826d976101e0149392a1"
957dependencies = [
958 "proc-macro2",
959 "quote",
960 "syn",
961]
962
963[[package]]
964name = "nu-ansi-term"
965version = "0.46.0"
966source = "registry+https://github.com/rust-lang/crates.io-index"
967checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
968dependencies = [
969 "overload",
970 "winapi",
971]
972
973[[package]]
974name = "num_cpus"
975version = "1.17.0"
976source = "registry+https://github.com/rust-lang/crates.io-index"
977checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
978dependencies = [
979 "hermit-abi",
980 "libc",
981]
982
983[[package]]
984name = "object"
985version = "0.36.7"
986source = "registry+https://github.com/rust-lang/crates.io-index"
987checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
988dependencies = [
989 "memchr",
990]
991
992[[package]]
993name = "once_cell"
994version = "1.21.3"
995source = "registry+https://github.com/rust-lang/crates.io-index"
996checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
997
998[[package]]
999name = "openssl-probe"
1000version = "0.1.6"
1001source = "registry+https://github.com/rust-lang/crates.io-index"
1002checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1003
1004[[package]]
1005name = "ordered-varint"
1006version = "2.0.0"
1007source = "registry+https://github.com/rust-lang/crates.io-index"
1008checksum = "e9cc9f18ab4bad1e01726bda1259feb8f11e5e76308708a966b4c0136e9db34c"
1009
1010[[package]]
1011name = "overload"
1012version = "0.1.1"
1013source = "registry+https://github.com/rust-lang/crates.io-index"
1014checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
1015
1016[[package]]
1017name = "parking_lot"
1018version = "0.12.4"
1019source = "registry+https://github.com/rust-lang/crates.io-index"
1020checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
1021dependencies = [
1022 "lock_api",
1023 "parking_lot_core",
1024]
1025
1026[[package]]
1027name = "parking_lot_core"
1028version = "0.9.11"
1029source = "registry+https://github.com/rust-lang/crates.io-index"
1030checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
1031dependencies = [
1032 "cfg-if",
1033 "libc",
1034 "redox_syscall",
1035 "smallvec",
1036 "windows-targets 0.52.6",
1037]
1038
1039[[package]]
1040name = "path-absolutize"
1041version = "3.1.1"
1042source = "registry+https://github.com/rust-lang/crates.io-index"
1043checksum = "e4af381fe79fa195b4909485d99f73a80792331df0625188e707854f0b3383f5"
1044dependencies = [
1045 "path-dedot",
1046]
1047
1048[[package]]
1049name = "path-dedot"
1050version = "3.1.1"
1051source = "registry+https://github.com/rust-lang/crates.io-index"
1052checksum = "07ba0ad7e047712414213ff67533e6dd477af0a4e1d14fb52343e53d30ea9397"
1053dependencies = [
1054 "once_cell",
1055]
1056
1057[[package]]
1058name = "percent-encoding"
1059version = "2.3.1"
1060source = "registry+https://github.com/rust-lang/crates.io-index"
1061checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1062
1063[[package]]
1064name = "pin-project-lite"
1065version = "0.2.16"
1066source = "registry+https://github.com/rust-lang/crates.io-index"
1067checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1068
1069[[package]]
1070name = "pin-utils"
1071version = "0.1.0"
1072source = "registry+https://github.com/rust-lang/crates.io-index"
1073checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1074
1075[[package]]
1076name = "pkg-config"
1077version = "0.3.32"
1078source = "registry+https://github.com/rust-lang/crates.io-index"
1079checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1080
1081[[package]]
1082name = "proc-macro2"
1083version = "1.0.95"
1084source = "registry+https://github.com/rust-lang/crates.io-index"
1085checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
1086dependencies = [
1087 "unicode-ident",
1088]
1089
1090[[package]]
1091name = "ptr_meta"
1092version = "0.3.0"
1093source = "registry+https://github.com/rust-lang/crates.io-index"
1094checksum = "fe9e76f66d3f9606f44e45598d155cb13ecf09f4a28199e48daf8c8fc937ea90"
1095dependencies = [
1096 "ptr_meta_derive",
1097]
1098
1099[[package]]
1100name = "ptr_meta_derive"
1101version = "0.3.0"
1102source = "registry+https://github.com/rust-lang/crates.io-index"
1103checksum = "ca414edb151b4c8d125c12566ab0d74dc9cdba36fb80eb7b848c15f495fd32d1"
1104dependencies = [
1105 "proc-macro2",
1106 "quote",
1107 "syn",
1108]
1109
1110[[package]]
1111name = "quanta"
1112version = "0.12.6"
1113source = "registry+https://github.com/rust-lang/crates.io-index"
1114checksum = "f3ab5a9d756f0d97bdc89019bd2e4ea098cf9cde50ee7564dde6b81ccc8f06c7"
1115dependencies = [
1116 "crossbeam-utils",
1117 "libc",
1118 "once_cell",
1119 "raw-cpuid",
1120 "wasi 0.11.1+wasi-snapshot-preview1",
1121 "web-sys",
1122 "winapi",
1123]
1124
1125[[package]]
1126name = "quick_cache"
1127version = "0.6.15"
1128source = "registry+https://github.com/rust-lang/crates.io-index"
1129checksum = "8565e62e02af316570d4b492f17af1481d6c07cea60f4e7edd71700da5052ba9"
1130dependencies = [
1131 "equivalent",
1132 "hashbrown 0.15.4",
1133]
1134
1135[[package]]
1136name = "quote"
1137version = "1.0.40"
1138source = "registry+https://github.com/rust-lang/crates.io-index"
1139checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
1140dependencies = [
1141 "proc-macro2",
1142]
1143
1144[[package]]
1145name = "r-efi"
1146version = "5.3.0"
1147source = "registry+https://github.com/rust-lang/crates.io-index"
1148checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1149
1150[[package]]
1151name = "rancor"
1152version = "0.1.0"
1153source = "registry+https://github.com/rust-lang/crates.io-index"
1154checksum = "caf5f7161924b9d1cea0e4cabc97c372cea92b5f927fc13c6bca67157a0ad947"
1155dependencies = [
1156 "ptr_meta",
1157]
1158
1159[[package]]
1160name = "raw-cpuid"
1161version = "11.5.0"
1162source = "registry+https://github.com/rust-lang/crates.io-index"
1163checksum = "c6df7ab838ed27997ba19a4664507e6f82b41fe6e20be42929332156e5e85146"
1164dependencies = [
1165 "bitflags",
1166]
1167
1168[[package]]
1169name = "rayon"
1170version = "1.10.0"
1171source = "registry+https://github.com/rust-lang/crates.io-index"
1172checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
1173dependencies = [
1174 "either",
1175 "rayon-core",
1176]
1177
1178[[package]]
1179name = "rayon-core"
1180version = "1.12.1"
1181source = "registry+https://github.com/rust-lang/crates.io-index"
1182checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
1183dependencies = [
1184 "crossbeam-deque",
1185 "crossbeam-utils",
1186]
1187
1188[[package]]
1189name = "rclite"
1190version = "0.2.7"
1191source = "registry+https://github.com/rust-lang/crates.io-index"
1192checksum = "2f528dfeba924f5fc67bb84a17fe043451d1b392758016ce2d9e9116649b0f35"
1193dependencies = [
1194 "branches",
1195]
1196
1197[[package]]
1198name = "redox_syscall"
1199version = "0.5.15"
1200source = "registry+https://github.com/rust-lang/crates.io-index"
1201checksum = "7e8af0dde094006011e6a740d4879319439489813bd0bcdc7d821beaeeff48ec"
1202dependencies = [
1203 "bitflags",
1204]
1205
1206[[package]]
1207name = "regex"
1208version = "1.11.1"
1209source = "registry+https://github.com/rust-lang/crates.io-index"
1210checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
1211dependencies = [
1212 "aho-corasick",
1213 "memchr",
1214 "regex-automata 0.4.9",
1215 "regex-syntax 0.8.5",
1216]
1217
1218[[package]]
1219name = "regex-automata"
1220version = "0.1.10"
1221source = "registry+https://github.com/rust-lang/crates.io-index"
1222checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
1223dependencies = [
1224 "regex-syntax 0.6.29",
1225]
1226
1227[[package]]
1228name = "regex-automata"
1229version = "0.4.9"
1230source = "registry+https://github.com/rust-lang/crates.io-index"
1231checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
1232dependencies = [
1233 "aho-corasick",
1234 "memchr",
1235 "regex-syntax 0.8.5",
1236]
1237
1238[[package]]
1239name = "regex-syntax"
1240version = "0.6.29"
1241source = "registry+https://github.com/rust-lang/crates.io-index"
1242checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
1243
1244[[package]]
1245name = "regex-syntax"
1246version = "0.8.5"
1247source = "registry+https://github.com/rust-lang/crates.io-index"
1248checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
1249
1250[[package]]
1251name = "rend"
1252version = "0.5.2"
1253source = "registry+https://github.com/rust-lang/crates.io-index"
1254checksum = "a35e8a6bf28cd121053a66aa2e6a2e3eaffad4a60012179f0e864aa5ffeff215"
1255dependencies = [
1256 "bytecheck",
1257]
1258
1259[[package]]
1260name = "ring"
1261version = "0.17.14"
1262source = "registry+https://github.com/rust-lang/crates.io-index"
1263checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1264dependencies = [
1265 "cc",
1266 "cfg-if",
1267 "getrandom 0.2.16",
1268 "libc",
1269 "untrusted",
1270 "windows-sys 0.52.0",
1271]
1272
1273[[package]]
1274name = "rkyv"
1275version = "0.8.10"
1276source = "registry+https://github.com/rust-lang/crates.io-index"
1277checksum = "1e147371c75553e1e2fcdb483944a8540b8438c31426279553b9a8182a9b7b65"
1278dependencies = [
1279 "bytecheck",
1280 "bytes",
1281 "hashbrown 0.15.4",
1282 "indexmap",
1283 "munge",
1284 "ptr_meta",
1285 "rancor",
1286 "rend",
1287 "rkyv_derive",
1288 "tinyvec",
1289 "uuid",
1290]
1291
1292[[package]]
1293name = "rkyv_derive"
1294version = "0.8.10"
1295source = "registry+https://github.com/rust-lang/crates.io-index"
1296checksum = "246b40ac189af6c675d124b802e8ef6d5246c53e17367ce9501f8f66a81abb7a"
1297dependencies = [
1298 "proc-macro2",
1299 "quote",
1300 "syn",
1301]
1302
1303[[package]]
1304name = "rustc-demangle"
1305version = "0.1.25"
1306source = "registry+https://github.com/rust-lang/crates.io-index"
1307checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f"
1308
1309[[package]]
1310name = "rustc-hash"
1311version = "2.1.1"
1312source = "registry+https://github.com/rust-lang/crates.io-index"
1313checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1314
1315[[package]]
1316name = "rustc_version"
1317version = "0.4.1"
1318source = "registry+https://github.com/rust-lang/crates.io-index"
1319checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1320dependencies = [
1321 "semver",
1322]
1323
1324[[package]]
1325name = "rustix"
1326version = "1.0.8"
1327source = "registry+https://github.com/rust-lang/crates.io-index"
1328checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
1329dependencies = [
1330 "bitflags",
1331 "errno",
1332 "libc",
1333 "linux-raw-sys",
1334 "windows-sys 0.60.2",
1335]
1336
1337[[package]]
1338name = "rustls"
1339version = "0.23.29"
1340source = "registry+https://github.com/rust-lang/crates.io-index"
1341checksum = "2491382039b29b9b11ff08b76ff6c97cf287671dbb74f0be44bda389fffe9bd1"
1342dependencies = [
1343 "log",
1344 "once_cell",
1345 "ring",
1346 "rustls-pki-types",
1347 "rustls-webpki",
1348 "subtle",
1349 "zeroize",
1350]
1351
1352[[package]]
1353name = "rustls-native-certs"
1354version = "0.8.1"
1355source = "registry+https://github.com/rust-lang/crates.io-index"
1356checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3"
1357dependencies = [
1358 "openssl-probe",
1359 "rustls-pki-types",
1360 "schannel",
1361 "security-framework",
1362]
1363
1364[[package]]
1365name = "rustls-pki-types"
1366version = "1.12.0"
1367source = "registry+https://github.com/rust-lang/crates.io-index"
1368checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
1369dependencies = [
1370 "zeroize",
1371]
1372
1373[[package]]
1374name = "rustls-platform-verifier"
1375version = "0.6.0"
1376source = "registry+https://github.com/rust-lang/crates.io-index"
1377checksum = "eda84358ed17f1f354cf4b1909ad346e6c7bc2513e8c40eb08e0157aa13a9070"
1378dependencies = [
1379 "core-foundation",
1380 "core-foundation-sys",
1381 "jni",
1382 "log",
1383 "once_cell",
1384 "rustls",
1385 "rustls-native-certs",
1386 "rustls-platform-verifier-android",
1387 "rustls-webpki",
1388 "security-framework",
1389 "security-framework-sys",
1390 "webpki-root-certs",
1391 "windows-sys 0.59.0",
1392]
1393
1394[[package]]
1395name = "rustls-platform-verifier-android"
1396version = "0.1.1"
1397source = "registry+https://github.com/rust-lang/crates.io-index"
1398checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
1399
1400[[package]]
1401name = "rustls-webpki"
1402version = "0.103.4"
1403source = "registry+https://github.com/rust-lang/crates.io-index"
1404checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
1405dependencies = [
1406 "ring",
1407 "rustls-pki-types",
1408 "untrusted",
1409]
1410
1411[[package]]
1412name = "rustversion"
1413version = "1.0.21"
1414source = "registry+https://github.com/rust-lang/crates.io-index"
1415checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
1416
1417[[package]]
1418name = "ryu"
1419version = "1.0.20"
1420source = "registry+https://github.com/rust-lang/crates.io-index"
1421checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1422
1423[[package]]
1424name = "same-file"
1425version = "1.0.6"
1426source = "registry+https://github.com/rust-lang/crates.io-index"
1427checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1428dependencies = [
1429 "winapi-util",
1430]
1431
1432[[package]]
1433name = "scc"
1434version = "2.3.4"
1435source = "registry+https://github.com/rust-lang/crates.io-index"
1436checksum = "22b2d775fb28f245817589471dd49c5edf64237f4a19d10ce9a92ff4651a27f4"
1437dependencies = [
1438 "sdd",
1439]
1440
1441[[package]]
1442name = "schannel"
1443version = "0.1.27"
1444source = "registry+https://github.com/rust-lang/crates.io-index"
1445checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
1446dependencies = [
1447 "windows-sys 0.59.0",
1448]
1449
1450[[package]]
1451name = "scopeguard"
1452version = "1.2.0"
1453source = "registry+https://github.com/rust-lang/crates.io-index"
1454checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1455
1456[[package]]
1457name = "sdd"
1458version = "3.0.10"
1459source = "registry+https://github.com/rust-lang/crates.io-index"
1460checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca"
1461
1462[[package]]
1463name = "security-framework"
1464version = "3.2.0"
1465source = "registry+https://github.com/rust-lang/crates.io-index"
1466checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
1467dependencies = [
1468 "bitflags",
1469 "core-foundation",
1470 "core-foundation-sys",
1471 "libc",
1472 "security-framework-sys",
1473]
1474
1475[[package]]
1476name = "security-framework-sys"
1477version = "2.14.0"
1478source = "registry+https://github.com/rust-lang/crates.io-index"
1479checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
1480dependencies = [
1481 "core-foundation-sys",
1482 "libc",
1483]
1484
1485[[package]]
1486name = "self_cell"
1487version = "1.2.0"
1488source = "registry+https://github.com/rust-lang/crates.io-index"
1489checksum = "0f7d95a54511e0c7be3f51e8867aa8cf35148d7b9445d44de2f943e2b206e749"
1490
1491[[package]]
1492name = "semver"
1493version = "1.0.26"
1494source = "registry+https://github.com/rust-lang/crates.io-index"
1495checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
1496
1497[[package]]
1498name = "serde"
1499version = "1.0.219"
1500source = "registry+https://github.com/rust-lang/crates.io-index"
1501checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
1502dependencies = [
1503 "serde_derive",
1504]
1505
1506[[package]]
1507name = "serde_derive"
1508version = "1.0.219"
1509source = "registry+https://github.com/rust-lang/crates.io-index"
1510checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
1511dependencies = [
1512 "proc-macro2",
1513 "quote",
1514 "syn",
1515]
1516
1517[[package]]
1518name = "serde_json"
1519version = "1.0.141"
1520source = "registry+https://github.com/rust-lang/crates.io-index"
1521checksum = "30b9eff21ebe718216c6ec64e1d9ac57087aad11efc64e32002bce4a0d4c03d3"
1522dependencies = [
1523 "itoa",
1524 "memchr",
1525 "ryu",
1526 "serde",
1527]
1528
1529[[package]]
1530name = "serde_path_to_error"
1531version = "0.1.17"
1532source = "registry+https://github.com/rust-lang/crates.io-index"
1533checksum = "59fab13f937fa393d08645bf3a84bdfe86e296747b506ada67bb15f10f218b2a"
1534dependencies = [
1535 "itoa",
1536 "serde",
1537]
1538
1539[[package]]
1540name = "serde_urlencoded"
1541version = "0.7.1"
1542source = "registry+https://github.com/rust-lang/crates.io-index"
1543checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1544dependencies = [
1545 "form_urlencoded",
1546 "itoa",
1547 "ryu",
1548 "serde",
1549]
1550
1551[[package]]
1552name = "server"
1553version = "0.1.0"
1554dependencies = [
1555 "anyhow",
1556 "async-trait",
1557 "axum",
1558 "axum-tws",
1559 "byteview",
1560 "fjall",
1561 "futures-util",
1562 "itertools",
1563 "ordered-varint",
1564 "parking_lot",
1565 "quanta",
1566 "rayon",
1567 "rclite",
1568 "rkyv",
1569 "rustls",
1570 "scc",
1571 "serde",
1572 "serde_json",
1573 "smol_str",
1574 "snmalloc-rs",
1575 "threadpool",
1576 "tikv-jemallocator",
1577 "tokio",
1578 "tokio-util",
1579 "tokio-websockets",
1580 "tower-http",
1581 "tracing",
1582 "tracing-subscriber",
1583]
1584
1585[[package]]
1586name = "sha1"
1587version = "0.10.6"
1588source = "registry+https://github.com/rust-lang/crates.io-index"
1589checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
1590dependencies = [
1591 "cfg-if",
1592 "cpufeatures",
1593 "digest",
1594]
1595
1596[[package]]
1597name = "sharded-slab"
1598version = "0.1.7"
1599source = "registry+https://github.com/rust-lang/crates.io-index"
1600checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1601dependencies = [
1602 "lazy_static",
1603]
1604
1605[[package]]
1606name = "shlex"
1607version = "1.3.0"
1608source = "registry+https://github.com/rust-lang/crates.io-index"
1609checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1610
1611[[package]]
1612name = "signal-hook-registry"
1613version = "1.4.5"
1614source = "registry+https://github.com/rust-lang/crates.io-index"
1615checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
1616dependencies = [
1617 "libc",
1618]
1619
1620[[package]]
1621name = "simdutf8"
1622version = "0.1.5"
1623source = "registry+https://github.com/rust-lang/crates.io-index"
1624checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
1625
1626[[package]]
1627name = "slab"
1628version = "0.4.10"
1629source = "registry+https://github.com/rust-lang/crates.io-index"
1630checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d"
1631
1632[[package]]
1633name = "smallvec"
1634version = "1.15.1"
1635source = "registry+https://github.com/rust-lang/crates.io-index"
1636checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1637
1638[[package]]
1639name = "smol_str"
1640version = "0.3.2"
1641source = "registry+https://github.com/rust-lang/crates.io-index"
1642checksum = "9676b89cd56310a87b93dec47b11af744f34d5fc9f367b829474eec0a891350d"
1643dependencies = [
1644 "borsh",
1645 "serde",
1646]
1647
1648[[package]]
1649name = "snmalloc-rs"
1650version = "0.3.8"
1651source = "registry+https://github.com/rust-lang/crates.io-index"
1652checksum = "eb317153089fdfa4d8a2eec059d40a5a23c3bde43995ea23b19121c3f621e74a"
1653dependencies = [
1654 "snmalloc-sys",
1655]
1656
1657[[package]]
1658name = "snmalloc-sys"
1659version = "0.3.8"
1660source = "registry+https://github.com/rust-lang/crates.io-index"
1661checksum = "065fea53d32bb77bc36cca466cb191f2e5216ebfd0ed360b1d64889ee6e559ea"
1662dependencies = [
1663 "cmake",
1664]
1665
1666[[package]]
1667name = "socket2"
1668version = "0.5.10"
1669source = "registry+https://github.com/rust-lang/crates.io-index"
1670checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
1671dependencies = [
1672 "libc",
1673 "windows-sys 0.52.0",
1674]
1675
1676[[package]]
1677name = "std-semaphore"
1678version = "0.1.0"
1679source = "registry+https://github.com/rust-lang/crates.io-index"
1680checksum = "33ae9eec00137a8eed469fb4148acd9fc6ac8c3f9b110f52cd34698c8b5bfa0e"
1681
1682[[package]]
1683name = "subtle"
1684version = "2.6.1"
1685source = "registry+https://github.com/rust-lang/crates.io-index"
1686checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1687
1688[[package]]
1689name = "syn"
1690version = "2.0.104"
1691source = "registry+https://github.com/rust-lang/crates.io-index"
1692checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
1693dependencies = [
1694 "proc-macro2",
1695 "quote",
1696 "unicode-ident",
1697]
1698
1699[[package]]
1700name = "sync_wrapper"
1701version = "1.0.2"
1702source = "registry+https://github.com/rust-lang/crates.io-index"
1703checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1704
1705[[package]]
1706name = "tempfile"
1707version = "3.20.0"
1708source = "registry+https://github.com/rust-lang/crates.io-index"
1709checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
1710dependencies = [
1711 "fastrand",
1712 "getrandom 0.3.3",
1713 "once_cell",
1714 "rustix",
1715 "windows-sys 0.59.0",
1716]
1717
1718[[package]]
1719name = "thiserror"
1720version = "1.0.69"
1721source = "registry+https://github.com/rust-lang/crates.io-index"
1722checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1723dependencies = [
1724 "thiserror-impl",
1725]
1726
1727[[package]]
1728name = "thiserror-impl"
1729version = "1.0.69"
1730source = "registry+https://github.com/rust-lang/crates.io-index"
1731checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1732dependencies = [
1733 "proc-macro2",
1734 "quote",
1735 "syn",
1736]
1737
1738[[package]]
1739name = "thread_local"
1740version = "1.1.9"
1741source = "registry+https://github.com/rust-lang/crates.io-index"
1742checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
1743dependencies = [
1744 "cfg-if",
1745]
1746
1747[[package]]
1748name = "threadpool"
1749version = "1.8.1"
1750source = "registry+https://github.com/rust-lang/crates.io-index"
1751checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
1752dependencies = [
1753 "num_cpus",
1754]
1755
1756[[package]]
1757name = "tikv-jemalloc-sys"
1758version = "0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7"
1759source = "registry+https://github.com/rust-lang/crates.io-index"
1760checksum = "cd3c60906412afa9c2b5b5a48ca6a5abe5736aec9eb48ad05037a677e52e4e2d"
1761dependencies = [
1762 "cc",
1763 "libc",
1764]
1765
1766[[package]]
1767name = "tikv-jemallocator"
1768version = "0.6.0"
1769source = "registry+https://github.com/rust-lang/crates.io-index"
1770checksum = "4cec5ff18518d81584f477e9bfdf957f5bb0979b0bac3af4ca30b5b3ae2d2865"
1771dependencies = [
1772 "libc",
1773 "tikv-jemalloc-sys",
1774]
1775
1776[[package]]
1777name = "tinyvec"
1778version = "1.9.0"
1779source = "registry+https://github.com/rust-lang/crates.io-index"
1780checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
1781dependencies = [
1782 "tinyvec_macros",
1783]
1784
1785[[package]]
1786name = "tinyvec_macros"
1787version = "0.1.1"
1788source = "registry+https://github.com/rust-lang/crates.io-index"
1789checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1790
1791[[package]]
1792name = "tokio"
1793version = "1.46.1"
1794source = "registry+https://github.com/rust-lang/crates.io-index"
1795checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17"
1796dependencies = [
1797 "backtrace",
1798 "bytes",
1799 "io-uring",
1800 "libc",
1801 "mio",
1802 "parking_lot",
1803 "pin-project-lite",
1804 "signal-hook-registry",
1805 "slab",
1806 "socket2",
1807 "tokio-macros",
1808 "windows-sys 0.52.0",
1809]
1810
1811[[package]]
1812name = "tokio-macros"
1813version = "2.5.0"
1814source = "registry+https://github.com/rust-lang/crates.io-index"
1815checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
1816dependencies = [
1817 "proc-macro2",
1818 "quote",
1819 "syn",
1820]
1821
1822[[package]]
1823name = "tokio-rustls"
1824version = "0.26.2"
1825source = "registry+https://github.com/rust-lang/crates.io-index"
1826checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
1827dependencies = [
1828 "rustls",
1829 "tokio",
1830]
1831
1832[[package]]
1833name = "tokio-util"
1834version = "0.7.15"
1835source = "registry+https://github.com/rust-lang/crates.io-index"
1836checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
1837dependencies = [
1838 "bytes",
1839 "futures-core",
1840 "futures-sink",
1841 "pin-project-lite",
1842 "tokio",
1843 "tracing",
1844]
1845
1846[[package]]
1847name = "tokio-websockets"
1848version = "0.12.0"
1849source = "registry+https://github.com/rust-lang/crates.io-index"
1850checksum = "3f29ba084eb43becc9864ba514b4a64f5f65b82f9a6ffbafa5436c1c80605f03"
1851dependencies = [
1852 "base64",
1853 "bytes",
1854 "futures-core",
1855 "futures-sink",
1856 "getrandom 0.3.3",
1857 "http",
1858 "httparse",
1859 "ring",
1860 "rustls-pki-types",
1861 "rustls-platform-verifier",
1862 "simdutf8",
1863 "tokio",
1864 "tokio-rustls",
1865 "tokio-util",
1866]
1867
1868[[package]]
1869name = "tower"
1870version = "0.5.2"
1871source = "registry+https://github.com/rust-lang/crates.io-index"
1872checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
1873dependencies = [
1874 "futures-core",
1875 "futures-util",
1876 "pin-project-lite",
1877 "sync_wrapper",
1878 "tokio",
1879 "tower-layer",
1880 "tower-service",
1881]
1882
1883[[package]]
1884name = "tower-http"
1885version = "0.6.6"
1886source = "registry+https://github.com/rust-lang/crates.io-index"
1887checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
1888dependencies = [
1889 "async-compression",
1890 "bitflags",
1891 "bytes",
1892 "futures-core",
1893 "http",
1894 "http-body",
1895 "pin-project-lite",
1896 "tokio",
1897 "tokio-util",
1898 "tower-layer",
1899 "tower-service",
1900 "tracing",
1901 "uuid",
1902]
1903
1904[[package]]
1905name = "tower-layer"
1906version = "0.3.3"
1907source = "registry+https://github.com/rust-lang/crates.io-index"
1908checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1909
1910[[package]]
1911name = "tower-service"
1912version = "0.3.3"
1913source = "registry+https://github.com/rust-lang/crates.io-index"
1914checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1915
1916[[package]]
1917name = "tracing"
1918version = "0.1.41"
1919source = "registry+https://github.com/rust-lang/crates.io-index"
1920checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
1921dependencies = [
1922 "pin-project-lite",
1923 "tracing-attributes",
1924 "tracing-core",
1925]
1926
1927[[package]]
1928name = "tracing-attributes"
1929version = "0.1.30"
1930source = "registry+https://github.com/rust-lang/crates.io-index"
1931checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
1932dependencies = [
1933 "proc-macro2",
1934 "quote",
1935 "syn",
1936]
1937
1938[[package]]
1939name = "tracing-core"
1940version = "0.1.34"
1941source = "registry+https://github.com/rust-lang/crates.io-index"
1942checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
1943dependencies = [
1944 "once_cell",
1945 "valuable",
1946]
1947
1948[[package]]
1949name = "tracing-log"
1950version = "0.2.0"
1951source = "registry+https://github.com/rust-lang/crates.io-index"
1952checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1953dependencies = [
1954 "log",
1955 "once_cell",
1956 "tracing-core",
1957]
1958
1959[[package]]
1960name = "tracing-subscriber"
1961version = "0.3.19"
1962source = "registry+https://github.com/rust-lang/crates.io-index"
1963checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
1964dependencies = [
1965 "matchers",
1966 "nu-ansi-term",
1967 "once_cell",
1968 "regex",
1969 "sharded-slab",
1970 "smallvec",
1971 "thread_local",
1972 "tracing",
1973 "tracing-core",
1974 "tracing-log",
1975]
1976
1977[[package]]
1978name = "typenum"
1979version = "1.18.0"
1980source = "registry+https://github.com/rust-lang/crates.io-index"
1981checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
1982
1983[[package]]
1984name = "unicode-ident"
1985version = "1.0.18"
1986source = "registry+https://github.com/rust-lang/crates.io-index"
1987checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
1988
1989[[package]]
1990name = "untrusted"
1991version = "0.9.0"
1992source = "registry+https://github.com/rust-lang/crates.io-index"
1993checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1994
1995[[package]]
1996name = "uuid"
1997version = "1.17.0"
1998source = "registry+https://github.com/rust-lang/crates.io-index"
1999checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
2000dependencies = [
2001 "getrandom 0.3.3",
2002 "js-sys",
2003 "wasm-bindgen",
2004]
2005
2006[[package]]
2007name = "valuable"
2008version = "0.1.1"
2009source = "registry+https://github.com/rust-lang/crates.io-index"
2010checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2011
2012[[package]]
2013name = "value-log"
2014version = "1.9.0"
2015source = "registry+https://github.com/rust-lang/crates.io-index"
2016checksum = "62fc7c4ce161f049607ecea654dca3f2d727da5371ae85e2e4f14ce2b98ed67c"
2017dependencies = [
2018 "byteorder",
2019 "byteview",
2020 "interval-heap",
2021 "log",
2022 "path-absolutize",
2023 "rustc-hash",
2024 "tempfile",
2025 "varint-rs",
2026 "xxhash-rust",
2027]
2028
2029[[package]]
2030name = "varint-rs"
2031version = "2.2.0"
2032source = "registry+https://github.com/rust-lang/crates.io-index"
2033checksum = "8f54a172d0620933a27a4360d3db3e2ae0dd6cceae9730751a036bbf182c4b23"
2034
2035[[package]]
2036name = "version_check"
2037version = "0.9.5"
2038source = "registry+https://github.com/rust-lang/crates.io-index"
2039checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2040
2041[[package]]
2042name = "walkdir"
2043version = "2.5.0"
2044source = "registry+https://github.com/rust-lang/crates.io-index"
2045checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2046dependencies = [
2047 "same-file",
2048 "winapi-util",
2049]
2050
2051[[package]]
2052name = "wasi"
2053version = "0.11.1+wasi-snapshot-preview1"
2054source = "registry+https://github.com/rust-lang/crates.io-index"
2055checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2056
2057[[package]]
2058name = "wasi"
2059version = "0.14.2+wasi-0.2.4"
2060source = "registry+https://github.com/rust-lang/crates.io-index"
2061checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
2062dependencies = [
2063 "wit-bindgen-rt",
2064]
2065
2066[[package]]
2067name = "wasm-bindgen"
2068version = "0.2.100"
2069source = "registry+https://github.com/rust-lang/crates.io-index"
2070checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
2071dependencies = [
2072 "cfg-if",
2073 "once_cell",
2074 "rustversion",
2075 "wasm-bindgen-macro",
2076]
2077
2078[[package]]
2079name = "wasm-bindgen-backend"
2080version = "0.2.100"
2081source = "registry+https://github.com/rust-lang/crates.io-index"
2082checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
2083dependencies = [
2084 "bumpalo",
2085 "log",
2086 "proc-macro2",
2087 "quote",
2088 "syn",
2089 "wasm-bindgen-shared",
2090]
2091
2092[[package]]
2093name = "wasm-bindgen-macro"
2094version = "0.2.100"
2095source = "registry+https://github.com/rust-lang/crates.io-index"
2096checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
2097dependencies = [
2098 "quote",
2099 "wasm-bindgen-macro-support",
2100]
2101
2102[[package]]
2103name = "wasm-bindgen-macro-support"
2104version = "0.2.100"
2105source = "registry+https://github.com/rust-lang/crates.io-index"
2106checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
2107dependencies = [
2108 "proc-macro2",
2109 "quote",
2110 "syn",
2111 "wasm-bindgen-backend",
2112 "wasm-bindgen-shared",
2113]
2114
2115[[package]]
2116name = "wasm-bindgen-shared"
2117version = "0.2.100"
2118source = "registry+https://github.com/rust-lang/crates.io-index"
2119checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
2120dependencies = [
2121 "unicode-ident",
2122]
2123
2124[[package]]
2125name = "web-sys"
2126version = "0.3.77"
2127source = "registry+https://github.com/rust-lang/crates.io-index"
2128checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
2129dependencies = [
2130 "js-sys",
2131 "wasm-bindgen",
2132]
2133
2134[[package]]
2135name = "webpki-root-certs"
2136version = "1.0.1"
2137source = "registry+https://github.com/rust-lang/crates.io-index"
2138checksum = "86138b15b2b7d561bc4469e77027b8dd005a43dc502e9031d1f5afc8ce1f280e"
2139dependencies = [
2140 "rustls-pki-types",
2141]
2142
2143[[package]]
2144name = "winapi"
2145version = "0.3.9"
2146source = "registry+https://github.com/rust-lang/crates.io-index"
2147checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2148dependencies = [
2149 "winapi-i686-pc-windows-gnu",
2150 "winapi-x86_64-pc-windows-gnu",
2151]
2152
2153[[package]]
2154name = "winapi-i686-pc-windows-gnu"
2155version = "0.4.0"
2156source = "registry+https://github.com/rust-lang/crates.io-index"
2157checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2158
2159[[package]]
2160name = "winapi-util"
2161version = "0.1.9"
2162source = "registry+https://github.com/rust-lang/crates.io-index"
2163checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
2164dependencies = [
2165 "windows-sys 0.59.0",
2166]
2167
2168[[package]]
2169name = "winapi-x86_64-pc-windows-gnu"
2170version = "0.4.0"
2171source = "registry+https://github.com/rust-lang/crates.io-index"
2172checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2173
2174[[package]]
2175name = "windows-sys"
2176version = "0.45.0"
2177source = "registry+https://github.com/rust-lang/crates.io-index"
2178checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
2179dependencies = [
2180 "windows-targets 0.42.2",
2181]
2182
2183[[package]]
2184name = "windows-sys"
2185version = "0.52.0"
2186source = "registry+https://github.com/rust-lang/crates.io-index"
2187checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2188dependencies = [
2189 "windows-targets 0.52.6",
2190]
2191
2192[[package]]
2193name = "windows-sys"
2194version = "0.59.0"
2195source = "registry+https://github.com/rust-lang/crates.io-index"
2196checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2197dependencies = [
2198 "windows-targets 0.52.6",
2199]
2200
2201[[package]]
2202name = "windows-sys"
2203version = "0.60.2"
2204source = "registry+https://github.com/rust-lang/crates.io-index"
2205checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2206dependencies = [
2207 "windows-targets 0.53.2",
2208]
2209
2210[[package]]
2211name = "windows-targets"
2212version = "0.42.2"
2213source = "registry+https://github.com/rust-lang/crates.io-index"
2214checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
2215dependencies = [
2216 "windows_aarch64_gnullvm 0.42.2",
2217 "windows_aarch64_msvc 0.42.2",
2218 "windows_i686_gnu 0.42.2",
2219 "windows_i686_msvc 0.42.2",
2220 "windows_x86_64_gnu 0.42.2",
2221 "windows_x86_64_gnullvm 0.42.2",
2222 "windows_x86_64_msvc 0.42.2",
2223]
2224
2225[[package]]
2226name = "windows-targets"
2227version = "0.52.6"
2228source = "registry+https://github.com/rust-lang/crates.io-index"
2229checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2230dependencies = [
2231 "windows_aarch64_gnullvm 0.52.6",
2232 "windows_aarch64_msvc 0.52.6",
2233 "windows_i686_gnu 0.52.6",
2234 "windows_i686_gnullvm 0.52.6",
2235 "windows_i686_msvc 0.52.6",
2236 "windows_x86_64_gnu 0.52.6",
2237 "windows_x86_64_gnullvm 0.52.6",
2238 "windows_x86_64_msvc 0.52.6",
2239]
2240
2241[[package]]
2242name = "windows-targets"
2243version = "0.53.2"
2244source = "registry+https://github.com/rust-lang/crates.io-index"
2245checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
2246dependencies = [
2247 "windows_aarch64_gnullvm 0.53.0",
2248 "windows_aarch64_msvc 0.53.0",
2249 "windows_i686_gnu 0.53.0",
2250 "windows_i686_gnullvm 0.53.0",
2251 "windows_i686_msvc 0.53.0",
2252 "windows_x86_64_gnu 0.53.0",
2253 "windows_x86_64_gnullvm 0.53.0",
2254 "windows_x86_64_msvc 0.53.0",
2255]
2256
2257[[package]]
2258name = "windows_aarch64_gnullvm"
2259version = "0.42.2"
2260source = "registry+https://github.com/rust-lang/crates.io-index"
2261checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2262
2263[[package]]
2264name = "windows_aarch64_gnullvm"
2265version = "0.52.6"
2266source = "registry+https://github.com/rust-lang/crates.io-index"
2267checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2268
2269[[package]]
2270name = "windows_aarch64_gnullvm"
2271version = "0.53.0"
2272source = "registry+https://github.com/rust-lang/crates.io-index"
2273checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
2274
2275[[package]]
2276name = "windows_aarch64_msvc"
2277version = "0.42.2"
2278source = "registry+https://github.com/rust-lang/crates.io-index"
2279checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2280
2281[[package]]
2282name = "windows_aarch64_msvc"
2283version = "0.52.6"
2284source = "registry+https://github.com/rust-lang/crates.io-index"
2285checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2286
2287[[package]]
2288name = "windows_aarch64_msvc"
2289version = "0.53.0"
2290source = "registry+https://github.com/rust-lang/crates.io-index"
2291checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
2292
2293[[package]]
2294name = "windows_i686_gnu"
2295version = "0.42.2"
2296source = "registry+https://github.com/rust-lang/crates.io-index"
2297checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2298
2299[[package]]
2300name = "windows_i686_gnu"
2301version = "0.52.6"
2302source = "registry+https://github.com/rust-lang/crates.io-index"
2303checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2304
2305[[package]]
2306name = "windows_i686_gnu"
2307version = "0.53.0"
2308source = "registry+https://github.com/rust-lang/crates.io-index"
2309checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
2310
2311[[package]]
2312name = "windows_i686_gnullvm"
2313version = "0.52.6"
2314source = "registry+https://github.com/rust-lang/crates.io-index"
2315checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2316
2317[[package]]
2318name = "windows_i686_gnullvm"
2319version = "0.53.0"
2320source = "registry+https://github.com/rust-lang/crates.io-index"
2321checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
2322
2323[[package]]
2324name = "windows_i686_msvc"
2325version = "0.42.2"
2326source = "registry+https://github.com/rust-lang/crates.io-index"
2327checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2328
2329[[package]]
2330name = "windows_i686_msvc"
2331version = "0.52.6"
2332source = "registry+https://github.com/rust-lang/crates.io-index"
2333checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2334
2335[[package]]
2336name = "windows_i686_msvc"
2337version = "0.53.0"
2338source = "registry+https://github.com/rust-lang/crates.io-index"
2339checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
2340
2341[[package]]
2342name = "windows_x86_64_gnu"
2343version = "0.42.2"
2344source = "registry+https://github.com/rust-lang/crates.io-index"
2345checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2346
2347[[package]]
2348name = "windows_x86_64_gnu"
2349version = "0.52.6"
2350source = "registry+https://github.com/rust-lang/crates.io-index"
2351checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2352
2353[[package]]
2354name = "windows_x86_64_gnu"
2355version = "0.53.0"
2356source = "registry+https://github.com/rust-lang/crates.io-index"
2357checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
2358
2359[[package]]
2360name = "windows_x86_64_gnullvm"
2361version = "0.42.2"
2362source = "registry+https://github.com/rust-lang/crates.io-index"
2363checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2364
2365[[package]]
2366name = "windows_x86_64_gnullvm"
2367version = "0.52.6"
2368source = "registry+https://github.com/rust-lang/crates.io-index"
2369checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2370
2371[[package]]
2372name = "windows_x86_64_gnullvm"
2373version = "0.53.0"
2374source = "registry+https://github.com/rust-lang/crates.io-index"
2375checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
2376
2377[[package]]
2378name = "windows_x86_64_msvc"
2379version = "0.42.2"
2380source = "registry+https://github.com/rust-lang/crates.io-index"
2381checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2382
2383[[package]]
2384name = "windows_x86_64_msvc"
2385version = "0.52.6"
2386source = "registry+https://github.com/rust-lang/crates.io-index"
2387checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2388
2389[[package]]
2390name = "windows_x86_64_msvc"
2391version = "0.53.0"
2392source = "registry+https://github.com/rust-lang/crates.io-index"
2393checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
2394
2395[[package]]
2396name = "wit-bindgen-rt"
2397version = "0.39.0"
2398source = "registry+https://github.com/rust-lang/crates.io-index"
2399checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
2400dependencies = [
2401 "bitflags",
2402]
2403
2404[[package]]
2405name = "xxhash-rust"
2406version = "0.8.15"
2407source = "registry+https://github.com/rust-lang/crates.io-index"
2408checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
2409
2410[[package]]
2411name = "zeroize"
2412version = "1.8.1"
2413source = "registry+https://github.com/rust-lang/crates.io-index"
2414checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
2415
2416[[package]]
2417name = "zstd"
2418version = "0.13.3"
2419source = "registry+https://github.com/rust-lang/crates.io-index"
2420checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
2421dependencies = [
2422 "zstd-safe",
2423]
2424
2425[[package]]
2426name = "zstd-safe"
2427version = "7.2.4"
2428source = "registry+https://github.com/rust-lang/crates.io-index"
2429checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
2430dependencies = [
2431 "zstd-sys",
2432]
2433
2434[[package]]
2435name = "zstd-sys"
2436version = "2.0.15+zstd.1.5.7"
2437source = "registry+https://github.com/rust-lang/crates.io-index"
2438checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
2439dependencies = [
2440 "cc",
2441 "pkg-config",
2442]