Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 3
4
5[[package]]
6name = "Inflector"
7version = "0.11.4"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3"
10dependencies = [
11 "lazy_static",
12 "regex",
13]
14
15[[package]]
16name = "adler"
17version = "1.0.2"
18source = "registry+https://github.com/rust-lang/crates.io-index"
19checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
20
21[[package]]
22name = "aes"
23version = "0.7.5"
24source = "registry+https://github.com/rust-lang/crates.io-index"
25checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8"
26dependencies = [
27 "cfg-if",
28 "cipher",
29 "cpufeatures",
30 "opaque-debug",
31]
32
33[[package]]
34name = "ahash"
35version = "0.7.6"
36source = "registry+https://github.com/rust-lang/crates.io-index"
37checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
38dependencies = [
39 "getrandom 0.2.9",
40 "once_cell",
41 "version_check",
42]
43
44[[package]]
45name = "ahash"
46version = "0.8.3"
47source = "registry+https://github.com/rust-lang/crates.io-index"
48checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
49dependencies = [
50 "cfg-if",
51 "once_cell",
52 "version_check",
53]
54
55[[package]]
56name = "aho-corasick"
57version = "1.0.1"
58source = "registry+https://github.com/rust-lang/crates.io-index"
59checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04"
60dependencies = [
61 "memchr",
62]
63
64[[package]]
65name = "android_system_properties"
66version = "0.1.5"
67source = "registry+https://github.com/rust-lang/crates.io-index"
68checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
69dependencies = [
70 "libc",
71]
72
73[[package]]
74name = "anstream"
75version = "0.3.2"
76source = "registry+https://github.com/rust-lang/crates.io-index"
77checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163"
78dependencies = [
79 "anstyle",
80 "anstyle-parse",
81 "anstyle-query",
82 "anstyle-wincon",
83 "colorchoice",
84 "is-terminal",
85 "utf8parse",
86]
87
88[[package]]
89name = "anstyle"
90version = "1.0.0"
91source = "registry+https://github.com/rust-lang/crates.io-index"
92checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d"
93
94[[package]]
95name = "anstyle-parse"
96version = "0.2.0"
97source = "registry+https://github.com/rust-lang/crates.io-index"
98checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee"
99dependencies = [
100 "utf8parse",
101]
102
103[[package]]
104name = "anstyle-query"
105version = "1.0.0"
106source = "registry+https://github.com/rust-lang/crates.io-index"
107checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
108dependencies = [
109 "windows-sys 0.48.0",
110]
111
112[[package]]
113name = "anstyle-wincon"
114version = "1.0.1"
115source = "registry+https://github.com/rust-lang/crates.io-index"
116checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188"
117dependencies = [
118 "anstyle",
119 "windows-sys 0.48.0",
120]
121
122[[package]]
123name = "anyhow"
124version = "1.0.71"
125source = "registry+https://github.com/rust-lang/crates.io-index"
126checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8"
127
128[[package]]
129name = "argon2"
130version = "0.5.0"
131source = "registry+https://github.com/rust-lang/crates.io-index"
132checksum = "95c2fcf79ad1932ac6269a738109997a83c227c09b75842ae564dc8ede6a861c"
133dependencies = [
134 "base64ct",
135 "blake2",
136 "password-hash",
137]
138
139[[package]]
140name = "ascii-canvas"
141version = "3.0.0"
142source = "registry+https://github.com/rust-lang/crates.io-index"
143checksum = "8824ecca2e851cec16968d54a01dd372ef8f95b244fb84b84e70128be347c3c6"
144dependencies = [
145 "term",
146]
147
148[[package]]
149name = "ast_node"
150version = "0.8.8"
151source = "registry+https://github.com/rust-lang/crates.io-index"
152checksum = "70151a5226578411132d798aa248df45b30aa34aea2e580628870b4d87be717b"
153dependencies = [
154 "darling",
155 "pmutil",
156 "proc-macro2",
157 "quote",
158 "swc_macros_common",
159 "syn 1.0.109",
160]
161
162[[package]]
163name = "async-channel"
164version = "1.8.0"
165source = "registry+https://github.com/rust-lang/crates.io-index"
166checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833"
167dependencies = [
168 "concurrent-queue",
169 "event-listener",
170 "futures-core",
171]
172
173[[package]]
174name = "async-compression"
175version = "0.3.15"
176source = "registry+https://github.com/rust-lang/crates.io-index"
177checksum = "942c7cd7ae39e91bde4820d74132e9862e62c2f386c3aa90ccf55949f5bad63a"
178dependencies = [
179 "bzip2",
180 "flate2",
181 "futures-core",
182 "memchr",
183 "pin-project-lite",
184 "tokio",
185 "xz2",
186 "zstd",
187 "zstd-safe",
188]
189
190[[package]]
191name = "async-executor"
192version = "1.5.1"
193source = "registry+https://github.com/rust-lang/crates.io-index"
194checksum = "6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb"
195dependencies = [
196 "async-lock",
197 "async-task",
198 "concurrent-queue",
199 "fastrand",
200 "futures-lite",
201 "slab",
202]
203
204[[package]]
205name = "async-global-executor"
206version = "2.3.1"
207source = "registry+https://github.com/rust-lang/crates.io-index"
208checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776"
209dependencies = [
210 "async-channel",
211 "async-executor",
212 "async-io",
213 "async-lock",
214 "blocking",
215 "futures-lite",
216 "once_cell",
217]
218
219[[package]]
220name = "async-io"
221version = "1.13.0"
222source = "registry+https://github.com/rust-lang/crates.io-index"
223checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
224dependencies = [
225 "async-lock",
226 "autocfg",
227 "cfg-if",
228 "concurrent-queue",
229 "futures-lite",
230 "log",
231 "parking",
232 "polling",
233 "rustix",
234 "slab",
235 "socket2",
236 "waker-fn",
237]
238
239[[package]]
240name = "async-lock"
241version = "2.7.0"
242source = "registry+https://github.com/rust-lang/crates.io-index"
243checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7"
244dependencies = [
245 "event-listener",
246]
247
248[[package]]
249name = "async-oauth2"
250version = "0.4.2"
251source = "registry+https://github.com/rust-lang/crates.io-index"
252checksum = "beec3f8fb8f710b7be84ccd1716e17f38f2868168355cab5f2f168ae988e767e"
253dependencies = [
254 "base64 0.21.0",
255 "bytes",
256 "http",
257 "rand 0.8.5",
258 "reqwest",
259 "serde",
260 "serde-aux",
261 "serde_json",
262 "sha2 0.10.6",
263 "thiserror",
264 "url",
265]
266
267[[package]]
268name = "async-recursion"
269version = "1.0.4"
270source = "registry+https://github.com/rust-lang/crates.io-index"
271checksum = "0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba"
272dependencies = [
273 "proc-macro2",
274 "quote",
275 "syn 2.0.15",
276]
277
278[[package]]
279name = "async-std"
280version = "1.12.0"
281source = "registry+https://github.com/rust-lang/crates.io-index"
282checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d"
283dependencies = [
284 "async-channel",
285 "async-global-executor",
286 "async-io",
287 "async-lock",
288 "crossbeam-utils",
289 "futures-channel",
290 "futures-core",
291 "futures-io",
292 "futures-lite",
293 "gloo-timers",
294 "kv-log-macro",
295 "log",
296 "memchr",
297 "once_cell",
298 "pin-project-lite",
299 "pin-utils",
300 "slab",
301 "wasm-bindgen-futures",
302]
303
304[[package]]
305name = "async-stripe"
306version = "0.14.1"
307source = "registry+https://github.com/rust-lang/crates.io-index"
308checksum = "71b85eb331f5c2b6ae4ff00aabd20a8a21de88b9890c58579616bf760570b207"
309dependencies = [
310 "chrono",
311 "hex",
312 "hmac",
313 "http-types",
314 "hyper",
315 "hyper-tls",
316 "serde",
317 "serde_json",
318 "serde_qs 0.9.2",
319 "sha2 0.10.6",
320 "smart-default",
321 "smol_str",
322 "thiserror",
323 "tokio",
324 "uuid 0.8.2",
325]
326
327[[package]]
328name = "async-task"
329version = "4.4.0"
330source = "registry+https://github.com/rust-lang/crates.io-index"
331checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae"
332
333[[package]]
334name = "async-timer"
335version = "0.7.4"
336source = "registry+https://github.com/rust-lang/crates.io-index"
337checksum = "ba5fa6ed76cb2aa820707b4eb9ec46f42da9ce70b0eafab5e5e34942b38a44d5"
338dependencies = [
339 "libc",
340 "wasm-bindgen",
341 "winapi",
342]
343
344[[package]]
345name = "async-trait"
346version = "0.1.68"
347source = "registry+https://github.com/rust-lang/crates.io-index"
348checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
349dependencies = [
350 "proc-macro2",
351 "quote",
352 "syn 2.0.15",
353]
354
355[[package]]
356name = "async_zip"
357version = "0.0.11"
358source = "registry+https://github.com/rust-lang/crates.io-index"
359checksum = "c50d29ab7e2f9e808cca1a69ea56a36f4ff216f54a41a23aae1fd4afc05cc020"
360dependencies = [
361 "async-compression",
362 "chrono",
363 "crc32fast",
364 "log",
365 "pin-project",
366 "thiserror",
367 "tokio",
368]
369
370[[package]]
371name = "atoi"
372version = "1.0.0"
373source = "registry+https://github.com/rust-lang/crates.io-index"
374checksum = "d7c57d12312ff59c811c0643f4d80830505833c9ffaebd193d819392b265be8e"
375dependencies = [
376 "num-traits",
377]
378
379[[package]]
380name = "atomic-waker"
381version = "1.1.1"
382source = "registry+https://github.com/rust-lang/crates.io-index"
383checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3"
384
385[[package]]
386name = "autocfg"
387version = "1.1.0"
388source = "registry+https://github.com/rust-lang/crates.io-index"
389checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
390
391[[package]]
392name = "axum"
393version = "0.6.18"
394source = "registry+https://github.com/rust-lang/crates.io-index"
395checksum = "f8175979259124331c1d7bf6586ee7e0da434155e4b2d48ec2c8386281d8df39"
396dependencies = [
397 "async-trait",
398 "axum-core",
399 "bitflags",
400 "bytes",
401 "futures-util",
402 "headers",
403 "http",
404 "http-body",
405 "hyper",
406 "itoa",
407 "matchit",
408 "memchr",
409 "mime",
410 "percent-encoding",
411 "pin-project-lite",
412 "rustversion",
413 "serde",
414 "serde_json",
415 "serde_path_to_error",
416 "serde_urlencoded",
417 "sync_wrapper",
418 "tokio",
419 "tower",
420 "tower-layer",
421 "tower-service",
422]
423
424[[package]]
425name = "axum-core"
426version = "0.3.4"
427source = "registry+https://github.com/rust-lang/crates.io-index"
428checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c"
429dependencies = [
430 "async-trait",
431 "bytes",
432 "futures-util",
433 "http",
434 "http-body",
435 "mime",
436 "rustversion",
437 "tower-layer",
438 "tower-service",
439]
440
441[[package]]
442name = "base64"
443version = "0.13.1"
444source = "registry+https://github.com/rust-lang/crates.io-index"
445checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
446
447[[package]]
448name = "base64"
449version = "0.21.0"
450source = "registry+https://github.com/rust-lang/crates.io-index"
451checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
452
453[[package]]
454name = "base64ct"
455version = "1.6.0"
456source = "registry+https://github.com/rust-lang/crates.io-index"
457checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
458
459[[package]]
460name = "bb8"
461version = "0.7.1"
462source = "registry+https://github.com/rust-lang/crates.io-index"
463checksum = "2e9f4fa9768efd269499d8fba693260cfc670891cf6de3adc935588447a77cc8"
464dependencies = [
465 "async-trait",
466 "futures-channel",
467 "futures-util",
468 "parking_lot 0.11.2",
469 "tokio",
470]
471
472[[package]]
473name = "better_scoped_tls"
474version = "0.1.0"
475source = "registry+https://github.com/rust-lang/crates.io-index"
476checksum = "b73e8ecdec39e98aa3b19e8cd0b8ed8f77ccb86a6b0b2dc7cd86d105438a2123"
477dependencies = [
478 "scoped-tls",
479]
480
481[[package]]
482name = "bincode"
483version = "1.3.3"
484source = "registry+https://github.com/rust-lang/crates.io-index"
485checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
486dependencies = [
487 "serde",
488]
489
490[[package]]
491name = "bit-set"
492version = "0.5.3"
493source = "registry+https://github.com/rust-lang/crates.io-index"
494checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
495dependencies = [
496 "bit-vec",
497]
498
499[[package]]
500name = "bit-vec"
501version = "0.6.3"
502source = "registry+https://github.com/rust-lang/crates.io-index"
503checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
504
505[[package]]
506name = "bitflags"
507version = "1.3.2"
508source = "registry+https://github.com/rust-lang/crates.io-index"
509checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
510
511[[package]]
512name = "blake2"
513version = "0.10.6"
514source = "registry+https://github.com/rust-lang/crates.io-index"
515checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
516dependencies = [
517 "digest 0.10.6",
518]
519
520[[package]]
521name = "block-buffer"
522version = "0.9.0"
523source = "registry+https://github.com/rust-lang/crates.io-index"
524checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
525dependencies = [
526 "block-padding",
527 "generic-array",
528]
529
530[[package]]
531name = "block-buffer"
532version = "0.10.4"
533source = "registry+https://github.com/rust-lang/crates.io-index"
534checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
535dependencies = [
536 "generic-array",
537]
538
539[[package]]
540name = "block-modes"
541version = "0.8.1"
542source = "registry+https://github.com/rust-lang/crates.io-index"
543checksum = "2cb03d1bed155d89dce0f845b7899b18a9a163e148fd004e1c28421a783e2d8e"
544dependencies = [
545 "block-padding",
546 "cipher",
547]
548
549[[package]]
550name = "block-padding"
551version = "0.2.1"
552source = "registry+https://github.com/rust-lang/crates.io-index"
553checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae"
554
555[[package]]
556name = "blocking"
557version = "1.3.1"
558source = "registry+https://github.com/rust-lang/crates.io-index"
559checksum = "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65"
560dependencies = [
561 "async-channel",
562 "async-lock",
563 "async-task",
564 "atomic-waker",
565 "fastrand",
566 "futures-lite",
567 "log",
568]
569
570[[package]]
571name = "bstr"
572version = "0.2.17"
573source = "registry+https://github.com/rust-lang/crates.io-index"
574checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
575dependencies = [
576 "lazy_static",
577 "memchr",
578 "regex-automata",
579]
580
581[[package]]
582name = "built"
583version = "0.6.0"
584source = "registry+https://github.com/rust-lang/crates.io-index"
585checksum = "96f9cdd34d6eb553f9ea20e5bf84abb7b13c729f113fc1d8e49dc00ad9fa8738"
586dependencies = [
587 "cargo-lock",
588 "git2",
589]
590
591[[package]]
592name = "bumpalo"
593version = "3.12.2"
594source = "registry+https://github.com/rust-lang/crates.io-index"
595checksum = "3c6ed94e98ecff0c12dd1b04c15ec0d7d9458ca8fe806cea6f12954efe74c63b"
596
597[[package]]
598name = "byteorder"
599version = "1.4.3"
600source = "registry+https://github.com/rust-lang/crates.io-index"
601checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
602
603[[package]]
604name = "bytes"
605version = "1.4.0"
606source = "registry+https://github.com/rust-lang/crates.io-index"
607checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
608
609[[package]]
610name = "bzip2"
611version = "0.4.4"
612source = "registry+https://github.com/rust-lang/crates.io-index"
613checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
614dependencies = [
615 "bzip2-sys",
616 "libc",
617]
618
619[[package]]
620name = "bzip2-sys"
621version = "0.1.11+1.0.8"
622source = "registry+https://github.com/rust-lang/crates.io-index"
623checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
624dependencies = [
625 "cc",
626 "libc",
627 "pkg-config",
628]
629
630[[package]]
631name = "cargo-lock"
632version = "8.0.3"
633source = "registry+https://github.com/rust-lang/crates.io-index"
634checksum = "031718ddb8f78aa5def78a09e90defe30151d1f6c672f937af4dd916429ed996"
635dependencies = [
636 "semver 1.0.17",
637 "serde",
638 "toml",
639 "url",
640]
641
642[[package]]
643name = "cc"
644version = "1.0.79"
645source = "registry+https://github.com/rust-lang/crates.io-index"
646checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
647dependencies = [
648 "jobserver",
649]
650
651[[package]]
652name = "cfg-if"
653version = "1.0.0"
654source = "registry+https://github.com/rust-lang/crates.io-index"
655checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
656
657[[package]]
658name = "chrono"
659version = "0.4.24"
660source = "registry+https://github.com/rust-lang/crates.io-index"
661checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b"
662dependencies = [
663 "iana-time-zone",
664 "js-sys",
665 "num-integer",
666 "num-traits",
667 "serde",
668 "time 0.1.45",
669 "wasm-bindgen",
670 "winapi",
671]
672
673[[package]]
674name = "chrono-tz"
675version = "0.8.2"
676source = "registry+https://github.com/rust-lang/crates.io-index"
677checksum = "cf9cc2b23599e6d7479755f3594285efb3f74a1bdca7a7374948bc831e23a552"
678dependencies = [
679 "chrono",
680 "chrono-tz-build",
681 "phf 0.11.1",
682]
683
684[[package]]
685name = "chrono-tz-build"
686version = "0.1.0"
687source = "registry+https://github.com/rust-lang/crates.io-index"
688checksum = "d9998fb9f7e9b2111641485bf8beb32f92945f97f92a3d061f744cfef335f751"
689dependencies = [
690 "parse-zoneinfo",
691 "phf 0.11.1",
692 "phf_codegen 0.11.1",
693]
694
695[[package]]
696name = "cipher"
697version = "0.3.0"
698source = "registry+https://github.com/rust-lang/crates.io-index"
699checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"
700dependencies = [
701 "generic-array",
702]
703
704[[package]]
705name = "clap"
706version = "4.2.7"
707source = "registry+https://github.com/rust-lang/crates.io-index"
708checksum = "34d21f9bf1b425d2968943631ec91202fe5e837264063503708b83013f8fc938"
709dependencies = [
710 "clap_builder",
711 "clap_derive",
712 "once_cell",
713]
714
715[[package]]
716name = "clap_builder"
717version = "4.2.7"
718source = "registry+https://github.com/rust-lang/crates.io-index"
719checksum = "914c8c79fb560f238ef6429439a30023c862f7a28e688c58f7203f12b29970bd"
720dependencies = [
721 "anstream",
722 "anstyle",
723 "bitflags",
724 "clap_lex",
725 "strsim",
726]
727
728[[package]]
729name = "clap_derive"
730version = "4.2.0"
731source = "registry+https://github.com/rust-lang/crates.io-index"
732checksum = "3f9644cd56d6b87dbe899ef8b053e331c0637664e9e21a33dfcdc36093f5c5c4"
733dependencies = [
734 "heck",
735 "proc-macro2",
736 "quote",
737 "syn 2.0.15",
738]
739
740[[package]]
741name = "clap_lex"
742version = "0.4.1"
743source = "registry+https://github.com/rust-lang/crates.io-index"
744checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1"
745
746[[package]]
747name = "colorchoice"
748version = "1.0.0"
749source = "registry+https://github.com/rust-lang/crates.io-index"
750checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
751
752[[package]]
753name = "combine"
754version = "4.6.6"
755source = "registry+https://github.com/rust-lang/crates.io-index"
756checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4"
757dependencies = [
758 "bytes",
759 "futures-core",
760 "memchr",
761 "pin-project-lite",
762 "tokio",
763 "tokio-util",
764]
765
766[[package]]
767name = "concurrent-queue"
768version = "2.2.0"
769source = "registry+https://github.com/rust-lang/crates.io-index"
770checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c"
771dependencies = [
772 "crossbeam-utils",
773]
774
775[[package]]
776name = "const-oid"
777version = "0.9.2"
778source = "registry+https://github.com/rust-lang/crates.io-index"
779checksum = "520fbf3c07483f94e3e3ca9d0cfd913d7718ef2483d2cfd91c0d9e91474ab913"
780
781[[package]]
782name = "const_format"
783version = "0.2.30"
784source = "registry+https://github.com/rust-lang/crates.io-index"
785checksum = "7309d9b4d3d2c0641e018d449232f2e28f1b22933c137f157d3dbc14228b8c0e"
786dependencies = [
787 "const_format_proc_macros",
788 "konst",
789]
790
791[[package]]
792name = "const_format_proc_macros"
793version = "0.2.29"
794source = "registry+https://github.com/rust-lang/crates.io-index"
795checksum = "d897f47bf7270cf70d370f8f98c1abb6d2d4cf60a6845d30e05bfb90c6568650"
796dependencies = [
797 "proc-macro2",
798 "quote",
799 "unicode-xid",
800]
801
802[[package]]
803name = "convert_case"
804version = "0.4.0"
805source = "registry+https://github.com/rust-lang/crates.io-index"
806checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
807
808[[package]]
809name = "cookie"
810version = "0.17.0"
811source = "registry+https://github.com/rust-lang/crates.io-index"
812checksum = "7efb37c3e1ccb1ff97164ad95ac1606e8ccd35b3fa0a7d99a304c7f4a428cc24"
813dependencies = [
814 "percent-encoding",
815 "time 0.3.21",
816 "version_check",
817]
818
819[[package]]
820name = "core-foundation"
821version = "0.9.3"
822source = "registry+https://github.com/rust-lang/crates.io-index"
823checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
824dependencies = [
825 "core-foundation-sys",
826 "libc",
827]
828
829[[package]]
830name = "core-foundation-sys"
831version = "0.8.4"
832source = "registry+https://github.com/rust-lang/crates.io-index"
833checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
834
835[[package]]
836name = "cpufeatures"
837version = "0.2.7"
838source = "registry+https://github.com/rust-lang/crates.io-index"
839checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58"
840dependencies = [
841 "libc",
842]
843
844[[package]]
845name = "crc"
846version = "3.0.1"
847source = "registry+https://github.com/rust-lang/crates.io-index"
848checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe"
849dependencies = [
850 "crc-catalog",
851]
852
853[[package]]
854name = "crc-any"
855version = "2.4.3"
856source = "registry+https://github.com/rust-lang/crates.io-index"
857checksum = "774646b687f63643eb0f4bf13dc263cb581c8c9e57973b6ddf78bda3994d88df"
858dependencies = [
859 "debug-helper",
860]
861
862[[package]]
863name = "crc-catalog"
864version = "2.2.0"
865source = "registry+https://github.com/rust-lang/crates.io-index"
866checksum = "9cace84e55f07e7301bae1c519df89cdad8cc3cd868413d3fdbdeca9ff3db484"
867
868[[package]]
869name = "crc32fast"
870version = "1.3.2"
871source = "registry+https://github.com/rust-lang/crates.io-index"
872checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
873dependencies = [
874 "cfg-if",
875]
876
877[[package]]
878name = "cron"
879version = "0.12.0"
880source = "registry+https://github.com/rust-lang/crates.io-index"
881checksum = "1ff76b51e4c068c52bfd2866e1567bee7c567ae8f24ada09fd4307019e25eab7"
882dependencies = [
883 "chrono",
884 "nom",
885 "once_cell",
886]
887
888[[package]]
889name = "crossbeam-queue"
890version = "0.3.8"
891source = "registry+https://github.com/rust-lang/crates.io-index"
892checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add"
893dependencies = [
894 "cfg-if",
895 "crossbeam-utils",
896]
897
898[[package]]
899name = "crossbeam-utils"
900version = "0.8.15"
901source = "registry+https://github.com/rust-lang/crates.io-index"
902checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
903dependencies = [
904 "cfg-if",
905]
906
907[[package]]
908name = "crunchy"
909version = "0.2.2"
910source = "registry+https://github.com/rust-lang/crates.io-index"
911checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
912
913[[package]]
914name = "crypto-common"
915version = "0.1.6"
916source = "registry+https://github.com/rust-lang/crates.io-index"
917checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
918dependencies = [
919 "generic-array",
920 "typenum",
921]
922
923[[package]]
924name = "ctor"
925version = "0.1.26"
926source = "registry+https://github.com/rust-lang/crates.io-index"
927checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
928dependencies = [
929 "quote",
930 "syn 1.0.109",
931]
932
933[[package]]
934name = "darling"
935version = "0.13.4"
936source = "registry+https://github.com/rust-lang/crates.io-index"
937checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c"
938dependencies = [
939 "darling_core",
940 "darling_macro",
941]
942
943[[package]]
944name = "darling_core"
945version = "0.13.4"
946source = "registry+https://github.com/rust-lang/crates.io-index"
947checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610"
948dependencies = [
949 "fnv",
950 "ident_case",
951 "proc-macro2",
952 "quote",
953 "strsim",
954 "syn 1.0.109",
955]
956
957[[package]]
958name = "darling_macro"
959version = "0.13.4"
960source = "registry+https://github.com/rust-lang/crates.io-index"
961checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835"
962dependencies = [
963 "darling_core",
964 "quote",
965 "syn 1.0.109",
966]
967
968[[package]]
969name = "data-encoding"
970version = "2.3.3"
971source = "registry+https://github.com/rust-lang/crates.io-index"
972checksum = "23d8666cb01533c39dde32bcbab8e227b4ed6679b2c925eba05feabea39508fb"
973
974[[package]]
975name = "debug-helper"
976version = "0.3.13"
977source = "registry+https://github.com/rust-lang/crates.io-index"
978checksum = "f578e8e2c440e7297e008bb5486a3a8a194775224bbc23729b0dbdfaeebf162e"
979
980[[package]]
981name = "deno_core"
982version = "0.186.0"
983source = "registry+https://github.com/rust-lang/crates.io-index"
984checksum = "d769595c5635ae2e5d5558cc3aaf304e5232fd4ee4ffe259efb4883c2d73df39"
985dependencies = [
986 "anyhow",
987 "bytes",
988 "deno_ops",
989 "futures",
990 "indexmap",
991 "libc",
992 "log",
993 "once_cell",
994 "parking_lot 0.12.1",
995 "pin-project",
996 "serde",
997 "serde_json",
998 "serde_v8",
999 "smallvec",
1000 "sourcemap",
1001 "url",
1002 "v8",
1003]
1004
1005[[package]]
1006name = "deno_ops"
1007version = "0.64.0"
1008source = "registry+https://github.com/rust-lang/crates.io-index"
1009checksum = "1866d24aaf4646a3a18ac167789cf5c4f5db808ca4bd4bb5af3d6c44085e8d05"
1010dependencies = [
1011 "lazy-regex",
1012 "once_cell",
1013 "pmutil",
1014 "proc-macro-crate",
1015 "proc-macro2",
1016 "quote",
1017 "regex",
1018 "syn 1.0.109",
1019]
1020
1021[[package]]
1022name = "der"
1023version = "0.6.1"
1024source = "registry+https://github.com/rust-lang/crates.io-index"
1025checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de"
1026dependencies = [
1027 "const-oid",
1028 "pem-rfc7468",
1029 "zeroize",
1030]
1031
1032[[package]]
1033name = "derive_more"
1034version = "0.99.17"
1035source = "registry+https://github.com/rust-lang/crates.io-index"
1036checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
1037dependencies = [
1038 "convert_case",
1039 "proc-macro2",
1040 "quote",
1041 "rustc_version 0.4.0",
1042 "syn 1.0.109",
1043]
1044
1045[[package]]
1046name = "des"
1047version = "0.7.0"
1048source = "registry+https://github.com/rust-lang/crates.io-index"
1049checksum = "ac41dd49fb554432020d52c875fc290e110113f864c6b1b525cd62c7e7747a5d"
1050dependencies = [
1051 "byteorder",
1052 "cipher",
1053 "opaque-debug",
1054]
1055
1056[[package]]
1057name = "diff"
1058version = "0.1.13"
1059source = "registry+https://github.com/rust-lang/crates.io-index"
1060checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
1061
1062[[package]]
1063name = "digest"
1064version = "0.9.0"
1065source = "registry+https://github.com/rust-lang/crates.io-index"
1066checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
1067dependencies = [
1068 "generic-array",
1069]
1070
1071[[package]]
1072name = "digest"
1073version = "0.10.6"
1074source = "registry+https://github.com/rust-lang/crates.io-index"
1075checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
1076dependencies = [
1077 "block-buffer 0.10.4",
1078 "const-oid",
1079 "crypto-common",
1080 "subtle",
1081]
1082
1083[[package]]
1084name = "dirs"
1085version = "4.0.0"
1086source = "registry+https://github.com/rust-lang/crates.io-index"
1087checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
1088dependencies = [
1089 "dirs-sys",
1090]
1091
1092[[package]]
1093name = "dirs-next"
1094version = "2.0.0"
1095source = "registry+https://github.com/rust-lang/crates.io-index"
1096checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
1097dependencies = [
1098 "cfg-if",
1099 "dirs-sys-next",
1100]
1101
1102[[package]]
1103name = "dirs-sys"
1104version = "0.3.7"
1105source = "registry+https://github.com/rust-lang/crates.io-index"
1106checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
1107dependencies = [
1108 "libc",
1109 "redox_users",
1110 "winapi",
1111]
1112
1113[[package]]
1114name = "dirs-sys-next"
1115version = "0.1.2"
1116source = "registry+https://github.com/rust-lang/crates.io-index"
1117checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
1118dependencies = [
1119 "libc",
1120 "redox_users",
1121 "winapi",
1122]
1123
1124[[package]]
1125name = "dotenv"
1126version = "0.15.0"
1127source = "registry+https://github.com/rust-lang/crates.io-index"
1128checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
1129
1130[[package]]
1131name = "dotenvy"
1132version = "0.15.7"
1133source = "registry+https://github.com/rust-lang/crates.io-index"
1134checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
1135
1136[[package]]
1137name = "dyn-clone"
1138version = "1.0.11"
1139source = "registry+https://github.com/rust-lang/crates.io-index"
1140checksum = "68b0cf012f1230e43cd00ebb729c6bb58707ecfa8ad08b52ef3a4ccd2697fc30"
1141
1142[[package]]
1143name = "dyn-iter"
1144version = "0.2.0"
1145source = "registry+https://github.com/rust-lang/crates.io-index"
1146checksum = "131726693bce13b09331bee70734fe266666332b6ddfef23e9dca5b8bf6dea66"
1147
1148[[package]]
1149name = "either"
1150version = "1.8.1"
1151source = "registry+https://github.com/rust-lang/crates.io-index"
1152checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
1153dependencies = [
1154 "serde",
1155]
1156
1157[[package]]
1158name = "ena"
1159version = "0.14.2"
1160source = "registry+https://github.com/rust-lang/crates.io-index"
1161checksum = "c533630cf40e9caa44bd91aadc88a75d75a4c3a12b4cfde353cbed41daa1e1f1"
1162dependencies = [
1163 "log",
1164]
1165
1166[[package]]
1167name = "encoding_rs"
1168version = "0.8.32"
1169source = "registry+https://github.com/rust-lang/crates.io-index"
1170checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
1171dependencies = [
1172 "cfg-if",
1173]
1174
1175[[package]]
1176name = "enum_kind"
1177version = "0.2.2"
1178source = "registry+https://github.com/rust-lang/crates.io-index"
1179checksum = "9895954c6ec59d897ed28a64815f2ceb57653fcaaebd317f2edc78b74f5495b6"
1180dependencies = [
1181 "pmutil",
1182 "proc-macro2",
1183 "swc_macros_common",
1184 "syn 1.0.109",
1185]
1186
1187[[package]]
1188name = "errno"
1189version = "0.3.1"
1190source = "registry+https://github.com/rust-lang/crates.io-index"
1191checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
1192dependencies = [
1193 "errno-dragonfly",
1194 "libc",
1195 "windows-sys 0.48.0",
1196]
1197
1198[[package]]
1199name = "errno-dragonfly"
1200version = "0.1.2"
1201source = "registry+https://github.com/rust-lang/crates.io-index"
1202checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
1203dependencies = [
1204 "cc",
1205 "libc",
1206]
1207
1208[[package]]
1209name = "event-listener"
1210version = "2.5.3"
1211source = "registry+https://github.com/rust-lang/crates.io-index"
1212checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
1213
1214[[package]]
1215name = "fastrand"
1216version = "1.9.0"
1217source = "registry+https://github.com/rust-lang/crates.io-index"
1218checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
1219dependencies = [
1220 "instant",
1221]
1222
1223[[package]]
1224name = "filetime"
1225version = "0.2.21"
1226source = "registry+https://github.com/rust-lang/crates.io-index"
1227checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153"
1228dependencies = [
1229 "cfg-if",
1230 "libc",
1231 "redox_syscall 0.2.16",
1232 "windows-sys 0.48.0",
1233]
1234
1235[[package]]
1236name = "fixedbitset"
1237version = "0.4.2"
1238source = "registry+https://github.com/rust-lang/crates.io-index"
1239checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
1240
1241[[package]]
1242name = "flate2"
1243version = "1.0.26"
1244source = "registry+https://github.com/rust-lang/crates.io-index"
1245checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
1246dependencies = [
1247 "crc32fast",
1248 "miniz_oxide",
1249]
1250
1251[[package]]
1252name = "fnv"
1253version = "1.0.7"
1254source = "registry+https://github.com/rust-lang/crates.io-index"
1255checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1256
1257[[package]]
1258name = "foreign-types"
1259version = "0.3.2"
1260source = "registry+https://github.com/rust-lang/crates.io-index"
1261checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
1262dependencies = [
1263 "foreign-types-shared",
1264]
1265
1266[[package]]
1267name = "foreign-types-shared"
1268version = "0.1.1"
1269source = "registry+https://github.com/rust-lang/crates.io-index"
1270checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
1271
1272[[package]]
1273name = "form_urlencoded"
1274version = "1.1.0"
1275source = "registry+https://github.com/rust-lang/crates.io-index"
1276checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
1277dependencies = [
1278 "percent-encoding",
1279]
1280
1281[[package]]
1282name = "from_variant"
1283version = "0.1.5"
1284source = "registry+https://github.com/rust-lang/crates.io-index"
1285checksum = "1d449976075322384507443937df2f1d5577afbf4282f12a5a66ef29fa3e6307"
1286dependencies = [
1287 "pmutil",
1288 "proc-macro2",
1289 "swc_macros_common",
1290 "syn 1.0.109",
1291]
1292
1293[[package]]
1294name = "fslock"
1295version = "0.1.8"
1296source = "registry+https://github.com/rust-lang/crates.io-index"
1297checksum = "57eafdd0c16f57161105ae1b98a1238f97645f2f588438b2949c99a2af9616bf"
1298dependencies = [
1299 "libc",
1300 "winapi",
1301]
1302
1303[[package]]
1304name = "futures"
1305version = "0.3.28"
1306source = "registry+https://github.com/rust-lang/crates.io-index"
1307checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
1308dependencies = [
1309 "futures-channel",
1310 "futures-core",
1311 "futures-executor",
1312 "futures-io",
1313 "futures-sink",
1314 "futures-task",
1315 "futures-util",
1316]
1317
1318[[package]]
1319name = "futures-channel"
1320version = "0.3.28"
1321source = "registry+https://github.com/rust-lang/crates.io-index"
1322checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
1323dependencies = [
1324 "futures-core",
1325 "futures-sink",
1326]
1327
1328[[package]]
1329name = "futures-core"
1330version = "0.3.28"
1331source = "registry+https://github.com/rust-lang/crates.io-index"
1332checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
1333
1334[[package]]
1335name = "futures-executor"
1336version = "0.3.28"
1337source = "registry+https://github.com/rust-lang/crates.io-index"
1338checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
1339dependencies = [
1340 "futures-core",
1341 "futures-task",
1342 "futures-util",
1343]
1344
1345[[package]]
1346name = "futures-intrusive"
1347version = "0.4.2"
1348source = "registry+https://github.com/rust-lang/crates.io-index"
1349checksum = "a604f7a68fbf8103337523b1fadc8ade7361ee3f112f7c680ad179651616aed5"
1350dependencies = [
1351 "futures-core",
1352 "lock_api",
1353 "parking_lot 0.11.2",
1354]
1355
1356[[package]]
1357name = "futures-io"
1358version = "0.3.28"
1359source = "registry+https://github.com/rust-lang/crates.io-index"
1360checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
1361
1362[[package]]
1363name = "futures-lite"
1364version = "1.13.0"
1365source = "registry+https://github.com/rust-lang/crates.io-index"
1366checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
1367dependencies = [
1368 "fastrand",
1369 "futures-core",
1370 "futures-io",
1371 "memchr",
1372 "parking",
1373 "pin-project-lite",
1374 "waker-fn",
1375]
1376
1377[[package]]
1378name = "futures-macro"
1379version = "0.3.28"
1380source = "registry+https://github.com/rust-lang/crates.io-index"
1381checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
1382dependencies = [
1383 "proc-macro2",
1384 "quote",
1385 "syn 2.0.15",
1386]
1387
1388[[package]]
1389name = "futures-sink"
1390version = "0.3.28"
1391source = "registry+https://github.com/rust-lang/crates.io-index"
1392checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
1393
1394[[package]]
1395name = "futures-task"
1396version = "0.3.28"
1397source = "registry+https://github.com/rust-lang/crates.io-index"
1398checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
1399
1400[[package]]
1401name = "futures-util"
1402version = "0.3.28"
1403source = "registry+https://github.com/rust-lang/crates.io-index"
1404checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
1405dependencies = [
1406 "futures-channel",
1407 "futures-core",
1408 "futures-io",
1409 "futures-macro",
1410 "futures-sink",
1411 "futures-task",
1412 "memchr",
1413 "pin-project-lite",
1414 "pin-utils",
1415 "slab",
1416]
1417
1418[[package]]
1419name = "generic-array"
1420version = "0.14.7"
1421source = "registry+https://github.com/rust-lang/crates.io-index"
1422checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1423dependencies = [
1424 "typenum",
1425 "version_check",
1426]
1427
1428[[package]]
1429name = "getopts"
1430version = "0.2.21"
1431source = "registry+https://github.com/rust-lang/crates.io-index"
1432checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
1433dependencies = [
1434 "unicode-width",
1435]
1436
1437[[package]]
1438name = "getrandom"
1439version = "0.1.16"
1440source = "registry+https://github.com/rust-lang/crates.io-index"
1441checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
1442dependencies = [
1443 "cfg-if",
1444 "libc",
1445 "wasi 0.9.0+wasi-snapshot-preview1",
1446]
1447
1448[[package]]
1449name = "getrandom"
1450version = "0.2.9"
1451source = "registry+https://github.com/rust-lang/crates.io-index"
1452checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
1453dependencies = [
1454 "cfg-if",
1455 "libc",
1456 "wasi 0.11.0+wasi-snapshot-preview1",
1457]
1458
1459[[package]]
1460name = "git-version"
1461version = "0.3.5"
1462source = "registry+https://github.com/rust-lang/crates.io-index"
1463checksum = "f6b0decc02f4636b9ccad390dcbe77b722a77efedfa393caf8379a51d5c61899"
1464dependencies = [
1465 "git-version-macro",
1466 "proc-macro-hack",
1467]
1468
1469[[package]]
1470name = "git-version-macro"
1471version = "0.3.5"
1472source = "registry+https://github.com/rust-lang/crates.io-index"
1473checksum = "fe69f1cbdb6e28af2bac214e943b99ce8a0a06b447d15d3e61161b0423139f3f"
1474dependencies = [
1475 "proc-macro-hack",
1476 "proc-macro2",
1477 "quote",
1478 "syn 1.0.109",
1479]
1480
1481[[package]]
1482name = "git2"
1483version = "0.16.1"
1484source = "registry+https://github.com/rust-lang/crates.io-index"
1485checksum = "ccf7f68c2995f392c49fffb4f95ae2c873297830eb25c6bc4c114ce8f4562acc"
1486dependencies = [
1487 "bitflags",
1488 "libc",
1489 "libgit2-sys",
1490 "log",
1491 "url",
1492]
1493
1494[[package]]
1495name = "gloo-timers"
1496version = "0.2.6"
1497source = "registry+https://github.com/rust-lang/crates.io-index"
1498checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c"
1499dependencies = [
1500 "futures-channel",
1501 "futures-core",
1502 "js-sys",
1503 "wasm-bindgen",
1504]
1505
1506[[package]]
1507name = "gosyn"
1508version = "0.2.3"
1509source = "registry+https://github.com/rust-lang/crates.io-index"
1510checksum = "248a4b26b282ec2e90272f7e7bd4764eaa6378dee13497ef09aa0efebd80cc85"
1511dependencies = [
1512 "strum",
1513 "unic-ucd-category",
1514]
1515
1516[[package]]
1517name = "h2"
1518version = "0.3.19"
1519source = "registry+https://github.com/rust-lang/crates.io-index"
1520checksum = "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782"
1521dependencies = [
1522 "bytes",
1523 "fnv",
1524 "futures-core",
1525 "futures-sink",
1526 "futures-util",
1527 "http",
1528 "indexmap",
1529 "slab",
1530 "tokio",
1531 "tokio-util",
1532 "tracing",
1533]
1534
1535[[package]]
1536name = "hashbrown"
1537version = "0.12.3"
1538source = "registry+https://github.com/rust-lang/crates.io-index"
1539checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1540dependencies = [
1541 "ahash 0.7.6",
1542]
1543
1544[[package]]
1545name = "hashbrown"
1546version = "0.13.2"
1547source = "registry+https://github.com/rust-lang/crates.io-index"
1548checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
1549dependencies = [
1550 "ahash 0.8.3",
1551]
1552
1553[[package]]
1554name = "hashlink"
1555version = "0.8.1"
1556source = "registry+https://github.com/rust-lang/crates.io-index"
1557checksum = "69fe1fcf8b4278d860ad0548329f892a3631fb63f82574df68275f34cdbe0ffa"
1558dependencies = [
1559 "hashbrown 0.12.3",
1560]
1561
1562[[package]]
1563name = "headers"
1564version = "0.3.8"
1565source = "registry+https://github.com/rust-lang/crates.io-index"
1566checksum = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584"
1567dependencies = [
1568 "base64 0.13.1",
1569 "bitflags",
1570 "bytes",
1571 "headers-core",
1572 "http",
1573 "httpdate",
1574 "mime",
1575 "sha1",
1576]
1577
1578[[package]]
1579name = "headers-core"
1580version = "0.2.0"
1581source = "registry+https://github.com/rust-lang/crates.io-index"
1582checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429"
1583dependencies = [
1584 "http",
1585]
1586
1587[[package]]
1588name = "heck"
1589version = "0.4.1"
1590source = "registry+https://github.com/rust-lang/crates.io-index"
1591checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
1592dependencies = [
1593 "unicode-segmentation",
1594]
1595
1596[[package]]
1597name = "hermit-abi"
1598version = "0.2.6"
1599source = "registry+https://github.com/rust-lang/crates.io-index"
1600checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
1601dependencies = [
1602 "libc",
1603]
1604
1605[[package]]
1606name = "hermit-abi"
1607version = "0.3.1"
1608source = "registry+https://github.com/rust-lang/crates.io-index"
1609checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
1610
1611[[package]]
1612name = "hex"
1613version = "0.4.3"
1614source = "registry+https://github.com/rust-lang/crates.io-index"
1615checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1616
1617[[package]]
1618name = "hkdf"
1619version = "0.12.3"
1620source = "registry+https://github.com/rust-lang/crates.io-index"
1621checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437"
1622dependencies = [
1623 "hmac",
1624]
1625
1626[[package]]
1627name = "hmac"
1628version = "0.12.1"
1629source = "registry+https://github.com/rust-lang/crates.io-index"
1630checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1631dependencies = [
1632 "digest 0.10.6",
1633]
1634
1635[[package]]
1636name = "home"
1637version = "0.5.5"
1638source = "registry+https://github.com/rust-lang/crates.io-index"
1639checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
1640dependencies = [
1641 "windows-sys 0.48.0",
1642]
1643
1644[[package]]
1645name = "http"
1646version = "0.2.9"
1647source = "registry+https://github.com/rust-lang/crates.io-index"
1648checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
1649dependencies = [
1650 "bytes",
1651 "fnv",
1652 "itoa",
1653]
1654
1655[[package]]
1656name = "http-body"
1657version = "0.4.5"
1658source = "registry+https://github.com/rust-lang/crates.io-index"
1659checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
1660dependencies = [
1661 "bytes",
1662 "http",
1663 "pin-project-lite",
1664]
1665
1666[[package]]
1667name = "http-range-header"
1668version = "0.3.0"
1669source = "registry+https://github.com/rust-lang/crates.io-index"
1670checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29"
1671
1672[[package]]
1673name = "http-types"
1674version = "2.12.0"
1675source = "registry+https://github.com/rust-lang/crates.io-index"
1676checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad"
1677dependencies = [
1678 "anyhow",
1679 "async-channel",
1680 "base64 0.13.1",
1681 "futures-lite",
1682 "http",
1683 "infer",
1684 "pin-project-lite",
1685 "rand 0.7.3",
1686 "serde",
1687 "serde_json",
1688 "serde_qs 0.8.5",
1689 "serde_urlencoded",
1690 "url",
1691]
1692
1693[[package]]
1694name = "httparse"
1695version = "1.8.0"
1696source = "registry+https://github.com/rust-lang/crates.io-index"
1697checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
1698
1699[[package]]
1700name = "httpdate"
1701version = "1.0.2"
1702source = "registry+https://github.com/rust-lang/crates.io-index"
1703checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
1704
1705[[package]]
1706name = "hyper"
1707version = "0.14.26"
1708source = "registry+https://github.com/rust-lang/crates.io-index"
1709checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4"
1710dependencies = [
1711 "bytes",
1712 "futures-channel",
1713 "futures-core",
1714 "futures-util",
1715 "h2",
1716 "http",
1717 "http-body",
1718 "httparse",
1719 "httpdate",
1720 "itoa",
1721 "pin-project-lite",
1722 "socket2",
1723 "tokio",
1724 "tower-service",
1725 "tracing",
1726 "want",
1727]
1728
1729[[package]]
1730name = "hyper-tls"
1731version = "0.5.0"
1732source = "registry+https://github.com/rust-lang/crates.io-index"
1733checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
1734dependencies = [
1735 "bytes",
1736 "hyper",
1737 "native-tls",
1738 "tokio",
1739 "tokio-native-tls",
1740]
1741
1742[[package]]
1743name = "iana-time-zone"
1744version = "0.1.56"
1745source = "registry+https://github.com/rust-lang/crates.io-index"
1746checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c"
1747dependencies = [
1748 "android_system_properties",
1749 "core-foundation-sys",
1750 "iana-time-zone-haiku",
1751 "js-sys",
1752 "wasm-bindgen",
1753 "windows",
1754]
1755
1756[[package]]
1757name = "iana-time-zone-haiku"
1758version = "0.1.2"
1759source = "registry+https://github.com/rust-lang/crates.io-index"
1760checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1761dependencies = [
1762 "cc",
1763]
1764
1765[[package]]
1766name = "ident_case"
1767version = "1.0.1"
1768source = "registry+https://github.com/rust-lang/crates.io-index"
1769checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1770
1771[[package]]
1772name = "idna"
1773version = "0.3.0"
1774source = "registry+https://github.com/rust-lang/crates.io-index"
1775checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
1776dependencies = [
1777 "unicode-bidi",
1778 "unicode-normalization",
1779]
1780
1781[[package]]
1782name = "if_chain"
1783version = "1.0.2"
1784source = "registry+https://github.com/rust-lang/crates.io-index"
1785checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed"
1786
1787[[package]]
1788name = "indexmap"
1789version = "1.9.3"
1790source = "registry+https://github.com/rust-lang/crates.io-index"
1791checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
1792dependencies = [
1793 "autocfg",
1794 "hashbrown 0.12.3",
1795 "serde",
1796]
1797
1798[[package]]
1799name = "infer"
1800version = "0.2.3"
1801source = "registry+https://github.com/rust-lang/crates.io-index"
1802checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac"
1803
1804[[package]]
1805name = "instant"
1806version = "0.1.12"
1807source = "registry+https://github.com/rust-lang/crates.io-index"
1808checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
1809dependencies = [
1810 "cfg-if",
1811]
1812
1813[[package]]
1814name = "io-lifetimes"
1815version = "1.0.10"
1816source = "registry+https://github.com/rust-lang/crates.io-index"
1817checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220"
1818dependencies = [
1819 "hermit-abi 0.3.1",
1820 "libc",
1821 "windows-sys 0.48.0",
1822]
1823
1824[[package]]
1825name = "ipnet"
1826version = "2.7.2"
1827source = "registry+https://github.com/rust-lang/crates.io-index"
1828checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f"
1829
1830[[package]]
1831name = "is-macro"
1832version = "0.2.2"
1833source = "registry+https://github.com/rust-lang/crates.io-index"
1834checksum = "8a7d079e129b77477a49c5c4f1cfe9ce6c2c909ef52520693e8e811a714c7b20"
1835dependencies = [
1836 "Inflector",
1837 "pmutil",
1838 "proc-macro2",
1839 "quote",
1840 "syn 1.0.109",
1841]
1842
1843[[package]]
1844name = "is-terminal"
1845version = "0.4.7"
1846source = "registry+https://github.com/rust-lang/crates.io-index"
1847checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f"
1848dependencies = [
1849 "hermit-abi 0.3.1",
1850 "io-lifetimes",
1851 "rustix",
1852 "windows-sys 0.48.0",
1853]
1854
1855[[package]]
1856name = "itertools"
1857version = "0.10.5"
1858source = "registry+https://github.com/rust-lang/crates.io-index"
1859checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1860dependencies = [
1861 "either",
1862]
1863
1864[[package]]
1865name = "itoa"
1866version = "1.0.6"
1867source = "registry+https://github.com/rust-lang/crates.io-index"
1868checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
1869
1870[[package]]
1871name = "jobserver"
1872version = "0.1.26"
1873source = "registry+https://github.com/rust-lang/crates.io-index"
1874checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
1875dependencies = [
1876 "libc",
1877]
1878
1879[[package]]
1880name = "js-sys"
1881version = "0.3.62"
1882source = "registry+https://github.com/rust-lang/crates.io-index"
1883checksum = "68c16e1bfd491478ab155fd8b4896b86f9ede344949b641e61501e07c2b8b4d5"
1884dependencies = [
1885 "wasm-bindgen",
1886]
1887
1888[[package]]
1889name = "konst"
1890version = "0.2.19"
1891source = "registry+https://github.com/rust-lang/crates.io-index"
1892checksum = "330f0e13e6483b8c34885f7e6c9f19b1a7bd449c673fbb948a51c99d66ef74f4"
1893dependencies = [
1894 "konst_macro_rules",
1895]
1896
1897[[package]]
1898name = "konst_macro_rules"
1899version = "0.2.19"
1900source = "registry+https://github.com/rust-lang/crates.io-index"
1901checksum = "a4933f3f57a8e9d9da04db23fb153356ecaf00cbd14aee46279c33dc80925c37"
1902
1903[[package]]
1904name = "kv-log-macro"
1905version = "1.0.7"
1906source = "registry+https://github.com/rust-lang/crates.io-index"
1907checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
1908dependencies = [
1909 "log",
1910]
1911
1912[[package]]
1913name = "lalrpop"
1914version = "0.19.12"
1915source = "registry+https://github.com/rust-lang/crates.io-index"
1916checksum = "0a1cbf952127589f2851ab2046af368fd20645491bb4b376f04b7f94d7a9837b"
1917dependencies = [
1918 "ascii-canvas",
1919 "bit-set",
1920 "diff",
1921 "ena",
1922 "is-terminal",
1923 "itertools",
1924 "lalrpop-util",
1925 "petgraph",
1926 "regex",
1927 "regex-syntax 0.6.29",
1928 "string_cache",
1929 "term",
1930 "tiny-keccak",
1931 "unicode-xid",
1932]
1933
1934[[package]]
1935name = "lalrpop-util"
1936version = "0.19.12"
1937source = "registry+https://github.com/rust-lang/crates.io-index"
1938checksum = "d3c48237b9604c5a4702de6b824e02006c3214327564636aef27c1028a8fa0ed"
1939dependencies = [
1940 "regex",
1941]
1942
1943[[package]]
1944name = "lazy-regex"
1945version = "2.5.0"
1946source = "registry+https://github.com/rust-lang/crates.io-index"
1947checksum = "ff63c423c68ea6814b7da9e88ce585f793c87ddd9e78f646970891769c8235d4"
1948dependencies = [
1949 "lazy-regex-proc_macros",
1950 "once_cell",
1951 "regex",
1952]
1953
1954[[package]]
1955name = "lazy-regex-proc_macros"
1956version = "2.4.1"
1957source = "registry+https://github.com/rust-lang/crates.io-index"
1958checksum = "8edfc11b8f56ce85e207e62ea21557cfa09bb24a8f6b04ae181b086ff8611c22"
1959dependencies = [
1960 "proc-macro2",
1961 "quote",
1962 "regex",
1963 "syn 1.0.109",
1964]
1965
1966[[package]]
1967name = "lazy_static"
1968version = "1.4.0"
1969source = "registry+https://github.com/rust-lang/crates.io-index"
1970checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
1971dependencies = [
1972 "spin",
1973]
1974
1975[[package]]
1976name = "lexical"
1977version = "6.1.1"
1978source = "registry+https://github.com/rust-lang/crates.io-index"
1979checksum = "c7aefb36fd43fef7003334742cbf77b243fcd36418a1d1bdd480d613a67968f6"
1980dependencies = [
1981 "lexical-core",
1982]
1983
1984[[package]]
1985name = "lexical-core"
1986version = "0.8.5"
1987source = "registry+https://github.com/rust-lang/crates.io-index"
1988checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46"
1989dependencies = [
1990 "lexical-parse-float",
1991 "lexical-parse-integer",
1992 "lexical-util",
1993 "lexical-write-float",
1994 "lexical-write-integer",
1995]
1996
1997[[package]]
1998name = "lexical-parse-float"
1999version = "0.8.5"
2000source = "registry+https://github.com/rust-lang/crates.io-index"
2001checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f"
2002dependencies = [
2003 "lexical-parse-integer",
2004 "lexical-util",
2005 "static_assertions",
2006]
2007
2008[[package]]
2009name = "lexical-parse-integer"
2010version = "0.8.6"
2011source = "registry+https://github.com/rust-lang/crates.io-index"
2012checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9"
2013dependencies = [
2014 "lexical-util",
2015 "static_assertions",
2016]
2017
2018[[package]]
2019name = "lexical-util"
2020version = "0.8.5"
2021source = "registry+https://github.com/rust-lang/crates.io-index"
2022checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc"
2023dependencies = [
2024 "static_assertions",
2025]
2026
2027[[package]]
2028name = "lexical-write-float"
2029version = "0.8.5"
2030source = "registry+https://github.com/rust-lang/crates.io-index"
2031checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862"
2032dependencies = [
2033 "lexical-util",
2034 "lexical-write-integer",
2035 "static_assertions",
2036]
2037
2038[[package]]
2039name = "lexical-write-integer"
2040version = "0.8.5"
2041source = "registry+https://github.com/rust-lang/crates.io-index"
2042checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446"
2043dependencies = [
2044 "lexical-util",
2045 "static_assertions",
2046]
2047
2048[[package]]
2049name = "libc"
2050version = "0.2.144"
2051source = "registry+https://github.com/rust-lang/crates.io-index"
2052checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1"
2053
2054[[package]]
2055name = "libgit2-sys"
2056version = "0.14.2+1.5.1"
2057source = "registry+https://github.com/rust-lang/crates.io-index"
2058checksum = "7f3d95f6b51075fe9810a7ae22c7095f12b98005ab364d8544797a825ce946a4"
2059dependencies = [
2060 "cc",
2061 "libc",
2062 "libz-sys",
2063 "pkg-config",
2064]
2065
2066[[package]]
2067name = "libm"
2068version = "0.2.6"
2069source = "registry+https://github.com/rust-lang/crates.io-index"
2070checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb"
2071
2072[[package]]
2073name = "libz-sys"
2074version = "1.1.9"
2075source = "registry+https://github.com/rust-lang/crates.io-index"
2076checksum = "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db"
2077dependencies = [
2078 "cc",
2079 "libc",
2080 "pkg-config",
2081 "vcpkg",
2082]
2083
2084[[package]]
2085name = "linux-raw-sys"
2086version = "0.3.7"
2087source = "registry+https://github.com/rust-lang/crates.io-index"
2088checksum = "ece97ea872ece730aed82664c424eb4c8291e1ff2480247ccf7409044bc6479f"
2089
2090[[package]]
2091name = "lock_api"
2092version = "0.4.9"
2093source = "registry+https://github.com/rust-lang/crates.io-index"
2094checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
2095dependencies = [
2096 "autocfg",
2097 "scopeguard",
2098]
2099
2100[[package]]
2101name = "log"
2102version = "0.4.17"
2103source = "registry+https://github.com/rust-lang/crates.io-index"
2104checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2105dependencies = [
2106 "cfg-if",
2107 "value-bag",
2108]
2109
2110[[package]]
2111name = "lz4_flex"
2112version = "0.9.5"
2113source = "registry+https://github.com/rust-lang/crates.io-index"
2114checksum = "1a8cbbb2831780bc3b9c15a41f5b49222ef756b6730a95f3decfdd15903eb5a3"
2115dependencies = [
2116 "twox-hash",
2117]
2118
2119[[package]]
2120name = "lzma-sys"
2121version = "0.1.20"
2122source = "registry+https://github.com/rust-lang/crates.io-index"
2123checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
2124dependencies = [
2125 "cc",
2126 "libc",
2127 "pkg-config",
2128]
2129
2130[[package]]
2131name = "magic-crypt"
2132version = "3.1.12"
2133source = "registry+https://github.com/rust-lang/crates.io-index"
2134checksum = "0196bd5c76f5f51d7d6563545f86262fef4c82d75466ba6f6d359c40a523318d"
2135dependencies = [
2136 "aes",
2137 "base64 0.13.1",
2138 "block-modes",
2139 "crc-any",
2140 "des",
2141 "digest 0.9.0",
2142 "md-5 0.9.1",
2143 "sha2 0.9.9",
2144 "tiger",
2145]
2146
2147[[package]]
2148name = "matchers"
2149version = "0.1.0"
2150source = "registry+https://github.com/rust-lang/crates.io-index"
2151checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
2152dependencies = [
2153 "regex-automata",
2154]
2155
2156[[package]]
2157name = "matches"
2158version = "0.1.10"
2159source = "registry+https://github.com/rust-lang/crates.io-index"
2160checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
2161
2162[[package]]
2163name = "matchit"
2164version = "0.7.0"
2165source = "registry+https://github.com/rust-lang/crates.io-index"
2166checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40"
2167
2168[[package]]
2169name = "md-5"
2170version = "0.9.1"
2171source = "registry+https://github.com/rust-lang/crates.io-index"
2172checksum = "7b5a279bb9607f9f53c22d496eade00d138d1bdcccd07d74650387cf94942a15"
2173dependencies = [
2174 "block-buffer 0.9.0",
2175 "digest 0.9.0",
2176 "opaque-debug",
2177]
2178
2179[[package]]
2180name = "md-5"
2181version = "0.10.5"
2182source = "registry+https://github.com/rust-lang/crates.io-index"
2183checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca"
2184dependencies = [
2185 "digest 0.10.6",
2186]
2187
2188[[package]]
2189name = "memchr"
2190version = "2.5.0"
2191source = "registry+https://github.com/rust-lang/crates.io-index"
2192checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2193
2194[[package]]
2195name = "mime"
2196version = "0.3.17"
2197source = "registry+https://github.com/rust-lang/crates.io-index"
2198checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2199
2200[[package]]
2201name = "mime_guess"
2202version = "2.0.4"
2203source = "registry+https://github.com/rust-lang/crates.io-index"
2204checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
2205dependencies = [
2206 "mime",
2207 "unicase",
2208]
2209
2210[[package]]
2211name = "minimal-lexical"
2212version = "0.2.1"
2213source = "registry+https://github.com/rust-lang/crates.io-index"
2214checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2215
2216[[package]]
2217name = "miniz_oxide"
2218version = "0.7.1"
2219source = "registry+https://github.com/rust-lang/crates.io-index"
2220checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
2221dependencies = [
2222 "adler",
2223]
2224
2225[[package]]
2226name = "mio"
2227version = "0.8.6"
2228source = "registry+https://github.com/rust-lang/crates.io-index"
2229checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9"
2230dependencies = [
2231 "libc",
2232 "log",
2233 "wasi 0.11.0+wasi-snapshot-preview1",
2234 "windows-sys 0.45.0",
2235]
2236
2237[[package]]
2238name = "native-tls"
2239version = "0.2.11"
2240source = "registry+https://github.com/rust-lang/crates.io-index"
2241checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
2242dependencies = [
2243 "lazy_static",
2244 "libc",
2245 "log",
2246 "openssl",
2247 "openssl-probe",
2248 "openssl-sys",
2249 "schannel",
2250 "security-framework",
2251 "security-framework-sys",
2252 "tempfile",
2253]
2254
2255[[package]]
2256name = "new_debug_unreachable"
2257version = "1.0.4"
2258source = "registry+https://github.com/rust-lang/crates.io-index"
2259checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
2260
2261[[package]]
2262name = "nom"
2263version = "7.1.3"
2264source = "registry+https://github.com/rust-lang/crates.io-index"
2265checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2266dependencies = [
2267 "memchr",
2268 "minimal-lexical",
2269]
2270
2271[[package]]
2272name = "nu-ansi-term"
2273version = "0.46.0"
2274source = "registry+https://github.com/rust-lang/crates.io-index"
2275checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
2276dependencies = [
2277 "overload",
2278 "winapi",
2279]
2280
2281[[package]]
2282name = "num-bigint"
2283version = "0.4.3"
2284source = "registry+https://github.com/rust-lang/crates.io-index"
2285checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
2286dependencies = [
2287 "autocfg",
2288 "num-integer",
2289 "num-traits",
2290 "rand 0.8.5",
2291 "serde",
2292]
2293
2294[[package]]
2295name = "num-bigint-dig"
2296version = "0.8.2"
2297source = "registry+https://github.com/rust-lang/crates.io-index"
2298checksum = "2399c9463abc5f909349d8aa9ba080e0b88b3ce2885389b60b993f39b1a56905"
2299dependencies = [
2300 "byteorder",
2301 "lazy_static",
2302 "libm",
2303 "num-integer",
2304 "num-iter",
2305 "num-traits",
2306 "rand 0.8.5",
2307 "smallvec",
2308 "zeroize",
2309]
2310
2311[[package]]
2312name = "num-complex"
2313version = "0.4.3"
2314source = "registry+https://github.com/rust-lang/crates.io-index"
2315checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d"
2316dependencies = [
2317 "num-traits",
2318 "serde",
2319]
2320
2321[[package]]
2322name = "num-integer"
2323version = "0.1.45"
2324source = "registry+https://github.com/rust-lang/crates.io-index"
2325checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
2326dependencies = [
2327 "autocfg",
2328 "num-traits",
2329]
2330
2331[[package]]
2332name = "num-iter"
2333version = "0.1.43"
2334source = "registry+https://github.com/rust-lang/crates.io-index"
2335checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
2336dependencies = [
2337 "autocfg",
2338 "num-integer",
2339 "num-traits",
2340]
2341
2342[[package]]
2343name = "num-traits"
2344version = "0.2.15"
2345source = "registry+https://github.com/rust-lang/crates.io-index"
2346checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
2347dependencies = [
2348 "autocfg",
2349 "libm",
2350]
2351
2352[[package]]
2353name = "num_cpus"
2354version = "1.15.0"
2355source = "registry+https://github.com/rust-lang/crates.io-index"
2356checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
2357dependencies = [
2358 "hermit-abi 0.2.6",
2359 "libc",
2360]
2361
2362[[package]]
2363name = "once_cell"
2364version = "1.17.1"
2365source = "registry+https://github.com/rust-lang/crates.io-index"
2366checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
2367
2368[[package]]
2369name = "opaque-debug"
2370version = "0.3.0"
2371source = "registry+https://github.com/rust-lang/crates.io-index"
2372checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
2373
2374[[package]]
2375name = "openapiv3"
2376version = "1.0.2"
2377source = "registry+https://github.com/rust-lang/crates.io-index"
2378checksum = "7b1a9f106eb0a780abd17ba9fca8e0843e3461630bcbe2af0ad4d5d3ba4e9aa4"
2379dependencies = [
2380 "indexmap",
2381 "serde",
2382 "serde_json",
2383]
2384
2385[[package]]
2386name = "openssl"
2387version = "0.10.52"
2388source = "registry+https://github.com/rust-lang/crates.io-index"
2389checksum = "01b8574602df80f7b85fdfc5392fa884a4e3b3f4f35402c070ab34c3d3f78d56"
2390dependencies = [
2391 "bitflags",
2392 "cfg-if",
2393 "foreign-types",
2394 "libc",
2395 "once_cell",
2396 "openssl-macros",
2397 "openssl-sys",
2398]
2399
2400[[package]]
2401name = "openssl-macros"
2402version = "0.1.1"
2403source = "registry+https://github.com/rust-lang/crates.io-index"
2404checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
2405dependencies = [
2406 "proc-macro2",
2407 "quote",
2408 "syn 2.0.15",
2409]
2410
2411[[package]]
2412name = "openssl-probe"
2413version = "0.1.5"
2414source = "registry+https://github.com/rust-lang/crates.io-index"
2415checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
2416
2417[[package]]
2418name = "openssl-sys"
2419version = "0.9.87"
2420source = "registry+https://github.com/rust-lang/crates.io-index"
2421checksum = "8e17f59264b2809d77ae94f0e1ebabc434773f370d6ca667bd223ea10e06cc7e"
2422dependencies = [
2423 "cc",
2424 "libc",
2425 "pkg-config",
2426 "vcpkg",
2427]
2428
2429[[package]]
2430name = "overload"
2431version = "0.1.1"
2432source = "registry+https://github.com/rust-lang/crates.io-index"
2433checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
2434
2435[[package]]
2436name = "parking"
2437version = "2.1.0"
2438source = "registry+https://github.com/rust-lang/crates.io-index"
2439checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e"
2440
2441[[package]]
2442name = "parking_lot"
2443version = "0.11.2"
2444source = "registry+https://github.com/rust-lang/crates.io-index"
2445checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
2446dependencies = [
2447 "instant",
2448 "lock_api",
2449 "parking_lot_core 0.8.6",
2450]
2451
2452[[package]]
2453name = "parking_lot"
2454version = "0.12.1"
2455source = "registry+https://github.com/rust-lang/crates.io-index"
2456checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
2457dependencies = [
2458 "lock_api",
2459 "parking_lot_core 0.9.7",
2460]
2461
2462[[package]]
2463name = "parking_lot_core"
2464version = "0.8.6"
2465source = "registry+https://github.com/rust-lang/crates.io-index"
2466checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
2467dependencies = [
2468 "cfg-if",
2469 "instant",
2470 "libc",
2471 "redox_syscall 0.2.16",
2472 "smallvec",
2473 "winapi",
2474]
2475
2476[[package]]
2477name = "parking_lot_core"
2478version = "0.9.7"
2479source = "registry+https://github.com/rust-lang/crates.io-index"
2480checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
2481dependencies = [
2482 "cfg-if",
2483 "libc",
2484 "redox_syscall 0.2.16",
2485 "smallvec",
2486 "windows-sys 0.45.0",
2487]
2488
2489[[package]]
2490name = "parse-zoneinfo"
2491version = "0.3.0"
2492source = "registry+https://github.com/rust-lang/crates.io-index"
2493checksum = "c705f256449c60da65e11ff6626e0c16a0a0b96aaa348de61376b249bc340f41"
2494dependencies = [
2495 "regex",
2496]
2497
2498[[package]]
2499name = "password-hash"
2500version = "0.5.0"
2501source = "registry+https://github.com/rust-lang/crates.io-index"
2502checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
2503dependencies = [
2504 "base64ct",
2505 "rand_core 0.6.4",
2506 "subtle",
2507]
2508
2509[[package]]
2510name = "paste"
2511version = "1.0.12"
2512source = "registry+https://github.com/rust-lang/crates.io-index"
2513checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79"
2514
2515[[package]]
2516name = "pem-rfc7468"
2517version = "0.6.0"
2518source = "registry+https://github.com/rust-lang/crates.io-index"
2519checksum = "24d159833a9105500e0398934e205e0773f0b27529557134ecfc51c27646adac"
2520dependencies = [
2521 "base64ct",
2522]
2523
2524[[package]]
2525name = "percent-encoding"
2526version = "2.2.0"
2527source = "registry+https://github.com/rust-lang/crates.io-index"
2528checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
2529
2530[[package]]
2531name = "pest"
2532version = "2.6.0"
2533source = "registry+https://github.com/rust-lang/crates.io-index"
2534checksum = "e68e84bfb01f0507134eac1e9b410a12ba379d064eab48c50ba4ce329a527b70"
2535dependencies = [
2536 "thiserror",
2537 "ucd-trie",
2538]
2539
2540[[package]]
2541name = "petgraph"
2542version = "0.6.3"
2543source = "registry+https://github.com/rust-lang/crates.io-index"
2544checksum = "4dd7d28ee937e54fe3080c91faa1c3a46c06de6252988a7f4592ba2310ef22a4"
2545dependencies = [
2546 "fixedbitset",
2547 "indexmap",
2548]
2549
2550[[package]]
2551name = "phf"
2552version = "0.10.1"
2553source = "registry+https://github.com/rust-lang/crates.io-index"
2554checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
2555dependencies = [
2556 "phf_shared 0.10.0",
2557]
2558
2559[[package]]
2560name = "phf"
2561version = "0.11.1"
2562source = "registry+https://github.com/rust-lang/crates.io-index"
2563checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c"
2564dependencies = [
2565 "phf_macros",
2566 "phf_shared 0.11.1",
2567]
2568
2569[[package]]
2570name = "phf_codegen"
2571version = "0.10.0"
2572source = "registry+https://github.com/rust-lang/crates.io-index"
2573checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
2574dependencies = [
2575 "phf_generator 0.10.0",
2576 "phf_shared 0.10.0",
2577]
2578
2579[[package]]
2580name = "phf_codegen"
2581version = "0.11.1"
2582source = "registry+https://github.com/rust-lang/crates.io-index"
2583checksum = "a56ac890c5e3ca598bbdeaa99964edb5b0258a583a9eb6ef4e89fc85d9224770"
2584dependencies = [
2585 "phf_generator 0.11.1",
2586 "phf_shared 0.11.1",
2587]
2588
2589[[package]]
2590name = "phf_generator"
2591version = "0.10.0"
2592source = "registry+https://github.com/rust-lang/crates.io-index"
2593checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
2594dependencies = [
2595 "phf_shared 0.10.0",
2596 "rand 0.8.5",
2597]
2598
2599[[package]]
2600name = "phf_generator"
2601version = "0.11.1"
2602source = "registry+https://github.com/rust-lang/crates.io-index"
2603checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf"
2604dependencies = [
2605 "phf_shared 0.11.1",
2606 "rand 0.8.5",
2607]
2608
2609[[package]]
2610name = "phf_macros"
2611version = "0.11.1"
2612source = "registry+https://github.com/rust-lang/crates.io-index"
2613checksum = "92aacdc5f16768709a569e913f7451034034178b05bdc8acda226659a3dccc66"
2614dependencies = [
2615 "phf_generator 0.11.1",
2616 "phf_shared 0.11.1",
2617 "proc-macro2",
2618 "quote",
2619 "syn 1.0.109",
2620]
2621
2622[[package]]
2623name = "phf_shared"
2624version = "0.10.0"
2625source = "registry+https://github.com/rust-lang/crates.io-index"
2626checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
2627dependencies = [
2628 "siphasher",
2629]
2630
2631[[package]]
2632name = "phf_shared"
2633version = "0.11.1"
2634source = "registry+https://github.com/rust-lang/crates.io-index"
2635checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676"
2636dependencies = [
2637 "siphasher",
2638]
2639
2640[[package]]
2641name = "pin-project"
2642version = "1.0.12"
2643source = "registry+https://github.com/rust-lang/crates.io-index"
2644checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
2645dependencies = [
2646 "pin-project-internal",
2647]
2648
2649[[package]]
2650name = "pin-project-internal"
2651version = "1.0.12"
2652source = "registry+https://github.com/rust-lang/crates.io-index"
2653checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
2654dependencies = [
2655 "proc-macro2",
2656 "quote",
2657 "syn 1.0.109",
2658]
2659
2660[[package]]
2661name = "pin-project-lite"
2662version = "0.2.9"
2663source = "registry+https://github.com/rust-lang/crates.io-index"
2664checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
2665
2666[[package]]
2667name = "pin-utils"
2668version = "0.1.0"
2669source = "registry+https://github.com/rust-lang/crates.io-index"
2670checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2671
2672[[package]]
2673name = "pkcs1"
2674version = "0.4.1"
2675source = "registry+https://github.com/rust-lang/crates.io-index"
2676checksum = "eff33bdbdfc54cc98a2eca766ebdec3e1b8fb7387523d5c9c9a2891da856f719"
2677dependencies = [
2678 "der",
2679 "pkcs8",
2680 "spki",
2681 "zeroize",
2682]
2683
2684[[package]]
2685name = "pkcs8"
2686version = "0.9.0"
2687source = "registry+https://github.com/rust-lang/crates.io-index"
2688checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba"
2689dependencies = [
2690 "der",
2691 "spki",
2692]
2693
2694[[package]]
2695name = "pkg-config"
2696version = "0.3.27"
2697source = "registry+https://github.com/rust-lang/crates.io-index"
2698checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
2699
2700[[package]]
2701name = "pmutil"
2702version = "0.5.3"
2703source = "registry+https://github.com/rust-lang/crates.io-index"
2704checksum = "3894e5d549cccbe44afecf72922f277f603cd4bb0219c8342631ef18fffbe004"
2705dependencies = [
2706 "proc-macro2",
2707 "quote",
2708 "syn 1.0.109",
2709]
2710
2711[[package]]
2712name = "polling"
2713version = "2.8.0"
2714source = "registry+https://github.com/rust-lang/crates.io-index"
2715checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
2716dependencies = [
2717 "autocfg",
2718 "bitflags",
2719 "cfg-if",
2720 "concurrent-queue",
2721 "libc",
2722 "log",
2723 "pin-project-lite",
2724 "windows-sys 0.48.0",
2725]
2726
2727[[package]]
2728name = "ppv-lite86"
2729version = "0.2.17"
2730source = "registry+https://github.com/rust-lang/crates.io-index"
2731checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2732
2733[[package]]
2734name = "precomputed-hash"
2735version = "0.1.1"
2736source = "registry+https://github.com/rust-lang/crates.io-index"
2737checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
2738
2739[[package]]
2740name = "prettyplease"
2741version = "0.1.25"
2742source = "registry+https://github.com/rust-lang/crates.io-index"
2743checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86"
2744dependencies = [
2745 "proc-macro2",
2746 "syn 1.0.109",
2747]
2748
2749[[package]]
2750name = "proc-macro-crate"
2751version = "1.3.1"
2752source = "registry+https://github.com/rust-lang/crates.io-index"
2753checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
2754dependencies = [
2755 "once_cell",
2756 "toml_edit",
2757]
2758
2759[[package]]
2760name = "proc-macro-hack"
2761version = "0.5.20+deprecated"
2762source = "registry+https://github.com/rust-lang/crates.io-index"
2763checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
2764
2765[[package]]
2766name = "proc-macro2"
2767version = "1.0.56"
2768source = "registry+https://github.com/rust-lang/crates.io-index"
2769checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435"
2770dependencies = [
2771 "unicode-ident",
2772]
2773
2774[[package]]
2775name = "progenitor"
2776version = "0.3.0"
2777source = "git+https://github.com/oxidecomputer/progenitor#b94123e5ac5b11c4ff457bc160efb9650e67cc91"
2778dependencies = [
2779 "anyhow",
2780 "built",
2781 "clap",
2782 "openapiv3",
2783 "progenitor-client",
2784 "progenitor-impl",
2785 "progenitor-macro",
2786 "project-root",
2787 "rustfmt-wrapper",
2788 "serde",
2789 "serde_json",
2790 "serde_yaml",
2791]
2792
2793[[package]]
2794name = "progenitor-client"
2795version = "0.3.0"
2796source = "git+https://github.com/oxidecomputer/progenitor#b94123e5ac5b11c4ff457bc160efb9650e67cc91"
2797dependencies = [
2798 "bytes",
2799 "futures-core",
2800 "percent-encoding",
2801 "reqwest",
2802 "serde",
2803 "serde_json",
2804 "serde_urlencoded",
2805]
2806
2807[[package]]
2808name = "progenitor-impl"
2809version = "0.3.0"
2810source = "git+https://github.com/oxidecomputer/progenitor#b94123e5ac5b11c4ff457bc160efb9650e67cc91"
2811dependencies = [
2812 "getopts",
2813 "heck",
2814 "http",
2815 "indexmap",
2816 "openapiv3",
2817 "proc-macro2",
2818 "quote",
2819 "regex",
2820 "schemars",
2821 "serde",
2822 "serde_json",
2823 "syn 2.0.15",
2824 "thiserror",
2825 "typify",
2826 "unicode-ident",
2827]
2828
2829[[package]]
2830name = "progenitor-macro"
2831version = "0.3.0"
2832source = "git+https://github.com/oxidecomputer/progenitor#b94123e5ac5b11c4ff457bc160efb9650e67cc91"
2833dependencies = [
2834 "openapiv3",
2835 "proc-macro2",
2836 "progenitor-impl",
2837 "quote",
2838 "schemars",
2839 "serde",
2840 "serde_json",
2841 "serde_tokenstream",
2842 "serde_yaml",
2843 "syn 2.0.15",
2844]
2845
2846[[package]]
2847name = "project-root"
2848version = "0.2.2"
2849source = "registry+https://github.com/rust-lang/crates.io-index"
2850checksum = "8bccbff07d5ed689c4087d20d7307a52ab6141edeedf487c3876a55b86cf63df"
2851
2852[[package]]
2853name = "prometheus"
2854version = "0.13.3"
2855source = "registry+https://github.com/rust-lang/crates.io-index"
2856checksum = "449811d15fbdf5ceb5c1144416066429cf82316e2ec8ce0c1f6f8a02e7bbcf8c"
2857dependencies = [
2858 "cfg-if",
2859 "fnv",
2860 "lazy_static",
2861 "memchr",
2862 "parking_lot 0.12.1",
2863 "thiserror",
2864]
2865
2866[[package]]
2867name = "psm"
2868version = "0.1.21"
2869source = "registry+https://github.com/rust-lang/crates.io-index"
2870checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874"
2871dependencies = [
2872 "cc",
2873]
2874
2875[[package]]
2876name = "quote"
2877version = "1.0.27"
2878source = "registry+https://github.com/rust-lang/crates.io-index"
2879checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500"
2880dependencies = [
2881 "proc-macro2",
2882]
2883
2884[[package]]
2885name = "radix_fmt"
2886version = "1.0.0"
2887source = "registry+https://github.com/rust-lang/crates.io-index"
2888checksum = "ce082a9940a7ace2ad4a8b7d0b1eac6aa378895f18be598230c5f2284ac05426"
2889
2890[[package]]
2891name = "rand"
2892version = "0.7.3"
2893source = "registry+https://github.com/rust-lang/crates.io-index"
2894checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
2895dependencies = [
2896 "getrandom 0.1.16",
2897 "libc",
2898 "rand_chacha 0.2.2",
2899 "rand_core 0.5.1",
2900 "rand_hc",
2901]
2902
2903[[package]]
2904name = "rand"
2905version = "0.8.5"
2906source = "registry+https://github.com/rust-lang/crates.io-index"
2907checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2908dependencies = [
2909 "libc",
2910 "rand_chacha 0.3.1",
2911 "rand_core 0.6.4",
2912]
2913
2914[[package]]
2915name = "rand_chacha"
2916version = "0.2.2"
2917source = "registry+https://github.com/rust-lang/crates.io-index"
2918checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
2919dependencies = [
2920 "ppv-lite86",
2921 "rand_core 0.5.1",
2922]
2923
2924[[package]]
2925name = "rand_chacha"
2926version = "0.3.1"
2927source = "registry+https://github.com/rust-lang/crates.io-index"
2928checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2929dependencies = [
2930 "ppv-lite86",
2931 "rand_core 0.6.4",
2932]
2933
2934[[package]]
2935name = "rand_core"
2936version = "0.5.1"
2937source = "registry+https://github.com/rust-lang/crates.io-index"
2938checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
2939dependencies = [
2940 "getrandom 0.1.16",
2941]
2942
2943[[package]]
2944name = "rand_core"
2945version = "0.6.4"
2946source = "registry+https://github.com/rust-lang/crates.io-index"
2947checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2948dependencies = [
2949 "getrandom 0.2.9",
2950]
2951
2952[[package]]
2953name = "rand_hc"
2954version = "0.2.0"
2955source = "registry+https://github.com/rust-lang/crates.io-index"
2956checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
2957dependencies = [
2958 "rand_core 0.5.1",
2959]
2960
2961[[package]]
2962name = "redis"
2963version = "0.23.0"
2964source = "registry+https://github.com/rust-lang/crates.io-index"
2965checksum = "3ea8c51b5dc1d8e5fd3350ec8167f464ec0995e79f2e90a075b63371500d557f"
2966dependencies = [
2967 "async-std",
2968 "async-trait",
2969 "bytes",
2970 "combine",
2971 "futures-util",
2972 "itoa",
2973 "percent-encoding",
2974 "pin-project-lite",
2975 "ryu",
2976 "sha1_smol",
2977 "tokio",
2978 "tokio-util",
2979 "url",
2980]
2981
2982[[package]]
2983name = "redox_syscall"
2984version = "0.2.16"
2985source = "registry+https://github.com/rust-lang/crates.io-index"
2986checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
2987dependencies = [
2988 "bitflags",
2989]
2990
2991[[package]]
2992name = "redox_syscall"
2993version = "0.3.5"
2994source = "registry+https://github.com/rust-lang/crates.io-index"
2995checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
2996dependencies = [
2997 "bitflags",
2998]
2999
3000[[package]]
3001name = "redox_users"
3002version = "0.4.3"
3003source = "registry+https://github.com/rust-lang/crates.io-index"
3004checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
3005dependencies = [
3006 "getrandom 0.2.9",
3007 "redox_syscall 0.2.16",
3008 "thiserror",
3009]
3010
3011[[package]]
3012name = "regex"
3013version = "1.8.1"
3014source = "registry+https://github.com/rust-lang/crates.io-index"
3015checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370"
3016dependencies = [
3017 "aho-corasick",
3018 "memchr",
3019 "regex-syntax 0.7.1",
3020]
3021
3022[[package]]
3023name = "regex-automata"
3024version = "0.1.10"
3025source = "registry+https://github.com/rust-lang/crates.io-index"
3026checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
3027dependencies = [
3028 "regex-syntax 0.6.29",
3029]
3030
3031[[package]]
3032name = "regex-syntax"
3033version = "0.6.29"
3034source = "registry+https://github.com/rust-lang/crates.io-index"
3035checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
3036
3037[[package]]
3038name = "regex-syntax"
3039version = "0.7.1"
3040source = "registry+https://github.com/rust-lang/crates.io-index"
3041checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c"
3042
3043[[package]]
3044name = "regress"
3045version = "0.6.0"
3046source = "registry+https://github.com/rust-lang/crates.io-index"
3047checksum = "82a9ecfa0cb04d0b04dddb99b8ccf4f66bc8dfd23df694b398570bd8ae3a50fb"
3048dependencies = [
3049 "hashbrown 0.13.2",
3050 "memchr",
3051]
3052
3053[[package]]
3054name = "reqwest"
3055version = "0.11.17"
3056source = "registry+https://github.com/rust-lang/crates.io-index"
3057checksum = "13293b639a097af28fc8a90f22add145a9c954e49d77da06263d58cf44d5fb91"
3058dependencies = [
3059 "base64 0.21.0",
3060 "bytes",
3061 "encoding_rs",
3062 "futures-core",
3063 "futures-util",
3064 "h2",
3065 "http",
3066 "http-body",
3067 "hyper",
3068 "hyper-tls",
3069 "ipnet",
3070 "js-sys",
3071 "log",
3072 "mime",
3073 "native-tls",
3074 "once_cell",
3075 "percent-encoding",
3076 "pin-project-lite",
3077 "serde",
3078 "serde_json",
3079 "serde_urlencoded",
3080 "tokio",
3081 "tokio-native-tls",
3082 "tokio-util",
3083 "tower-service",
3084 "url",
3085 "wasm-bindgen",
3086 "wasm-bindgen-futures",
3087 "wasm-streams",
3088 "web-sys",
3089 "winreg",
3090]
3091
3092[[package]]
3093name = "retainer"
3094version = "0.3.0"
3095source = "registry+https://github.com/rust-lang/crates.io-index"
3096checksum = "df8c01a8276c14d0f8d51ebcf8a48f0748f9f73f5f6b29e688126e6a52bcb145"
3097dependencies = [
3098 "async-lock",
3099 "async-timer",
3100 "log",
3101 "rand 0.8.5",
3102]
3103
3104[[package]]
3105name = "ring"
3106version = "0.16.20"
3107source = "registry+https://github.com/rust-lang/crates.io-index"
3108checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
3109dependencies = [
3110 "cc",
3111 "libc",
3112 "once_cell",
3113 "spin",
3114 "untrusted",
3115 "web-sys",
3116 "winapi",
3117]
3118
3119[[package]]
3120name = "rsa"
3121version = "0.7.2"
3122source = "registry+https://github.com/rust-lang/crates.io-index"
3123checksum = "094052d5470cbcef561cb848a7209968c9f12dfa6d668f4bca048ac5de51099c"
3124dependencies = [
3125 "byteorder",
3126 "digest 0.10.6",
3127 "num-bigint-dig",
3128 "num-integer",
3129 "num-iter",
3130 "num-traits",
3131 "pkcs1",
3132 "pkcs8",
3133 "rand_core 0.6.4",
3134 "signature",
3135 "smallvec",
3136 "subtle",
3137 "zeroize",
3138]
3139
3140[[package]]
3141name = "rsmq_async"
3142version = "5.1.5"
3143source = "registry+https://github.com/rust-lang/crates.io-index"
3144checksum = "086675eeb88ca55fa3b25c0075615d31dd9eb0adee219a9dcd999090cb371cab"
3145dependencies = [
3146 "async-trait",
3147 "bb8",
3148 "lazy_static",
3149 "radix_fmt",
3150 "rand 0.8.5",
3151 "redis",
3152 "thiserror",
3153]
3154
3155[[package]]
3156name = "rust-embed"
3157version = "6.6.1"
3158source = "registry+https://github.com/rust-lang/crates.io-index"
3159checksum = "1b68543d5527e158213414a92832d2aab11a84d2571a5eb021ebe22c43aab066"
3160dependencies = [
3161 "rust-embed-impl",
3162 "rust-embed-utils",
3163 "walkdir",
3164]
3165
3166[[package]]
3167name = "rust-embed-impl"
3168version = "6.5.0"
3169source = "registry+https://github.com/rust-lang/crates.io-index"
3170checksum = "4d4e0f0ced47ded9a68374ac145edd65a6c1fa13a96447b873660b2a568a0fd7"
3171dependencies = [
3172 "proc-macro2",
3173 "quote",
3174 "rust-embed-utils",
3175 "syn 1.0.109",
3176 "walkdir",
3177]
3178
3179[[package]]
3180name = "rust-embed-utils"
3181version = "7.5.0"
3182source = "registry+https://github.com/rust-lang/crates.io-index"
3183checksum = "512b0ab6853f7e14e3c8754acb43d6f748bb9ced66aa5915a6553ac8213f7731"
3184dependencies = [
3185 "sha2 0.10.6",
3186 "walkdir",
3187]
3188
3189[[package]]
3190name = "rustc-hash"
3191version = "1.1.0"
3192source = "registry+https://github.com/rust-lang/crates.io-index"
3193checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
3194
3195[[package]]
3196name = "rustc_version"
3197version = "0.2.3"
3198source = "registry+https://github.com/rust-lang/crates.io-index"
3199checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
3200dependencies = [
3201 "semver 0.9.0",
3202]
3203
3204[[package]]
3205name = "rustc_version"
3206version = "0.4.0"
3207source = "registry+https://github.com/rust-lang/crates.io-index"
3208checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
3209dependencies = [
3210 "semver 1.0.17",
3211]
3212
3213[[package]]
3214name = "rustfmt-wrapper"
3215version = "0.2.0"
3216source = "registry+https://github.com/rust-lang/crates.io-index"
3217checksum = "ed729e3bee08ec2befd593c27e90ca9fdd25efdc83c94c3b82eaef16e4f7406e"
3218dependencies = [
3219 "serde",
3220 "tempfile",
3221 "thiserror",
3222 "toml",
3223 "toolchain_find",
3224]
3225
3226[[package]]
3227name = "rustix"
3228version = "0.37.19"
3229source = "registry+https://github.com/rust-lang/crates.io-index"
3230checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d"
3231dependencies = [
3232 "bitflags",
3233 "errno",
3234 "io-lifetimes",
3235 "libc",
3236 "linux-raw-sys",
3237 "windows-sys 0.48.0",
3238]
3239
3240[[package]]
3241name = "rustls"
3242version = "0.20.8"
3243source = "registry+https://github.com/rust-lang/crates.io-index"
3244checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f"
3245dependencies = [
3246 "log",
3247 "ring",
3248 "sct",
3249 "webpki",
3250]
3251
3252[[package]]
3253name = "rustls-pemfile"
3254version = "1.0.2"
3255source = "registry+https://github.com/rust-lang/crates.io-index"
3256checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b"
3257dependencies = [
3258 "base64 0.21.0",
3259]
3260
3261[[package]]
3262name = "rustpython-ast"
3263version = "0.2.0"
3264source = "registry+https://github.com/rust-lang/crates.io-index"
3265checksum = "f7b83af38212db64ecfc76b6d53a1c6de89733236e39c69d4bc8ab565ae167b2"
3266dependencies = [
3267 "num-bigint",
3268 "rustpython-compiler-core",
3269]
3270
3271[[package]]
3272name = "rustpython-compiler-core"
3273version = "0.2.0"
3274source = "registry+https://github.com/rust-lang/crates.io-index"
3275checksum = "81870eb757460989d43ce41e069f1a01d0292b33011b23b0455d0a6394e4c77a"
3276dependencies = [
3277 "bincode",
3278 "bitflags",
3279 "bstr",
3280 "itertools",
3281 "lz4_flex",
3282 "num-bigint",
3283 "num-complex",
3284 "serde",
3285 "static_assertions",
3286 "thiserror",
3287]
3288
3289[[package]]
3290name = "rustpython-parser"
3291version = "0.2.0"
3292source = "registry+https://github.com/rust-lang/crates.io-index"
3293checksum = "db7348e148144ba85bc1284d97004062137306554fd00e7eb500d91720de5e78"
3294dependencies = [
3295 "ahash 0.7.6",
3296 "anyhow",
3297 "itertools",
3298 "lalrpop",
3299 "lalrpop-util",
3300 "log",
3301 "num-bigint",
3302 "num-traits",
3303 "phf 0.10.1",
3304 "phf_codegen 0.10.0",
3305 "rustc-hash",
3306 "rustpython-ast",
3307 "rustpython-compiler-core",
3308 "thiserror",
3309 "tiny-keccak",
3310 "unic-emoji-char",
3311 "unic-ucd-ident",
3312 "unicode_names2",
3313]
3314
3315[[package]]
3316name = "rustversion"
3317version = "1.0.12"
3318source = "registry+https://github.com/rust-lang/crates.io-index"
3319checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06"
3320
3321[[package]]
3322name = "ryu"
3323version = "1.0.13"
3324source = "registry+https://github.com/rust-lang/crates.io-index"
3325checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
3326
3327[[package]]
3328name = "same-file"
3329version = "1.0.6"
3330source = "registry+https://github.com/rust-lang/crates.io-index"
3331checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
3332dependencies = [
3333 "winapi-util",
3334]
3335
3336[[package]]
3337name = "schannel"
3338version = "0.1.21"
3339source = "registry+https://github.com/rust-lang/crates.io-index"
3340checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
3341dependencies = [
3342 "windows-sys 0.42.0",
3343]
3344
3345[[package]]
3346name = "schemars"
3347version = "0.8.12"
3348source = "registry+https://github.com/rust-lang/crates.io-index"
3349checksum = "02c613288622e5f0c3fdc5dbd4db1c5fbe752746b1d1a56a0630b78fd00de44f"
3350dependencies = [
3351 "chrono",
3352 "dyn-clone",
3353 "schemars_derive",
3354 "serde",
3355 "serde_json",
3356 "uuid 1.3.2",
3357]
3358
3359[[package]]
3360name = "schemars_derive"
3361version = "0.8.12"
3362source = "registry+https://github.com/rust-lang/crates.io-index"
3363checksum = "109da1e6b197438deb6db99952990c7f959572794b80ff93707d55a232545e7c"
3364dependencies = [
3365 "proc-macro2",
3366 "quote",
3367 "serde_derive_internals",
3368 "syn 1.0.109",
3369]
3370
3371[[package]]
3372name = "scoped-tls"
3373version = "1.0.1"
3374source = "registry+https://github.com/rust-lang/crates.io-index"
3375checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
3376
3377[[package]]
3378name = "scopeguard"
3379version = "1.1.0"
3380source = "registry+https://github.com/rust-lang/crates.io-index"
3381checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
3382
3383[[package]]
3384name = "sct"
3385version = "0.7.0"
3386source = "registry+https://github.com/rust-lang/crates.io-index"
3387checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
3388dependencies = [
3389 "ring",
3390 "untrusted",
3391]
3392
3393[[package]]
3394name = "security-framework"
3395version = "2.8.2"
3396source = "registry+https://github.com/rust-lang/crates.io-index"
3397checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254"
3398dependencies = [
3399 "bitflags",
3400 "core-foundation",
3401 "core-foundation-sys",
3402 "libc",
3403 "security-framework-sys",
3404]
3405
3406[[package]]
3407name = "security-framework-sys"
3408version = "2.8.0"
3409source = "registry+https://github.com/rust-lang/crates.io-index"
3410checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4"
3411dependencies = [
3412 "core-foundation-sys",
3413 "libc",
3414]
3415
3416[[package]]
3417name = "semver"
3418version = "0.9.0"
3419source = "registry+https://github.com/rust-lang/crates.io-index"
3420checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
3421dependencies = [
3422 "semver-parser 0.7.0",
3423]
3424
3425[[package]]
3426name = "semver"
3427version = "0.11.0"
3428source = "registry+https://github.com/rust-lang/crates.io-index"
3429checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6"
3430dependencies = [
3431 "semver-parser 0.10.2",
3432]
3433
3434[[package]]
3435name = "semver"
3436version = "1.0.17"
3437source = "registry+https://github.com/rust-lang/crates.io-index"
3438checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
3439dependencies = [
3440 "serde",
3441]
3442
3443[[package]]
3444name = "semver-parser"
3445version = "0.7.0"
3446source = "registry+https://github.com/rust-lang/crates.io-index"
3447checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
3448
3449[[package]]
3450name = "semver-parser"
3451version = "0.10.2"
3452source = "registry+https://github.com/rust-lang/crates.io-index"
3453checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7"
3454dependencies = [
3455 "pest",
3456]
3457
3458[[package]]
3459name = "serde"
3460version = "1.0.163"
3461source = "registry+https://github.com/rust-lang/crates.io-index"
3462checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2"
3463dependencies = [
3464 "serde_derive",
3465]
3466
3467[[package]]
3468name = "serde-aux"
3469version = "4.2.0"
3470source = "registry+https://github.com/rust-lang/crates.io-index"
3471checksum = "c3dfe1b7eb6f9dcf011bd6fad169cdeaae75eda0d61b1a99a3f015b41b0cae39"
3472dependencies = [
3473 "chrono",
3474 "serde",
3475 "serde_json",
3476]
3477
3478[[package]]
3479name = "serde_bytes"
3480version = "0.11.9"
3481source = "registry+https://github.com/rust-lang/crates.io-index"
3482checksum = "416bda436f9aab92e02c8e10d49a15ddd339cea90b6e340fe51ed97abb548294"
3483dependencies = [
3484 "serde",
3485]
3486
3487[[package]]
3488name = "serde_derive"
3489version = "1.0.163"
3490source = "registry+https://github.com/rust-lang/crates.io-index"
3491checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e"
3492dependencies = [
3493 "proc-macro2",
3494 "quote",
3495 "syn 2.0.15",
3496]
3497
3498[[package]]
3499name = "serde_derive_internals"
3500version = "0.26.0"
3501source = "registry+https://github.com/rust-lang/crates.io-index"
3502checksum = "85bf8229e7920a9f636479437026331ce11aa132b4dde37d121944a44d6e5f3c"
3503dependencies = [
3504 "proc-macro2",
3505 "quote",
3506 "syn 1.0.109",
3507]
3508
3509[[package]]
3510name = "serde_json"
3511version = "1.0.96"
3512source = "registry+https://github.com/rust-lang/crates.io-index"
3513checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1"
3514dependencies = [
3515 "indexmap",
3516 "itoa",
3517 "ryu",
3518 "serde",
3519]
3520
3521[[package]]
3522name = "serde_path_to_error"
3523version = "0.1.11"
3524source = "registry+https://github.com/rust-lang/crates.io-index"
3525checksum = "f7f05c1d5476066defcdfacce1f52fc3cae3af1d3089727100c02ae92e5abbe0"
3526dependencies = [
3527 "serde",
3528]
3529
3530[[package]]
3531name = "serde_qs"
3532version = "0.8.5"
3533source = "registry+https://github.com/rust-lang/crates.io-index"
3534checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6"
3535dependencies = [
3536 "percent-encoding",
3537 "serde",
3538 "thiserror",
3539]
3540
3541[[package]]
3542name = "serde_qs"
3543version = "0.9.2"
3544source = "registry+https://github.com/rust-lang/crates.io-index"
3545checksum = "6af4cee6cd4b23b45e6709150d1e9af5c748131de7e3316a7c2b3008051ed725"
3546dependencies = [
3547 "percent-encoding",
3548 "serde",
3549 "thiserror",
3550]
3551
3552[[package]]
3553name = "serde_tokenstream"
3554version = "0.2.0"
3555source = "registry+https://github.com/rust-lang/crates.io-index"
3556checksum = "8a00ffd23fd882d096f09fcaae2a9de8329a328628e86027e049ee051dc1621f"
3557dependencies = [
3558 "proc-macro2",
3559 "quote",
3560 "serde",
3561 "syn 2.0.15",
3562]
3563
3564[[package]]
3565name = "serde_urlencoded"
3566version = "0.7.1"
3567source = "registry+https://github.com/rust-lang/crates.io-index"
3568checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3569dependencies = [
3570 "form_urlencoded",
3571 "itoa",
3572 "ryu",
3573 "serde",
3574]
3575
3576[[package]]
3577name = "serde_v8"
3578version = "0.97.0"
3579source = "registry+https://github.com/rust-lang/crates.io-index"
3580checksum = "f03aa0ae675c4ad6dfebd2d631553a238145da96c9135e509b74ac60d9481e66"
3581dependencies = [
3582 "bytes",
3583 "derive_more",
3584 "num-bigint",
3585 "serde",
3586 "serde_bytes",
3587 "smallvec",
3588 "thiserror",
3589 "v8",
3590]
3591
3592[[package]]
3593name = "serde_yaml"
3594version = "0.9.21"
3595source = "registry+https://github.com/rust-lang/crates.io-index"
3596checksum = "d9d684e3ec7de3bf5466b32bd75303ac16f0736426e5a4e0d6e489559ce1249c"
3597dependencies = [
3598 "indexmap",
3599 "itoa",
3600 "ryu",
3601 "serde",
3602 "unsafe-libyaml",
3603]
3604
3605[[package]]
3606name = "sha1"
3607version = "0.10.5"
3608source = "registry+https://github.com/rust-lang/crates.io-index"
3609checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
3610dependencies = [
3611 "cfg-if",
3612 "cpufeatures",
3613 "digest 0.10.6",
3614]
3615
3616[[package]]
3617name = "sha1_smol"
3618version = "1.0.0"
3619source = "registry+https://github.com/rust-lang/crates.io-index"
3620checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
3621
3622[[package]]
3623name = "sha2"
3624version = "0.9.9"
3625source = "registry+https://github.com/rust-lang/crates.io-index"
3626checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
3627dependencies = [
3628 "block-buffer 0.9.0",
3629 "cfg-if",
3630 "cpufeatures",
3631 "digest 0.9.0",
3632 "opaque-debug",
3633]
3634
3635[[package]]
3636name = "sha2"
3637version = "0.10.6"
3638source = "registry+https://github.com/rust-lang/crates.io-index"
3639checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
3640dependencies = [
3641 "cfg-if",
3642 "cpufeatures",
3643 "digest 0.10.6",
3644]
3645
3646[[package]]
3647name = "sharded-slab"
3648version = "0.1.4"
3649source = "registry+https://github.com/rust-lang/crates.io-index"
3650checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
3651dependencies = [
3652 "lazy_static",
3653]
3654
3655[[package]]
3656name = "signal-hook-registry"
3657version = "1.4.1"
3658source = "registry+https://github.com/rust-lang/crates.io-index"
3659checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
3660dependencies = [
3661 "libc",
3662]
3663
3664[[package]]
3665name = "signature"
3666version = "1.6.4"
3667source = "registry+https://github.com/rust-lang/crates.io-index"
3668checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c"
3669dependencies = [
3670 "digest 0.10.6",
3671 "rand_core 0.6.4",
3672]
3673
3674[[package]]
3675name = "siphasher"
3676version = "0.3.10"
3677source = "registry+https://github.com/rust-lang/crates.io-index"
3678checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
3679
3680[[package]]
3681name = "slab"
3682version = "0.4.8"
3683source = "registry+https://github.com/rust-lang/crates.io-index"
3684checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
3685dependencies = [
3686 "autocfg",
3687]
3688
3689[[package]]
3690name = "smallvec"
3691version = "1.10.0"
3692source = "registry+https://github.com/rust-lang/crates.io-index"
3693checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
3694
3695[[package]]
3696name = "smart-default"
3697version = "0.6.0"
3698source = "registry+https://github.com/rust-lang/crates.io-index"
3699checksum = "133659a15339456eeeb07572eb02a91c91e9815e9cbc89566944d2c8d3efdbf6"
3700dependencies = [
3701 "proc-macro2",
3702 "quote",
3703 "syn 1.0.109",
3704]
3705
3706[[package]]
3707name = "smartstring"
3708version = "1.0.1"
3709source = "registry+https://github.com/rust-lang/crates.io-index"
3710checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
3711dependencies = [
3712 "autocfg",
3713 "static_assertions",
3714 "version_check",
3715]
3716
3717[[package]]
3718name = "smol_str"
3719version = "0.1.24"
3720source = "registry+https://github.com/rust-lang/crates.io-index"
3721checksum = "fad6c857cbab2627dcf01ec85a623ca4e7dcb5691cbaa3d7fb7653671f0d09c9"
3722dependencies = [
3723 "serde",
3724]
3725
3726[[package]]
3727name = "socket2"
3728version = "0.4.9"
3729source = "registry+https://github.com/rust-lang/crates.io-index"
3730checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
3731dependencies = [
3732 "libc",
3733 "winapi",
3734]
3735
3736[[package]]
3737name = "sourcemap"
3738version = "6.2.3"
3739source = "registry+https://github.com/rust-lang/crates.io-index"
3740checksum = "eed16231c92d0a6f0388f56e0ab2be24ecff1173f8e22f0ea5e074d0525631cb"
3741dependencies = [
3742 "data-encoding",
3743 "if_chain",
3744 "rustc_version 0.2.3",
3745 "serde",
3746 "serde_json",
3747 "unicode-id",
3748 "url",
3749]
3750
3751[[package]]
3752name = "spin"
3753version = "0.5.2"
3754source = "registry+https://github.com/rust-lang/crates.io-index"
3755checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
3756
3757[[package]]
3758name = "spki"
3759version = "0.6.0"
3760source = "registry+https://github.com/rust-lang/crates.io-index"
3761checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b"
3762dependencies = [
3763 "base64ct",
3764 "der",
3765]
3766
3767[[package]]
3768name = "sql-builder"
3769version = "3.1.1"
3770source = "registry+https://github.com/rust-lang/crates.io-index"
3771checksum = "b1008d95d2ec2d062959352527be30e10fec42a1aa5e5a48d990a5ff0fb9bdc0"
3772dependencies = [
3773 "anyhow",
3774 "thiserror",
3775]
3776
3777[[package]]
3778name = "sqlformat"
3779version = "0.2.1"
3780source = "registry+https://github.com/rust-lang/crates.io-index"
3781checksum = "0c12bc9199d1db8234678b7051747c07f517cdcf019262d1847b94ec8b1aee3e"
3782dependencies = [
3783 "itertools",
3784 "nom",
3785 "unicode_categories",
3786]
3787
3788[[package]]
3789name = "sqlx"
3790version = "0.6.3"
3791source = "registry+https://github.com/rust-lang/crates.io-index"
3792checksum = "f8de3b03a925878ed54a954f621e64bf55a3c1bd29652d0d1a17830405350188"
3793dependencies = [
3794 "sqlx-core",
3795 "sqlx-macros",
3796]
3797
3798[[package]]
3799name = "sqlx-core"
3800version = "0.6.3"
3801source = "registry+https://github.com/rust-lang/crates.io-index"
3802checksum = "fa8241483a83a3f33aa5fff7e7d9def398ff9990b2752b6c6112b83c6d246029"
3803dependencies = [
3804 "ahash 0.7.6",
3805 "atoi",
3806 "base64 0.13.1",
3807 "bitflags",
3808 "byteorder",
3809 "bytes",
3810 "chrono",
3811 "crc",
3812 "crossbeam-queue",
3813 "dirs",
3814 "dotenvy",
3815 "either",
3816 "event-listener",
3817 "futures-channel",
3818 "futures-core",
3819 "futures-intrusive",
3820 "futures-util",
3821 "hashlink",
3822 "hex",
3823 "hkdf",
3824 "hmac",
3825 "indexmap",
3826 "itoa",
3827 "libc",
3828 "log",
3829 "md-5 0.10.5",
3830 "memchr",
3831 "once_cell",
3832 "paste",
3833 "percent-encoding",
3834 "rand 0.8.5",
3835 "rustls",
3836 "rustls-pemfile",
3837 "serde",
3838 "serde_json",
3839 "sha1",
3840 "sha2 0.10.6",
3841 "smallvec",
3842 "sqlformat",
3843 "sqlx-rt",
3844 "stringprep",
3845 "thiserror",
3846 "tokio-stream",
3847 "url",
3848 "uuid 1.3.2",
3849 "webpki-roots",
3850 "whoami",
3851]
3852
3853[[package]]
3854name = "sqlx-macros"
3855version = "0.6.3"
3856source = "registry+https://github.com/rust-lang/crates.io-index"
3857checksum = "9966e64ae989e7e575b19d7265cb79d7fc3cbbdf179835cb0d716f294c2049c9"
3858dependencies = [
3859 "dotenvy",
3860 "either",
3861 "heck",
3862 "hex",
3863 "once_cell",
3864 "proc-macro2",
3865 "quote",
3866 "serde",
3867 "serde_json",
3868 "sha2 0.10.6",
3869 "sqlx-core",
3870 "sqlx-rt",
3871 "syn 1.0.109",
3872 "url",
3873]
3874
3875[[package]]
3876name = "sqlx-rt"
3877version = "0.6.3"
3878source = "registry+https://github.com/rust-lang/crates.io-index"
3879checksum = "804d3f245f894e61b1e6263c84b23ca675d96753b5abfd5cc8597d86806e8024"
3880dependencies = [
3881 "once_cell",
3882 "tokio",
3883 "tokio-rustls",
3884]
3885
3886[[package]]
3887name = "stable_deref_trait"
3888version = "1.2.0"
3889source = "registry+https://github.com/rust-lang/crates.io-index"
3890checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
3891
3892[[package]]
3893name = "stacker"
3894version = "0.1.15"
3895source = "registry+https://github.com/rust-lang/crates.io-index"
3896checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce"
3897dependencies = [
3898 "cc",
3899 "cfg-if",
3900 "libc",
3901 "psm",
3902 "winapi",
3903]
3904
3905[[package]]
3906name = "static_assertions"
3907version = "1.1.0"
3908source = "registry+https://github.com/rust-lang/crates.io-index"
3909checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
3910
3911[[package]]
3912name = "string_cache"
3913version = "0.8.7"
3914source = "registry+https://github.com/rust-lang/crates.io-index"
3915checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b"
3916dependencies = [
3917 "new_debug_unreachable",
3918 "once_cell",
3919 "parking_lot 0.12.1",
3920 "phf_shared 0.10.0",
3921 "precomputed-hash",
3922 "serde",
3923]
3924
3925[[package]]
3926name = "string_cache_codegen"
3927version = "0.5.2"
3928source = "registry+https://github.com/rust-lang/crates.io-index"
3929checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
3930dependencies = [
3931 "phf_generator 0.10.0",
3932 "phf_shared 0.10.0",
3933 "proc-macro2",
3934 "quote",
3935]
3936
3937[[package]]
3938name = "string_enum"
3939version = "0.3.4"
3940source = "registry+https://github.com/rust-lang/crates.io-index"
3941checksum = "91f42363e5ca94ea6f3faee9e3b5e1a4047535ae323f5c0579385fb2ae95874e"
3942dependencies = [
3943 "pmutil",
3944 "proc-macro2",
3945 "quote",
3946 "swc_macros_common",
3947 "syn 1.0.109",
3948]
3949
3950[[package]]
3951name = "stringprep"
3952version = "0.1.2"
3953source = "registry+https://github.com/rust-lang/crates.io-index"
3954checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1"
3955dependencies = [
3956 "unicode-bidi",
3957 "unicode-normalization",
3958]
3959
3960[[package]]
3961name = "strsim"
3962version = "0.10.0"
3963source = "registry+https://github.com/rust-lang/crates.io-index"
3964checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
3965
3966[[package]]
3967name = "strum"
3968version = "0.24.1"
3969source = "registry+https://github.com/rust-lang/crates.io-index"
3970checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
3971dependencies = [
3972 "strum_macros",
3973]
3974
3975[[package]]
3976name = "strum_macros"
3977version = "0.24.3"
3978source = "registry+https://github.com/rust-lang/crates.io-index"
3979checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
3980dependencies = [
3981 "heck",
3982 "proc-macro2",
3983 "quote",
3984 "rustversion",
3985 "syn 1.0.109",
3986]
3987
3988[[package]]
3989name = "subtle"
3990version = "2.4.1"
3991source = "registry+https://github.com/rust-lang/crates.io-index"
3992checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
3993
3994[[package]]
3995name = "swc_atoms"
3996version = "0.4.43"
3997source = "registry+https://github.com/rust-lang/crates.io-index"
3998checksum = "64593af3e0fbacd1b7147a0188f1fd77a2fc8ae3c2425bdb9528de255b9f452b"
3999dependencies = [
4000 "once_cell",
4001 "rustc-hash",
4002 "serde",
4003 "string_cache",
4004 "string_cache_codegen",
4005 "triomphe",
4006]
4007
4008[[package]]
4009name = "swc_common"
4010version = "0.29.40"
4011source = "registry+https://github.com/rust-lang/crates.io-index"
4012checksum = "e45d8b3ce3b46af3db53ea5eacbc42e8589a617aa0115412d8ec97a6e3bc5fec"
4013dependencies = [
4014 "ahash 0.7.6",
4015 "ast_node",
4016 "better_scoped_tls",
4017 "cfg-if",
4018 "either",
4019 "from_variant",
4020 "new_debug_unreachable",
4021 "num-bigint",
4022 "once_cell",
4023 "rustc-hash",
4024 "serde",
4025 "siphasher",
4026 "string_cache",
4027 "swc_atoms",
4028 "swc_eq_ignore_macros",
4029 "swc_visit",
4030 "tracing",
4031 "unicode-width",
4032 "url",
4033]
4034
4035[[package]]
4036name = "swc_ecma_ast"
4037version = "0.98.2"
4038source = "registry+https://github.com/rust-lang/crates.io-index"
4039checksum = "305d2aa5e36a775e0d376552b35b325fccf0d7d8c633da1e4aec8e16460251cf"
4040dependencies = [
4041 "bitflags",
4042 "is-macro",
4043 "num-bigint",
4044 "scoped-tls",
4045 "serde",
4046 "string_enum",
4047 "swc_atoms",
4048 "swc_common",
4049 "unicode-id",
4050]
4051
4052[[package]]
4053name = "swc_ecma_parser"
4054version = "0.128.4"
4055source = "registry+https://github.com/rust-lang/crates.io-index"
4056checksum = "35e349e3f4c5561645b9042caae162dbaf55502be7b583ac99f3ccf3e65bccb7"
4057dependencies = [
4058 "either",
4059 "enum_kind",
4060 "lexical",
4061 "num-bigint",
4062 "serde",
4063 "smallvec",
4064 "smartstring",
4065 "stacker",
4066 "swc_atoms",
4067 "swc_common",
4068 "swc_ecma_ast",
4069 "tracing",
4070 "typed-arena",
4071]
4072
4073[[package]]
4074name = "swc_eq_ignore_macros"
4075version = "0.1.1"
4076source = "registry+https://github.com/rust-lang/crates.io-index"
4077checksum = "0c20468634668c2bbab581947bb8c75c97158d5a6959f4ba33df20983b20b4f6"
4078dependencies = [
4079 "pmutil",
4080 "proc-macro2",
4081 "quote",
4082 "syn 1.0.109",
4083]
4084
4085[[package]]
4086name = "swc_macros_common"
4087version = "0.3.7"
4088source = "registry+https://github.com/rust-lang/crates.io-index"
4089checksum = "3e582c3e3c2269238524923781df5be49e011dbe29cf7683a2215d600a562ea6"
4090dependencies = [
4091 "pmutil",
4092 "proc-macro2",
4093 "quote",
4094 "syn 1.0.109",
4095]
4096
4097[[package]]
4098name = "swc_visit"
4099version = "0.5.5"
4100source = "registry+https://github.com/rust-lang/crates.io-index"
4101checksum = "d1d5999f23421c8e21a0f2bc53a0b9e8244f3b421de89471561af2fbe40b9cca"
4102dependencies = [
4103 "either",
4104 "swc_visit_macros",
4105]
4106
4107[[package]]
4108name = "swc_visit_macros"
4109version = "0.5.6"
4110source = "registry+https://github.com/rust-lang/crates.io-index"
4111checksum = "ebeed7eb0f545f48ad30f5aab314e5208b735bcea1d1464f26e20f06db904989"
4112dependencies = [
4113 "Inflector",
4114 "pmutil",
4115 "proc-macro2",
4116 "quote",
4117 "swc_macros_common",
4118 "syn 1.0.109",
4119]
4120
4121[[package]]
4122name = "syn"
4123version = "1.0.109"
4124source = "registry+https://github.com/rust-lang/crates.io-index"
4125checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
4126dependencies = [
4127 "proc-macro2",
4128 "quote",
4129 "unicode-ident",
4130]
4131
4132[[package]]
4133name = "syn"
4134version = "2.0.15"
4135source = "registry+https://github.com/rust-lang/crates.io-index"
4136checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822"
4137dependencies = [
4138 "proc-macro2",
4139 "quote",
4140 "unicode-ident",
4141]
4142
4143[[package]]
4144name = "sync_wrapper"
4145version = "0.1.2"
4146source = "registry+https://github.com/rust-lang/crates.io-index"
4147checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
4148
4149[[package]]
4150name = "tempfile"
4151version = "3.5.0"
4152source = "registry+https://github.com/rust-lang/crates.io-index"
4153checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998"
4154dependencies = [
4155 "cfg-if",
4156 "fastrand",
4157 "redox_syscall 0.3.5",
4158 "rustix",
4159 "windows-sys 0.45.0",
4160]
4161
4162[[package]]
4163name = "term"
4164version = "0.7.0"
4165source = "registry+https://github.com/rust-lang/crates.io-index"
4166checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f"
4167dependencies = [
4168 "dirs-next",
4169 "rustversion",
4170 "winapi",
4171]
4172
4173[[package]]
4174name = "thiserror"
4175version = "1.0.40"
4176source = "registry+https://github.com/rust-lang/crates.io-index"
4177checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
4178dependencies = [
4179 "thiserror-impl",
4180]
4181
4182[[package]]
4183name = "thiserror-impl"
4184version = "1.0.40"
4185source = "registry+https://github.com/rust-lang/crates.io-index"
4186checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
4187dependencies = [
4188 "proc-macro2",
4189 "quote",
4190 "syn 2.0.15",
4191]
4192
4193[[package]]
4194name = "thread_local"
4195version = "1.1.7"
4196source = "registry+https://github.com/rust-lang/crates.io-index"
4197checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
4198dependencies = [
4199 "cfg-if",
4200 "once_cell",
4201]
4202
4203[[package]]
4204name = "tiger"
4205version = "0.1.0"
4206source = "registry+https://github.com/rust-lang/crates.io-index"
4207checksum = "443e531cbcf9de83258cfef70bcd56c91188de5819ebd4b19c85f589e0617005"
4208dependencies = [
4209 "block-buffer 0.9.0",
4210 "byteorder",
4211 "digest 0.9.0",
4212]
4213
4214[[package]]
4215name = "time"
4216version = "0.1.45"
4217source = "registry+https://github.com/rust-lang/crates.io-index"
4218checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
4219dependencies = [
4220 "libc",
4221 "wasi 0.10.0+wasi-snapshot-preview1",
4222 "winapi",
4223]
4224
4225[[package]]
4226name = "time"
4227version = "0.3.21"
4228source = "registry+https://github.com/rust-lang/crates.io-index"
4229checksum = "8f3403384eaacbca9923fa06940178ac13e4edb725486d70e8e15881d0c836cc"
4230dependencies = [
4231 "itoa",
4232 "serde",
4233 "time-core",
4234 "time-macros",
4235]
4236
4237[[package]]
4238name = "time-core"
4239version = "0.1.1"
4240source = "registry+https://github.com/rust-lang/crates.io-index"
4241checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
4242
4243[[package]]
4244name = "time-macros"
4245version = "0.2.9"
4246source = "registry+https://github.com/rust-lang/crates.io-index"
4247checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b"
4248dependencies = [
4249 "time-core",
4250]
4251
4252[[package]]
4253name = "tiny-keccak"
4254version = "2.0.2"
4255source = "registry+https://github.com/rust-lang/crates.io-index"
4256checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
4257dependencies = [
4258 "crunchy",
4259]
4260
4261[[package]]
4262name = "tinyvec"
4263version = "1.6.0"
4264source = "registry+https://github.com/rust-lang/crates.io-index"
4265checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
4266dependencies = [
4267 "tinyvec_macros",
4268]
4269
4270[[package]]
4271name = "tinyvec_macros"
4272version = "0.1.1"
4273source = "registry+https://github.com/rust-lang/crates.io-index"
4274checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
4275
4276[[package]]
4277name = "tokio"
4278version = "1.28.1"
4279source = "registry+https://github.com/rust-lang/crates.io-index"
4280checksum = "0aa32867d44e6f2ce3385e89dceb990188b8bb0fb25b0cf576647a6f98ac5105"
4281dependencies = [
4282 "autocfg",
4283 "bytes",
4284 "libc",
4285 "mio",
4286 "num_cpus",
4287 "parking_lot 0.12.1",
4288 "pin-project-lite",
4289 "signal-hook-registry",
4290 "socket2",
4291 "tokio-macros",
4292 "tracing",
4293 "windows-sys 0.48.0",
4294]
4295
4296[[package]]
4297name = "tokio-macros"
4298version = "2.1.0"
4299source = "registry+https://github.com/rust-lang/crates.io-index"
4300checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
4301dependencies = [
4302 "proc-macro2",
4303 "quote",
4304 "syn 2.0.15",
4305]
4306
4307[[package]]
4308name = "tokio-metrics"
4309version = "0.1.0"
4310source = "registry+https://github.com/rust-lang/crates.io-index"
4311checksum = "bcb585a0069b53171684e22d5255984ec30d1c7304fd0a4a9a603ffd8c765cdd"
4312dependencies = [
4313 "futures-util",
4314 "pin-project-lite",
4315 "tokio",
4316]
4317
4318[[package]]
4319name = "tokio-native-tls"
4320version = "0.3.1"
4321source = "registry+https://github.com/rust-lang/crates.io-index"
4322checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
4323dependencies = [
4324 "native-tls",
4325 "tokio",
4326]
4327
4328[[package]]
4329name = "tokio-rustls"
4330version = "0.23.4"
4331source = "registry+https://github.com/rust-lang/crates.io-index"
4332checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
4333dependencies = [
4334 "rustls",
4335 "tokio",
4336 "webpki",
4337]
4338
4339[[package]]
4340name = "tokio-stream"
4341version = "0.1.14"
4342source = "registry+https://github.com/rust-lang/crates.io-index"
4343checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
4344dependencies = [
4345 "futures-core",
4346 "pin-project-lite",
4347 "tokio",
4348]
4349
4350[[package]]
4351name = "tokio-tar"
4352version = "0.3.0"
4353source = "registry+https://github.com/rust-lang/crates.io-index"
4354checksum = "a50188549787c32c1c3d9c8c71ad7e003ccf2f102489c5a96e385c84760477f4"
4355dependencies = [
4356 "filetime",
4357 "futures-core",
4358 "libc",
4359 "redox_syscall 0.2.16",
4360 "tokio",
4361 "tokio-stream",
4362 "xattr",
4363]
4364
4365[[package]]
4366name = "tokio-util"
4367version = "0.7.8"
4368source = "registry+https://github.com/rust-lang/crates.io-index"
4369checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
4370dependencies = [
4371 "bytes",
4372 "futures-core",
4373 "futures-sink",
4374 "pin-project-lite",
4375 "tokio",
4376 "tracing",
4377]
4378
4379[[package]]
4380name = "toml"
4381version = "0.5.11"
4382source = "registry+https://github.com/rust-lang/crates.io-index"
4383checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
4384dependencies = [
4385 "serde",
4386]
4387
4388[[package]]
4389name = "toml_datetime"
4390version = "0.6.1"
4391source = "registry+https://github.com/rust-lang/crates.io-index"
4392checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622"
4393
4394[[package]]
4395name = "toml_edit"
4396version = "0.19.8"
4397source = "registry+https://github.com/rust-lang/crates.io-index"
4398checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13"
4399dependencies = [
4400 "indexmap",
4401 "toml_datetime",
4402 "winnow",
4403]
4404
4405[[package]]
4406name = "toolchain_find"
4407version = "0.2.0"
4408source = "registry+https://github.com/rust-lang/crates.io-index"
4409checksum = "5e85654a10e7a07a47c6f19d93818f3f343e22927f2fa280c84f7c8042743413"
4410dependencies = [
4411 "home",
4412 "lazy_static",
4413 "regex",
4414 "semver 0.11.0",
4415 "walkdir",
4416]
4417
4418[[package]]
4419name = "tower"
4420version = "0.4.13"
4421source = "registry+https://github.com/rust-lang/crates.io-index"
4422checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
4423dependencies = [
4424 "futures-core",
4425 "futures-util",
4426 "pin-project",
4427 "pin-project-lite",
4428 "tokio",
4429 "tower-layer",
4430 "tower-service",
4431 "tracing",
4432]
4433
4434[[package]]
4435name = "tower-cookies"
4436version = "0.9.0"
4437source = "registry+https://github.com/rust-lang/crates.io-index"
4438checksum = "40f38d941a2ffd8402b36e02ae407637a9caceb693aaf2edc910437db0f36984"
4439dependencies = [
4440 "async-trait",
4441 "axum-core",
4442 "cookie",
4443 "futures-util",
4444 "http",
4445 "parking_lot 0.12.1",
4446 "pin-project-lite",
4447 "tower-layer",
4448 "tower-service",
4449]
4450
4451[[package]]
4452name = "tower-http"
4453version = "0.4.0"
4454source = "registry+https://github.com/rust-lang/crates.io-index"
4455checksum = "5d1d42a9b3f3ec46ba828e8d376aec14592ea199f70a06a548587ecd1c4ab658"
4456dependencies = [
4457 "bitflags",
4458 "bytes",
4459 "futures-core",
4460 "futures-util",
4461 "http",
4462 "http-body",
4463 "http-range-header",
4464 "pin-project-lite",
4465 "tower-layer",
4466 "tower-service",
4467 "tracing",
4468]
4469
4470[[package]]
4471name = "tower-layer"
4472version = "0.3.2"
4473source = "registry+https://github.com/rust-lang/crates.io-index"
4474checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
4475
4476[[package]]
4477name = "tower-service"
4478version = "0.3.2"
4479source = "registry+https://github.com/rust-lang/crates.io-index"
4480checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
4481
4482[[package]]
4483name = "tracing"
4484version = "0.1.37"
4485source = "registry+https://github.com/rust-lang/crates.io-index"
4486checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
4487dependencies = [
4488 "cfg-if",
4489 "log",
4490 "pin-project-lite",
4491 "tracing-attributes",
4492 "tracing-core",
4493]
4494
4495[[package]]
4496name = "tracing-attributes"
4497version = "0.1.24"
4498source = "registry+https://github.com/rust-lang/crates.io-index"
4499checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74"
4500dependencies = [
4501 "proc-macro2",
4502 "quote",
4503 "syn 2.0.15",
4504]
4505
4506[[package]]
4507name = "tracing-core"
4508version = "0.1.31"
4509source = "registry+https://github.com/rust-lang/crates.io-index"
4510checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
4511dependencies = [
4512 "once_cell",
4513 "valuable",
4514]
4515
4516[[package]]
4517name = "tracing-log"
4518version = "0.1.3"
4519source = "registry+https://github.com/rust-lang/crates.io-index"
4520checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
4521dependencies = [
4522 "lazy_static",
4523 "log",
4524 "tracing-core",
4525]
4526
4527[[package]]
4528name = "tracing-serde"
4529version = "0.1.3"
4530source = "registry+https://github.com/rust-lang/crates.io-index"
4531checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1"
4532dependencies = [
4533 "serde",
4534 "tracing-core",
4535]
4536
4537[[package]]
4538name = "tracing-subscriber"
4539version = "0.3.17"
4540source = "registry+https://github.com/rust-lang/crates.io-index"
4541checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77"
4542dependencies = [
4543 "matchers",
4544 "nu-ansi-term",
4545 "once_cell",
4546 "regex",
4547 "serde",
4548 "serde_json",
4549 "sharded-slab",
4550 "smallvec",
4551 "thread_local",
4552 "tracing",
4553 "tracing-core",
4554 "tracing-log",
4555 "tracing-serde",
4556]
4557
4558[[package]]
4559name = "triomphe"
4560version = "0.1.8"
4561source = "registry+https://github.com/rust-lang/crates.io-index"
4562checksum = "f1ee9bd9239c339d714d657fac840c6d2a4f9c45f4f9ec7b0975113458be78db"
4563dependencies = [
4564 "serde",
4565 "stable_deref_trait",
4566]
4567
4568[[package]]
4569name = "try-lock"
4570version = "0.2.4"
4571source = "registry+https://github.com/rust-lang/crates.io-index"
4572checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
4573
4574[[package]]
4575name = "twox-hash"
4576version = "1.6.3"
4577source = "registry+https://github.com/rust-lang/crates.io-index"
4578checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
4579dependencies = [
4580 "cfg-if",
4581 "static_assertions",
4582]
4583
4584[[package]]
4585name = "typed-arena"
4586version = "2.0.2"
4587source = "registry+https://github.com/rust-lang/crates.io-index"
4588checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
4589
4590[[package]]
4591name = "typenum"
4592version = "1.16.0"
4593source = "registry+https://github.com/rust-lang/crates.io-index"
4594checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
4595
4596[[package]]
4597name = "typify"
4598version = "0.0.12"
4599source = "git+https://github.com/oxidecomputer/typify#99ec168e1f4c4dc37bcc79759dd7f4b3d904102f"
4600dependencies = [
4601 "typify-impl",
4602 "typify-macro",
4603]
4604
4605[[package]]
4606name = "typify-impl"
4607version = "0.0.12"
4608source = "git+https://github.com/oxidecomputer/typify#99ec168e1f4c4dc37bcc79759dd7f4b3d904102f"
4609dependencies = [
4610 "heck",
4611 "log",
4612 "proc-macro2",
4613 "quote",
4614 "regress",
4615 "schemars",
4616 "serde_json",
4617 "syn 2.0.15",
4618 "thiserror",
4619 "unicode-ident",
4620]
4621
4622[[package]]
4623name = "typify-macro"
4624version = "0.0.12"
4625source = "git+https://github.com/oxidecomputer/typify#99ec168e1f4c4dc37bcc79759dd7f4b3d904102f"
4626dependencies = [
4627 "proc-macro2",
4628 "quote",
4629 "schemars",
4630 "serde",
4631 "serde_json",
4632 "serde_tokenstream",
4633 "syn 2.0.15",
4634 "typify-impl",
4635]
4636
4637[[package]]
4638name = "ucd-trie"
4639version = "0.1.5"
4640source = "registry+https://github.com/rust-lang/crates.io-index"
4641checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
4642
4643[[package]]
4644name = "ulid"
4645version = "1.0.0"
4646source = "registry+https://github.com/rust-lang/crates.io-index"
4647checksum = "13a3aaa69b04e5b66cc27309710a569ea23593612387d67daaf102e73aa974fd"
4648dependencies = [
4649 "rand 0.8.5",
4650 "uuid 1.3.2",
4651]
4652
4653[[package]]
4654name = "unic-char-property"
4655version = "0.9.0"
4656source = "registry+https://github.com/rust-lang/crates.io-index"
4657checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
4658dependencies = [
4659 "unic-char-range",
4660]
4661
4662[[package]]
4663name = "unic-char-range"
4664version = "0.9.0"
4665source = "registry+https://github.com/rust-lang/crates.io-index"
4666checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
4667
4668[[package]]
4669name = "unic-common"
4670version = "0.9.0"
4671source = "registry+https://github.com/rust-lang/crates.io-index"
4672checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
4673
4674[[package]]
4675name = "unic-emoji-char"
4676version = "0.9.0"
4677source = "registry+https://github.com/rust-lang/crates.io-index"
4678checksum = "0b07221e68897210270a38bde4babb655869637af0f69407f96053a34f76494d"
4679dependencies = [
4680 "unic-char-property",
4681 "unic-char-range",
4682 "unic-ucd-version",
4683]
4684
4685[[package]]
4686name = "unic-ucd-category"
4687version = "0.9.0"
4688source = "registry+https://github.com/rust-lang/crates.io-index"
4689checksum = "1b8d4591f5fcfe1bd4453baaf803c40e1b1e69ff8455c47620440b46efef91c0"
4690dependencies = [
4691 "matches",
4692 "unic-char-property",
4693 "unic-char-range",
4694 "unic-ucd-version",
4695]
4696
4697[[package]]
4698name = "unic-ucd-ident"
4699version = "0.9.0"
4700source = "registry+https://github.com/rust-lang/crates.io-index"
4701checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987"
4702dependencies = [
4703 "unic-char-property",
4704 "unic-char-range",
4705 "unic-ucd-version",
4706]
4707
4708[[package]]
4709name = "unic-ucd-version"
4710version = "0.9.0"
4711source = "registry+https://github.com/rust-lang/crates.io-index"
4712checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
4713dependencies = [
4714 "unic-common",
4715]
4716
4717[[package]]
4718name = "unicase"
4719version = "2.6.0"
4720source = "registry+https://github.com/rust-lang/crates.io-index"
4721checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
4722dependencies = [
4723 "version_check",
4724]
4725
4726[[package]]
4727name = "unicode-bidi"
4728version = "0.3.13"
4729source = "registry+https://github.com/rust-lang/crates.io-index"
4730checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
4731
4732[[package]]
4733name = "unicode-general-category"
4734version = "0.6.0"
4735source = "registry+https://github.com/rust-lang/crates.io-index"
4736checksum = "2281c8c1d221438e373249e065ca4989c4c36952c211ff21a0ee91c44a3869e7"
4737
4738[[package]]
4739name = "unicode-id"
4740version = "0.3.3"
4741source = "registry+https://github.com/rust-lang/crates.io-index"
4742checksum = "d70b6494226b36008c8366c288d77190b3fad2eb4c10533139c1c1f461127f1a"
4743
4744[[package]]
4745name = "unicode-ident"
4746version = "1.0.8"
4747source = "registry+https://github.com/rust-lang/crates.io-index"
4748checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
4749
4750[[package]]
4751name = "unicode-normalization"
4752version = "0.1.22"
4753source = "registry+https://github.com/rust-lang/crates.io-index"
4754checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
4755dependencies = [
4756 "tinyvec",
4757]
4758
4759[[package]]
4760name = "unicode-segmentation"
4761version = "1.10.1"
4762source = "registry+https://github.com/rust-lang/crates.io-index"
4763checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
4764
4765[[package]]
4766name = "unicode-width"
4767version = "0.1.10"
4768source = "registry+https://github.com/rust-lang/crates.io-index"
4769checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
4770
4771[[package]]
4772name = "unicode-xid"
4773version = "0.2.4"
4774source = "registry+https://github.com/rust-lang/crates.io-index"
4775checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
4776
4777[[package]]
4778name = "unicode_categories"
4779version = "0.1.1"
4780source = "registry+https://github.com/rust-lang/crates.io-index"
4781checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
4782
4783[[package]]
4784name = "unicode_names2"
4785version = "0.5.1"
4786source = "registry+https://github.com/rust-lang/crates.io-index"
4787checksum = "029df4cc8238cefc911704ff8fa210853a0f3bce2694d8f51181dd41ee0f3301"
4788
4789[[package]]
4790name = "unsafe-libyaml"
4791version = "0.2.8"
4792source = "registry+https://github.com/rust-lang/crates.io-index"
4793checksum = "1865806a559042e51ab5414598446a5871b561d21b6764f2eabb0dd481d880a6"
4794
4795[[package]]
4796name = "untrusted"
4797version = "0.7.1"
4798source = "registry+https://github.com/rust-lang/crates.io-index"
4799checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
4800
4801[[package]]
4802name = "url"
4803version = "2.3.1"
4804source = "registry+https://github.com/rust-lang/crates.io-index"
4805checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
4806dependencies = [
4807 "form_urlencoded",
4808 "idna",
4809 "percent-encoding",
4810 "serde",
4811]
4812
4813[[package]]
4814name = "urlencoding"
4815version = "2.1.2"
4816source = "registry+https://github.com/rust-lang/crates.io-index"
4817checksum = "e8db7427f936968176eaa7cdf81b7f98b980b18495ec28f1b5791ac3bfe3eea9"
4818
4819[[package]]
4820name = "utf8parse"
4821version = "0.2.1"
4822source = "registry+https://github.com/rust-lang/crates.io-index"
4823checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
4824
4825[[package]]
4826name = "uuid"
4827version = "0.8.2"
4828source = "registry+https://github.com/rust-lang/crates.io-index"
4829checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
4830dependencies = [
4831 "getrandom 0.2.9",
4832]
4833
4834[[package]]
4835name = "uuid"
4836version = "1.3.2"
4837source = "registry+https://github.com/rust-lang/crates.io-index"
4838checksum = "4dad5567ad0cf5b760e5665964bec1b47dfd077ba8a2544b513f3556d3d239a2"
4839dependencies = [
4840 "getrandom 0.2.9",
4841 "serde",
4842]
4843
4844[[package]]
4845name = "v8"
4846version = "0.71.1"
4847source = "registry+https://github.com/rust-lang/crates.io-index"
4848checksum = "32a2ece81e9f3d573376d5301b0d1c1c0ffcb63d57e6164ddf1bc844b4c8a23b"
4849dependencies = [
4850 "bitflags",
4851 "fslock",
4852 "once_cell",
4853 "which",
4854]
4855
4856[[package]]
4857name = "valuable"
4858version = "0.1.0"
4859source = "registry+https://github.com/rust-lang/crates.io-index"
4860checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
4861
4862[[package]]
4863name = "value-bag"
4864version = "1.0.0-alpha.9"
4865source = "registry+https://github.com/rust-lang/crates.io-index"
4866checksum = "2209b78d1249f7e6f3293657c9779fe31ced465df091bbd433a1cf88e916ec55"
4867dependencies = [
4868 "ctor",
4869 "version_check",
4870]
4871
4872[[package]]
4873name = "vcpkg"
4874version = "0.2.15"
4875source = "registry+https://github.com/rust-lang/crates.io-index"
4876checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
4877
4878[[package]]
4879name = "version_check"
4880version = "0.9.4"
4881source = "registry+https://github.com/rust-lang/crates.io-index"
4882checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
4883
4884[[package]]
4885name = "waker-fn"
4886version = "1.1.0"
4887source = "registry+https://github.com/rust-lang/crates.io-index"
4888checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
4889
4890[[package]]
4891name = "walkdir"
4892version = "2.3.3"
4893source = "registry+https://github.com/rust-lang/crates.io-index"
4894checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698"
4895dependencies = [
4896 "same-file",
4897 "winapi-util",
4898]
4899
4900[[package]]
4901name = "want"
4902version = "0.3.0"
4903source = "registry+https://github.com/rust-lang/crates.io-index"
4904checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
4905dependencies = [
4906 "log",
4907 "try-lock",
4908]
4909
4910[[package]]
4911name = "wasi"
4912version = "0.9.0+wasi-snapshot-preview1"
4913source = "registry+https://github.com/rust-lang/crates.io-index"
4914checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
4915
4916[[package]]
4917name = "wasi"
4918version = "0.10.0+wasi-snapshot-preview1"
4919source = "registry+https://github.com/rust-lang/crates.io-index"
4920checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
4921
4922[[package]]
4923name = "wasi"
4924version = "0.11.0+wasi-snapshot-preview1"
4925source = "registry+https://github.com/rust-lang/crates.io-index"
4926checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
4927
4928[[package]]
4929name = "wasm-bindgen"
4930version = "0.2.85"
4931source = "registry+https://github.com/rust-lang/crates.io-index"
4932checksum = "5b6cb788c4e39112fbe1822277ef6fb3c55cd86b95cb3d3c4c1c9597e4ac74b4"
4933dependencies = [
4934 "cfg-if",
4935 "wasm-bindgen-macro",
4936]
4937
4938[[package]]
4939name = "wasm-bindgen-backend"
4940version = "0.2.85"
4941source = "registry+https://github.com/rust-lang/crates.io-index"
4942checksum = "35e522ed4105a9d626d885b35d62501b30d9666283a5c8be12c14a8bdafe7822"
4943dependencies = [
4944 "bumpalo",
4945 "log",
4946 "once_cell",
4947 "proc-macro2",
4948 "quote",
4949 "syn 2.0.15",
4950 "wasm-bindgen-shared",
4951]
4952
4953[[package]]
4954name = "wasm-bindgen-futures"
4955version = "0.4.35"
4956source = "registry+https://github.com/rust-lang/crates.io-index"
4957checksum = "083abe15c5d88556b77bdf7aef403625be9e327ad37c62c4e4129af740168163"
4958dependencies = [
4959 "cfg-if",
4960 "js-sys",
4961 "wasm-bindgen",
4962 "web-sys",
4963]
4964
4965[[package]]
4966name = "wasm-bindgen-macro"
4967version = "0.2.85"
4968source = "registry+https://github.com/rust-lang/crates.io-index"
4969checksum = "358a79a0cb89d21db8120cbfb91392335913e4890665b1a7981d9e956903b434"
4970dependencies = [
4971 "quote",
4972 "wasm-bindgen-macro-support",
4973]
4974
4975[[package]]
4976name = "wasm-bindgen-macro-support"
4977version = "0.2.85"
4978source = "registry+https://github.com/rust-lang/crates.io-index"
4979checksum = "4783ce29f09b9d93134d41297aded3a712b7b979e9c6f28c32cb88c973a94869"
4980dependencies = [
4981 "proc-macro2",
4982 "quote",
4983 "syn 2.0.15",
4984 "wasm-bindgen-backend",
4985 "wasm-bindgen-shared",
4986]
4987
4988[[package]]
4989name = "wasm-bindgen-shared"
4990version = "0.2.85"
4991source = "registry+https://github.com/rust-lang/crates.io-index"
4992checksum = "a901d592cafaa4d711bc324edfaff879ac700b19c3dfd60058d2b445be2691eb"
4993
4994[[package]]
4995name = "wasm-streams"
4996version = "0.2.3"
4997source = "registry+https://github.com/rust-lang/crates.io-index"
4998checksum = "6bbae3363c08332cadccd13b67db371814cd214c2524020932f0804b8cf7c078"
4999dependencies = [
5000 "futures-util",
5001 "js-sys",
5002 "wasm-bindgen",
5003 "wasm-bindgen-futures",
5004 "web-sys",
5005]
5006
5007[[package]]
5008name = "web-sys"
5009version = "0.3.62"
5010source = "registry+https://github.com/rust-lang/crates.io-index"
5011checksum = "16b5f940c7edfdc6d12126d98c9ef4d1b3d470011c47c76a6581df47ad9ba721"
5012dependencies = [
5013 "js-sys",
5014 "wasm-bindgen",
5015]
5016
5017[[package]]
5018name = "webpki"
5019version = "0.22.0"
5020source = "registry+https://github.com/rust-lang/crates.io-index"
5021checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
5022dependencies = [
5023 "ring",
5024 "untrusted",
5025]
5026
5027[[package]]
5028name = "webpki-roots"
5029version = "0.22.6"
5030source = "registry+https://github.com/rust-lang/crates.io-index"
5031checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
5032dependencies = [
5033 "webpki",
5034]
5035
5036[[package]]
5037name = "which"
5038version = "4.4.0"
5039source = "registry+https://github.com/rust-lang/crates.io-index"
5040checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
5041dependencies = [
5042 "either",
5043 "libc",
5044 "once_cell",
5045]
5046
5047[[package]]
5048name = "whoami"
5049version = "1.4.0"
5050source = "registry+https://github.com/rust-lang/crates.io-index"
5051checksum = "2c70234412ca409cc04e864e89523cb0fc37f5e1344ebed5a3ebf4192b6b9f68"
5052dependencies = [
5053 "wasm-bindgen",
5054 "web-sys",
5055]
5056
5057[[package]]
5058name = "winapi"
5059version = "0.3.9"
5060source = "registry+https://github.com/rust-lang/crates.io-index"
5061checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
5062dependencies = [
5063 "winapi-i686-pc-windows-gnu",
5064 "winapi-x86_64-pc-windows-gnu",
5065]
5066
5067[[package]]
5068name = "winapi-i686-pc-windows-gnu"
5069version = "0.4.0"
5070source = "registry+https://github.com/rust-lang/crates.io-index"
5071checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
5072
5073[[package]]
5074name = "winapi-util"
5075version = "0.1.5"
5076source = "registry+https://github.com/rust-lang/crates.io-index"
5077checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
5078dependencies = [
5079 "winapi",
5080]
5081
5082[[package]]
5083name = "winapi-x86_64-pc-windows-gnu"
5084version = "0.4.0"
5085source = "registry+https://github.com/rust-lang/crates.io-index"
5086checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
5087
5088[[package]]
5089name = "windmill"
5090version = "1.100.1"
5091dependencies = [
5092 "anyhow",
5093 "axum",
5094 "base64 0.21.0",
5095 "chrono",
5096 "dotenv",
5097 "futures",
5098 "git-version",
5099 "lazy_static",
5100 "once_cell",
5101 "prometheus",
5102 "rand 0.8.5",
5103 "reqwest",
5104 "rsa",
5105 "rsmq_async",
5106 "serde",
5107 "serde_json",
5108 "sha2 0.10.6",
5109 "sqlx",
5110 "tokio",
5111 "tokio-metrics",
5112 "tracing",
5113 "url",
5114 "uuid 1.3.2",
5115 "windmill-api",
5116 "windmill-api-client",
5117 "windmill-common",
5118 "windmill-queue",
5119 "windmill-worker",
5120]
5121
5122[[package]]
5123name = "windmill-api"
5124version = "1.100.1"
5125dependencies = [
5126 "anyhow",
5127 "argon2",
5128 "async-oauth2",
5129 "async-stripe",
5130 "async_zip",
5131 "axum",
5132 "base64 0.21.0",
5133 "bytes",
5134 "chrono",
5135 "chrono-tz",
5136 "cookie",
5137 "cron",
5138 "futures",
5139 "git-version",
5140 "hex",
5141 "hmac",
5142 "hyper",
5143 "itertools",
5144 "lazy_static",
5145 "magic-crypt",
5146 "mime_guess",
5147 "prometheus",
5148 "rand 0.8.5",
5149 "regex",
5150 "reqwest",
5151 "retainer",
5152 "rsmq_async",
5153 "rust-embed",
5154 "serde",
5155 "serde_json",
5156 "serde_urlencoded",
5157 "sha2 0.10.6",
5158 "sql-builder",
5159 "sqlx",
5160 "tempfile",
5161 "time 0.3.21",
5162 "tokio",
5163 "tokio-tar",
5164 "tokio-util",
5165 "tower",
5166 "tower-cookies",
5167 "tower-http",
5168 "tracing",
5169 "tracing-subscriber",
5170 "urlencoding",
5171 "windmill-audit",
5172 "windmill-common",
5173 "windmill-parser",
5174 "windmill-parser-bash",
5175 "windmill-parser-go",
5176 "windmill-parser-py",
5177 "windmill-parser-ts",
5178 "windmill-queue",
5179]
5180
5181[[package]]
5182name = "windmill-api-client"
5183version = "1.100.1"
5184dependencies = [
5185 "base64 0.21.0",
5186 "chrono",
5187 "prettyplease",
5188 "progenitor",
5189 "progenitor-client",
5190 "rand 0.8.5",
5191 "reqwest",
5192 "serde",
5193 "serde_json",
5194 "syn 1.0.109",
5195 "uuid 1.3.2",
5196]
5197
5198[[package]]
5199name = "windmill-audit"
5200version = "1.100.1"
5201dependencies = [
5202 "chrono",
5203 "serde",
5204 "serde_json",
5205 "sql-builder",
5206 "sqlx",
5207 "tracing",
5208 "windmill-common",
5209]
5210
5211[[package]]
5212name = "windmill-common"
5213version = "1.100.1"
5214dependencies = [
5215 "anyhow",
5216 "axum",
5217 "chrono",
5218 "hex",
5219 "hmac",
5220 "hyper",
5221 "lazy_static",
5222 "prometheus",
5223 "rand 0.8.5",
5224 "reqwest",
5225 "serde",
5226 "serde_json",
5227 "sha2 0.10.6",
5228 "sqlx",
5229 "thiserror",
5230 "tokio",
5231 "tracing",
5232 "tracing-subscriber",
5233 "uuid 1.3.2",
5234]
5235
5236[[package]]
5237name = "windmill-parser"
5238version = "1.100.1"
5239dependencies = [
5240 "serde",
5241 "serde_json",
5242]
5243
5244[[package]]
5245name = "windmill-parser-bash"
5246version = "1.100.1"
5247dependencies = [
5248 "anyhow",
5249 "itertools",
5250 "lazy_static",
5251 "phf 0.11.1",
5252 "regex",
5253 "serde_json",
5254 "unicode-general-category",
5255 "windmill-common",
5256 "windmill-parser",
5257]
5258
5259[[package]]
5260name = "windmill-parser-go"
5261version = "1.100.1"
5262dependencies = [
5263 "anyhow",
5264 "gosyn",
5265 "itertools",
5266 "phf 0.11.1",
5267 "unicode-general-category",
5268 "windmill-common",
5269 "windmill-parser",
5270]
5271
5272[[package]]
5273name = "windmill-parser-py"
5274version = "1.100.1"
5275dependencies = [
5276 "anyhow",
5277 "itertools",
5278 "lazy_static",
5279 "phf 0.11.1",
5280 "regex",
5281 "rustpython-parser",
5282 "serde_json",
5283 "windmill-common",
5284 "windmill-parser",
5285]
5286
5287[[package]]
5288name = "windmill-parser-ts"
5289version = "1.100.1"
5290dependencies = [
5291 "anyhow",
5292 "deno_core",
5293 "serde_json",
5294 "swc_common",
5295 "swc_ecma_ast",
5296 "swc_ecma_parser",
5297 "windmill-common",
5298 "windmill-parser",
5299]
5300
5301[[package]]
5302name = "windmill-queue"
5303version = "1.100.1"
5304dependencies = [
5305 "anyhow",
5306 "chrono",
5307 "chrono-tz",
5308 "cron",
5309 "futures-core",
5310 "hex",
5311 "hmac",
5312 "itertools",
5313 "lazy_static",
5314 "prometheus",
5315 "reqwest",
5316 "rsmq_async",
5317 "serde",
5318 "serde_json",
5319 "sql-builder",
5320 "sqlx",
5321 "tokio",
5322 "tracing",
5323 "ulid",
5324 "uuid 1.3.2",
5325 "windmill-audit",
5326 "windmill-common",
5327]
5328
5329[[package]]
5330name = "windmill-worker"
5331version = "1.100.1"
5332dependencies = [
5333 "anyhow",
5334 "async-recursion",
5335 "chrono",
5336 "const_format",
5337 "deno_core",
5338 "dotenv",
5339 "dyn-iter",
5340 "futures",
5341 "git-version",
5342 "itertools",
5343 "lazy_static",
5344 "once_cell",
5345 "prometheus",
5346 "rand 0.8.5",
5347 "regex",
5348 "rsmq_async",
5349 "serde",
5350 "serde_json",
5351 "sqlx",
5352 "tokio",
5353 "tracing",
5354 "uuid 1.3.2",
5355 "windmill-api-client",
5356 "windmill-audit",
5357 "windmill-common",
5358 "windmill-parser",
5359 "windmill-parser-bash",
5360 "windmill-parser-go",
5361 "windmill-parser-py",
5362 "windmill-parser-ts",
5363 "windmill-queue",
5364]
5365
5366[[package]]
5367name = "windows"
5368version = "0.48.0"
5369source = "registry+https://github.com/rust-lang/crates.io-index"
5370checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
5371dependencies = [
5372 "windows-targets 0.48.0",
5373]
5374
5375[[package]]
5376name = "windows-sys"
5377version = "0.42.0"
5378source = "registry+https://github.com/rust-lang/crates.io-index"
5379checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
5380dependencies = [
5381 "windows_aarch64_gnullvm 0.42.2",
5382 "windows_aarch64_msvc 0.42.2",
5383 "windows_i686_gnu 0.42.2",
5384 "windows_i686_msvc 0.42.2",
5385 "windows_x86_64_gnu 0.42.2",
5386 "windows_x86_64_gnullvm 0.42.2",
5387 "windows_x86_64_msvc 0.42.2",
5388]
5389
5390[[package]]
5391name = "windows-sys"
5392version = "0.45.0"
5393source = "registry+https://github.com/rust-lang/crates.io-index"
5394checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
5395dependencies = [
5396 "windows-targets 0.42.2",
5397]
5398
5399[[package]]
5400name = "windows-sys"
5401version = "0.48.0"
5402source = "registry+https://github.com/rust-lang/crates.io-index"
5403checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
5404dependencies = [
5405 "windows-targets 0.48.0",
5406]
5407
5408[[package]]
5409name = "windows-targets"
5410version = "0.42.2"
5411source = "registry+https://github.com/rust-lang/crates.io-index"
5412checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
5413dependencies = [
5414 "windows_aarch64_gnullvm 0.42.2",
5415 "windows_aarch64_msvc 0.42.2",
5416 "windows_i686_gnu 0.42.2",
5417 "windows_i686_msvc 0.42.2",
5418 "windows_x86_64_gnu 0.42.2",
5419 "windows_x86_64_gnullvm 0.42.2",
5420 "windows_x86_64_msvc 0.42.2",
5421]
5422
5423[[package]]
5424name = "windows-targets"
5425version = "0.48.0"
5426source = "registry+https://github.com/rust-lang/crates.io-index"
5427checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
5428dependencies = [
5429 "windows_aarch64_gnullvm 0.48.0",
5430 "windows_aarch64_msvc 0.48.0",
5431 "windows_i686_gnu 0.48.0",
5432 "windows_i686_msvc 0.48.0",
5433 "windows_x86_64_gnu 0.48.0",
5434 "windows_x86_64_gnullvm 0.48.0",
5435 "windows_x86_64_msvc 0.48.0",
5436]
5437
5438[[package]]
5439name = "windows_aarch64_gnullvm"
5440version = "0.42.2"
5441source = "registry+https://github.com/rust-lang/crates.io-index"
5442checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
5443
5444[[package]]
5445name = "windows_aarch64_gnullvm"
5446version = "0.48.0"
5447source = "registry+https://github.com/rust-lang/crates.io-index"
5448checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
5449
5450[[package]]
5451name = "windows_aarch64_msvc"
5452version = "0.42.2"
5453source = "registry+https://github.com/rust-lang/crates.io-index"
5454checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
5455
5456[[package]]
5457name = "windows_aarch64_msvc"
5458version = "0.48.0"
5459source = "registry+https://github.com/rust-lang/crates.io-index"
5460checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
5461
5462[[package]]
5463name = "windows_i686_gnu"
5464version = "0.42.2"
5465source = "registry+https://github.com/rust-lang/crates.io-index"
5466checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
5467
5468[[package]]
5469name = "windows_i686_gnu"
5470version = "0.48.0"
5471source = "registry+https://github.com/rust-lang/crates.io-index"
5472checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
5473
5474[[package]]
5475name = "windows_i686_msvc"
5476version = "0.42.2"
5477source = "registry+https://github.com/rust-lang/crates.io-index"
5478checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
5479
5480[[package]]
5481name = "windows_i686_msvc"
5482version = "0.48.0"
5483source = "registry+https://github.com/rust-lang/crates.io-index"
5484checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
5485
5486[[package]]
5487name = "windows_x86_64_gnu"
5488version = "0.42.2"
5489source = "registry+https://github.com/rust-lang/crates.io-index"
5490checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
5491
5492[[package]]
5493name = "windows_x86_64_gnu"
5494version = "0.48.0"
5495source = "registry+https://github.com/rust-lang/crates.io-index"
5496checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
5497
5498[[package]]
5499name = "windows_x86_64_gnullvm"
5500version = "0.42.2"
5501source = "registry+https://github.com/rust-lang/crates.io-index"
5502checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
5503
5504[[package]]
5505name = "windows_x86_64_gnullvm"
5506version = "0.48.0"
5507source = "registry+https://github.com/rust-lang/crates.io-index"
5508checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
5509
5510[[package]]
5511name = "windows_x86_64_msvc"
5512version = "0.42.2"
5513source = "registry+https://github.com/rust-lang/crates.io-index"
5514checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
5515
5516[[package]]
5517name = "windows_x86_64_msvc"
5518version = "0.48.0"
5519source = "registry+https://github.com/rust-lang/crates.io-index"
5520checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
5521
5522[[package]]
5523name = "winnow"
5524version = "0.4.6"
5525source = "registry+https://github.com/rust-lang/crates.io-index"
5526checksum = "61de7bac303dc551fe038e2b3cef0f571087a47571ea6e79a87692ac99b99699"
5527dependencies = [
5528 "memchr",
5529]
5530
5531[[package]]
5532name = "winreg"
5533version = "0.10.1"
5534source = "registry+https://github.com/rust-lang/crates.io-index"
5535checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
5536dependencies = [
5537 "winapi",
5538]
5539
5540[[package]]
5541name = "xattr"
5542version = "0.2.3"
5543source = "registry+https://github.com/rust-lang/crates.io-index"
5544checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc"
5545dependencies = [
5546 "libc",
5547]
5548
5549[[package]]
5550name = "xz2"
5551version = "0.1.7"
5552source = "registry+https://github.com/rust-lang/crates.io-index"
5553checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
5554dependencies = [
5555 "lzma-sys",
5556]
5557
5558[[package]]
5559name = "zeroize"
5560version = "1.6.0"
5561source = "registry+https://github.com/rust-lang/crates.io-index"
5562checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9"
5563
5564[[package]]
5565name = "zstd"
5566version = "0.11.2+zstd.1.5.2"
5567source = "registry+https://github.com/rust-lang/crates.io-index"
5568checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
5569dependencies = [
5570 "zstd-safe",
5571]
5572
5573[[package]]
5574name = "zstd-safe"
5575version = "5.0.2+zstd.1.5.2"
5576source = "registry+https://github.com/rust-lang/crates.io-index"
5577checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
5578dependencies = [
5579 "libc",
5580 "zstd-sys",
5581]
5582
5583[[package]]
5584name = "zstd-sys"
5585version = "2.0.8+zstd.1.5.5"
5586source = "registry+https://github.com/rust-lang/crates.io-index"
5587checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c"
5588dependencies = [
5589 "cc",
5590 "libc",
5591 "pkg-config",
5592]