macroblog.rs @ ea058a851098bf81cb645249e02d26a8c253db90

  1# This file is automatically @generated by Cargo.
  2# It is not intended for manual editing.
  3version = 3
  4
  5[[package]]
  6name = "aho-corasick"
  7version = "0.7.18"
  8source = "registry+https://github.com/rust-lang/crates.io-index"
  9checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
 10dependencies = [
 11 "memchr",
 12]
 13
 14[[package]]
 15name = "autocfg"
 16version = "1.1.0"
 17source = "registry+https://github.com/rust-lang/crates.io-index"
 18checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
 19
 20[[package]]
 21name = "bitflags"
 22version = "1.3.2"
 23source = "registry+https://github.com/rust-lang/crates.io-index"
 24checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
 25
 26[[package]]
 27name = "block-buffer"
 28version = "0.9.0"
 29source = "registry+https://github.com/rust-lang/crates.io-index"
 30checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
 31dependencies = [
 32 "generic-array",
 33]
 34
 35[[package]]
 36name = "bytes"
 37version = "1.1.0"
 38source = "registry+https://github.com/rust-lang/crates.io-index"
 39checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
 40
 41[[package]]
 42name = "cfg-if"
 43version = "1.0.0"
 44source = "registry+https://github.com/rust-lang/crates.io-index"
 45checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
 46
 47[[package]]
 48name = "cpufeatures"
 49version = "0.2.2"
 50source = "registry+https://github.com/rust-lang/crates.io-index"
 51checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
 52dependencies = [
 53 "libc",
 54]
 55
 56[[package]]
 57name = "digest"
 58version = "0.9.0"
 59source = "registry+https://github.com/rust-lang/crates.io-index"
 60checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
 61dependencies = [
 62 "generic-array",
 63]
 64
 65[[package]]
 66name = "filetime"
 67version = "0.2.16"
 68source = "registry+https://github.com/rust-lang/crates.io-index"
 69checksum = "c0408e2626025178a6a7f7ffc05a25bc47103229f19c113755de7bf63816290c"
 70dependencies = [
 71 "cfg-if",
 72 "libc",
 73 "redox_syscall",
 74 "winapi",
 75]
 76
 77[[package]]
 78name = "fnv"
 79version = "1.0.7"
 80source = "registry+https://github.com/rust-lang/crates.io-index"
 81checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
 82
 83[[package]]
 84name = "futures-channel"
 85version = "0.3.21"
 86source = "registry+https://github.com/rust-lang/crates.io-index"
 87checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
 88dependencies = [
 89 "futures-core",
 90]
 91
 92[[package]]
 93name = "futures-core"
 94version = "0.3.21"
 95source = "registry+https://github.com/rust-lang/crates.io-index"
 96checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
 97
 98[[package]]
 99name = "futures-sink"
