nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 3
4
5[[package]]
6name = "aead"
7version = "0.3.2"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "7fc95d1bdb8e6666b2b217308eeeb09f2d6728d104be3e31916cc74d15420331"
10dependencies = [
11 "generic-array",
12]
13
14[[package]]
15name = "aes"
16version = "0.6.0"
17source = "registry+https://github.com/rust-lang/crates.io-index"
18checksum = "884391ef1066acaa41e766ba8f596341b96e93ce34f9a43e7d24bf0a0eaf0561"
19dependencies = [
20 "aes-soft",
21 "aesni",
22 "cipher",
23]
24
25[[package]]
26name = "aes-gcm"
27version = "0.8.0"
28source = "registry+https://github.com/rust-lang/crates.io-index"
29checksum = "5278b5fabbb9bd46e24aa69b2fdea62c99088e0a950a9be40e3e0101298f88da"
30dependencies = [
31 "aead",
32 "aes",
33 "cipher",
34 "ctr",
35 "ghash",
36 "subtle",
37]
38
39[[package]]
40name = "aes-soft"
41version = "0.6.4"
42source = "registry+https://github.com/rust-lang/crates.io-index"
43checksum = "be14c7498ea50828a38d0e24a765ed2effe92a705885b57d029cd67d45744072"
44dependencies = [
45 "cipher",
46 "opaque-debug",
47]
48
49[[package]]
50name = "aesni"
51version = "0.10.0"
52source = "registry+https://github.com/rust-lang/crates.io-index"
53checksum = "ea2e11f5e94c2f7d386164cc2aa1f97823fed6f259e486940a71c174dd01b0ce"
54dependencies = [
55 "cipher",
56 "opaque-debug",
57]
58
59[[package]]
60name = "aho-corasick"
61version = "0.7.18"
62source = "registry+https://github.com/rust-lang/crates.io-index"
63checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
64dependencies = [
65 "memchr",
66]
67
68[[package]]
69name = "ansi_term"
70version = "0.12.1"
71source = "registry+https://github.com/rust-lang/crates.io-index"
72checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
73dependencies = [
74 "winapi",
75]
76
77[[package]]
78name = "anyhow"
79version = "1.0.58"
80source = "registry+https://github.com/rust-lang/crates.io-index"
81checksum = "bb07d2053ccdbe10e2af2995a2f116c1330396493dc1269f6a91d0ae82e19704"
82
83[[package]]
84name = "arrayvec"
85version = "0.5.2"
86source = "registry+https://github.com/rust-lang/crates.io-index"
87checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
88
89[[package]]
90name = "async-channel"
91version = "1.6.1"
92source = "registry+https://github.com/rust-lang/crates.io-index"
93checksum = "2114d64672151c0c5eaa5e131ec84a74f06e1e559830dabba01ca30605d66319"
94dependencies = [
95 "concurrent-queue",
96 "event-listener",
97 "futures-core",
98]
99
100[[package]]
101name = "async-executor"
102version = "1.4.1"
103source = "registry+https://github.com/rust-lang/crates.io-index"
104checksum = "871f9bb5e0a22eeb7e8cf16641feb87c9dc67032ccf8ff49e772eb9941d3a965"
105dependencies = [
106 "async-task",
107 "concurrent-queue",
108 "fastrand",
109 "futures-lite",
110 "once_cell",
111 "slab",
112]
113
114[[package]]
115name = "async-global-executor"
116version = "2.2.0"
117source = "registry+https://github.com/rust-lang/crates.io-index"
118checksum = "5262ed948da60dd8956c6c5aca4d4163593dddb7b32d73267c93dab7b2e98940"
119dependencies = [
120 "async-channel",
121 "async-executor",
122 "async-io",
123 "async-lock",
124 "blocking",
125 "futures-lite",
126 "num_cpus",
127 "once_cell",
128]
129
130[[package]]
131name = "async-io"
132version = "1.7.0"
133source = "registry+https://github.com/rust-lang/crates.io-index"
134checksum = "e5e18f61464ae81cde0a23e713ae8fd299580c54d697a35820cfd0625b8b0e07"
135dependencies = [
136 "concurrent-queue",
137 "futures-lite",
138 "libc",
139 "log",
140 "once_cell",
141 "parking",
142 "polling",
143 "slab",
144 "socket2",
145 "waker-fn",
146 "winapi",
147]
148
149[[package]]
150name = "async-lock"
151version = "2.5.0"
152source = "registry+https://github.com/rust-lang/crates.io-index"
153checksum = "e97a171d191782fba31bb902b14ad94e24a68145032b7eedf871ab0bc0d077b6"
154dependencies = [
155 "event-listener",
156]
157
158[[package]]
159name = "async-std"
160version = "1.12.0"
161source = "registry+https://github.com/rust-lang/crates.io-index"
162checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d"
163dependencies = [
164 "async-channel",
165 "async-global-executor",
166 "async-io",
167 "async-lock",
168 "crossbeam-utils",
169 "futures-channel",
170 "futures-core",
171 "futures-io",
172 "futures-lite",
173 "gloo-timers",
174 "kv-log-macro",
175 "log",
176 "memchr",
177 "once_cell",
178 "pin-project-lite",
179 "pin-utils",
180 "slab",
181 "wasm-bindgen-futures",
182]
183
184[[package]]
185name = "async-task"
186version = "4.3.0"
187source = "registry+https://github.com/rust-lang/crates.io-index"
188checksum = "7a40729d2133846d9ed0ea60a8b9541bccddab49cd30f0715a1da672fe9a2524"
189
190[[package]]
191name = "async-trait"
192version = "0.1.56"
193source = "registry+https://github.com/rust-lang/crates.io-index"
194checksum = "96cf8829f67d2eab0b2dfa42c5d0ef737e0724e4a82b01b3e292456202b19716"
195dependencies = [
196 "proc-macro2",
197 "quote",
198 "syn",
199]
200
201[[package]]
202name = "atomic-waker"
203version = "1.0.0"
204source = "registry+https://github.com/rust-lang/crates.io-index"
205checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a"
206
207[[package]]
208name = "autocfg"
209version = "1.1.0"
210source = "registry+https://github.com/rust-lang/crates.io-index"
211checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
212
213[[package]]
214name = "base-x"
215version = "0.2.11"
216source = "registry+https://github.com/rust-lang/crates.io-index"
217checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270"
218
219[[package]]
220name = "base64"
221version = "0.13.0"
222source = "registry+https://github.com/rust-lang/crates.io-index"
223checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
224
225[[package]]
226name = "bitflags"
227version = "1.3.2"
228source = "registry+https://github.com/rust-lang/crates.io-index"
229checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
230
231[[package]]
232name = "block"
233version = "0.1.6"
234source = "registry+https://github.com/rust-lang/crates.io-index"
235checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
236
237[[package]]
238name = "block-buffer"
239version = "0.9.0"
240source = "registry+https://github.com/rust-lang/crates.io-index"
241checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
242dependencies = [
243 "generic-array",
244]
245
246[[package]]
247name = "blocking"
248version = "1.2.0"
249source = "registry+https://github.com/rust-lang/crates.io-index"
250checksum = "c6ccb65d468978a086b69884437ded69a90faab3bbe6e67f242173ea728acccc"
251dependencies = [
252 "async-channel",
253 "async-task",
254 "atomic-waker",
255 "fastrand",
256 "futures-lite",
257 "once_cell",
258]
259
260[[package]]
261name = "bumpalo"
262version = "3.10.0"
263source = "registry+https://github.com/rust-lang/crates.io-index"
264checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3"
265
266[[package]]
267name = "bytecount"
268version = "0.3.2"
269source = "registry+https://github.com/rust-lang/crates.io-index"
270checksum = "f861d9ce359f56dbcb6e0c2a1cb84e52ad732cadb57b806adeb3c7668caccbd8"
271
272[[package]]
273name = "bytecount"
274version = "0.6.3"
275source = "registry+https://github.com/rust-lang/crates.io-index"
276checksum = "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c"
277
278[[package]]
279name = "bytes"
280version = "0.5.6"
281source = "registry+https://github.com/rust-lang/crates.io-index"
282checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
283
284[[package]]
285name = "bytes"
286version = "1.2.0"
287source = "registry+https://github.com/rust-lang/crates.io-index"
288checksum = "f0b3de4a0c5e67e16066a0715723abd91edc2f9001d09c46e1dca929351e130e"
289
290[[package]]
291name = "cache-padded"
292version = "1.2.0"
293source = "registry+https://github.com/rust-lang/crates.io-index"
294checksum = "c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c"
295
296[[package]]
297name = "cairo-rs"
298version = "0.15.12"
299source = "registry+https://github.com/rust-lang/crates.io-index"
300checksum = "c76ee391b03d35510d9fa917357c7f1855bd9a6659c95a1b392e33f49b3369bc"
301dependencies = [
302 "bitflags",
303 "cairo-sys-rs",
304 "glib",
305 "libc",
306 "thiserror",
307]
308
309[[package]]
310name = "cairo-sys-rs"
311version = "0.15.1"
312source = "registry+https://github.com/rust-lang/crates.io-index"
313checksum = "3c55d429bef56ac9172d25fecb85dc8068307d17acd74b377866b7a1ef25d3c8"
314dependencies = [
315 "glib-sys",
316 "libc",
317 "system-deps",
318]
319
320[[package]]
321name = "cc"
322version = "1.0.73"
323source = "registry+https://github.com/rust-lang/crates.io-index"
324checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
325
326[[package]]
327name = "cfg-expr"
328version = "0.10.3"
329source = "registry+https://github.com/rust-lang/crates.io-index"
330checksum = "0aacacf4d96c24b2ad6eb8ee6df040e4f27b0d0b39a5710c30091baa830485db"
331dependencies = [
332 "smallvec",
333]
334
335[[package]]
336name = "cfg-if"
337version = "1.0.0"
338source = "registry+https://github.com/rust-lang/crates.io-index"
339checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
340
341[[package]]
342name = "cipher"
343version = "0.2.5"
344source = "registry+https://github.com/rust-lang/crates.io-index"
345checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801"
346dependencies = [
347 "generic-array",
348]
349
350[[package]]
351name = "citations"
352version = "0.5.1"
353dependencies = [
354 "anyhow",
355 "async-std",
356 "cairo-rs",
357 "cratebibtex",
358 "futures-channel",
359 "gettext-rs",
360 "gio",
361 "glib",
362 "gtk4",
363 "libadwaita",
364 "log",
365 "once_cell",
366 "poppler-rs",
367 "sanitize-filename",
368 "sourceview5",
369 "surf",
370 "tracing-subscriber",
371 "url",
372]
373
374[[package]]
375name = "concurrent-queue"
376version = "1.2.2"
377source = "registry+https://github.com/rust-lang/crates.io-index"
378checksum = "30ed07550be01594c6026cff2a1d7fe9c8f683caa798e12b68694ac9e88286a3"
379dependencies = [
380 "cache-padded",
381]
382
383[[package]]
384name = "const_fn"
385version = "0.4.9"
386source = "registry+https://github.com/rust-lang/crates.io-index"
387checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935"
388
389[[package]]
390name = "cookie"
391version = "0.14.4"
392source = "registry+https://github.com/rust-lang/crates.io-index"
393checksum = "03a5d7b21829bc7b4bf4754a978a241ae54ea55a40f92bb20216e54096f4b951"
394dependencies = [
395 "aes-gcm",
396 "base64",
397 "hkdf",
398 "hmac",
399 "percent-encoding",
400 "rand 0.8.5",
401 "sha2",
402 "time",
403 "version_check",
404]
405
406[[package]]
407name = "cpufeatures"
408version = "0.2.2"
409source = "registry+https://github.com/rust-lang/crates.io-index"
410checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
411dependencies = [
412 "libc",
413]
414
415[[package]]
416name = "cpuid-bool"
417version = "0.2.0"
418source = "registry+https://github.com/rust-lang/crates.io-index"
419checksum = "dcb25d077389e53838a8158c8e99174c5a9d902dee4904320db714f3c653ffba"
420
421[[package]]
422name = "cratebibtex"
423version = "0.1.0"
424dependencies = [
425 "anyhow",
426 "gettext-rs",
427 "gio",
428 "glib",
429 "log",
430 "nom-bibtex",
431 "once_cell",
432 "regex",
433]
434
435[[package]]
436name = "crossbeam-utils"
437version = "0.8.10"
438source = "registry+https://github.com/rust-lang/crates.io-index"
439checksum = "7d82ee10ce34d7bc12c2122495e7593a9c41347ecdd64185af4ecf72cb1a7f83"
440dependencies = [
441 "cfg-if",
442 "once_cell",
443]
444
445[[package]]
446name = "crypto-mac"
447version = "0.10.1"
448source = "registry+https://github.com/rust-lang/crates.io-index"
449checksum = "bff07008ec701e8028e2ceb8f83f0e4274ee62bd2dbdc4fefff2e9a91824081a"
450dependencies = [
451 "generic-array",
452 "subtle",
453]
454
455[[package]]
456name = "ctor"
457version = "0.1.22"
458source = "registry+https://github.com/rust-lang/crates.io-index"
459checksum = "f877be4f7c9f246b183111634f75baa039715e3f46ce860677d3b19a69fb229c"
460dependencies = [
461 "quote",
462 "syn",
463]
464
465[[package]]
466name = "ctr"
467version = "0.6.0"
468source = "registry+https://github.com/rust-lang/crates.io-index"
469checksum = "fb4a30d54f7443bf3d6191dcd486aca19e67cb3c49fa7a06a319966346707e7f"
470dependencies = [
471 "cipher",
472]
473
474[[package]]
475name = "curl"
476version = "0.4.44"
477source = "registry+https://github.com/rust-lang/crates.io-index"
478checksum = "509bd11746c7ac09ebd19f0b17782eae80aadee26237658a6b4808afb5c11a22"
479dependencies = [
480 "curl-sys",
481 "libc",
482 "openssl-probe",
483 "openssl-sys",
484 "schannel",
485 "socket2",
486 "winapi",
487]
488
489[[package]]
490name = "curl-sys"
491version = "0.4.56+curl-7.83.1"
492source = "registry+https://github.com/rust-lang/crates.io-index"
493checksum = "6093e169dd4de29e468fa649fbae11cdcd5551c81fe5bf1b0677adad7ef3d26f"
494dependencies = [
495 "cc",
496 "libc",
497 "libnghttp2-sys",
498 "libz-sys",
499 "openssl-sys",
500 "pkg-config",
501 "vcpkg",
502 "winapi",
503]
504
505[[package]]
506name = "digest"
507version = "0.9.0"
508source = "registry+https://github.com/rust-lang/crates.io-index"
509checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
510dependencies = [
511 "generic-array",
512]
513
514[[package]]
515name = "discard"
516version = "1.0.4"
517source = "registry+https://github.com/rust-lang/crates.io-index"
518checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
519
520[[package]]
521name = "encoding_rs"
522version = "0.8.31"
523source = "registry+https://github.com/rust-lang/crates.io-index"
524checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
525dependencies = [
526 "cfg-if",
527]
528
529[[package]]
530name = "event-listener"
531version = "2.5.2"
532source = "registry+https://github.com/rust-lang/crates.io-index"
533checksum = "77f3309417938f28bf8228fcff79a4a37103981e3e186d2ccd19c74b38f4eb71"
534
535[[package]]
536name = "fastrand"
537version = "1.7.0"
538source = "registry+https://github.com/rust-lang/crates.io-index"
539checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf"
540dependencies = [
541 "instant",
542]
543
544[[package]]
545name = "field-offset"
546version = "0.3.4"
547source = "registry+https://github.com/rust-lang/crates.io-index"
548checksum = "1e1c54951450cbd39f3dbcf1005ac413b49487dabf18a720ad2383eccfeffb92"
549dependencies = [
550 "memoffset",
551 "rustc_version 0.3.3",
552]
553
554[[package]]
555name = "flume"
556version = "0.9.2"
557source = "registry+https://github.com/rust-lang/crates.io-index"
558checksum = "1bebadab126f8120d410b677ed95eee4ba6eb7c6dd8e34a5ec88a08050e26132"
559dependencies = [
560 "futures-core",
561 "futures-sink",
562 "spinning_top",
563]
564
565[[package]]
566name = "fnv"
567version = "1.0.7"
568source = "registry+https://github.com/rust-lang/crates.io-index"
569checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
570
571[[package]]
572name = "form_urlencoded"
573version = "1.0.1"
574source = "registry+https://github.com/rust-lang/crates.io-index"
575checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
576dependencies = [
577 "matches",
578 "percent-encoding",
579]
580
581[[package]]
582name = "futures-channel"
583version = "0.3.21"
584source = "registry+https://github.com/rust-lang/crates.io-index"
585checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
586dependencies = [
587 "futures-core",
588]
589
590[[package]]
591name = "futures-core"
592version = "0.3.21"
593source = "registry+https://github.com/rust-lang/crates.io-index"
594checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
595
596[[package]]
597name = "futures-executor"
598version = "0.3.21"
599source = "registry+https://github.com/rust-lang/crates.io-index"
600checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6"
601dependencies = [
602 "futures-core",
603 "futures-task",
604 "futures-util",
605]
606
607[[package]]
608name = "futures-io"
609version = "0.3.21"
610source = "registry+https://github.com/rust-lang/crates.io-index"
611checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
612
613[[package]]
614name = "futures-lite"
615version = "1.12.0"
616source = "registry+https://github.com/rust-lang/crates.io-index"
617checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"
618dependencies = [
619 "fastrand",
620 "futures-core",
621 "futures-io",
622 "memchr",
623 "parking",
624 "pin-project-lite",
625 "waker-fn",
626]
627
628[[package]]
629name = "futures-macro"
630version = "0.3.21"
631source = "registry+https://github.com/rust-lang/crates.io-index"
632checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512"
633dependencies = [
634 "proc-macro2",
635 "quote",
636 "syn",
637]
638
639[[package]]
640name = "futures-sink"
641version = "0.3.21"
642source = "registry+https://github.com/rust-lang/crates.io-index"
643checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
644
645[[package]]
646name = "futures-task"
647version = "0.3.21"
648source = "registry+https://github.com/rust-lang/crates.io-index"
649checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
650
651[[package]]
652name = "futures-util"
653version = "0.3.21"
654source = "registry+https://github.com/rust-lang/crates.io-index"
655checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
656dependencies = [
657 "futures-core",
658 "futures-io",
659 "futures-macro",
660 "futures-task",
661 "memchr",
662 "pin-project-lite",
663 "pin-utils",
664 "slab",
665]
666
667[[package]]
668name = "gdk-pixbuf"
669version = "0.15.11"
670source = "registry+https://github.com/rust-lang/crates.io-index"
671checksum = "ad38dd9cc8b099cceecdf41375bb6d481b1b5a7cd5cd603e10a69a9383f8619a"
672dependencies = [
673 "bitflags",
674 "gdk-pixbuf-sys",
675 "gio",
676 "glib",
677 "libc",
678]
679
680[[package]]
681name = "gdk-pixbuf-sys"
682version = "0.15.10"
683source = "registry+https://github.com/rust-lang/crates.io-index"
684checksum = "140b2f5378256527150350a8346dbdb08fadc13453a7a2d73aecd5fab3c402a7"
685dependencies = [
686 "gio-sys",
687 "glib-sys",
688 "gobject-sys",
689 "libc",
690 "system-deps",
691]
692
693[[package]]
694name = "gdk4"
695version = "0.4.8"
696source = "registry+https://github.com/rust-lang/crates.io-index"
697checksum = "4fabb7cf843c26b085a5d68abb95d0c0bf27a9ae2eeff9c4adb503a1eb580876"
698dependencies = [
699 "bitflags",
700 "cairo-rs",
701 "gdk-pixbuf",
702 "gdk4-sys",
703 "gio",
704 "glib",
705 "libc",
706 "pango",
707]
708
709[[package]]
710name = "gdk4-sys"
711version = "0.4.8"
712source = "registry+https://github.com/rust-lang/crates.io-index"
713checksum = "efe7dcb44f5c00aeabff3f69abfc5673de46559070f89bd3fbb7b66485d9cef2"
714dependencies = [
715 "cairo-sys-rs",
716 "gdk-pixbuf-sys",
717 "gio-sys",
718 "glib-sys",
719 "gobject-sys",
720 "libc",
721 "pango-sys",
722 "pkg-config",
723 "system-deps",
724]
725
726[[package]]
727name = "generic-array"
728version = "0.14.5"
729source = "registry+https://github.com/rust-lang/crates.io-index"
730checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
731dependencies = [
732 "typenum",
733 "version_check",
734]
735
736[[package]]
737name = "getrandom"
738version = "0.1.16"
739source = "registry+https://github.com/rust-lang/crates.io-index"
740checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
741dependencies = [
742 "cfg-if",
743 "libc",
744 "wasi 0.9.0+wasi-snapshot-preview1",
745]
746
747[[package]]
748name = "getrandom"
749version = "0.2.7"
750source = "registry+https://github.com/rust-lang/crates.io-index"
751checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
752dependencies = [
753 "cfg-if",
754 "libc",
755 "wasi 0.11.0+wasi-snapshot-preview1",
756]
757
758[[package]]
759name = "gettext-rs"
760version = "0.7.0"
761source = "registry+https://github.com/rust-lang/crates.io-index"
762checksum = "e49ea8a8fad198aaa1f9655a2524b64b70eb06b2f3ff37da407566c93054f364"
763dependencies = [
764 "gettext-sys",
765 "locale_config",
766]
767
768[[package]]
769name = "gettext-sys"
770version = "0.21.3"
771source = "registry+https://github.com/rust-lang/crates.io-index"
772checksum = "c63ce2e00f56a206778276704bbe38564c8695249fdc8f354b4ef71c57c3839d"
773dependencies = [
774 "cc",
775 "temp-dir",
776]
777
778[[package]]
779name = "ghash"
780version = "0.3.1"
781source = "registry+https://github.com/rust-lang/crates.io-index"
782checksum = "97304e4cd182c3846f7575ced3890c53012ce534ad9114046b0a9e00bb30a375"
783dependencies = [
784 "opaque-debug",
785 "polyval",
786]
787
788[[package]]
789name = "gio"
790version = "0.15.12"
791source = "registry+https://github.com/rust-lang/crates.io-index"
792checksum = "68fdbc90312d462781a395f7a16d96a2b379bb6ef8cd6310a2df272771c4283b"
793dependencies = [
794 "bitflags",
795 "futures-channel",
796 "futures-core",
797 "futures-io",
798 "gio-sys",
799 "glib",
800 "libc",
801 "once_cell",
802 "thiserror",
803]
804
805[[package]]
806name = "gio-sys"
807version = "0.15.10"
808source = "registry+https://github.com/rust-lang/crates.io-index"
809checksum = "32157a475271e2c4a023382e9cab31c4584ee30a97da41d3c4e9fdd605abcf8d"
810dependencies = [
811 "glib-sys",
812 "gobject-sys",
813 "libc",
814 "system-deps",
815 "winapi",
816]
817
818[[package]]
819name = "glib"
820version = "0.15.12"
821source = "registry+https://github.com/rust-lang/crates.io-index"
822checksum = "edb0306fbad0ab5428b0ca674a23893db909a98582969c9b537be4ced78c505d"
823dependencies = [
824 "bitflags",
825 "futures-channel",
826 "futures-core",
827 "futures-executor",
828 "futures-task",
829 "glib-macros",
830 "glib-sys",
831 "gobject-sys",
832 "libc",
833 "once_cell",
834 "smallvec",
835 "thiserror",
836]
837
838[[package]]
839name = "glib-macros"
840version = "0.15.11"
841source = "registry+https://github.com/rust-lang/crates.io-index"
842checksum = "25a68131a662b04931e71891fb14aaf65ee4b44d08e8abc10f49e77418c86c64"
843dependencies = [
844 "anyhow",
845 "heck",
846 "proc-macro-crate",
847 "proc-macro-error",
848 "proc-macro2",
849 "quote",
850 "syn",
851]
852
853[[package]]
854name = "glib-sys"
855version = "0.15.10"
856source = "registry+https://github.com/rust-lang/crates.io-index"
857checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4"
858dependencies = [
859 "libc",
860 "system-deps",
861]
862
863[[package]]
864name = "gloo-timers"
865version = "0.2.4"
866source = "registry+https://github.com/rust-lang/crates.io-index"
867checksum = "5fb7d06c1c8cc2a29bee7ec961009a0b2caa0793ee4900c2ffb348734ba1c8f9"
868dependencies = [
869 "futures-channel",
870 "futures-core",
871 "js-sys",
872 "wasm-bindgen",
873]
874
875[[package]]
876name = "gobject-sys"
877version = "0.15.10"
878source = "registry+https://github.com/rust-lang/crates.io-index"
879checksum = "0d57ce44246becd17153bd035ab4d32cfee096a657fc01f2231c9278378d1e0a"
880dependencies = [
881 "glib-sys",
882 "libc",
883 "system-deps",
884]
885
886[[package]]
887name = "graphene-rs"
888version = "0.15.1"
889source = "registry+https://github.com/rust-lang/crates.io-index"
890checksum = "7c54f9fbbeefdb62c99f892dfca35f83991e2cb5b46a8dc2a715e58612f85570"
891dependencies = [
892 "glib",
893 "graphene-sys",
894 "libc",
895]
896
897[[package]]
898name = "graphene-sys"
899version = "0.15.10"
900source = "registry+https://github.com/rust-lang/crates.io-index"
901checksum = "fa691fc7337ba1df599afb55c3bcb85c04f1b3f17362570e9bb0ff0d1bc3028a"
902dependencies = [
903 "glib-sys",
904 "libc",
905 "pkg-config",
906 "system-deps",
907]
908
909[[package]]
910name = "gsk4"
911version = "0.4.8"
912source = "registry+https://github.com/rust-lang/crates.io-index"
913checksum = "05e9020d333280b3aa38d496495bfa9b50712eebf1ad63f0ec5bcddb5eb61be4"
914dependencies = [
915 "bitflags",
916 "cairo-rs",
917 "gdk4",
918 "glib",
919 "graphene-rs",
920 "gsk4-sys",
921 "libc",
922 "pango",
923]
924
925[[package]]
926name = "gsk4-sys"
927version = "0.4.8"
928source = "registry+https://github.com/rust-lang/crates.io-index"
929checksum = "7add39ccf60078508c838643a2dcc91f045c46ed63b5ea6ab701b2e25bda3fea"
930dependencies = [
931 "cairo-sys-rs",
932 "gdk4-sys",
933 "glib-sys",
934 "gobject-sys",
935 "graphene-sys",
936 "libc",
937 "pango-sys",
938 "system-deps",
939]
940
941[[package]]
942name = "gtk4"
943version = "0.4.8"
944source = "registry+https://github.com/rust-lang/crates.io-index"
945checksum = "c64f0c2a3d80e899dc3febddad5bac193ffcf74a0fd7e31037f30dd34d6f7396"
946dependencies = [
947 "bitflags",
948 "cairo-rs",
949 "field-offset",
950 "futures-channel",
951 "gdk-pixbuf",
952 "gdk4",
953 "gio",
954 "glib",
955 "graphene-rs",
956 "gsk4",
957 "gtk4-macros",
958 "gtk4-sys",
959 "libc",
960 "once_cell",
961 "pango",
962]
963
964[[package]]
965name = "gtk4-macros"
966version = "0.4.8"
967source = "registry+https://github.com/rust-lang/crates.io-index"
968checksum = "fafbcc920af4eb677d7d164853e7040b9de5a22379c596f570190c675d45f7a7"
969dependencies = [
970 "anyhow",
971 "proc-macro-crate",
972 "proc-macro-error",
973 "proc-macro2",
974 "quick-xml",
975 "quote",
976 "syn",
977]
978
979[[package]]
980name = "gtk4-sys"
981version = "0.4.8"
982source = "registry+https://github.com/rust-lang/crates.io-index"
983checksum = "5bc8006eea634b7c72da3ff79e24606e45f21b3b832a3c5a1f543f5f97eb0f63"
984dependencies = [
985 "cairo-sys-rs",
986 "gdk-pixbuf-sys",
987 "gdk4-sys",
988 "gio-sys",
989 "glib-sys",
990 "gobject-sys",
991 "graphene-sys",
992 "gsk4-sys",
993 "libc",
994 "pango-sys",
995 "system-deps",
996]
997
998[[package]]
999name = "heck"
1000version = "0.4.0"
1001source = "registry+https://github.com/rust-lang/crates.io-index"
1002checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
1003
1004[[package]]
1005name = "hermit-abi"
1006version = "0.1.19"
1007source = "registry+https://github.com/rust-lang/crates.io-index"
1008checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
1009dependencies = [
1010 "libc",
1011]
1012
1013[[package]]
1014name = "hkdf"
1015version = "0.10.0"
1016source = "registry+https://github.com/rust-lang/crates.io-index"
1017checksum = "51ab2f639c231793c5f6114bdb9bbe50a7dbbfcd7c7c6bd8475dec2d991e964f"
1018dependencies = [
1019 "digest",
1020 "hmac",
1021]
1022
1023[[package]]
1024name = "hmac"
1025version = "0.10.1"
1026source = "registry+https://github.com/rust-lang/crates.io-index"
1027checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15"
1028dependencies = [
1029 "crypto-mac",
1030 "digest",
1031]
1032
1033[[package]]
1034name = "http"
1035version = "0.2.8"
1036source = "registry+https://github.com/rust-lang/crates.io-index"
1037checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
1038dependencies = [
1039 "bytes 1.2.0",
1040 "fnv",
1041 "itoa",
1042]
1043
1044[[package]]
1045name = "http-client"
1046version = "6.5.3"
1047source = "registry+https://github.com/rust-lang/crates.io-index"
1048checksum = "1947510dc91e2bf586ea5ffb412caad7673264e14bb39fb9078da114a94ce1a5"
1049dependencies = [
1050 "async-std",
1051 "async-trait",
1052 "cfg-if",
1053 "http-types",
1054 "isahc",
1055 "log",
1056]
1057
1058[[package]]
1059name = "http-types"
1060version = "2.12.0"
1061source = "registry+https://github.com/rust-lang/crates.io-index"
1062checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad"
1063dependencies = [
1064 "anyhow",
1065 "async-channel",
1066 "async-std",
1067 "base64",
1068 "cookie",
1069 "futures-lite",
1070 "infer",
1071 "pin-project-lite",
1072 "rand 0.7.3",
1073 "serde",
1074 "serde_json",
1075 "serde_qs",
1076 "serde_urlencoded",
1077 "url",
1078]
1079
1080[[package]]
1081name = "idna"
1082version = "0.2.3"
1083source = "registry+https://github.com/rust-lang/crates.io-index"
1084checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
1085dependencies = [
1086 "matches",
1087 "unicode-bidi",
1088 "unicode-normalization",
1089]
1090
1091[[package]]
1092name = "infer"
1093version = "0.2.3"
1094source = "registry+https://github.com/rust-lang/crates.io-index"
1095checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac"
1096
1097[[package]]
1098name = "instant"
1099version = "0.1.12"
1100source = "registry+https://github.com/rust-lang/crates.io-index"
1101checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
1102dependencies = [
1103 "cfg-if",
1104]
1105
1106[[package]]
1107name = "isahc"
1108version = "0.9.14"
1109source = "registry+https://github.com/rust-lang/crates.io-index"
1110checksum = "e2948a0ce43e2c2ef11d7edf6816508998d99e13badd1150be0914205df9388a"
1111dependencies = [
1112 "bytes 0.5.6",
1113 "crossbeam-utils",
1114 "curl",
1115 "curl-sys",
1116 "flume",
1117 "futures-lite",
1118 "http",
1119 "log",
1120 "once_cell",
1121 "slab",
1122 "sluice",
1123 "tracing",
1124 "tracing-futures",
1125 "url",
1126 "waker-fn",
1127]
1128
1129[[package]]
1130name = "itoa"
1131version = "1.0.2"
1132source = "registry+https://github.com/rust-lang/crates.io-index"
1133checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d"
1134
1135[[package]]
1136name = "js-sys"
1137version = "0.3.58"
1138source = "registry+https://github.com/rust-lang/crates.io-index"
1139checksum = "c3fac17f7123a73ca62df411b1bf727ccc805daa070338fda671c86dac1bdc27"
1140dependencies = [
1141 "wasm-bindgen",
1142]
1143
1144[[package]]
1145name = "kv-log-macro"
1146version = "1.0.7"
1147source = "registry+https://github.com/rust-lang/crates.io-index"
1148checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
1149dependencies = [
1150 "log",
1151]
1152
1153[[package]]
1154name = "lazy_static"
1155version = "1.4.0"
1156source = "registry+https://github.com/rust-lang/crates.io-index"
1157checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
1158
1159[[package]]
1160name = "lexical-core"
1161version = "0.7.6"
1162source = "registry+https://github.com/rust-lang/crates.io-index"
1163checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe"
1164dependencies = [
1165 "arrayvec",
1166 "bitflags",
1167 "cfg-if",
1168 "ryu",
1169 "static_assertions",
1170]
1171
1172[[package]]
1173name = "libadwaita"
1174version = "0.2.0-alpha.2"
1175source = "registry+https://github.com/rust-lang/crates.io-index"
1176checksum = "49ad2318c7abc8629b1d1ed381bd0356c184ae8f4caebc044ef9de1782c86046"
1177dependencies = [
1178 "futures-channel",
1179 "gdk-pixbuf",
1180 "gdk4",
1181 "gio",
1182 "glib",
1183 "gtk4",
1184 "libadwaita-sys",
1185 "libc",
1186 "once_cell",
1187 "pango",
1188]
1189
1190[[package]]
1191name = "libadwaita-sys"
1192version = "0.2.0-alpha.2"
1193source = "registry+https://github.com/rust-lang/crates.io-index"
1194checksum = "e835f99b92f6e7f43ddb2c0ca79d9d21124a170190876505e03484f337f7edc7"
1195dependencies = [
1196 "gdk4-sys",
1197 "gio-sys",
1198 "glib-sys",
1199 "gobject-sys",
1200 "gtk4-sys",
1201 "libc",
1202 "system-deps",
1203]
1204
1205[[package]]
1206name = "libc"
1207version = "0.2.126"
1208source = "registry+https://github.com/rust-lang/crates.io-index"
1209checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836"
1210
1211[[package]]
1212name = "libnghttp2-sys"
1213version = "0.1.7+1.45.0"
1214source = "registry+https://github.com/rust-lang/crates.io-index"
1215checksum = "57ed28aba195b38d5ff02b9170cbff627e336a20925e43b4945390401c5dc93f"
1216dependencies = [
1217 "cc",
1218 "libc",
1219]
1220
1221[[package]]
1222name = "libz-sys"
1223version = "1.1.8"
1224source = "registry+https://github.com/rust-lang/crates.io-index"
1225checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf"
1226dependencies = [
1227 "cc",
1228 "libc",
1229 "pkg-config",
1230 "vcpkg",
1231]
1232
1233[[package]]
1234name = "locale_config"
1235version = "0.3.0"
1236source = "registry+https://github.com/rust-lang/crates.io-index"
1237checksum = "08d2c35b16f4483f6c26f0e4e9550717a2f6575bcd6f12a53ff0c490a94a6934"
1238dependencies = [
1239 "lazy_static",
1240 "objc",
1241 "objc-foundation",
1242 "regex",
1243 "winapi",
1244]
1245
1246[[package]]
1247name = "lock_api"
1248version = "0.4.7"
1249source = "registry+https://github.com/rust-lang/crates.io-index"
1250checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
1251dependencies = [
1252 "autocfg",
1253 "scopeguard",
1254]
1255
1256[[package]]
1257name = "log"
1258version = "0.4.17"
1259source = "registry+https://github.com/rust-lang/crates.io-index"
1260checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
1261dependencies = [
1262 "cfg-if",
1263 "value-bag",
1264]
1265
1266[[package]]
1267name = "malloc_buf"
1268version = "0.0.6"
1269source = "registry+https://github.com/rust-lang/crates.io-index"
1270checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
1271dependencies = [
1272 "libc",
1273]
1274
1275[[package]]
1276name = "matches"
1277version = "0.1.9"
1278source = "registry+https://github.com/rust-lang/crates.io-index"
1279checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
1280
1281[[package]]
1282name = "memchr"
1283version = "2.5.0"
1284source = "registry+https://github.com/rust-lang/crates.io-index"
1285checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
1286
1287[[package]]
1288name = "memoffset"
1289version = "0.6.5"
1290source = "registry+https://github.com/rust-lang/crates.io-index"
1291checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
1292dependencies = [
1293 "autocfg",
1294]
1295
1296[[package]]
1297name = "mime"
1298version = "0.3.16"
1299source = "registry+https://github.com/rust-lang/crates.io-index"
1300checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
1301
1302[[package]]
1303name = "mime_guess"
1304version = "2.0.4"
1305source = "registry+https://github.com/rust-lang/crates.io-index"
1306checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
1307dependencies = [
1308 "mime",
1309 "unicase",
1310]
1311
1312[[package]]
1313name = "nom"
1314version = "5.1.2"
1315source = "registry+https://github.com/rust-lang/crates.io-index"
1316checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af"
1317dependencies = [
1318 "lexical-core",
1319 "memchr",
1320 "version_check",
1321]
1322
1323[[package]]
1324name = "nom-bibtex"
1325version = "0.3.0"
1326source = "git+https://github.com/A6GibKm/nom-bibtex.git#3e20b1f6a1f8709bf61836f171b8d90cb84cd8b3"
1327dependencies = [
1328 "nom",
1329 "nom-tracable",
1330 "nom_locate 2.1.0",
1331 "quick-error",
1332]
1333
1334[[package]]
1335name = "nom-tracable"
1336version = "0.5.2"
1337source = "registry+https://github.com/rust-lang/crates.io-index"
1338checksum = "e012c742e1269f801f6bfe0d1ebf99d7a3f7bc1d65c970bab0e7bee439e31610"
1339dependencies = [
1340 "nom",
1341 "nom-tracable-macros",
1342 "nom_locate 1.0.0",
1343 "nom_locate 2.1.0",
1344]
1345
1346[[package]]
1347name = "nom-tracable-macros"
1348version = "0.5.2"
1349source = "registry+https://github.com/rust-lang/crates.io-index"
1350checksum = "65ad630ff46d4c61da89042f327e6fdf104a6ebb667565727ef0bb294a7c3197"
1351dependencies = [
1352 "quote",
1353 "syn",
1354]
1355
1356[[package]]
1357name = "nom_locate"
1358version = "1.0.0"
1359source = "registry+https://github.com/rust-lang/crates.io-index"
1360checksum = "f932834fd8e391fc7710e2ba17e8f9f8645d846b55aa63207e17e110a1e1ce35"
1361dependencies = [
1362 "bytecount 0.3.2",
1363 "memchr",
1364 "nom",
1365]
1366
1367[[package]]
1368name = "nom_locate"
1369version = "2.1.0"
1370source = "registry+https://github.com/rust-lang/crates.io-index"
1371checksum = "a67484adf5711f94f2f28b653bf231bff8e438be33bf5b0f35935a0db4f618a2"
1372dependencies = [
1373 "bytecount 0.6.3",
1374 "memchr",
1375 "nom",
1376]
1377
1378[[package]]
1379name = "num_cpus"
1380version = "1.13.1"
1381source = "registry+https://github.com/rust-lang/crates.io-index"
1382checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
1383dependencies = [
1384 "hermit-abi",
1385 "libc",
1386]
1387
1388[[package]]
1389name = "objc"
1390version = "0.2.7"
1391source = "registry+https://github.com/rust-lang/crates.io-index"
1392checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
1393dependencies = [
1394 "malloc_buf",
1395]
1396
1397[[package]]
1398name = "objc-foundation"
1399version = "0.1.1"
1400source = "registry+https://github.com/rust-lang/crates.io-index"
1401checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9"
1402dependencies = [
1403 "block",
1404 "objc",
1405 "objc_id",
1406]
1407
1408[[package]]
1409name = "objc_id"
1410version = "0.1.1"
1411source = "registry+https://github.com/rust-lang/crates.io-index"
1412checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
1413dependencies = [
1414 "objc",
1415]
1416
1417[[package]]
1418name = "once_cell"
1419version = "1.13.0"
1420source = "registry+https://github.com/rust-lang/crates.io-index"
1421checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1"
1422
1423[[package]]
1424name = "opaque-debug"
1425version = "0.3.0"
1426source = "registry+https://github.com/rust-lang/crates.io-index"
1427checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
1428
1429[[package]]
1430name = "openssl-probe"
1431version = "0.1.5"
1432source = "registry+https://github.com/rust-lang/crates.io-index"
1433checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
1434
1435[[package]]
1436name = "openssl-sys"
1437version = "0.9.75"
1438source = "registry+https://github.com/rust-lang/crates.io-index"
1439checksum = "e5f9bd0c2710541a3cda73d6f9ac4f1b240de4ae261065d309dbe73d9dceb42f"
1440dependencies = [
1441 "autocfg",
1442 "cc",
1443 "libc",
1444 "pkg-config",
1445 "vcpkg",
1446]
1447
1448[[package]]
1449name = "pango"
1450version = "0.15.10"
1451source = "registry+https://github.com/rust-lang/crates.io-index"
1452checksum = "22e4045548659aee5313bde6c582b0d83a627b7904dd20dc2d9ef0895d414e4f"
1453dependencies = [
1454 "bitflags",
1455 "glib",
1456 "libc",
1457 "once_cell",
1458 "pango-sys",
1459]
1460
1461[[package]]
1462name = "pango-sys"
1463version = "0.15.10"
1464source = "registry+https://github.com/rust-lang/crates.io-index"
1465checksum = "d2a00081cde4661982ed91d80ef437c20eacaf6aa1a5962c0279ae194662c3aa"
1466dependencies = [
1467 "glib-sys",
1468 "gobject-sys",
1469 "libc",
1470 "system-deps",
1471]
1472
1473[[package]]
1474name = "parking"
1475version = "2.0.0"
1476source = "registry+https://github.com/rust-lang/crates.io-index"
1477checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
1478
1479[[package]]
1480name = "percent-encoding"
1481version = "2.1.0"
1482source = "registry+https://github.com/rust-lang/crates.io-index"
1483checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
1484
1485[[package]]
1486name = "pest"
1487version = "2.1.3"
1488source = "registry+https://github.com/rust-lang/crates.io-index"
1489checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"
1490dependencies = [
1491 "ucd-trie",
1492]
1493
1494[[package]]
1495name = "pin-project"
1496version = "1.0.11"
1497source = "registry+https://github.com/rust-lang/crates.io-index"
1498checksum = "78203e83c48cffbe01e4a2d35d566ca4de445d79a85372fc64e378bfc812a260"
1499dependencies = [
1500 "pin-project-internal",
1501]
1502
1503[[package]]
1504name = "pin-project-internal"
1505version = "1.0.11"
1506source = "registry+https://github.com/rust-lang/crates.io-index"
1507checksum = "710faf75e1b33345361201d36d04e98ac1ed8909151a017ed384700836104c74"
1508dependencies = [
1509 "proc-macro2",
1510 "quote",
1511 "syn",
1512]
1513
1514[[package]]
1515name = "pin-project-lite"
1516version = "0.2.9"
1517source = "registry+https://github.com/rust-lang/crates.io-index"
1518checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
1519
1520[[package]]
1521name = "pin-utils"
1522version = "0.1.0"
1523source = "registry+https://github.com/rust-lang/crates.io-index"
1524checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1525
1526[[package]]
1527name = "pkg-config"
1528version = "0.3.25"
1529source = "registry+https://github.com/rust-lang/crates.io-index"
1530checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
1531
1532[[package]]
1533name = "polling"
1534version = "2.2.0"
1535source = "registry+https://github.com/rust-lang/crates.io-index"
1536checksum = "685404d509889fade3e86fe3a5803bca2ec09b0c0778d5ada6ec8bf7a8de5259"
1537dependencies = [
1538 "cfg-if",
1539 "libc",
1540 "log",
1541 "wepoll-ffi",
1542 "winapi",
1543]
1544
1545[[package]]
1546name = "polyval"
1547version = "0.4.5"
1548source = "registry+https://github.com/rust-lang/crates.io-index"
1549checksum = "eebcc4aa140b9abd2bc40d9c3f7ccec842679cd79045ac3a7ac698c1a064b7cd"
1550dependencies = [
1551 "cpuid-bool",
1552 "opaque-debug",
1553 "universal-hash",
1554]
1555
1556[[package]]
1557name = "poppler-rs"
1558version = "0.19.0"
1559source = "registry+https://github.com/rust-lang/crates.io-index"
1560checksum = "a6e95928e3e02fed7d26159b54c6dbb763afeff4780d77e19e2f1aa4c3715d90"
1561dependencies = [
1562 "bitflags",
1563 "cairo-rs",
1564 "gio",
1565 "glib",
1566 "libc",
1567 "poppler-sys-rs",
1568]
1569
1570[[package]]
1571name = "poppler-sys-rs"
1572version = "0.19.0"
1573source = "registry+https://github.com/rust-lang/crates.io-index"
1574checksum = "6cd22a62a382ee735c140f7a8c678ce92982b8782dfbb77fc78ff203604fd657"
1575dependencies = [
1576 "cairo-sys-rs",
1577 "gio-sys",
1578 "glib-sys",
1579 "gobject-sys",
1580 "libc",
1581 "system-deps",
1582]
1583
1584[[package]]
1585name = "ppv-lite86"
1586version = "0.2.16"
1587source = "registry+https://github.com/rust-lang/crates.io-index"
1588checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
1589
1590[[package]]
1591name = "proc-macro-crate"
1592version = "1.1.3"
1593source = "registry+https://github.com/rust-lang/crates.io-index"
1594checksum = "e17d47ce914bf4de440332250b0edd23ce48c005f59fab39d3335866b114f11a"
1595dependencies = [
1596 "thiserror",
1597 "toml",
1598]
1599
1600[[package]]
1601name = "proc-macro-error"
1602version = "1.0.4"
1603source = "registry+https://github.com/rust-lang/crates.io-index"
1604checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
1605dependencies = [
1606 "proc-macro-error-attr",
1607 "proc-macro2",
1608 "quote",
1609 "syn",
1610 "version_check",
1611]
1612
1613[[package]]
1614name = "proc-macro-error-attr"
1615version = "1.0.4"
1616source = "registry+https://github.com/rust-lang/crates.io-index"
1617checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
1618dependencies = [
1619 "proc-macro2",
1620 "quote",
1621 "version_check",
1622]
1623
1624[[package]]
1625name = "proc-macro-hack"
1626version = "0.5.19"
1627source = "registry+https://github.com/rust-lang/crates.io-index"
1628checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
1629
1630[[package]]
1631name = "proc-macro2"
1632version = "1.0.40"
1633source = "registry+https://github.com/rust-lang/crates.io-index"
1634checksum = "dd96a1e8ed2596c337f8eae5f24924ec83f5ad5ab21ea8e455d3566c69fbcaf7"
1635dependencies = [
1636 "unicode-ident",
1637]
1638
1639[[package]]
1640name = "quick-error"
1641version = "1.2.3"
1642source = "registry+https://github.com/rust-lang/crates.io-index"
1643checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
1644
1645[[package]]
1646name = "quick-xml"
1647version = "0.22.0"
1648source = "registry+https://github.com/rust-lang/crates.io-index"
1649checksum = "8533f14c8382aaad0d592c812ac3b826162128b65662331e1127b45c3d18536b"
1650dependencies = [
1651 "memchr",
1652]
1653
1654[[package]]
1655name = "quote"
1656version = "1.0.20"
1657source = "registry+https://github.com/rust-lang/crates.io-index"
1658checksum = "3bcdf212e9776fbcb2d23ab029360416bb1706b1aea2d1a5ba002727cbcab804"
1659dependencies = [
1660 "proc-macro2",
1661]
1662
1663[[package]]
1664name = "rand"
1665version = "0.7.3"
1666source = "registry+https://github.com/rust-lang/crates.io-index"
1667checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
1668dependencies = [
1669 "getrandom 0.1.16",
1670 "libc",
1671 "rand_chacha 0.2.2",
1672 "rand_core 0.5.1",
1673 "rand_hc",
1674]
1675
1676[[package]]
1677name = "rand"
1678version = "0.8.5"
1679source = "registry+https://github.com/rust-lang/crates.io-index"
1680checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1681dependencies = [
1682 "libc",
1683 "rand_chacha 0.3.1",
1684 "rand_core 0.6.3",
1685]
1686
1687[[package]]
1688name = "rand_chacha"
1689version = "0.2.2"
1690source = "registry+https://github.com/rust-lang/crates.io-index"
1691checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
1692dependencies = [
1693 "ppv-lite86",
1694 "rand_core 0.5.1",
1695]
1696
1697[[package]]
1698name = "rand_chacha"
1699version = "0.3.1"
1700source = "registry+https://github.com/rust-lang/crates.io-index"
1701checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1702dependencies = [
1703 "ppv-lite86",
1704 "rand_core 0.6.3",
1705]
1706
1707[[package]]
1708name = "rand_core"
1709version = "0.5.1"
1710source = "registry+https://github.com/rust-lang/crates.io-index"
1711checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
1712dependencies = [
1713 "getrandom 0.1.16",
1714]
1715
1716[[package]]
1717name = "rand_core"
1718version = "0.6.3"
1719source = "registry+https://github.com/rust-lang/crates.io-index"
1720checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
1721dependencies = [
1722 "getrandom 0.2.7",
1723]
1724
1725[[package]]
1726name = "rand_hc"
1727version = "0.2.0"
1728source = "registry+https://github.com/rust-lang/crates.io-index"
1729checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
1730dependencies = [
1731 "rand_core 0.5.1",
1732]
1733
1734[[package]]
1735name = "regex"
1736version = "1.6.0"
1737source = "registry+https://github.com/rust-lang/crates.io-index"
1738checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
1739dependencies = [
1740 "aho-corasick",
1741 "memchr",
1742 "regex-syntax",
1743]
1744
1745[[package]]
1746name = "regex-syntax"
1747version = "0.6.27"
1748source = "registry+https://github.com/rust-lang/crates.io-index"
1749checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
1750
1751[[package]]
1752name = "rustc_version"
1753version = "0.2.3"
1754source = "registry+https://github.com/rust-lang/crates.io-index"
1755checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
1756dependencies = [
1757 "semver 0.9.0",
1758]
1759
1760[[package]]
1761name = "rustc_version"
1762version = "0.3.3"
1763source = "registry+https://github.com/rust-lang/crates.io-index"
1764checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee"
1765dependencies = [
1766 "semver 0.11.0",
1767]
1768
1769[[package]]
1770name = "ryu"
1771version = "1.0.10"
1772source = "registry+https://github.com/rust-lang/crates.io-index"
1773checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695"
1774
1775[[package]]
1776name = "sanitize-filename"
1777version = "0.4.0"
1778source = "registry+https://github.com/rust-lang/crates.io-index"
1779checksum = "08c502bdb638f1396509467cb0580ef3b29aa2a45c5d43e5d84928241280296c"
1780dependencies = [
1781 "lazy_static",
1782 "regex",
1783]
1784
1785[[package]]
1786name = "schannel"
1787version = "0.1.20"
1788source = "registry+https://github.com/rust-lang/crates.io-index"
1789checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
1790dependencies = [
1791 "lazy_static",
1792 "windows-sys",
1793]
1794
1795[[package]]
1796name = "scopeguard"
1797version = "1.1.0"
1798source = "registry+https://github.com/rust-lang/crates.io-index"
1799checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
1800
1801[[package]]
1802name = "semver"
1803version = "0.9.0"
1804source = "registry+https://github.com/rust-lang/crates.io-index"
1805checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
1806dependencies = [
1807 "semver-parser 0.7.0",
1808]
1809
1810[[package]]
1811name = "semver"
1812version = "0.11.0"
1813source = "registry+https://github.com/rust-lang/crates.io-index"
1814checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6"
1815dependencies = [
1816 "semver-parser 0.10.2",
1817]
1818
1819[[package]]
1820name = "semver-parser"
1821version = "0.7.0"
1822source = "registry+https://github.com/rust-lang/crates.io-index"
1823checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
1824
1825[[package]]
1826name = "semver-parser"
1827version = "0.10.2"
1828source = "registry+https://github.com/rust-lang/crates.io-index"
1829checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7"
1830dependencies = [
1831 "pest",
1832]
1833
1834[[package]]
1835name = "serde"
1836version = "1.0.140"
1837source = "registry+https://github.com/rust-lang/crates.io-index"
1838checksum = "fc855a42c7967b7c369eb5860f7164ef1f6f81c20c7cc1141f2a604e18723b03"
1839dependencies = [
1840 "serde_derive",
1841]
1842
1843[[package]]
1844name = "serde_derive"
1845version = "1.0.140"
1846source = "registry+https://github.com/rust-lang/crates.io-index"
1847checksum = "6f2122636b9fe3b81f1cb25099fcf2d3f542cdb1d45940d56c713158884a05da"
1848dependencies = [
1849 "proc-macro2",
1850 "quote",
1851 "syn",
1852]
1853
1854[[package]]
1855name = "serde_json"
1856version = "1.0.82"
1857source = "registry+https://github.com/rust-lang/crates.io-index"
1858checksum = "82c2c1fdcd807d1098552c5b9a36e425e42e9fbd7c6a37a8425f390f781f7fa7"
1859dependencies = [
1860 "itoa",
1861 "ryu",
1862 "serde",
1863]
1864
1865[[package]]
1866name = "serde_qs"
1867version = "0.8.5"
1868source = "registry+https://github.com/rust-lang/crates.io-index"
1869checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6"
1870dependencies = [
1871 "percent-encoding",
1872 "serde",
1873 "thiserror",
1874]
1875
1876[[package]]
1877name = "serde_urlencoded"
1878version = "0.7.1"
1879source = "registry+https://github.com/rust-lang/crates.io-index"
1880checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1881dependencies = [
1882 "form_urlencoded",
1883 "itoa",
1884 "ryu",
1885 "serde",
1886]
1887
1888[[package]]
1889name = "sha1"
1890version = "0.6.1"
1891source = "registry+https://github.com/rust-lang/crates.io-index"
1892checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770"
1893dependencies = [
1894 "sha1_smol",
1895]
1896
1897[[package]]
1898name = "sha1_smol"
1899version = "1.0.0"
1900source = "registry+https://github.com/rust-lang/crates.io-index"
1901checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
1902
1903[[package]]
1904name = "sha2"
1905version = "0.9.9"
1906source = "registry+https://github.com/rust-lang/crates.io-index"
1907checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
1908dependencies = [
1909 "block-buffer",
1910 "cfg-if",
1911 "cpufeatures",
1912 "digest",
1913 "opaque-debug",
1914]
1915
1916[[package]]
1917name = "sharded-slab"
1918version = "0.1.4"
1919source = "registry+https://github.com/rust-lang/crates.io-index"
1920checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
1921dependencies = [
1922 "lazy_static",
1923]
1924
1925[[package]]
1926name = "slab"
1927version = "0.4.7"
1928source = "registry+https://github.com/rust-lang/crates.io-index"
1929checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
1930dependencies = [
1931 "autocfg",
1932]
1933
1934[[package]]
1935name = "sluice"
1936version = "0.5.5"
1937source = "registry+https://github.com/rust-lang/crates.io-index"
1938checksum = "6d7400c0eff44aa2fcb5e31a5f24ba9716ed90138769e4977a2ba6014ae63eb5"
1939dependencies = [
1940 "async-channel",
1941 "futures-core",
1942 "futures-io",
1943]
1944
1945[[package]]
1946name = "smallvec"
1947version = "1.9.0"
1948source = "registry+https://github.com/rust-lang/crates.io-index"
1949checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
1950
1951[[package]]
1952name = "socket2"
1953version = "0.4.4"
1954source = "registry+https://github.com/rust-lang/crates.io-index"
1955checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
1956dependencies = [
1957 "libc",
1958 "winapi",
1959]
1960
1961[[package]]
1962name = "sourceview5"
1963version = "0.4.2"
1964source = "registry+https://github.com/rust-lang/crates.io-index"
1965checksum = "2c467112d482de39e310fa7ec5537325d13b4744d8ab9a069b7e51f6eb719364"
1966dependencies = [
1967 "bitflags",
1968 "futures-channel",
1969 "futures-core",
1970 "gdk-pixbuf",
1971 "gdk4",
1972 "gio",
1973 "glib",
1974 "gtk4",
1975 "libc",
1976 "pango",
1977 "sourceview5-sys",
1978]
1979
1980[[package]]
1981name = "sourceview5-sys"
1982version = "0.4.2"
1983source = "registry+https://github.com/rust-lang/crates.io-index"
1984checksum = "304ab50228500689437d5a722af97ff5b77376866d655e5326a34069e1bf8d01"
1985dependencies = [
1986 "gdk-pixbuf-sys",
1987 "gdk4-sys",
1988 "gio-sys",
1989 "glib-sys",
1990 "gobject-sys",
1991 "gtk4-sys",
1992 "libc",
1993 "pango-sys",
1994 "system-deps",
1995]
1996
1997[[package]]
1998name = "spinning_top"
1999version = "0.2.4"
2000source = "registry+https://github.com/rust-lang/crates.io-index"
2001checksum = "75adad84ee84b521fb2cca2d4fd0f1dab1d8d026bda3c5bea4ca63b5f9f9293c"
2002dependencies = [
2003 "lock_api",
2004]
2005
2006[[package]]
2007name = "standback"
2008version = "0.2.17"
2009source = "registry+https://github.com/rust-lang/crates.io-index"
2010checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff"
2011dependencies = [
2012 "version_check",
2013]
2014
2015[[package]]
2016name = "static_assertions"
2017version = "1.1.0"
2018source = "registry+https://github.com/rust-lang/crates.io-index"
2019checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2020
2021[[package]]
2022name = "stdweb"
2023version = "0.4.20"
2024source = "registry+https://github.com/rust-lang/crates.io-index"
2025checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5"
2026dependencies = [
2027 "discard",
2028 "rustc_version 0.2.3",
2029 "stdweb-derive",
2030 "stdweb-internal-macros",
2031 "stdweb-internal-runtime",
2032 "wasm-bindgen",
2033]
2034
2035[[package]]
2036name = "stdweb-derive"
2037version = "0.5.3"
2038source = "registry+https://github.com/rust-lang/crates.io-index"
2039checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef"
2040dependencies = [
2041 "proc-macro2",
2042 "quote",
2043 "serde",
2044 "serde_derive",
2045 "syn",
2046]
2047
2048[[package]]
2049name = "stdweb-internal-macros"
2050version = "0.2.9"
2051source = "registry+https://github.com/rust-lang/crates.io-index"
2052checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11"
2053dependencies = [
2054 "base-x",
2055 "proc-macro2",
2056 "quote",
2057 "serde",
2058 "serde_derive",
2059 "serde_json",
2060 "sha1",
2061 "syn",
2062]
2063
2064[[package]]
2065name = "stdweb-internal-runtime"
2066version = "0.1.5"
2067source = "registry+https://github.com/rust-lang/crates.io-index"
2068checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0"
2069
2070[[package]]
2071name = "subtle"
2072version = "2.4.1"
2073source = "registry+https://github.com/rust-lang/crates.io-index"
2074checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
2075
2076[[package]]
2077name = "surf"
2078version = "2.3.2"
2079source = "registry+https://github.com/rust-lang/crates.io-index"
2080checksum = "718b1ae6b50351982dedff021db0def601677f2120938b070eadb10ba4038dd7"
2081dependencies = [
2082 "async-std",
2083 "async-trait",
2084 "cfg-if",
2085 "encoding_rs",
2086 "futures-util",
2087 "getrandom 0.2.7",
2088 "http-client",
2089 "http-types",
2090 "log",
2091 "mime_guess",
2092 "once_cell",
2093 "pin-project-lite",
2094 "serde",
2095 "serde_json",
2096 "web-sys",
2097]
2098
2099[[package]]
2100name = "syn"
2101version = "1.0.98"
2102source = "registry+https://github.com/rust-lang/crates.io-index"
2103checksum = "c50aef8a904de4c23c788f104b7dddc7d6f79c647c7c8ce4cc8f73eb0ca773dd"
2104dependencies = [
2105 "proc-macro2",
2106 "quote",
2107 "unicode-ident",
2108]
2109
2110[[package]]
2111name = "system-deps"
2112version = "6.0.2"
2113source = "registry+https://github.com/rust-lang/crates.io-index"
2114checksum = "a1a45a1c4c9015217e12347f2a411b57ce2c4fc543913b14b6fe40483328e709"
2115dependencies = [
2116 "cfg-expr",
2117 "heck",
2118 "pkg-config",
2119 "toml",
2120 "version-compare",
2121]
2122
2123[[package]]
2124name = "temp-dir"
2125version = "0.1.11"
2126source = "registry+https://github.com/rust-lang/crates.io-index"
2127checksum = "af547b166dd1ea4b472165569fc456cfb6818116f854690b0ff205e636523dab"
2128
2129[[package]]
2130name = "thiserror"
2131version = "1.0.31"
2132source = "registry+https://github.com/rust-lang/crates.io-index"
2133checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a"
2134dependencies = [
2135 "thiserror-impl",
2136]
2137
2138[[package]]
2139name = "thiserror-impl"
2140version = "1.0.31"
2141source = "registry+https://github.com/rust-lang/crates.io-index"
2142checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a"
2143dependencies = [
2144 "proc-macro2",
2145 "quote",
2146 "syn",
2147]
2148
2149[[package]]
2150name = "thread_local"
2151version = "1.1.4"
2152source = "registry+https://github.com/rust-lang/crates.io-index"
2153checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
2154dependencies = [
2155 "once_cell",
2156]
2157
2158[[package]]
2159name = "time"
2160version = "0.2.27"
2161source = "registry+https://github.com/rust-lang/crates.io-index"
2162checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242"
2163dependencies = [
2164 "const_fn",
2165 "libc",
2166 "standback",
2167 "stdweb",
2168 "time-macros",
2169 "version_check",
2170 "winapi",
2171]
2172
2173[[package]]
2174name = "time-macros"
2175version = "0.1.1"
2176source = "registry+https://github.com/rust-lang/crates.io-index"
2177checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1"
2178dependencies = [
2179 "proc-macro-hack",
2180 "time-macros-impl",
2181]
2182
2183[[package]]
2184name = "time-macros-impl"
2185version = "0.1.2"
2186source = "registry+https://github.com/rust-lang/crates.io-index"
2187checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f"
2188dependencies = [
2189 "proc-macro-hack",
2190 "proc-macro2",
2191 "quote",
2192 "standback",
2193 "syn",
2194]
2195
2196[[package]]
2197name = "tinyvec"
2198version = "1.6.0"
2199source = "registry+https://github.com/rust-lang/crates.io-index"
2200checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2201dependencies = [
2202 "tinyvec_macros",
2203]
2204
2205[[package]]
2206name = "tinyvec_macros"
2207version = "0.1.0"
2208source = "registry+https://github.com/rust-lang/crates.io-index"
2209checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2210
2211[[package]]
2212name = "toml"
2213version = "0.5.9"
2214source = "registry+https://github.com/rust-lang/crates.io-index"
2215checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
2216dependencies = [
2217 "serde",
2218]
2219
2220[[package]]
2221name = "tracing"
2222version = "0.1.35"
2223source = "registry+https://github.com/rust-lang/crates.io-index"
2224checksum = "a400e31aa60b9d44a52a8ee0343b5b18566b03a8321e0d321f695cf56e940160"
2225dependencies = [
2226 "cfg-if",
2227 "log",
2228 "pin-project-lite",
2229 "tracing-attributes",
2230 "tracing-core",
2231]
2232
2233[[package]]
2234name = "tracing-attributes"
2235version = "0.1.22"
2236source = "registry+https://github.com/rust-lang/crates.io-index"
2237checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2"
2238dependencies = [
2239 "proc-macro2",
2240 "quote",
2241 "syn",
2242]
2243
2244[[package]]
2245name = "tracing-core"
2246version = "0.1.28"
2247source = "registry+https://github.com/rust-lang/crates.io-index"
2248checksum = "7b7358be39f2f274f322d2aaed611acc57f382e8eb1e5b48cb9ae30933495ce7"
2249dependencies = [
2250 "once_cell",
2251 "valuable",
2252]
2253
2254[[package]]
2255name = "tracing-futures"
2256version = "0.2.5"
2257source = "registry+https://github.com/rust-lang/crates.io-index"
2258checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
2259dependencies = [
2260 "pin-project",
2261 "tracing",
2262]
2263
2264[[package]]
2265name = "tracing-log"
2266version = "0.1.3"
2267source = "registry+https://github.com/rust-lang/crates.io-index"
2268checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
2269dependencies = [
2270 "lazy_static",
2271 "log",
2272 "tracing-core",
2273]
2274
2275[[package]]
2276name = "tracing-subscriber"
2277version = "0.3.15"
2278source = "registry+https://github.com/rust-lang/crates.io-index"
2279checksum = "60db860322da191b40952ad9affe65ea23e7dd6a5c442c2c42865810c6ab8e6b"
2280dependencies = [
2281 "ansi_term",
2282 "sharded-slab",
2283 "smallvec",
2284 "thread_local",
2285 "tracing-core",
2286 "tracing-log",
2287]
2288
2289[[package]]
2290name = "typenum"
2291version = "1.15.0"
2292source = "registry+https://github.com/rust-lang/crates.io-index"
2293checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
2294
2295[[package]]
2296name = "ucd-trie"
2297version = "0.1.4"
2298source = "registry+https://github.com/rust-lang/crates.io-index"
2299checksum = "89570599c4fe5585de2b388aab47e99f7fa4e9238a1399f707a02e356058141c"
2300
2301[[package]]
2302name = "unicase"
2303version = "2.6.0"
2304source = "registry+https://github.com/rust-lang/crates.io-index"
2305checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
2306dependencies = [
2307 "version_check",
2308]
2309
2310[[package]]
2311name = "unicode-bidi"
2312version = "0.3.8"
2313source = "registry+https://github.com/rust-lang/crates.io-index"
2314checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
2315
2316[[package]]
2317name = "unicode-ident"
2318version = "1.0.2"
2319source = "registry+https://github.com/rust-lang/crates.io-index"
2320checksum = "15c61ba63f9235225a22310255a29b806b907c9b8c964bcbd0a2c70f3f2deea7"
2321
2322[[package]]
2323name = "unicode-normalization"
2324version = "0.1.21"
2325source = "registry+https://github.com/rust-lang/crates.io-index"
2326checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6"
2327dependencies = [
2328 "tinyvec",
2329]
2330
2331[[package]]
2332name = "universal-hash"
2333version = "0.4.1"
2334source = "registry+https://github.com/rust-lang/crates.io-index"
2335checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05"
2336dependencies = [
2337 "generic-array",
2338 "subtle",
2339]
2340
2341[[package]]
2342name = "url"
2343version = "2.2.2"
2344source = "registry+https://github.com/rust-lang/crates.io-index"
2345checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
2346dependencies = [
2347 "form_urlencoded",
2348 "idna",
2349 "matches",
2350 "percent-encoding",
2351 "serde",
2352]
2353
2354[[package]]
2355name = "valuable"
2356version = "0.1.0"
2357source = "registry+https://github.com/rust-lang/crates.io-index"
2358checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
2359
2360[[package]]
2361name = "value-bag"
2362version = "1.0.0-alpha.9"
2363source = "registry+https://github.com/rust-lang/crates.io-index"
2364checksum = "2209b78d1249f7e6f3293657c9779fe31ced465df091bbd433a1cf88e916ec55"
2365dependencies = [
2366 "ctor",
2367 "version_check",
2368]
2369
2370[[package]]
2371name = "vcpkg"
2372version = "0.2.15"
2373source = "registry+https://github.com/rust-lang/crates.io-index"
2374checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2375
2376[[package]]
2377name = "version-compare"
2378version = "0.1.0"
2379source = "registry+https://github.com/rust-lang/crates.io-index"
2380checksum = "fe88247b92c1df6b6de80ddc290f3976dbdf2f5f5d3fd049a9fb598c6dd5ca73"
2381
2382[[package]]
2383name = "version_check"
2384version = "0.9.4"
2385source = "registry+https://github.com/rust-lang/crates.io-index"
2386checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2387
2388[[package]]
2389name = "waker-fn"
2390version = "1.1.0"
2391source = "registry+https://github.com/rust-lang/crates.io-index"
2392checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
2393
2394[[package]]
2395name = "wasi"
2396version = "0.9.0+wasi-snapshot-preview1"
2397source = "registry+https://github.com/rust-lang/crates.io-index"
2398checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
2399
2400[[package]]
2401name = "wasi"
2402version = "0.11.0+wasi-snapshot-preview1"
2403source = "registry+https://github.com/rust-lang/crates.io-index"
2404checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2405
2406[[package]]
2407name = "wasm-bindgen"
2408version = "0.2.81"
2409source = "registry+https://github.com/rust-lang/crates.io-index"
2410checksum = "7c53b543413a17a202f4be280a7e5c62a1c69345f5de525ee64f8cfdbc954994"
2411dependencies = [
2412 "cfg-if",
2413 "wasm-bindgen-macro",
2414]
2415
2416[[package]]
2417name = "wasm-bindgen-backend"
2418version = "0.2.81"
2419source = "registry+https://github.com/rust-lang/crates.io-index"
2420checksum = "5491a68ab4500fa6b4d726bd67408630c3dbe9c4fe7bda16d5c82a1fd8c7340a"
2421dependencies = [
2422 "bumpalo",
2423 "lazy_static",
2424 "log",
2425 "proc-macro2",
2426 "quote",
2427 "syn",
2428 "wasm-bindgen-shared",
2429]
2430
2431[[package]]
2432name = "wasm-bindgen-futures"
2433version = "0.4.31"
2434source = "registry+https://github.com/rust-lang/crates.io-index"
2435checksum = "de9a9cec1733468a8c657e57fa2413d2ae2c0129b95e87c5b72b8ace4d13f31f"
2436dependencies = [
2437 "cfg-if",
2438 "js-sys",
2439 "wasm-bindgen",
2440 "web-sys",
2441]
2442
2443[[package]]
2444name = "wasm-bindgen-macro"
2445version = "0.2.81"
2446source = "registry+https://github.com/rust-lang/crates.io-index"
2447checksum = "c441e177922bc58f1e12c022624b6216378e5febc2f0533e41ba443d505b80aa"
2448dependencies = [
2449 "quote",
2450 "wasm-bindgen-macro-support",
2451]
2452
2453[[package]]
2454name = "wasm-bindgen-macro-support"
2455version = "0.2.81"
2456source = "registry+https://github.com/rust-lang/crates.io-index"
2457checksum = "7d94ac45fcf608c1f45ef53e748d35660f168490c10b23704c7779ab8f5c3048"
2458dependencies = [
2459 "proc-macro2",
2460 "quote",
2461 "syn",
2462 "wasm-bindgen-backend",
2463 "wasm-bindgen-shared",
2464]
2465
2466[[package]]
2467name = "wasm-bindgen-shared"
2468version = "0.2.81"
2469source = "registry+https://github.com/rust-lang/crates.io-index"
2470checksum = "6a89911bd99e5f3659ec4acf9c4d93b0a90fe4a2a11f15328472058edc5261be"
2471
2472[[package]]
2473name = "web-sys"
2474version = "0.3.58"
2475source = "registry+https://github.com/rust-lang/crates.io-index"
2476checksum = "2fed94beee57daf8dd7d51f2b15dc2bcde92d7a72304cdf662a4371008b71b90"
2477dependencies = [
2478 "js-sys",
2479 "wasm-bindgen",
2480]
2481
2482[[package]]
2483name = "wepoll-ffi"
2484version = "0.1.2"
2485source = "registry+https://github.com/rust-lang/crates.io-index"
2486checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb"
2487dependencies = [
2488 "cc",
2489]
2490
2491[[package]]
2492name = "winapi"
2493version = "0.3.9"
2494source = "registry+https://github.com/rust-lang/crates.io-index"
2495checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2496dependencies = [
2497 "winapi-i686-pc-windows-gnu",
2498 "winapi-x86_64-pc-windows-gnu",
2499]
2500
2501[[package]]
2502name = "winapi-i686-pc-windows-gnu"
2503version = "0.4.0"
2504source = "registry+https://github.com/rust-lang/crates.io-index"
2505checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2506
2507[[package]]
2508name = "winapi-x86_64-pc-windows-gnu"
2509version = "0.4.0"
2510source = "registry+https://github.com/rust-lang/crates.io-index"
2511checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2512
2513[[package]]
2514name = "windows-sys"
2515version = "0.36.1"
2516source = "registry+https://github.com/rust-lang/crates.io-index"
2517checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
2518dependencies = [
2519 "windows_aarch64_msvc",
2520 "windows_i686_gnu",
2521 "windows_i686_msvc",
2522 "windows_x86_64_gnu",
2523 "windows_x86_64_msvc",
2524]
2525
2526[[package]]
2527name = "windows_aarch64_msvc"
2528version = "0.36.1"
2529source = "registry+https://github.com/rust-lang/crates.io-index"
2530checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
2531
2532[[package]]
2533name = "windows_i686_gnu"
2534version = "0.36.1"
2535source = "registry+https://github.com/rust-lang/crates.io-index"
2536checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
2537
2538[[package]]
2539name = "windows_i686_msvc"
2540version = "0.36.1"
2541source = "registry+https://github.com/rust-lang/crates.io-index"
2542checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
2543
2544[[package]]
2545name = "windows_x86_64_gnu"
2546version = "0.36.1"
2547source = "registry+https://github.com/rust-lang/crates.io-index"
2548checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
2549
2550[[package]]
2551name = "windows_x86_64_msvc"
2552version = "0.36.1"
2553source = "registry+https://github.com/rust-lang/crates.io-index"
2554checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"