1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "addr2line" 7version = "0.17.0" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b" 10dependencies = [ 11 "gimli", 12] 13 14[[package]] 15name = "adler" 16version = "1.0.2" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 20[[package]] 21name = "aho-corasick" 22version = "0.7.18" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" 25dependencies = [ 26 "memchr", 27] 28 29[[package]] 30name = "ansi_term" 31version = "0.11.0" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" 34dependencies = [ 35 "winapi", 36] 37 38[[package]] 39name = "anyhow" 40version = "1.0.47" 41source = "registry+https://github.com/rust-lang/crates.io-index" 42checksum = "38d9ff5d688f1c13395289f67db01d4826b46dd694e7580accdc3e8430f2d98e" 43 44[[package]] 45name = "atty" 46version = "0.2.14" 47source = "registry+https://github.com/rust-lang/crates.io-index" 48checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 49dependencies = [ 50 "hermit-abi", 51 "libc", 52 "winapi", 53] 54 55[[package]] 56name = "autocfg" 57version = "1.0.1" 58source = "registry+https://github.com/rust-lang/crates.io-index" 59checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" 60 61[[package]] 62name = "backtrace" 63version = "0.3.63" 64source = "registry+https://github.com/rust-lang/crates.io-index" 65checksum = "321629d8ba6513061f26707241fa9bc89524ff1cd7a915a97ef0c62c666ce1b6" 66dependencies = [ 67 "addr2line", 68 "cc", 69 "cfg-if", 70 "libc", 71 "miniz_oxide", 72 "object", 73 "rustc-demangle", 74] 75 76[[package]] 77name = "bitflags" 78version = "1.3.2" 79source = "registry+https://github.com/rust-lang/crates.io-index" 80checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 81 82[[package]] 83name = "bitflags" 84version = "2.4.0" 85source = "registry+https://github.com/rust-lang/crates.io-index" 86checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" 87 88[[package]] 89name = "bstr" 90version = "0.2.17" 91source = "registry+https://github.com/rust-lang/crates.io-index" 92checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" 93dependencies = [ 94 "memchr", 95] 96 97[[package]] 98name = "cc" 99version = "1.0.72" 100source = "registry+https://github.com/rust-lang/crates.io-index" 101checksum = "22a9137b95ea06864e018375b72adfb7db6e6f68cfc8df5a04d00288050485ee" 102 103[[package]] 104name = "cfg-if" 105version = "1.0.0" 106source = "registry+https://github.com/rust-lang/crates.io-index" 107checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 108 109[[package]] 110name = "clap" 111version = "2.33.3" 112source = "registry+https://github.com/rust-lang/crates.io-index" 113checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002" 114dependencies = [ 115 "ansi_term", 116 "atty", 117 "bitflags 1.3.2", 118 "strsim", 119 "textwrap", 120 "unicode-width", 121 "vec_map", 122] 123 124[[package]] 125name = "clap-verbosity-flag" 126version = "0.2.0" 127source = "registry+https://github.com/rust-lang/crates.io-index" 128checksum = "bda14f5323b2b747f52908c5b7b8af7790784088bc7c2957a11695e39ad476dc" 129dependencies = [ 130 "env_logger", 131 "failure", 132 "log", 133 "structopt 0.2.18", 134] 135 136[[package]] 137name = "crossbeam-channel" 138version = "0.5.1" 139source = "registry+https://github.com/rust-lang/crates.io-index" 140checksum = "06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4" 141dependencies = [ 142 "cfg-if", 143 "crossbeam-utils", 144] 145 146[[package]] 147name = "crossbeam-deque" 148version = "0.8.1" 149source = "registry+https://github.com/rust-lang/crates.io-index" 150checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e" 151dependencies = [ 152 "cfg-if", 153 "crossbeam-epoch", 154 "crossbeam-utils", 155] 156 157[[package]] 158name = "crossbeam-epoch" 159version = "0.9.5" 160source = "registry+https://github.com/rust-lang/crates.io-index" 161checksum = "4ec02e091aa634e2c3ada4a392989e7c3116673ef0ac5b72232439094d73b7fd" 162dependencies = [ 163 "cfg-if", 164 "crossbeam-utils", 165 "lazy_static", 166 "memoffset", 167 "scopeguard", 168] 169 170[[package]] 171name = "crossbeam-utils" 172version = "0.8.5" 173source = "registry+https://github.com/rust-lang/crates.io-index" 174checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db" 175dependencies = [ 176 "cfg-if", 177 "lazy_static", 178] 179 180[[package]] 181name = "either" 182version = "1.6.1" 183source = "registry+https://github.com/rust-lang/crates.io-index" 184checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" 185 186[[package]] 187name = "env_logger" 188version = "0.5.13" 189source = "registry+https://github.com/rust-lang/crates.io-index" 190checksum = "15b0a4d2e39f8420210be8b27eeda28029729e2fd4291019455016c348240c38" 191dependencies = [ 192 "atty", 193 "humantime", 194 "log", 195 "regex", 196 "termcolor", 197] 198 199[[package]] 200name = "exitfailure" 201version = "0.5.1" 202source = "registry+https://github.com/rust-lang/crates.io-index" 203checksum = "2ff5bd832af37f366c6c194d813a11cd90ac484f124f079294f28e357ae40515" 204dependencies = [ 205 "failure", 206] 207 208[[package]] 209name = "failure" 210version = "0.1.8" 211source = "registry+https://github.com/rust-lang/crates.io-index" 212checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86" 213dependencies = [ 214 "backtrace", 215 "failure_derive", 216] 217 218[[package]] 219name = "failure_derive" 220version = "0.1.8" 221source = "registry+https://github.com/rust-lang/crates.io-index" 222checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4" 223dependencies = [ 224 "proc-macro2 1.0.32", 225 "quote 1.0.10", 226 "syn 1.0.81", 227 "synstructure", 228] 229 230[[package]] 231name = "fnv" 232version = "1.0.7" 233source = "registry+https://github.com/rust-lang/crates.io-index" 234checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 235 236[[package]] 237name = "futures" 238version = "0.3.17" 239source = "registry+https://github.com/rust-lang/crates.io-index" 240checksum = "a12aa0eb539080d55c3f2d45a67c3b58b6b0773c1a3ca2dfec66d58c97fd66ca" 241dependencies = [ 242 "futures-channel", 243 "futures-core", 244 "futures-executor", 245 "futures-io", 246 "futures-sink", 247 "futures-task", 248 "futures-util", 249] 250 251[[package]] 252name = "futures-channel" 253version = "0.3.17" 254source = "registry+https://github.com/rust-lang/crates.io-index" 255checksum = "5da6ba8c3bb3c165d3c7319fc1cc8304facf1fb8db99c5de877183c08a273888" 256dependencies = [ 257 "futures-core", 258 "futures-sink", 259] 260 261[[package]] 262name = "futures-core" 263version = "0.3.17" 264source = "registry+https://github.com/rust-lang/crates.io-index" 265checksum = "88d1c26957f23603395cd326b0ffe64124b818f4449552f960d815cfba83a53d" 266 267[[package]] 268name = "futures-executor" 269version = "0.3.17" 270source = "registry+https://github.com/rust-lang/crates.io-index" 271checksum = "45025be030969d763025784f7f355043dc6bc74093e4ecc5000ca4dc50d8745c" 272dependencies = [ 273 "futures-core", 274 "futures-task", 275 "futures-util", 276] 277 278[[package]] 279name = "futures-io" 280version = "0.3.17" 281source = "registry+https://github.com/rust-lang/crates.io-index" 282checksum = "522de2a0fe3e380f1bc577ba0474108faf3f6b18321dbf60b3b9c39a75073377" 283 284[[package]] 285name = "futures-macro" 286version = "0.3.17" 287source = "registry+https://github.com/rust-lang/crates.io-index" 288checksum = "18e4a4b95cea4b4ccbcf1c5675ca7c4ee4e9e75eb79944d07defde18068f79bb" 289dependencies = [ 290 "autocfg", 291 "proc-macro-hack", 292 "proc-macro2 1.0.32", 293 "quote 1.0.10", 294 "syn 1.0.81", 295] 296 297[[package]] 298name = "futures-sink" 299version = "0.3.17" 300source = "registry+https://github.com/rust-lang/crates.io-index" 301checksum = "36ea153c13024fe480590b3e3d4cad89a0cfacecc24577b68f86c6ced9c2bc11" 302 303[[package]] 304name = "futures-task" 305version = "0.3.17" 306source = "registry+https://github.com/rust-lang/crates.io-index" 307checksum = "1d3d00f4eddb73e498a54394f228cd55853bdf059259e8e7bc6e69d408892e99" 308 309[[package]] 310name = "futures-util" 311version = "0.3.17" 312source = "registry+https://github.com/rust-lang/crates.io-index" 313checksum = "36568465210a3a6ee45e1f165136d68671471a501e632e9a98d96872222b5481" 314dependencies = [ 315 "autocfg", 316 "futures-channel", 317 "futures-core", 318 "futures-io", 319 "futures-macro", 320 "futures-sink", 321 "futures-task", 322 "memchr", 323 "pin-project-lite", 324 "pin-utils", 325 "proc-macro-hack", 326 "proc-macro-nested", 327 "slab", 328] 329 330[[package]] 331name = "gimli" 332version = "0.26.1" 333source = "registry+https://github.com/rust-lang/crates.io-index" 334checksum = "78cc372d058dcf6d5ecd98510e7fbc9e5aec4d21de70f65fea8fecebcd881bd4" 335 336[[package]] 337name = "globset" 338version = "0.4.8" 339source = "registry+https://github.com/rust-lang/crates.io-index" 340checksum = "10463d9ff00a2a068db14231982f5132edebad0d7660cd956a1c30292dbcbfbd" 341dependencies = [ 342 "aho-corasick", 343 "bstr", 344 "fnv", 345 "log", 346 "regex", 347] 348 349[[package]] 350name = "globwalk" 351version = "0.3.1" 352source = "registry+https://github.com/rust-lang/crates.io-index" 353checksum = "ce5d04da8cf35b507b2cbec92bbf2d5085292d07cd87637994fd437fe1617bbb" 354dependencies = [ 355 "ignore", 356 "walkdir", 357] 358 359[[package]] 360name = "gpio-cdev" 361version = "0.6.0" 362dependencies = [ 363 "anyhow", 364 "bitflags 2.4.0", 365 "futures", 366 "libc", 367 "nix", 368 "quicli", 369 "structopt 0.3.25", 370 "tokio", 371] 372 373[[package]] 374name = "heck" 375version = "0.3.3" 376source = "registry+https://github.com/rust-lang/crates.io-index" 377checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" 378dependencies = [ 379 "unicode-segmentation", 380] 381 382[[package]] 383name = "hermit-abi" 384version = "0.1.19" 385source = "registry+https://github.com/rust-lang/crates.io-index" 386checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 387dependencies = [ 388 "libc", 389] 390 391[[package]] 392name = "humantime" 393version = "1.3.0" 394source = "registry+https://github.com/rust-lang/crates.io-index" 395checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" 396dependencies = [ 397 "quick-error", 398] 399 400[[package]] 401name = "ignore" 402version = "0.4.18" 403source = "registry+https://github.com/rust-lang/crates.io-index" 404checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d" 405dependencies = [ 406 "crossbeam-utils", 407 "globset", 408 "lazy_static", 409 "log", 410 "memchr", 411 "regex", 412 "same-file", 413 "thread_local", 414 "walkdir", 415 "winapi-util", 416] 417 418[[package]] 419name = "lazy_static" 420version = "1.4.0" 421source = "registry+https://github.com/rust-lang/crates.io-index" 422checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 423 424[[package]] 425name = "libc" 426version = "0.2.147" 427source = "registry+https://github.com/rust-lang/crates.io-index" 428checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 429 430[[package]] 431name = "log" 432version = "0.4.14" 433source = "registry+https://github.com/rust-lang/crates.io-index" 434checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" 435dependencies = [ 436 "cfg-if", 437] 438 439[[package]] 440name = "memchr" 441version = "2.4.1" 442source = "registry+https://github.com/rust-lang/crates.io-index" 443checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" 444 445[[package]] 446name = "memoffset" 447version = "0.6.4" 448source = "registry+https://github.com/rust-lang/crates.io-index" 449checksum = "59accc507f1338036a0477ef61afdae33cde60840f4dfe481319ce3ad116ddf9" 450dependencies = [ 451 "autocfg", 452] 453 454[[package]] 455name = "miniz_oxide" 456version = "0.4.4" 457source = "registry+https://github.com/rust-lang/crates.io-index" 458checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b" 459dependencies = [ 460 "adler", 461 "autocfg", 462] 463 464[[package]] 465name = "mio" 466version = "0.7.14" 467source = "registry+https://github.com/rust-lang/crates.io-index" 468checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc" 469dependencies = [ 470 "libc", 471 "log", 472 "miow", 473 "ntapi", 474 "winapi", 475] 476 477[[package]] 478name = "miow" 479version = "0.3.7" 480source = "registry+https://github.com/rust-lang/crates.io-index" 481checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21" 482dependencies = [ 483 "winapi", 484] 485 486[[package]] 487name = "nix" 488version = "0.27.1" 489source = "registry+https://github.com/rust-lang/crates.io-index" 490checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" 491dependencies = [ 492 "bitflags 2.4.0", 493 "cfg-if", 494 "libc", 495] 496 497[[package]] 498name = "ntapi" 499version = "0.3.6" 500source = "registry+https://github.com/rust-lang/crates.io-index" 501checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44" 502dependencies = [ 503 "winapi", 504] 505 506[[package]] 507name = "num_cpus" 508version = "1.13.0" 509source = "registry+https://github.com/rust-lang/crates.io-index" 510checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3" 511dependencies = [ 512 "hermit-abi", 513 "libc", 514] 515 516[[package]] 517name = "object" 518version = "0.27.1" 519source = "registry+https://github.com/rust-lang/crates.io-index" 520checksum = "67ac1d3f9a1d3616fd9a60c8d74296f22406a238b6a72f5cc1e6f314df4ffbf9" 521dependencies = [ 522 "memchr", 523] 524 525[[package]] 526name = "once_cell" 527version = "1.8.0" 528source = "registry+https://github.com/rust-lang/crates.io-index" 529checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56" 530 531[[package]] 532name = "pin-project-lite" 533version = "0.2.7" 534source = "registry+https://github.com/rust-lang/crates.io-index" 535checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443" 536 537[[package]] 538name = "pin-utils" 539version = "0.1.0" 540source = "registry+https://github.com/rust-lang/crates.io-index" 541checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 542 543[[package]] 544name = "proc-macro-error" 545version = "1.0.4" 546source = "registry+https://github.com/rust-lang/crates.io-index" 547checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 548dependencies = [ 549 "proc-macro-error-attr", 550 "proc-macro2 1.0.32", 551 "quote 1.0.10", 552 "syn 1.0.81", 553 "version_check", 554] 555 556[[package]] 557name = "proc-macro-error-attr" 558version = "1.0.4" 559source = "registry+https://github.com/rust-lang/crates.io-index" 560checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 561dependencies = [ 562 "proc-macro2 1.0.32", 563 "quote 1.0.10", 564 "version_check", 565] 566 567[[package]] 568name = "proc-macro-hack" 569version = "0.5.19" 570source = "registry+https://github.com/rust-lang/crates.io-index" 571checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" 572 573[[package]] 574name = "proc-macro-nested" 575version = "0.1.7" 576source = "registry+https://github.com/rust-lang/crates.io-index" 577checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086" 578 579[[package]] 580name = "proc-macro2" 581version = "0.4.30" 582source = "registry+https://github.com/rust-lang/crates.io-index" 583checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759" 584dependencies = [ 585 "unicode-xid 0.1.0", 586] 587 588[[package]] 589name = "proc-macro2" 590version = "1.0.32" 591source = "registry+https://github.com/rust-lang/crates.io-index" 592checksum = "ba508cc11742c0dc5c1659771673afbab7a0efab23aa17e854cbab0837ed0b43" 593dependencies = [ 594 "unicode-xid 0.2.2", 595] 596 597[[package]] 598name = "quick-error" 599version = "1.2.3" 600source = "registry+https://github.com/rust-lang/crates.io-index" 601checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" 602 603[[package]] 604name = "quicli" 605version = "0.4.0" 606source = "registry+https://github.com/rust-lang/crates.io-index" 607checksum = "9e8539e98d5a5e3cb0398aedac3e9642ead7d3047a459893526710cb5ad86f6c" 608dependencies = [ 609 "clap-verbosity-flag", 610 "exitfailure", 611 "failure", 612 "failure_derive", 613 "globwalk", 614 "log", 615 "rayon", 616 "remove_dir_all", 617 "serde", 618 "serde_derive", 619] 620 621[[package]] 622name = "quote" 623version = "0.6.13" 624source = "registry+https://github.com/rust-lang/crates.io-index" 625checksum = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1" 626dependencies = [ 627 "proc-macro2 0.4.30", 628] 629 630[[package]] 631name = "quote" 632version = "1.0.10" 633source = "registry+https://github.com/rust-lang/crates.io-index" 634checksum = "38bc8cc6a5f2e3655e0899c1b848643b2562f853f114bfec7be120678e3ace05" 635dependencies = [ 636 "proc-macro2 1.0.32", 637] 638 639[[package]] 640name = "rayon" 641version = "1.5.1" 642source = "registry+https://github.com/rust-lang/crates.io-index" 643checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90" 644dependencies = [ 645 "autocfg", 646 "crossbeam-deque", 647 "either", 648 "rayon-core", 649] 650 651[[package]] 652name = "rayon-core" 653version = "1.9.1" 654source = "registry+https://github.com/rust-lang/crates.io-index" 655checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e" 656dependencies = [ 657 "crossbeam-channel", 658 "crossbeam-deque", 659 "crossbeam-utils", 660 "lazy_static", 661 "num_cpus", 662] 663 664[[package]] 665name = "regex" 666version = "1.5.4" 667source = "registry+https://github.com/rust-lang/crates.io-index" 668checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461" 669dependencies = [ 670 "aho-corasick", 671 "memchr", 672 "regex-syntax", 673] 674 675[[package]] 676name = "regex-syntax" 677version = "0.6.25" 678source = "registry+https://github.com/rust-lang/crates.io-index" 679checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" 680 681[[package]] 682name = "remove_dir_all" 683version = "0.5.3" 684source = "registry+https://github.com/rust-lang/crates.io-index" 685checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 686dependencies = [ 687 "winapi", 688] 689 690[[package]] 691name = "rustc-demangle" 692version = "0.1.21" 693source = "registry+https://github.com/rust-lang/crates.io-index" 694checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342" 695 696[[package]] 697name = "same-file" 698version = "1.0.6" 699source = "registry+https://github.com/rust-lang/crates.io-index" 700checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 701dependencies = [ 702 "winapi-util", 703] 704 705[[package]] 706name = "scopeguard" 707version = "1.1.0" 708source = "registry+https://github.com/rust-lang/crates.io-index" 709checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 710 711[[package]] 712name = "serde" 713version = "1.0.130" 714source = "registry+https://github.com/rust-lang/crates.io-index" 715checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913" 716 717[[package]] 718name = "serde_derive" 719version = "1.0.130" 720source = "registry+https://github.com/rust-lang/crates.io-index" 721checksum = "d7bc1a1ab1961464eae040d96713baa5a724a8152c1222492465b54322ec508b" 722dependencies = [ 723 "proc-macro2 1.0.32", 724 "quote 1.0.10", 725 "syn 1.0.81", 726] 727 728[[package]] 729name = "slab" 730version = "0.4.5" 731source = "registry+https://github.com/rust-lang/crates.io-index" 732checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5" 733 734[[package]] 735name = "strsim" 736version = "0.8.0" 737source = "registry+https://github.com/rust-lang/crates.io-index" 738checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 739 740[[package]] 741name = "structopt" 742version = "0.2.18" 743source = "registry+https://github.com/rust-lang/crates.io-index" 744checksum = "16c2cdbf9cc375f15d1b4141bc48aeef444806655cd0e904207edc8d68d86ed7" 745dependencies = [ 746 "clap", 747 "structopt-derive 0.2.18", 748] 749 750[[package]] 751name = "structopt" 752version = "0.3.25" 753source = "registry+https://github.com/rust-lang/crates.io-index" 754checksum = "40b9788f4202aa75c240ecc9c15c65185e6a39ccdeb0fd5d008b98825464c87c" 755dependencies = [ 756 "clap", 757 "lazy_static", 758 "structopt-derive 0.4.18", 759] 760 761[[package]] 762name = "structopt-derive" 763version = "0.2.18" 764source = "registry+https://github.com/rust-lang/crates.io-index" 765checksum = "53010261a84b37689f9ed7d395165029f9cc7abb9f56bbfe86bee2597ed25107" 766dependencies = [ 767 "heck", 768 "proc-macro2 0.4.30", 769 "quote 0.6.13", 770 "syn 0.15.44", 771] 772 773[[package]] 774name = "structopt-derive" 775version = "0.4.18" 776source = "registry+https://github.com/rust-lang/crates.io-index" 777checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0" 778dependencies = [ 779 "heck", 780 "proc-macro-error", 781 "proc-macro2 1.0.32", 782 "quote 1.0.10", 783 "syn 1.0.81", 784] 785 786[[package]] 787name = "syn" 788version = "0.15.44" 789source = "registry+https://github.com/rust-lang/crates.io-index" 790checksum = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" 791dependencies = [ 792 "proc-macro2 0.4.30", 793 "quote 0.6.13", 794 "unicode-xid 0.1.0", 795] 796 797[[package]] 798name = "syn" 799version = "1.0.81" 800source = "registry+https://github.com/rust-lang/crates.io-index" 801checksum = "f2afee18b8beb5a596ecb4a2dce128c719b4ba399d34126b9e4396e3f9860966" 802dependencies = [ 803 "proc-macro2 1.0.32", 804 "quote 1.0.10", 805 "unicode-xid 0.2.2", 806] 807 808[[package]] 809name = "synstructure" 810version = "0.12.6" 811source = "registry+https://github.com/rust-lang/crates.io-index" 812checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" 813dependencies = [ 814 "proc-macro2 1.0.32", 815 "quote 1.0.10", 816 "syn 1.0.81", 817 "unicode-xid 0.2.2", 818] 819 820[[package]] 821name = "termcolor" 822version = "1.1.2" 823source = "registry+https://github.com/rust-lang/crates.io-index" 824checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4" 825dependencies = [ 826 "winapi-util", 827] 828 829[[package]] 830name = "textwrap" 831version = "0.11.0" 832source = "registry+https://github.com/rust-lang/crates.io-index" 833checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 834dependencies = [ 835 "unicode-width", 836] 837 838[[package]] 839name = "thread_local" 840version = "1.1.3" 841source = "registry+https://github.com/rust-lang/crates.io-index" 842checksum = "8018d24e04c95ac8790716a5987d0fec4f8b27249ffa0f7d33f1369bdfb88cbd" 843dependencies = [ 844 "once_cell", 845] 846 847[[package]] 848name = "tokio" 849version = "1.14.0" 850source = "registry+https://github.com/rust-lang/crates.io-index" 851checksum = "70e992e41e0d2fb9f755b37446f20900f64446ef54874f40a60c78f021ac6144" 852dependencies = [ 853 "autocfg", 854 "libc", 855 "mio", 856 "num_cpus", 857 "pin-project-lite", 858 "tokio-macros", 859 "winapi", 860] 861 862[[package]] 863name = "tokio-macros" 864version = "1.6.0" 865source = "registry+https://github.com/rust-lang/crates.io-index" 866checksum = "c9efc1aba077437943f7515666aa2b882dfabfbfdf89c819ea75a8d6e9eaba5e" 867dependencies = [ 868 "proc-macro2 1.0.32", 869 "quote 1.0.10", 870 "syn 1.0.81", 871] 872 873[[package]] 874name = "unicode-segmentation" 875version = "1.8.0" 876source = "registry+https://github.com/rust-lang/crates.io-index" 877checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b" 878 879[[package]] 880name = "unicode-width" 881version = "0.1.9" 882source = "registry+https://github.com/rust-lang/crates.io-index" 883checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973" 884 885[[package]] 886name = "unicode-xid" 887version = "0.1.0" 888source = "registry+https://github.com/rust-lang/crates.io-index" 889checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" 890 891[[package]] 892name = "unicode-xid" 893version = "0.2.2" 894source = "registry+https://github.com/rust-lang/crates.io-index" 895checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" 896 897[[package]] 898name = "vec_map" 899version = "0.8.2" 900source = "registry+https://github.com/rust-lang/crates.io-index" 901checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 902 903[[package]] 904name = "version_check" 905version = "0.9.3" 906source = "registry+https://github.com/rust-lang/crates.io-index" 907checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" 908 909[[package]] 910name = "walkdir" 911version = "2.3.2" 912source = "registry+https://github.com/rust-lang/crates.io-index" 913checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 914dependencies = [ 915 "same-file", 916 "winapi", 917 "winapi-util", 918] 919 920[[package]] 921name = "winapi" 922version = "0.3.9" 923source = "registry+https://github.com/rust-lang/crates.io-index" 924checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 925dependencies = [ 926 "winapi-i686-pc-windows-gnu", 927 "winapi-x86_64-pc-windows-gnu", 928] 929 930[[package]] 931name = "winapi-i686-pc-windows-gnu" 932version = "0.4.0" 933source = "registry+https://github.com/rust-lang/crates.io-index" 934checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 935 936[[package]] 937name = "winapi-util" 938version = "0.1.5" 939source = "registry+https://github.com/rust-lang/crates.io-index" 940checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 941dependencies = [ 942 "winapi", 943] 944 945[[package]] 946name = "winapi-x86_64-pc-windows-gnu" 947version = "0.4.0" 948source = "registry+https://github.com/rust-lang/crates.io-index" 949checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 950