100version = "0.3.21"
101source = "registry+https://github.com/rust-lang/crates.io-index"
102checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
103
104[[package]]
105name = "futures-task"
106version = "0.3.21"
107source = "registry+https://github.com/rust-lang/crates.io-index"
108checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
109
110[[package]]
111name = "futures-util"
112version = "0.3.21"
113source = "registry+https://github.com/rust-lang/crates.io-index"
114checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
115dependencies = [
116 "futures-core",
117 "futures-task",
118 "pin-project-lite",
119 "pin-utils",
120]
121
122[[package]]
123name = "generic-array"
124version = "0.14.5"
125source = "registry+https://github.com/rust-lang/crates.io-index"
126checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
127dependencies = [
128 "typenum",
129 "version_check",
130]
131
132[[package]]
133name = "h2"
134version = "0.3.13"
135source = "registry+https://github.com/rust-lang/crates.io-index"
136checksum = "37a82c6d637fc9515a4694bbf1cb2457b79d81ce52b3108bdeea58b07dd34a57"
137dependencies = [
138 "bytes",
139 "fnv",
140 "futures-core",
141 "futures-sink",
142 "futures-util",
143 "http",
144 "indexmap",
145 "slab",
146 "tokio",
147 "tokio-util",
148 "tracing",
149]
150
151[[package]]
152name = "hashbrown"
153version = "0.11.2"
154source = "registry+https://github.com/rust-lang/crates.io-index"
155checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
156
157[[package]]
158name = "hermit-abi"
159version = "0.1.19"
160source = "registry+https://github.com/rust-lang/crates.io-index"
161checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
162dependencies = [
163 "libc",
164]
165
166[[package]]
167name = "home"
168version = "0.5.3"
169source = "registry+https://github.com/rust-lang/crates.io-index"
170checksum = "2456aef2e6b6a9784192ae780c0f15bc57df0e918585282325e8c8ac27737654"
171dependencies = [
172 "winapi",
173]
174
175[[package]]
176name = "http"
177version = "0.2.7"
178source = "registry+https://github.com/rust-lang/crates.io-index"
179checksum = "ff8670570af52249509a86f5e3e18a08c60b177071826898fde8997cf5f6bfbb"
180dependencies = [
181 "bytes",
182 "fnv",
183 "itoa",
184]
185
186[[package]]
187name = "http-body"
188version = "0.4.4"
189source = "registry+https://github.com/rust-lang/crates.io-index"
190checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6"
191dependencies = [
192 "bytes",
193 "http",
194 "pin-project-lite",
195]
196
197[[package]]
198name = "httparse"
199version = "1.7.1"
200source = "registry+https://github.com/rust-lang/crates.io-index"
201checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c"
202
203[[package]]
204name = "httpdate"
205version = "1.0.2"
206source = "registry+https://github.com/rust-lang/crates.io-index"
207checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
208
209[[package]]
210name = "hyper"
211version = "0.14.18"
212source = "registry+https://github.com/rust-lang/crates.io-index"
213checksum = "b26ae0a80afebe130861d90abf98e3814a4f28a4c6ffeb5ab8ebb2be311e0ef2"
214dependencies = [
215 "bytes",
216 "futures-channel",
217 "futures-core",
218 "futures-util",
219 "h2",
220 "http",
221 "http-body",
222 "httparse",
223 "httpdate",
224 "itoa",
225 "pin-project-lite",
226 "socket2",
227 "tokio",
228 "tower-service",
229 "tracing",
230 "want",
231]
232
233[[package]]
234name = "indexmap"
235version = "1.8.1"
236source = "registry+https://github.com/rust-lang/crates.io-index"
237checksum = "0f647032dfaa1f8b6dc29bd3edb7bbef4861b8b8007ebb118d6db284fd59f6ee"
238dependencies = [
239 "autocfg",
240 "hashbrown",
241]
242
243[[package]]
244name = "itoa"
245version = "1.0.1"
246source = "registry+https://github.com/rust-lang/crates.io-index"
247checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
248
249[[package]]
250name = "itoap"
251version = "1.0.1"
252source = "registry+https://github.com/rust-lang/crates.io-index"
253checksum = "9028f49264629065d057f340a86acb84867925865f73bbf8d47b4d149a7e88b8"
254
255[[package]]
256name = "lazy_static"
257version = "1.4.0"
258source = "registry+https://github.com/rust-lang/crates.io-index"
259checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
260
261[[package]]
262name = "libc"
263version = "0.2.125"
264source = "registry+https://github.com/rust-lang/crates.io-index"
265checksum = "5916d2ae698f6de9bfb891ad7a8d65c09d232dc58cc4ac433c7da3b2fd84bc2b"
266
267[[package]]
268name = "lock_api"
269version = "0.4.7"
270source = "registry+https://github.com/rust-lang/crates.io-index"
271checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
272dependencies = [
273 "autocfg",
274 "scopeguard",
275]
276
277[[package]]
278name = "log"
279version = "0.4.17"
280source = "registry+https://github.com/rust-lang/crates.io-index"
281checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
282dependencies = [
283 "cfg-if",
284]
285
286[[package]]
287name = "macroblog"
288version = "0.1.0"
289dependencies = [
290 "hyper",
291 "regex",
292 "rust-embed",
293 "sailfish",
294 "tokio",
295]
296
297[[package]]
298name = "memchr"
299version = "2.5.0"
300source = "registry+https://github.com/rust-lang/crates.io-index"
301checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
302
303[[package]]
304name = "mio"
305version = "0.8.2"
306source = "registry+https://github.com/rust-lang/crates.io-index"
307checksum = "52da4364ffb0e4fe33a9841a98a3f3014fb964045ce4f7a45a398243c8d6b0c9"
308dependencies = [
309 "libc",
310 "log",
311 "miow",
312 "ntapi",
313 "wasi",
314 "winapi",
315]
316
317[[package]]
318name = "miow"
319version = "0.3.7"
320source = "registry+https://github.com/rust-lang/crates.io-index"
321checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
322dependencies = [
323 "winapi",
324]
325
326[[package]]
327name = "ntapi"
328version = "0.3.7"
329source = "registry+https://github.com/rust-lang/crates.io-index"
330checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
331dependencies = [
332 "winapi",
333]
334
335[[package]]
336name = "num_cpus"
337version = "1.13.1"
338source = "registry+https://github.com/rust-lang/crates.io-index"
339checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
340dependencies = [
341 "hermit-abi",
342 "libc",
343]
344
345[[package]]
346name = "once_cell"
347version = "1.10.0"
348source = "registry+https://github.com/rust-lang/crates.io-index"
349checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9"
350
351[[package]]
352name = "opaque-debug"
353version = "0.3.0"
354source = "registry+https://github.com/rust-lang/crates.io-index"
355checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
356
357[[package]]
358name = "parking_lot"
359version = "0.12.0"
360source = "registry+https://github.com/rust-lang/crates.io-index"
361checksum = "87f5ec2493a61ac0506c0f4199f99070cbe83857b0337006a30f3e6719b8ef58"
362dependencies = [
363 "lock_api",
364 "parking_lot_core",
365]
366
367[[package]]
368name = "parking_lot_core"
369version = "0.9.3"
370source = "registry+https://github.com/rust-lang/crates.io-index"
371checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
372dependencies = [
373 "cfg-if",
374 "libc",
375 "redox_syscall",
376 "smallvec",
377 "windows-sys",
378]
379
380[[package]]
381name = "pin-project-lite"
382version = "0.2.9"
383source = "registry+https://github.com/rust-lang/crates.io-index"
384checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
385
386[[package]]
387name = "pin-utils"
388version = "0.1.0"
389source = "registry+https://github.com/rust-lang/crates.io-index"
390checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
391
392[[package]]
393name = "proc-macro2"
394version = "1.0.36"
395source = "registry+https://github.com/rust-lang/crates.io-index"
396checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029"
397dependencies = [
398 "unicode-xid",
399]
400
401[[package]]
402name = "quote"
403version = "1.0.18"
404source = "registry+https://github.com/rust-lang/crates.io-index"
405checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1"
406dependencies = [
407 "proc-macro2",
408]
409
410[[package]]
411name = "redox_syscall"
412version = "0.2.13"
413source = "registry+https://github.com/rust-lang/crates.io-index"
414checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
415dependencies = [
416 "bitflags",
417]
418
419[[package]]
420name = "regex"
421version = "1.5.5"
422source = "registry+https://github.com/rust-lang/crates.io-index"
423checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286"
424dependencies = [
425 "aho-corasick",
426 "memchr",
427 "regex-syntax",
428]
429
430[[package]]
431name = "regex-syntax"
432version = "0.6.25"
433source = "registry+https://github.com/rust-lang/crates.io-index"
434checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
435
436[[package]]
437name = "rust-embed"
438version = "6.4.0"
439source = "registry+https://github.com/rust-lang/crates.io-index"
440checksum = "9a17e5ac65b318f397182ae94e532da0ba56b88dd1200b774715d36c4943b1c3"
441dependencies = [
442 "rust-embed-impl",
443 "rust-embed-utils",
444 "walkdir",
445]
446
447[[package]]
448name = "rust-embed-impl"
449version = "6.2.0"
450source = "registry+https://github.com/rust-lang/crates.io-index"
451checksum = "94e763e24ba2bf0c72bc6be883f967f794a019fafd1b86ba1daff9c91a7edd30"
452dependencies = [
453 "proc-macro2",
454 "quote",
455 "rust-embed-utils",
456 "syn",
457 "walkdir",
458]
459
460[[package]]
461name = "rust-embed-utils"
462version = "7.2.0"
463source = "registry+https://github.com/rust-lang/crates.io-index"
464checksum = "756feca3afcbb1487a1d01f4ecd94cf8ec98ea074c55a69e7136d29fb6166029"
465dependencies = [
466 "sha2",
467 "walkdir",
468]
469
470[[package]]
471name = "ryu"
472version = "1.0.9"
473source = "registry+https://github.com/rust-lang/crates.io-index"
474checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
475
476[[package]]
477name = "sailfish"
478version = "0.4.0"
479source = "registry+https://github.com/rust-lang/crates.io-index"
480checksum = "948a7edfc2f03d7c58a097dda25ed29440a72e8528894a6e182fe9171195fed1"
481dependencies = [
482 "itoap",
483 "ryu",
484 "sailfish-macros",
485 "version_check",
486]
487
488[[package]]
489name = "sailfish-compiler"
490version = "0.4.0"
491source = "registry+https://github.com/rust-lang/crates.io-index"
492checksum = "3f0a01133d6ce146020e6416ac6a823f813f1cbb30ff77548b4fa20749524947"
493dependencies = [
494 "filetime",
495 "home",
496 "memchr",
497 "proc-macro2",
498 "quote",
499 "serde",
500 "syn",
501 "toml",
502]
503
504[[package]]
505name = "sailfish-macros"
506version = "0.4.0"
507source = "registry+https://github.com/rust-lang/crates.io-index"
508checksum = "86326c1f1dce0b316e0a47071f683b185417dc64e1a704380b5c706b09e871b1"
509dependencies = [
510 "proc-macro2",
511 "sailfish-compiler",
512]
513
514[[package]]
515name = "same-file"
516version = "1.0.6"
517source = "registry+https://github.com/rust-lang/crates.io-index"
518checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
519dependencies = [
520 "winapi-util",
521]
522
523[[package]]
524name = "scopeguard"
525version = "1.1.0"
526source = "registry+https://github.com/rust-lang/crates.io-index"
527checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
528
529[[package]]
530name = "serde"
531version = "1.0.137"
532source = "registry+https://github.com/rust-lang/crates.io-index"
533checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1"
534dependencies = [
535 "serde_derive",
536]
537
538[[package]]
539name = "serde_derive"
540version = "1.0.137"
541source = "registry+https://github.com/rust-lang/crates.io-index"
542checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be"
543dependencies = [
544 "proc-macro2",
545 "quote",
546 "syn",
547]
548
549[[package]]
550name = "sha2"
551version = "0.9.9"
552source = "registry+https://github.com/rust-lang/crates.io-index"
553checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
554dependencies = [
555 "block-buffer",
556 "cfg-if",
557 "cpufeatures",
558 "digest",
559 "opaque-debug",
560]
561
562[[package]]
563name = "signal-hook-registry"
564version = "1.4.0"
565source = "registry+https://github.com/rust-lang/crates.io-index"
566checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
567dependencies = [
568 "libc",
569]
570
571[[package]]
572name = "slab"
573version = "0.4.6"
574source = "registry+https://github.com/rust-lang/crates.io-index"
575checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
576
577[[package]]
578name = "smallvec"
579version = "1.8.0"
580source = "registry+https://github.com/rust-lang/crates.io-index"
581checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
582
583[[package]]
584name = "socket2"
585version = "0.4.4"
586source = "registry+https://github.com/rust-lang/crates.io-index"
587checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
588dependencies = [
589 "libc",
590 "winapi",
591]
592
593[[package]]
594name = "syn"
595version = "1.0.92"
596source = "registry+https://github.com/rust-lang/crates.io-index"
597checksum = "7ff7c592601f11445996a06f8ad0c27f094a58857c2f89e97974ab9235b92c52"
598dependencies = [
599 "proc-macro2",
600 "quote",
601 "unicode-xid",
602]
603
604[[package]]
605name = "tokio"
606version = "1.18.1"
607source = "registry+https://github.com/rust-lang/crates.io-index"
608checksum = "dce653fb475565de9f6fb0614b28bca8df2c430c0cf84bcd9c843f15de5414cc"
609dependencies = [
610 "bytes",
611 "libc",
612 "memchr",
613 "mio",
614 "num_cpus",
615 "once_cell",
616 "parking_lot",
617 "pin-project-lite",
618 "signal-hook-registry",
619 "socket2",
620 "tokio-macros",
621 "winapi",
622]
623
624[[package]]
625name = "tokio-macros"
626version = "1.7.0"
627source = "registry+https://github.com/rust-lang/crates.io-index"
628checksum = "b557f72f448c511a979e2564e55d74e6c4432fc96ff4f6241bc6bded342643b7"
629dependencies = [
630 "proc-macro2",
631 "quote",
632 "syn",
633]
634
635[[package]]
636name = "tokio-util"
637version = "0.7.1"
638source = "registry+https://github.com/rust-lang/crates.io-index"
639checksum = "0edfdeb067411dba2044da6d1cb2df793dd35add7888d73c16e3381ded401764"
640dependencies = [
641 "bytes",
642 "futures-core",
643 "futures-sink",
644 "pin-project-lite",
645 "tokio",
646 "tracing",
647]
648
649[[package]]
650name = "toml"
651version = "0.5.9"
652source = "registry+https://github.com/rust-lang/crates.io-index"
653checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
654dependencies = [
655 "serde",
656]
657
658[[package]]
659name = "tower-service"
660version = "0.3.1"
661source = "registry+https://github.com/rust-lang/crates.io-index"
662checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
663
664[[package]]
665name = "tracing"
666version = "0.1.34"
667source = "registry+https://github.com/rust-lang/crates.io-index"
668checksum = "5d0ecdcb44a79f0fe9844f0c4f33a342cbcbb5117de8001e6ba0dc2351327d09"
669dependencies = [
670 "cfg-if",
671 "pin-project-lite",
672 "tracing-attributes",
673 "tracing-core",
674]
675
676[[package]]
677name = "tracing-attributes"
678version = "0.1.21"
679source = "registry+https://github.com/rust-lang/crates.io-index"
680checksum = "cc6b8ad3567499f98a1db7a752b07a7c8c7c7c34c332ec00effb2b0027974b7c"
681dependencies = [
682 "proc-macro2",
683 "quote",
684 "syn",
685]
686
687[[package]]
688name = "tracing-core"
689version = "0.1.26"
690source = "registry+https://github.com/rust-lang/crates.io-index"
691checksum = "f54c8ca710e81886d498c2fd3331b56c93aa248d49de2222ad2742247c60072f"
692dependencies = [
693 "lazy_static",
694]
695
696[[package]]
697name = "try-lock"
698version = "0.2.3"
699source = "registry+https://github.com/rust-lang/crates.io-index"
700checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
701
702[[package]]
703name = "typenum"
704version = "1.15.0"
705source = "registry+https://github.com/rust-lang/crates.io-index"
706checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
707
708[[package]]
709name = "unicode-xid"
710version = "0.2.3"
711source = "registry+https://github.com/rust-lang/crates.io-index"
712checksum = "957e51f3646910546462e67d5f7599b9e4fb8acdd304b087a6494730f9eebf04"
713
714[[package]]
715name = "version_check"
716version = "0.9.4"
717source = "registry+https://github.com/rust-lang/crates.io-index"
718checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
719
720[[package]]
721name = "walkdir"
722version = "2.3.2"
723source = "registry+https://github.com/rust-lang/crates.io-index"
724checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
725dependencies = [
726 "same-file",
727 "winapi",
728 "winapi-util",
729]
730
731[[package]]
732name = "want"
733version = "0.3.0"
734source = "registry+https://github.com/rust-lang/crates.io-index"
735checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
736dependencies = [
737 "log",
738 "try-lock",
739]
740
741[[package]]
742name = "wasi"
743version = "0.11.0+wasi-snapshot-preview1"
744source = "registry+https://github.com/rust-lang/crates.io-index"
745checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
746
747[[package]]
748name = "winapi"
749version = "0.3.9"
750source = "registry+https://github.com/rust-lang/crates.io-index"
751checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
752dependencies = [
753 "winapi-i686-pc-windows-gnu",
754 "winapi-x86_64-pc-windows-gnu",
755]
756
757[[package]]
758name = "winapi-i686-pc-windows-gnu"
759version = "0.4.0"
760source = "registry+https://github.com/rust-lang/crates.io-index"
761checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
762
763[[package]]
764name = "winapi-util"
765version = "0.1.5"
766source = "registry+https://github.com/rust-lang/crates.io-index"
767checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
768dependencies = [
769 "winapi",
770]
771
772[[package]]
773name = "winapi-x86_64-pc-windows-gnu"
774version = "0.4.0"
775source = "registry+https://github.com/rust-lang/crates.io-index"
776checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
777
778[[package]]
779name = "windows-sys"
780version = "0.36.1"
781source = "registry+https://github.com/rust-lang/crates.io-index"
782checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
783dependencies = [
784 "windows_aarch64_msvc",
785 "windows_i686_gnu",
786 "windows_i686_msvc",
787 "windows_x86_64_gnu",
788 "windows_x86_64_msvc",
789]
790
791[[package]]
792name = "windows_aarch64_msvc"
793version = "0.36.1"
794source = "registry+https://github.com/rust-lang/crates.io-index"
795checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
796
797[[package]]
798name = "windows_i686_gnu"
799version = "0.36.1"
800source = "registry+https://github.com/rust-lang/crates.io-index"
801checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
802
803[[package]]
804name = "windows_i686_msvc"
805version = "0.36.1"
806source = "registry+https://github.com/rust-lang/crates.io-index"
807checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
808
809[[package]]
810name = "windows_x86_64_gnu"
811version = "0.36.1"
812source = "registry+https://github.com/rust-lang/crates.io-index"
813checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
814
815[[package]]
816name = "windows_x86_64_msvc"
817version = "0.36.1"
818source = "registry+https://github.com/rust-lang/crates.io-index"
819checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"