roast

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

Cargo.lock (49482B)


      1 # This file is automatically @generated by Cargo.
      2 # It is not intended for manual editing.
      3 version = 3
      4 
      5 [[package]]
      6 name = "aead"
      7 version = "0.5.1"
      8 source = "registry+https://github.com/rust-lang/crates.io-index"
      9 checksum = "5c192eb8f11fc081b0fe4259ba5af04217d4e0faddd02417310a927911abd7c8"
     10 dependencies = [
     11  "crypto-common",
     12  "generic-array",
     13 ]
     14 
     15 [[package]]
     16 name = "aes"
     17 version = "0.8.1"
     18 source = "registry+https://github.com/rust-lang/crates.io-index"
     19 checksum = "bfe0133578c0986e1fe3dfcd4af1cc5b2dd6c3dbf534d69916ce16a2701d40ba"
     20 dependencies = [
     21  "cfg-if",
     22  "cipher",
     23  "cpufeatures",
     24 ]
     25 
     26 [[package]]
     27 name = "aes-gcm"
     28 version = "0.10.1"
     29 source = "registry+https://github.com/rust-lang/crates.io-index"
     30 checksum = "82e1366e0c69c9f927b1fa5ce2c7bf9eafc8f9268c0b9800729e8b267612447c"
     31 dependencies = [
     32  "aead",
     33  "aes",
     34  "cipher",
     35  "ctr",
     36  "ghash",
     37  "subtle",
     38 ]
     39 
     40 [[package]]
     41 name = "ansi_term"
     42 version = "0.12.1"
     43 source = "registry+https://github.com/rust-lang/crates.io-index"
     44 checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
     45 dependencies = [
     46  "winapi",
     47 ]
     48 
     49 [[package]]
     50 name = "async-stream"
     51 version = "0.3.3"
     52 source = "registry+https://github.com/rust-lang/crates.io-index"
     53 checksum = "dad5c83079eae9969be7fadefe640a1c566901f05ff91ab221de4b6f68d9507e"
     54 dependencies = [
     55  "async-stream-impl",
     56  "futures-core",
     57 ]
     58 
     59 [[package]]
     60 name = "async-stream-impl"
     61 version = "0.3.3"
     62 source = "registry+https://github.com/rust-lang/crates.io-index"
     63 checksum = "10f203db73a71dfa2fb6dd22763990fa26f3d2625a6da2da900d23b87d26be27"
     64 dependencies = [
     65  "proc-macro2",
     66  "quote",
     67  "syn",
     68 ]
     69 
     70 [[package]]
     71 name = "async-trait"
     72 version = "0.1.57"
     73 source = "registry+https://github.com/rust-lang/crates.io-index"
     74 checksum = "76464446b8bc32758d7e88ee1a804d9914cd9b1cb264c029899680b0be29826f"
     75 dependencies = [
     76  "proc-macro2",
     77  "quote",
     78  "syn",
     79 ]
     80 
     81 [[package]]
     82 name = "atomic"
     83 version = "0.5.1"
     84 source = "registry+https://github.com/rust-lang/crates.io-index"
     85 checksum = "b88d82667eca772c4aa12f0f1348b3ae643424c8876448f3f7bd5787032e234c"
     86 dependencies = [
     87  "autocfg",
     88 ]
     89 
     90 [[package]]
     91 name = "atty"
     92 version = "0.2.14"
     93 source = "registry+https://github.com/rust-lang/crates.io-index"
     94 checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
     95 dependencies = [
     96  "hermit-abi",
     97  "libc",
     98  "winapi",
     99 ]
    100 
    101 [[package]]
    102 name = "autocfg"
    103 version = "1.1.0"
    104 source = "registry+https://github.com/rust-lang/crates.io-index"
    105 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
    106 
    107 [[package]]
    108 name = "base64"
    109 version = "0.13.0"
    110 source = "registry+https://github.com/rust-lang/crates.io-index"
    111 checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
    112 
    113 [[package]]
    114 name = "binascii"
    115 version = "0.1.4"
    116 source = "registry+https://github.com/rust-lang/crates.io-index"
    117 checksum = "383d29d513d8764dcdc42ea295d979eb99c3c9f00607b3692cf68a431f7dca72"
    118 
    119 [[package]]
    120 name = "bitflags"
    121 version = "1.3.2"
    122 source = "registry+https://github.com/rust-lang/crates.io-index"
    123 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
    124 
    125 [[package]]
    126 name = "block-buffer"
    127 version = "0.10.3"
    128 source = "registry+https://github.com/rust-lang/crates.io-index"
    129 checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
    130 dependencies = [
    131  "generic-array",
    132 ]
    133 
    134 [[package]]
    135 name = "bumpalo"
    136 version = "3.11.0"
    137 source = "registry+https://github.com/rust-lang/crates.io-index"
    138 checksum = "c1ad822118d20d2c234f427000d5acc36eabe1e29a348c89b63dd60b13f28e5d"
    139 
    140 [[package]]
    141 name = "bytes"
    142 version = "1.2.1"
    143 source = "registry+https://github.com/rust-lang/crates.io-index"
    144 checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
    145 
    146 [[package]]
    147 name = "cc"
    148 version = "1.0.73"
    149 source = "registry+https://github.com/rust-lang/crates.io-index"
    150 checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
    151 
    152 [[package]]
    153 name = "cfg-if"
    154 version = "1.0.0"
    155 source = "registry+https://github.com/rust-lang/crates.io-index"
    156 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
    157 
    158 [[package]]
    159 name = "cipher"
    160 version = "0.4.3"
    161 source = "registry+https://github.com/rust-lang/crates.io-index"
    162 checksum = "d1873270f8f7942c191139cb8a40fd228da6c3fd2fc376d7e92d47aa14aeb59e"
    163 dependencies = [
    164  "crypto-common",
    165  "inout",
    166 ]
    167 
    168 [[package]]
    169 name = "clightningrpc"
    170 version = "0.2.0"
    171 source = "registry+https://github.com/rust-lang/crates.io-index"
    172 checksum = "98ae583d1efb5a0cb21d77ef53f872f104c872b5e05cc150b277d15afe13e974"
    173 dependencies = [
    174  "serde",
    175  "serde_derive",
    176  "serde_json",
    177 ]
    178 
    179 [[package]]
    180 name = "cookie"
    181 version = "0.16.1"
    182 source = "registry+https://github.com/rust-lang/crates.io-index"
    183 checksum = "344adc371239ef32293cb1c4fe519592fcf21206c79c02854320afcdf3ab4917"
    184 dependencies = [
    185  "aes-gcm",
    186  "base64",
    187  "hkdf",
    188  "hmac",
    189  "percent-encoding",
    190  "rand 0.8.5",
    191  "sha2",
    192  "subtle",
    193  "time",
    194  "version_check",
    195 ]
    196 
    197 [[package]]
    198 name = "core-foundation"
    199 version = "0.9.3"
    200 source = "registry+https://github.com/rust-lang/crates.io-index"
    201 checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
    202 dependencies = [
    203  "core-foundation-sys",
    204  "libc",
    205 ]
    206 
    207 [[package]]
    208 name = "core-foundation-sys"
    209 version = "0.8.3"
    210 source = "registry+https://github.com/rust-lang/crates.io-index"
    211 checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
    212 
    213 [[package]]
    214 name = "cpufeatures"
    215 version = "0.2.5"
    216 source = "registry+https://github.com/rust-lang/crates.io-index"
    217 checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
    218 dependencies = [
    219  "libc",
    220 ]
    221 
    222 [[package]]
    223 name = "crypto-common"
    224 version = "0.1.6"
    225 source = "registry+https://github.com/rust-lang/crates.io-index"
    226 checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
    227 dependencies = [
    228  "generic-array",
    229  "rand_core 0.6.4",
    230  "typenum",
    231 ]
    232 
    233 [[package]]
    234 name = "ctr"
    235 version = "0.9.1"
    236 source = "registry+https://github.com/rust-lang/crates.io-index"
    237 checksum = "0d14f329cfbaf5d0e06b5e87fff7e265d2673c5ea7d2c27691a2c107db1442a0"
    238 dependencies = [
    239  "cipher",
    240 ]
    241 
    242 [[package]]
    243 name = "devise"
    244 version = "0.3.1"
    245 source = "registry+https://github.com/rust-lang/crates.io-index"
    246 checksum = "50c7580b072f1c8476148f16e0a0d5dedddab787da98d86c5082c5e9ed8ab595"
    247 dependencies = [
    248  "devise_codegen",
    249  "devise_core",
    250 ]
    251 
    252 [[package]]
    253 name = "devise_codegen"
    254 version = "0.3.1"
    255 source = "registry+https://github.com/rust-lang/crates.io-index"
    256 checksum = "123c73e7a6e51b05c75fe1a1b2f4e241399ea5740ed810b0e3e6cacd9db5e7b2"
    257 dependencies = [
    258  "devise_core",
    259  "quote",
    260 ]
    261 
    262 [[package]]
    263 name = "devise_core"
    264 version = "0.3.1"
    265 source = "registry+https://github.com/rust-lang/crates.io-index"
    266 checksum = "841ef46f4787d9097405cac4e70fb8644fc037b526e8c14054247c0263c400d0"
    267 dependencies = [
    268  "bitflags",
    269  "proc-macro2",
    270  "proc-macro2-diagnostics",
    271  "quote",
    272  "syn",
    273 ]
    274 
    275 [[package]]
    276 name = "digest"
    277 version = "0.10.5"
    278 source = "registry+https://github.com/rust-lang/crates.io-index"
    279 checksum = "adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c"
    280 dependencies = [
    281  "block-buffer",
    282  "crypto-common",
    283  "subtle",
    284 ]
    285 
    286 [[package]]
    287 name = "either"
    288 version = "1.8.0"
    289 source = "registry+https://github.com/rust-lang/crates.io-index"
    290 checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
    291 
    292 [[package]]
    293 name = "encoding_rs"
    294 version = "0.8.31"
    295 source = "registry+https://github.com/rust-lang/crates.io-index"
    296 checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
    297 dependencies = [
    298  "cfg-if",
    299 ]
    300 
    301 [[package]]
    302 name = "fastrand"
    303 version = "1.8.0"
    304 source = "registry+https://github.com/rust-lang/crates.io-index"
    305 checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
    306 dependencies = [
    307  "instant",
    308 ]
    309 
    310 [[package]]
    311 name = "figment"
    312 version = "0.10.7"
    313 source = "registry+https://github.com/rust-lang/crates.io-index"
    314 checksum = "6e3bd154d9ae2f1bb0ada5b7eebd56529513efa5de7d2fc8c6adf33bc43260cf"
    315 dependencies = [
    316  "atomic",
    317  "pear",
    318  "serde",
    319  "toml",
    320  "uncased",
    321  "version_check",
    322 ]
    323 
    324 [[package]]
    325 name = "fnv"
    326 version = "1.0.7"
    327 source = "registry+https://github.com/rust-lang/crates.io-index"
    328 checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
    329 
    330 [[package]]
    331 name = "foreign-types"
    332 version = "0.3.2"
    333 source = "registry+https://github.com/rust-lang/crates.io-index"
    334 checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
    335 dependencies = [
    336  "foreign-types-shared",
    337 ]
    338 
    339 [[package]]
    340 name = "foreign-types-shared"
    341 version = "0.1.1"
    342 source = "registry+https://github.com/rust-lang/crates.io-index"
    343 checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
    344 
    345 [[package]]
    346 name = "form_urlencoded"
    347 version = "1.1.0"
    348 source = "registry+https://github.com/rust-lang/crates.io-index"
    349 checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
    350 dependencies = [
    351  "percent-encoding",
    352 ]
    353 
    354 [[package]]
    355 name = "fuchsia-cprng"
    356 version = "0.1.1"
    357 source = "registry+https://github.com/rust-lang/crates.io-index"
    358 checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
    359 
    360 [[package]]
    361 name = "futures"
    362 version = "0.3.24"
    363 source = "registry+https://github.com/rust-lang/crates.io-index"
    364 checksum = "7f21eda599937fba36daeb58a22e8f5cee2d14c4a17b5b7739c7c8e5e3b8230c"
    365 dependencies = [
    366  "futures-channel",
    367  "futures-core",
    368  "futures-io",
    369  "futures-sink",
    370  "futures-task",
    371  "futures-util",
    372 ]
    373 
    374 [[package]]
    375 name = "futures-channel"
    376 version = "0.3.24"
    377 source = "registry+https://github.com/rust-lang/crates.io-index"
    378 checksum = "30bdd20c28fadd505d0fd6712cdfcb0d4b5648baf45faef7f852afb2399bb050"
    379 dependencies = [
    380  "futures-core",
    381  "futures-sink",
    382 ]
    383 
    384 [[package]]
    385 name = "futures-core"
    386 version = "0.3.24"
    387 source = "registry+https://github.com/rust-lang/crates.io-index"
    388 checksum = "4e5aa3de05362c3fb88de6531e6296e85cde7739cccad4b9dfeeb7f6ebce56bf"
    389 
    390 [[package]]
    391 name = "futures-io"
    392 version = "0.3.24"
    393 source = "registry+https://github.com/rust-lang/crates.io-index"
    394 checksum = "bbf4d2a7a308fd4578637c0b17c7e1c7ba127b8f6ba00b29f717e9655d85eb68"
    395 
    396 [[package]]
    397 name = "futures-sink"
    398 version = "0.3.24"
    399 source = "registry+https://github.com/rust-lang/crates.io-index"
    400 checksum = "21b20ba5a92e727ba30e72834706623d94ac93a725410b6a6b6fbc1b07f7ba56"
    401 
    402 [[package]]
    403 name = "futures-task"
    404 version = "0.3.24"
    405 source = "registry+https://github.com/rust-lang/crates.io-index"
    406 checksum = "a6508c467c73851293f390476d4491cf4d227dbabcd4170f3bb6044959b294f1"
    407 
    408 [[package]]
    409 name = "futures-util"
    410 version = "0.3.24"
    411 source = "registry+https://github.com/rust-lang/crates.io-index"
    412 checksum = "44fb6cb1be61cc1d2e43b262516aafcf63b241cffdb1d3fa115f91d9c7b09c90"
    413 dependencies = [
    414  "futures-channel",
    415  "futures-core",
    416  "futures-io",
    417  "futures-sink",
    418  "futures-task",
    419  "memchr",
    420  "pin-project-lite",
    421  "pin-utils",
    422  "slab",
    423 ]
    424 
    425 [[package]]
    426 name = "generator"
    427 version = "0.7.1"
    428 source = "registry+https://github.com/rust-lang/crates.io-index"
    429 checksum = "cc184cace1cea8335047a471cc1da80f18acf8a76f3bab2028d499e328948ec7"
    430 dependencies = [
    431  "cc",
    432  "libc",
    433  "log",
    434  "rustversion",
    435  "windows",
    436 ]
    437 
    438 [[package]]
    439 name = "generic-array"
    440 version = "0.14.6"
    441 source = "registry+https://github.com/rust-lang/crates.io-index"
    442 checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
    443 dependencies = [
    444  "typenum",
    445  "version_check",
    446 ]
    447 
    448 [[package]]
    449 name = "getrandom"
    450 version = "0.2.7"
    451 source = "registry+https://github.com/rust-lang/crates.io-index"
    452 checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
    453 dependencies = [
    454  "cfg-if",
    455  "libc",
    456  "wasi",
    457 ]
    458 
    459 [[package]]
    460 name = "ghash"
    461 version = "0.5.0"
    462 source = "registry+https://github.com/rust-lang/crates.io-index"
    463 checksum = "d930750de5717d2dd0b8c0d42c076c0e884c81a73e6cab859bbd2339c71e3e40"
    464 dependencies = [
    465  "opaque-debug",
    466  "polyval",
    467 ]
    468 
    469 [[package]]
    470 name = "glob"
    471 version = "0.3.0"
    472 source = "registry+https://github.com/rust-lang/crates.io-index"
    473 checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
    474 
    475 [[package]]
    476 name = "h2"
    477 version = "0.3.14"
    478 source = "registry+https://github.com/rust-lang/crates.io-index"
    479 checksum = "5ca32592cf21ac7ccab1825cd87f6c9b3d9022c44d086172ed0966bec8af30be"
    480 dependencies = [
    481  "bytes",
    482  "fnv",
    483  "futures-core",
    484  "futures-sink",
    485  "futures-util",
    486  "http",
    487  "indexmap",
    488  "slab",
    489  "tokio",
    490  "tokio-util",
    491  "tracing",
    492 ]
    493 
    494 [[package]]
    495 name = "hashbrown"
    496 version = "0.12.3"
    497 source = "registry+https://github.com/rust-lang/crates.io-index"
    498 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
    499 
    500 [[package]]
    501 name = "hermit-abi"
    502 version = "0.1.19"
    503 source = "registry+https://github.com/rust-lang/crates.io-index"
    504 checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
    505 dependencies = [
    506  "libc",
    507 ]
    508 
    509 [[package]]
    510 name = "hkdf"
    511 version = "0.12.3"
    512 source = "registry+https://github.com/rust-lang/crates.io-index"
    513 checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437"
    514 dependencies = [
    515  "hmac",
    516 ]
    517 
    518 [[package]]
    519 name = "hmac"
    520 version = "0.12.1"
    521 source = "registry+https://github.com/rust-lang/crates.io-index"
    522 checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
    523 dependencies = [
    524  "digest",
    525 ]
    526 
    527 [[package]]
    528 name = "http"
    529 version = "0.2.8"
    530 source = "registry+https://github.com/rust-lang/crates.io-index"
    531 checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
    532 dependencies = [
    533  "bytes",
    534  "fnv",
    535  "itoa",
    536 ]
    537 
    538 [[package]]
    539 name = "http-body"
    540 version = "0.4.5"
    541 source = "registry+https://github.com/rust-lang/crates.io-index"
    542 checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
    543 dependencies = [
    544  "bytes",
    545  "http",
    546  "pin-project-lite",
    547 ]
    548 
    549 [[package]]
    550 name = "httparse"
    551 version = "1.8.0"
    552 source = "registry+https://github.com/rust-lang/crates.io-index"
    553 checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
    554 
    555 [[package]]
    556 name = "httpdate"
    557 version = "1.0.2"
    558 source = "registry+https://github.com/rust-lang/crates.io-index"
    559 checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
    560 
    561 [[package]]
    562 name = "hyper"
    563 version = "0.14.20"
    564 source = "registry+https://github.com/rust-lang/crates.io-index"
    565 checksum = "02c929dc5c39e335a03c405292728118860721b10190d98c2a0f0efd5baafbac"
    566 dependencies = [
    567  "bytes",
    568  "futures-channel",
    569  "futures-core",
    570  "futures-util",
    571  "h2",
    572  "http",
    573  "http-body",
    574  "httparse",
    575  "httpdate",
    576  "itoa",
    577  "pin-project-lite",
    578  "socket2",
    579  "tokio",
    580  "tower-service",
    581  "tracing",
    582  "want",
    583 ]
    584 
    585 [[package]]
    586 name = "hyper-tls"
    587 version = "0.5.0"
    588 source = "registry+https://github.com/rust-lang/crates.io-index"
    589 checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
    590 dependencies = [
    591  "bytes",
    592  "hyper",
    593  "native-tls",
    594  "tokio",
    595  "tokio-native-tls",
    596 ]
    597 
    598 [[package]]
    599 name = "idna"
    600 version = "0.3.0"
    601 source = "registry+https://github.com/rust-lang/crates.io-index"
    602 checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
    603 dependencies = [
    604  "unicode-bidi",
    605  "unicode-normalization",
    606 ]
    607 
    608 [[package]]
    609 name = "indexmap"
    610 version = "1.9.1"
    611 source = "registry+https://github.com/rust-lang/crates.io-index"
    612 checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
    613 dependencies = [
    614  "autocfg",
    615  "hashbrown",
    616  "serde",
    617 ]
    618 
    619 [[package]]
    620 name = "inlinable_string"
    621 version = "0.1.15"
    622 source = "registry+https://github.com/rust-lang/crates.io-index"
    623 checksum = "c8fae54786f62fb2918dcfae3d568594e50eb9b5c25bf04371af6fe7516452fb"
    624 
    625 [[package]]
    626 name = "inout"
    627 version = "0.1.3"
    628 source = "registry+https://github.com/rust-lang/crates.io-index"
    629 checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
    630 dependencies = [
    631  "generic-array",
    632 ]
    633 
    634 [[package]]
    635 name = "instant"
    636 version = "0.1.12"
    637 source = "registry+https://github.com/rust-lang/crates.io-index"
    638 checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
    639 dependencies = [
    640  "cfg-if",
    641 ]
    642 
    643 [[package]]
    644 name = "ipnet"
    645 version = "2.5.0"
    646 source = "registry+https://github.com/rust-lang/crates.io-index"
    647 checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b"
    648 
    649 [[package]]
    650 name = "itoa"
    651 version = "1.0.3"
    652 source = "registry+https://github.com/rust-lang/crates.io-index"
    653 checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754"
    654 
    655 [[package]]
    656 name = "js-sys"
    657 version = "0.3.60"
    658 source = "registry+https://github.com/rust-lang/crates.io-index"
    659 checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
    660 dependencies = [
    661  "wasm-bindgen",
    662 ]
    663 
    664 [[package]]
    665 name = "lazy_static"
    666 version = "1.4.0"
    667 source = "registry+https://github.com/rust-lang/crates.io-index"
    668 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
    669 
    670 [[package]]
    671 name = "libc"
    672 version = "0.2.133"
    673 source = "registry+https://github.com/rust-lang/crates.io-index"
    674 checksum = "c0f80d65747a3e43d1596c7c5492d95d5edddaabd45a7fcdb02b95f644164966"
    675 
    676 [[package]]
    677 name = "lock_api"
    678 version = "0.4.9"
    679 source = "registry+https://github.com/rust-lang/crates.io-index"
    680 checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
    681 dependencies = [
    682  "autocfg",
    683  "scopeguard",
    684 ]
    685 
    686 [[package]]
    687 name = "log"
    688 version = "0.4.17"
    689 source = "registry+https://github.com/rust-lang/crates.io-index"
    690 checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
    691 dependencies = [
    692  "cfg-if",
    693 ]
    694 
    695 [[package]]
    696 name = "loom"
    697 version = "0.5.6"
    698 source = "registry+https://github.com/rust-lang/crates.io-index"
    699 checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5"
    700 dependencies = [
    701  "cfg-if",
    702  "generator",
    703  "scoped-tls",
    704  "serde",
    705  "serde_json",
    706  "tracing",
    707  "tracing-subscriber",
    708 ]
    709 
    710 [[package]]
    711 name = "matchers"
    712 version = "0.1.0"
    713 source = "registry+https://github.com/rust-lang/crates.io-index"
    714 checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
    715 dependencies = [
    716  "regex-automata",
    717 ]
    718 
    719 [[package]]
    720 name = "memchr"
    721 version = "2.5.0"
    722 source = "registry+https://github.com/rust-lang/crates.io-index"
    723 checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
    724 
    725 [[package]]
    726 name = "mime"
    727 version = "0.3.16"
    728 source = "registry+https://github.com/rust-lang/crates.io-index"
    729 checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
    730 
    731 [[package]]
    732 name = "mio"
    733 version = "0.8.4"
    734 source = "registry+https://github.com/rust-lang/crates.io-index"
    735 checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
    736 dependencies = [
    737  "libc",
    738  "log",
    739  "wasi",
    740  "windows-sys",
    741 ]
    742 
    743 [[package]]
    744 name = "multer"
    745 version = "2.0.4"
    746 source = "registry+https://github.com/rust-lang/crates.io-index"
    747 checksum = "6ed4198ce7a4cbd2a57af78d28c6fbb57d81ac5f1d6ad79ac6c5587419cbdf22"
    748 dependencies = [
    749  "bytes",
    750  "encoding_rs",
    751  "futures-util",
    752  "http",
    753  "httparse",
    754  "log",
    755  "memchr",
    756  "mime",
    757  "spin",
    758  "tokio",
    759  "tokio-util",
    760  "version_check",
    761 ]
    762 
    763 [[package]]
    764 name = "native-tls"
    765 version = "0.2.10"
    766 source = "registry+https://github.com/rust-lang/crates.io-index"
    767 checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9"
    768 dependencies = [
    769  "lazy_static",
    770  "libc",
    771  "log",
    772  "openssl",
    773  "openssl-probe",
    774  "openssl-sys",
    775  "schannel",
    776  "security-framework",
    777  "security-framework-sys",
    778  "tempfile",
    779 ]
    780 
    781 [[package]]
    782 name = "num_cpus"
    783 version = "1.13.1"
    784 source = "registry+https://github.com/rust-lang/crates.io-index"
    785 checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
    786 dependencies = [
    787  "hermit-abi",
    788  "libc",
    789 ]
    790 
    791 [[package]]
    792 name = "num_threads"
    793 version = "0.1.6"
    794 source = "registry+https://github.com/rust-lang/crates.io-index"
    795 checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
    796 dependencies = [
    797  "libc",
    798 ]
    799 
    800 [[package]]
    801 name = "once_cell"
    802 version = "1.15.0"
    803 source = "registry+https://github.com/rust-lang/crates.io-index"
    804 checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1"
    805 
    806 [[package]]
    807 name = "opaque-debug"
    808 version = "0.3.0"
    809 source = "registry+https://github.com/rust-lang/crates.io-index"
    810 checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
    811 
    812 [[package]]
    813 name = "openssl"
    814 version = "0.10.42"
    815 source = "registry+https://github.com/rust-lang/crates.io-index"
    816 checksum = "12fc0523e3bd51a692c8850d075d74dc062ccf251c0110668cbd921917118a13"
    817 dependencies = [
    818  "bitflags",
    819  "cfg-if",
    820  "foreign-types",
    821  "libc",
    822  "once_cell",
    823  "openssl-macros",
    824  "openssl-sys",
    825 ]
    826 
    827 [[package]]
    828 name = "openssl-macros"
    829 version = "0.1.0"
    830 source = "registry+https://github.com/rust-lang/crates.io-index"
    831 checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
    832 dependencies = [
    833  "proc-macro2",
    834  "quote",
    835  "syn",
    836 ]
    837 
    838 [[package]]
    839 name = "openssl-probe"
    840 version = "0.1.5"
    841 source = "registry+https://github.com/rust-lang/crates.io-index"
    842 checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
    843 
    844 [[package]]
    845 name = "openssl-sys"
    846 version = "0.9.76"
    847 source = "registry+https://github.com/rust-lang/crates.io-index"
    848 checksum = "5230151e44c0f05157effb743e8d517472843121cf9243e8b81393edb5acd9ce"
    849 dependencies = [
    850  "autocfg",
    851  "cc",
    852  "libc",
    853  "pkg-config",
    854  "vcpkg",
    855 ]
    856 
    857 [[package]]
    858 name = "parking_lot"
    859 version = "0.12.1"
    860 source = "registry+https://github.com/rust-lang/crates.io-index"
    861 checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
    862 dependencies = [
    863  "lock_api",
    864  "parking_lot_core",
    865 ]
    866 
    867 [[package]]
    868 name = "parking_lot_core"
    869 version = "0.9.3"
    870 source = "registry+https://github.com/rust-lang/crates.io-index"
    871 checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
    872 dependencies = [
    873  "cfg-if",
    874  "libc",
    875  "redox_syscall",
    876  "smallvec",
    877  "windows-sys",
    878 ]
    879 
    880 [[package]]
    881 name = "pear"
    882 version = "0.2.3"
    883 source = "registry+https://github.com/rust-lang/crates.io-index"
    884 checksum = "15e44241c5e4c868e3eaa78b7c1848cadd6344ed4f54d029832d32b415a58702"
    885 dependencies = [
    886  "inlinable_string",
    887  "pear_codegen",
    888  "yansi",
    889 ]
    890 
    891 [[package]]
    892 name = "pear_codegen"
    893 version = "0.2.3"
    894 source = "registry+https://github.com/rust-lang/crates.io-index"
    895 checksum = "82a5ca643c2303ecb740d506539deba189e16f2754040a42901cd8105d0282d0"
    896 dependencies = [
    897  "proc-macro2",
    898  "proc-macro2-diagnostics",
    899  "quote",
    900  "syn",
    901 ]
    902 
    903 [[package]]
    904 name = "percent-encoding"
    905 version = "2.2.0"
    906 source = "registry+https://github.com/rust-lang/crates.io-index"
    907 checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
    908 
    909 [[package]]
    910 name = "pin-project-lite"
    911 version = "0.2.9"
    912 source = "registry+https://github.com/rust-lang/crates.io-index"
    913 checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
    914 
    915 [[package]]
    916 name = "pin-utils"
    917 version = "0.1.0"
    918 source = "registry+https://github.com/rust-lang/crates.io-index"
    919 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
    920 
    921 [[package]]
    922 name = "pkg-config"
    923 version = "0.3.25"
    924 source = "registry+https://github.com/rust-lang/crates.io-index"
    925 checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
    926 
    927 [[package]]
    928 name = "polyval"
    929 version = "0.6.0"
    930 source = "registry+https://github.com/rust-lang/crates.io-index"
    931 checksum = "7ef234e08c11dfcb2e56f79fd70f6f2eb7f025c0ce2333e82f4f0518ecad30c6"
    932 dependencies = [
    933  "cfg-if",
    934  "cpufeatures",
    935  "opaque-debug",
    936  "universal-hash",
    937 ]
    938 
    939 [[package]]
    940 name = "ppv-lite86"
    941 version = "0.2.16"
    942 source = "registry+https://github.com/rust-lang/crates.io-index"
    943 checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
    944 
    945 [[package]]
    946 name = "proc-macro2"
    947 version = "1.0.44"
    948 source = "registry+https://github.com/rust-lang/crates.io-index"
    949 checksum = "7bd7356a8122b6c4a24a82b278680c73357984ca2fc79a0f9fa6dea7dced7c58"
    950 dependencies = [
    951  "unicode-ident",
    952 ]
    953 
    954 [[package]]
    955 name = "proc-macro2-diagnostics"
    956 version = "0.9.1"
    957 source = "registry+https://github.com/rust-lang/crates.io-index"
    958 checksum = "4bf29726d67464d49fa6224a1d07936a8c08bb3fba727c7493f6cf1616fdaada"
    959 dependencies = [
    960  "proc-macro2",
    961  "quote",
    962  "syn",
    963  "version_check",
    964  "yansi",
    965 ]
    966 
    967 [[package]]
    968 name = "quote"
    969 version = "1.0.21"
    970 source = "registry+https://github.com/rust-lang/crates.io-index"
    971 checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
    972 dependencies = [
    973  "proc-macro2",
    974 ]
    975 
    976 [[package]]
    977 name = "rand"
    978 version = "0.3.23"
    979 source = "registry+https://github.com/rust-lang/crates.io-index"
    980 checksum = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c"
    981 dependencies = [
    982  "libc",
    983  "rand 0.4.6",
    984 ]
    985 
    986 [[package]]
    987 name = "rand"
    988 version = "0.4.6"
    989 source = "registry+https://github.com/rust-lang/crates.io-index"
    990 checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
    991 dependencies = [
    992  "fuchsia-cprng",
    993  "libc",
    994  "rand_core 0.3.1",
    995  "rdrand",
    996  "winapi",
    997 ]
    998 
    999 [[package]]
   1000 name = "rand"
   1001 version = "0.8.5"
   1002 source = "registry+https://github.com/rust-lang/crates.io-index"
   1003 checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
   1004 dependencies = [
   1005  "libc",
   1006  "rand_chacha",
   1007  "rand_core 0.6.4",
   1008 ]
   1009 
   1010 [[package]]
   1011 name = "rand_chacha"
   1012 version = "0.3.1"
   1013 source = "registry+https://github.com/rust-lang/crates.io-index"
   1014 checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
   1015 dependencies = [
   1016  "ppv-lite86",
   1017  "rand_core 0.6.4",
   1018 ]
   1019 
   1020 [[package]]
   1021 name = "rand_core"
   1022 version = "0.3.1"
   1023 source = "registry+https://github.com/rust-lang/crates.io-index"
   1024 checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
   1025 dependencies = [
   1026  "rand_core 0.4.2",
   1027 ]
   1028 
   1029 [[package]]
   1030 name = "rand_core"
   1031 version = "0.4.2"
   1032 source = "registry+https://github.com/rust-lang/crates.io-index"
   1033 checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
   1034 
   1035 [[package]]
   1036 name = "rand_core"
   1037 version = "0.6.4"
   1038 source = "registry+https://github.com/rust-lang/crates.io-index"
   1039 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
   1040 dependencies = [
   1041  "getrandom",
   1042 ]
   1043 
   1044 [[package]]
   1045 name = "rdrand"
   1046 version = "0.4.0"
   1047 source = "registry+https://github.com/rust-lang/crates.io-index"
   1048 checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
   1049 dependencies = [
   1050  "rand_core 0.3.1",
   1051 ]
   1052 
   1053 [[package]]
   1054 name = "redox_syscall"
   1055 version = "0.2.16"
   1056 source = "registry+https://github.com/rust-lang/crates.io-index"
   1057 checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
   1058 dependencies = [
   1059  "bitflags",
   1060 ]
   1061 
   1062 [[package]]
   1063 name = "ref-cast"
   1064 version = "1.0.9"
   1065 source = "registry+https://github.com/rust-lang/crates.io-index"
   1066 checksum = "ed13bcd201494ab44900a96490291651d200730904221832b9547d24a87d332b"
   1067 dependencies = [
   1068  "ref-cast-impl",
   1069 ]
   1070 
   1071 [[package]]
   1072 name = "ref-cast-impl"
   1073 version = "1.0.9"
   1074 source = "registry+https://github.com/rust-lang/crates.io-index"
   1075 checksum = "5234cd6063258a5e32903b53b1b6ac043a0541c8adc1f610f67b0326c7a578fa"
   1076 dependencies = [
   1077  "proc-macro2",
   1078  "quote",
   1079  "syn",
   1080 ]
   1081 
   1082 [[package]]
   1083 name = "regex"
   1084 version = "1.6.0"
   1085 source = "registry+https://github.com/rust-lang/crates.io-index"
   1086 checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
   1087 dependencies = [
   1088  "regex-syntax",
   1089 ]
   1090 
   1091 [[package]]
   1092 name = "regex-automata"
   1093 version = "0.1.10"
   1094 source = "registry+https://github.com/rust-lang/crates.io-index"
   1095 checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
   1096 dependencies = [
   1097  "regex-syntax",
   1098 ]
   1099 
   1100 [[package]]
   1101 name = "regex-syntax"
   1102 version = "0.6.27"
   1103 source = "registry+https://github.com/rust-lang/crates.io-index"
   1104 checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
   1105 
   1106 [[package]]
   1107 name = "remove_dir_all"
   1108 version = "0.5.3"
   1109 source = "registry+https://github.com/rust-lang/crates.io-index"
   1110 checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
   1111 dependencies = [
   1112  "winapi",
   1113 ]
   1114 
   1115 [[package]]
   1116 name = "reqwest"
   1117 version = "0.11.12"
   1118 source = "registry+https://github.com/rust-lang/crates.io-index"
   1119 checksum = "431949c384f4e2ae07605ccaa56d1d9d2ecdb5cadd4f9577ccfab29f2e5149fc"
   1120 dependencies = [
   1121  "base64",
   1122  "bytes",
   1123  "encoding_rs",
   1124  "futures-core",
   1125  "futures-util",
   1126  "h2",
   1127  "http",
   1128  "http-body",
   1129  "hyper",
   1130  "hyper-tls",
   1131  "ipnet",
   1132  "js-sys",
   1133  "log",
   1134  "mime",
   1135  "native-tls",
   1136  "once_cell",
   1137  "percent-encoding",
   1138  "pin-project-lite",
   1139  "serde",
   1140  "serde_json",
   1141  "serde_urlencoded",
   1142  "tokio",
   1143  "tokio-native-tls",
   1144  "tower-service",
   1145  "url",
   1146  "wasm-bindgen",
   1147  "wasm-bindgen-futures",
   1148  "web-sys",
   1149  "winreg",
   1150 ]
   1151 
   1152 [[package]]
   1153 name = "rng"
   1154 version = "0.1.0"
   1155 source = "registry+https://github.com/rust-lang/crates.io-index"
   1156 checksum = "daa6bba2ae9b3232e194e86d9a407e28c5d02fdfb85ea0e7e2e60f4d1e78aff2"
   1157 dependencies = [
   1158  "rand 0.3.23",
   1159 ]
   1160 
   1161 [[package]]
   1162 name = "roast-signer"
   1163 version = "0.1.0"
   1164 dependencies = [
   1165  "clightningrpc",
   1166  "rand 0.8.5",
   1167  "reqwest",
   1168  "rng",
   1169  "rocket",
   1170  "schnorr_fun",
   1171  "secp256kfun",
   1172  "serde_json",
   1173  "sha2",
   1174  "thiserror",
   1175 ]
   1176 
   1177 [[package]]
   1178 name = "rocket"
   1179 version = "0.5.0-rc.2"
   1180 source = "registry+https://github.com/rust-lang/crates.io-index"
   1181 checksum = "98ead083fce4a405feb349cf09abdf64471c6077f14e0ce59364aa90d4b99317"
   1182 dependencies = [
   1183  "async-stream",
   1184  "async-trait",
   1185  "atomic",
   1186  "atty",
   1187  "binascii",
   1188  "bytes",
   1189  "either",
   1190  "figment",
   1191  "futures",
   1192  "indexmap",
   1193  "log",
   1194  "memchr",
   1195  "multer",
   1196  "num_cpus",
   1197  "parking_lot",
   1198  "pin-project-lite",
   1199  "rand 0.8.5",
   1200  "ref-cast",
   1201  "rocket_codegen",
   1202  "rocket_http",
   1203  "serde",
   1204  "state",
   1205  "tempfile",
   1206  "time",
   1207  "tokio",
   1208  "tokio-stream",
   1209  "tokio-util",
   1210  "ubyte",
   1211  "version_check",
   1212  "yansi",
   1213 ]
   1214 
   1215 [[package]]
   1216 name = "rocket_codegen"
   1217 version = "0.5.0-rc.2"
   1218 source = "registry+https://github.com/rust-lang/crates.io-index"
   1219 checksum = "d6aeb6bb9c61e9cd2c00d70ea267bf36f76a4cc615e5908b349c2f9d93999b47"
   1220 dependencies = [
   1221  "devise",
   1222  "glob",
   1223  "indexmap",
   1224  "proc-macro2",
   1225  "quote",
   1226  "rocket_http",
   1227  "syn",
   1228  "unicode-xid",
   1229 ]
   1230 
   1231 [[package]]
   1232 name = "rocket_http"
   1233 version = "0.5.0-rc.2"
   1234 source = "registry+https://github.com/rust-lang/crates.io-index"
   1235 checksum = "2ded65d127954de3c12471630bf4b81a2792f065984461e65b91d0fdaafc17a2"
   1236 dependencies = [
   1237  "cookie",
   1238  "either",
   1239  "futures",
   1240  "http",
   1241  "hyper",
   1242  "indexmap",
   1243  "log",
   1244  "memchr",
   1245  "pear",
   1246  "percent-encoding",
   1247  "pin-project-lite",
   1248  "ref-cast",
   1249  "serde",
   1250  "smallvec",
   1251  "stable-pattern",
   1252  "state",
   1253  "time",
   1254  "tokio",
   1255  "uncased",
   1256 ]
   1257 
   1258 [[package]]
   1259 name = "rustversion"
   1260 version = "1.0.9"
   1261 source = "registry+https://github.com/rust-lang/crates.io-index"
   1262 checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8"
   1263 
   1264 [[package]]
   1265 name = "ryu"
   1266 version = "1.0.11"
   1267 source = "registry+https://github.com/rust-lang/crates.io-index"
   1268 checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
   1269 
   1270 [[package]]
   1271 name = "schannel"
   1272 version = "0.1.20"
   1273 source = "registry+https://github.com/rust-lang/crates.io-index"
   1274 checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
   1275 dependencies = [
   1276  "lazy_static",
   1277  "windows-sys",
   1278 ]
   1279 
   1280 [[package]]
   1281 name = "schnorr_fun"
   1282 version = "0.7.1"
   1283 dependencies = [
   1284  "secp256kfun",
   1285  "serde",
   1286 ]
   1287 
   1288 [[package]]
   1289 name = "scoped-tls"
   1290 version = "1.0.0"
   1291 source = "registry+https://github.com/rust-lang/crates.io-index"
   1292 checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
   1293 
   1294 [[package]]
   1295 name = "scopeguard"
   1296 version = "1.1.0"
   1297 source = "registry+https://github.com/rust-lang/crates.io-index"
   1298 checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
   1299 
   1300 [[package]]
   1301 name = "secp256kfun"
   1302 version = "0.7.1"
   1303 dependencies = [
   1304  "digest",
   1305  "rand_core 0.6.4",
   1306  "serde",
   1307  "subtle-ng",
   1308 ]
   1309 
   1310 [[package]]
   1311 name = "security-framework"
   1312 version = "2.7.0"
   1313 source = "registry+https://github.com/rust-lang/crates.io-index"
   1314 checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c"
   1315 dependencies = [
   1316  "bitflags",
   1317  "core-foundation",
   1318  "core-foundation-sys",
   1319  "libc",
   1320  "security-framework-sys",
   1321 ]
   1322 
   1323 [[package]]
   1324 name = "security-framework-sys"
   1325 version = "2.6.1"
   1326 source = "registry+https://github.com/rust-lang/crates.io-index"
   1327 checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
   1328 dependencies = [
   1329  "core-foundation-sys",
   1330  "libc",
   1331 ]
   1332 
   1333 [[package]]
   1334 name = "serde"
   1335 version = "1.0.145"
   1336 source = "registry+https://github.com/rust-lang/crates.io-index"
   1337 checksum = "728eb6351430bccb993660dfffc5a72f91ccc1295abaa8ce19b27ebe4f75568b"
   1338 dependencies = [
   1339  "serde_derive",
   1340 ]
   1341 
   1342 [[package]]
   1343 name = "serde_derive"
   1344 version = "1.0.145"
   1345 source = "registry+https://github.com/rust-lang/crates.io-index"
   1346 checksum = "81fa1584d3d1bcacd84c277a0dfe21f5b0f6accf4a23d04d4c6d61f1af522b4c"
   1347 dependencies = [
   1348  "proc-macro2",
   1349  "quote",
   1350  "syn",
   1351 ]
   1352 
   1353 [[package]]
   1354 name = "serde_json"
   1355 version = "1.0.85"
   1356 source = "registry+https://github.com/rust-lang/crates.io-index"
   1357 checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44"
   1358 dependencies = [
   1359  "itoa",
   1360  "ryu",
   1361  "serde",
   1362 ]
   1363 
   1364 [[package]]
   1365 name = "serde_urlencoded"
   1366 version = "0.7.1"
   1367 source = "registry+https://github.com/rust-lang/crates.io-index"
   1368 checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
   1369 dependencies = [
   1370  "form_urlencoded",
   1371  "itoa",
   1372  "ryu",
   1373  "serde",
   1374 ]
   1375 
   1376 [[package]]
   1377 name = "sha2"
   1378 version = "0.10.6"
   1379 source = "registry+https://github.com/rust-lang/crates.io-index"
   1380 checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
   1381 dependencies = [
   1382  "cfg-if",
   1383  "cpufeatures",
   1384  "digest",
   1385 ]
   1386 
   1387 [[package]]
   1388 name = "sharded-slab"
   1389 version = "0.1.4"
   1390 source = "registry+https://github.com/rust-lang/crates.io-index"
   1391 checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
   1392 dependencies = [
   1393  "lazy_static",
   1394 ]
   1395 
   1396 [[package]]
   1397 name = "signal-hook-registry"
   1398 version = "1.4.0"
   1399 source = "registry+https://github.com/rust-lang/crates.io-index"
   1400 checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
   1401 dependencies = [
   1402  "libc",
   1403 ]
   1404 
   1405 [[package]]
   1406 name = "slab"
   1407 version = "0.4.7"
   1408 source = "registry+https://github.com/rust-lang/crates.io-index"
   1409 checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
   1410 dependencies = [
   1411  "autocfg",
   1412 ]
   1413 
   1414 [[package]]
   1415 name = "smallvec"
   1416 version = "1.9.0"
   1417 source = "registry+https://github.com/rust-lang/crates.io-index"
   1418 checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
   1419 
   1420 [[package]]
   1421 name = "socket2"
   1422 version = "0.4.7"
   1423 source = "registry+https://github.com/rust-lang/crates.io-index"
   1424 checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
   1425 dependencies = [
   1426  "libc",
   1427  "winapi",
   1428 ]
   1429 
   1430 [[package]]
   1431 name = "spin"
   1432 version = "0.9.4"
   1433 source = "registry+https://github.com/rust-lang/crates.io-index"
   1434 checksum = "7f6002a767bff9e83f8eeecf883ecb8011875a21ae8da43bffb817a57e78cc09"
   1435 
   1436 [[package]]
   1437 name = "stable-pattern"
   1438 version = "0.1.0"
   1439 source = "registry+https://github.com/rust-lang/crates.io-index"
   1440 checksum = "4564168c00635f88eaed410d5efa8131afa8d8699a612c80c455a0ba05c21045"
   1441 dependencies = [
   1442  "memchr",
   1443 ]
   1444 
   1445 [[package]]
   1446 name = "state"
   1447 version = "0.5.3"
   1448 source = "registry+https://github.com/rust-lang/crates.io-index"
   1449 checksum = "dbe866e1e51e8260c9eed836a042a5e7f6726bb2b411dffeaa712e19c388f23b"
   1450 dependencies = [
   1451  "loom",
   1452 ]
   1453 
   1454 [[package]]
   1455 name = "subtle"
   1456 version = "2.4.1"
   1457 source = "registry+https://github.com/rust-lang/crates.io-index"
   1458 checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
   1459 
   1460 [[package]]
   1461 name = "subtle-ng"
   1462 version = "2.5.0"
   1463 source = "registry+https://github.com/rust-lang/crates.io-index"
   1464 checksum = "734676eb262c623cec13c3155096e08d1f8f29adce39ba17948b18dad1e54142"
   1465 
   1466 [[package]]
   1467 name = "syn"
   1468 version = "1.0.101"
   1469 source = "registry+https://github.com/rust-lang/crates.io-index"
   1470 checksum = "e90cde112c4b9690b8cbe810cba9ddd8bc1d7472e2cae317b69e9438c1cba7d2"
   1471 dependencies = [
   1472  "proc-macro2",
   1473  "quote",
   1474  "unicode-ident",
   1475 ]
   1476 
   1477 [[package]]
   1478 name = "tempfile"
   1479 version = "3.3.0"
   1480 source = "registry+https://github.com/rust-lang/crates.io-index"
   1481 checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
   1482 dependencies = [
   1483  "cfg-if",
   1484  "fastrand",
   1485  "libc",
   1486  "redox_syscall",
   1487  "remove_dir_all",
   1488  "winapi",
   1489 ]
   1490 
   1491 [[package]]
   1492 name = "thiserror"
   1493 version = "1.0.37"
   1494 source = "registry+https://github.com/rust-lang/crates.io-index"
   1495 checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
   1496 dependencies = [
   1497  "thiserror-impl",
   1498 ]
   1499 
   1500 [[package]]
   1501 name = "thiserror-impl"
   1502 version = "1.0.37"
   1503 source = "registry+https://github.com/rust-lang/crates.io-index"
   1504 checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
   1505 dependencies = [
   1506  "proc-macro2",
   1507  "quote",
   1508  "syn",
   1509 ]
   1510 
   1511 [[package]]
   1512 name = "thread_local"
   1513 version = "1.1.4"
   1514 source = "registry+https://github.com/rust-lang/crates.io-index"
   1515 checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
   1516 dependencies = [
   1517  "once_cell",
   1518 ]
   1519 
   1520 [[package]]
   1521 name = "time"
   1522 version = "0.3.14"
   1523 source = "registry+https://github.com/rust-lang/crates.io-index"
   1524 checksum = "3c3f9a28b618c3a6b9251b6908e9c99e04b9e5c02e6581ccbb67d59c34ef7f9b"
   1525 dependencies = [
   1526  "itoa",
   1527  "libc",
   1528  "num_threads",
   1529  "time-macros",
   1530 ]
   1531 
   1532 [[package]]
   1533 name = "time-macros"
   1534 version = "0.2.4"
   1535 source = "registry+https://github.com/rust-lang/crates.io-index"
   1536 checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
   1537 
   1538 [[package]]
   1539 name = "tinyvec"
   1540 version = "1.6.0"
   1541 source = "registry+https://github.com/rust-lang/crates.io-index"
   1542 checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
   1543 dependencies = [
   1544  "tinyvec_macros",
   1545 ]
   1546 
   1547 [[package]]
   1548 name = "tinyvec_macros"
   1549 version = "0.1.0"
   1550 source = "registry+https://github.com/rust-lang/crates.io-index"
   1551 checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
   1552 
   1553 [[package]]
   1554 name = "tokio"
   1555 version = "1.21.2"
   1556 source = "registry+https://github.com/rust-lang/crates.io-index"
   1557 checksum = "a9e03c497dc955702ba729190dc4aac6f2a0ce97f913e5b1b5912fc5039d9099"
   1558 dependencies = [
   1559  "autocfg",
   1560  "bytes",
   1561  "libc",
   1562  "memchr",
   1563  "mio",
   1564  "num_cpus",
   1565  "pin-project-lite",
   1566  "signal-hook-registry",
   1567  "socket2",
   1568  "tokio-macros",
   1569  "winapi",
   1570 ]
   1571 
   1572 [[package]]
   1573 name = "tokio-macros"
   1574 version = "1.8.0"
   1575 source = "registry+https://github.com/rust-lang/crates.io-index"
   1576 checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484"
   1577 dependencies = [
   1578  "proc-macro2",
   1579  "quote",
   1580  "syn",
   1581 ]
   1582 
   1583 [[package]]
   1584 name = "tokio-native-tls"
   1585 version = "0.3.0"
   1586 source = "registry+https://github.com/rust-lang/crates.io-index"
   1587 checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
   1588 dependencies = [
   1589  "native-tls",
   1590  "tokio",
   1591 ]
   1592 
   1593 [[package]]
   1594 name = "tokio-stream"
   1595 version = "0.1.10"
   1596 source = "registry+https://github.com/rust-lang/crates.io-index"
   1597 checksum = "f6edf2d6bc038a43d31353570e27270603f4648d18f5ed10c0e179abe43255af"
   1598 dependencies = [
   1599  "futures-core",
   1600  "pin-project-lite",
   1601  "tokio",
   1602 ]
   1603 
   1604 [[package]]
   1605 name = "tokio-util"
   1606 version = "0.7.4"
   1607 source = "registry+https://github.com/rust-lang/crates.io-index"
   1608 checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740"
   1609 dependencies = [
   1610  "bytes",
   1611  "futures-core",
   1612  "futures-sink",
   1613  "pin-project-lite",
   1614  "tokio",
   1615  "tracing",
   1616 ]
   1617 
   1618 [[package]]
   1619 name = "toml"
   1620 version = "0.5.9"
   1621 source = "registry+https://github.com/rust-lang/crates.io-index"
   1622 checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
   1623 dependencies = [
   1624  "serde",
   1625 ]
   1626 
   1627 [[package]]
   1628 name = "tower-service"
   1629 version = "0.3.2"
   1630 source = "registry+https://github.com/rust-lang/crates.io-index"
   1631 checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
   1632 
   1633 [[package]]
   1634 name = "tracing"
   1635 version = "0.1.36"
   1636 source = "registry+https://github.com/rust-lang/crates.io-index"
   1637 checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307"
   1638 dependencies = [
   1639  "cfg-if",
   1640  "pin-project-lite",
   1641  "tracing-attributes",
   1642  "tracing-core",
   1643 ]
   1644 
   1645 [[package]]
   1646 name = "tracing-attributes"
   1647 version = "0.1.22"
   1648 source = "registry+https://github.com/rust-lang/crates.io-index"
   1649 checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2"
   1650 dependencies = [
   1651  "proc-macro2",
   1652  "quote",
   1653  "syn",
   1654 ]
   1655 
   1656 [[package]]
   1657 name = "tracing-core"
   1658 version = "0.1.29"
   1659 source = "registry+https://github.com/rust-lang/crates.io-index"
   1660 checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7"
   1661 dependencies = [
   1662  "once_cell",
   1663  "valuable",
   1664 ]
   1665 
   1666 [[package]]
   1667 name = "tracing-log"
   1668 version = "0.1.3"
   1669 source = "registry+https://github.com/rust-lang/crates.io-index"
   1670 checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
   1671 dependencies = [
   1672  "lazy_static",
   1673  "log",
   1674  "tracing-core",
   1675 ]
   1676 
   1677 [[package]]
   1678 name = "tracing-subscriber"
   1679 version = "0.3.15"
   1680 source = "registry+https://github.com/rust-lang/crates.io-index"
   1681 checksum = "60db860322da191b40952ad9affe65ea23e7dd6a5c442c2c42865810c6ab8e6b"
   1682 dependencies = [
   1683  "ansi_term",
   1684  "matchers",
   1685  "once_cell",
   1686  "regex",
   1687  "sharded-slab",
   1688  "smallvec",
   1689  "thread_local",
   1690  "tracing",
   1691  "tracing-core",
   1692  "tracing-log",
   1693 ]
   1694 
   1695 [[package]]
   1696 name = "try-lock"
   1697 version = "0.2.3"
   1698 source = "registry+https://github.com/rust-lang/crates.io-index"
   1699 checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
   1700 
   1701 [[package]]
   1702 name = "typenum"
   1703 version = "1.15.0"
   1704 source = "registry+https://github.com/rust-lang/crates.io-index"
   1705 checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
   1706 
   1707 [[package]]
   1708 name = "ubyte"
   1709 version = "0.10.3"
   1710 source = "registry+https://github.com/rust-lang/crates.io-index"
   1711 checksum = "c81f0dae7d286ad0d9366d7679a77934cfc3cf3a8d67e82669794412b2368fe6"
   1712 dependencies = [
   1713  "serde",
   1714 ]
   1715 
   1716 [[package]]
   1717 name = "uncased"
   1718 version = "0.9.7"
   1719 source = "registry+https://github.com/rust-lang/crates.io-index"
   1720 checksum = "09b01702b0fd0b3fadcf98e098780badda8742d4f4a7676615cad90e8ac73622"
   1721 dependencies = [
   1722  "serde",
   1723  "version_check",
   1724 ]
   1725 
   1726 [[package]]
   1727 name = "unicode-bidi"
   1728 version = "0.3.8"
   1729 source = "registry+https://github.com/rust-lang/crates.io-index"
   1730 checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
   1731 
   1732 [[package]]
   1733 name = "unicode-ident"
   1734 version = "1.0.4"
   1735 source = "registry+https://github.com/rust-lang/crates.io-index"
   1736 checksum = "dcc811dc4066ac62f84f11307873c4850cb653bfa9b1719cee2bd2204a4bc5dd"
   1737 
   1738 [[package]]
   1739 name = "unicode-normalization"
   1740 version = "0.1.22"
   1741 source = "registry+https://github.com/rust-lang/crates.io-index"
   1742 checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
   1743 dependencies = [
   1744  "tinyvec",
   1745 ]
   1746 
   1747 [[package]]
   1748 name = "unicode-xid"
   1749 version = "0.2.4"
   1750 source = "registry+https://github.com/rust-lang/crates.io-index"
   1751 checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
   1752 
   1753 [[package]]
   1754 name = "universal-hash"
   1755 version = "0.5.0"
   1756 source = "registry+https://github.com/rust-lang/crates.io-index"
   1757 checksum = "7d3160b73c9a19f7e2939a2fdad446c57c1bbbbf4d919d3213ff1267a580d8b5"
   1758 dependencies = [
   1759  "crypto-common",
   1760  "subtle",
   1761 ]
   1762 
   1763 [[package]]
   1764 name = "url"
   1765 version = "2.3.1"
   1766 source = "registry+https://github.com/rust-lang/crates.io-index"
   1767 checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
   1768 dependencies = [
   1769  "form_urlencoded",
   1770  "idna",
   1771  "percent-encoding",
   1772 ]
   1773 
   1774 [[package]]
   1775 name = "valuable"
   1776 version = "0.1.0"
   1777 source = "registry+https://github.com/rust-lang/crates.io-index"
   1778 checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
   1779 
   1780 [[package]]
   1781 name = "vcpkg"
   1782 version = "0.2.15"
   1783 source = "registry+https://github.com/rust-lang/crates.io-index"
   1784 checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
   1785 
   1786 [[package]]
   1787 name = "version_check"
   1788 version = "0.9.4"
   1789 source = "registry+https://github.com/rust-lang/crates.io-index"
   1790 checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
   1791 
   1792 [[package]]
   1793 name = "want"
   1794 version = "0.3.0"
   1795 source = "registry+https://github.com/rust-lang/crates.io-index"
   1796 checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
   1797 dependencies = [
   1798  "log",
   1799  "try-lock",
   1800 ]
   1801 
   1802 [[package]]
   1803 name = "wasi"
   1804 version = "0.11.0+wasi-snapshot-preview1"
   1805 source = "registry+https://github.com/rust-lang/crates.io-index"
   1806 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
   1807 
   1808 [[package]]
   1809 name = "wasm-bindgen"
   1810 version = "0.2.83"
   1811 source = "registry+https://github.com/rust-lang/crates.io-index"
   1812 checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
   1813 dependencies = [
   1814  "cfg-if",
   1815  "wasm-bindgen-macro",
   1816 ]
   1817 
   1818 [[package]]
   1819 name = "wasm-bindgen-backend"
   1820 version = "0.2.83"
   1821 source = "registry+https://github.com/rust-lang/crates.io-index"
   1822 checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
   1823 dependencies = [
   1824  "bumpalo",
   1825  "log",
   1826  "once_cell",
   1827  "proc-macro2",
   1828  "quote",
   1829  "syn",
   1830  "wasm-bindgen-shared",
   1831 ]
   1832 
   1833 [[package]]
   1834 name = "wasm-bindgen-futures"
   1835 version = "0.4.33"
   1836 source = "registry+https://github.com/rust-lang/crates.io-index"
   1837 checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d"
   1838 dependencies = [
   1839  "cfg-if",
   1840  "js-sys",
   1841  "wasm-bindgen",
   1842  "web-sys",
   1843 ]
   1844 
   1845 [[package]]
   1846 name = "wasm-bindgen-macro"
   1847 version = "0.2.83"
   1848 source = "registry+https://github.com/rust-lang/crates.io-index"
   1849 checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
   1850 dependencies = [
   1851  "quote",
   1852  "wasm-bindgen-macro-support",
   1853 ]
   1854 
   1855 [[package]]
   1856 name = "wasm-bindgen-macro-support"
   1857 version = "0.2.83"
   1858 source = "registry+https://github.com/rust-lang/crates.io-index"
   1859 checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
   1860 dependencies = [
   1861  "proc-macro2",
   1862  "quote",
   1863  "syn",
   1864  "wasm-bindgen-backend",
   1865  "wasm-bindgen-shared",
   1866 ]
   1867 
   1868 [[package]]
   1869 name = "wasm-bindgen-shared"
   1870 version = "0.2.83"
   1871 source = "registry+https://github.com/rust-lang/crates.io-index"
   1872 checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
   1873 
   1874 [[package]]
   1875 name = "web-sys"
   1876 version = "0.3.60"
   1877 source = "registry+https://github.com/rust-lang/crates.io-index"
   1878 checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f"
   1879 dependencies = [
   1880  "js-sys",
   1881  "wasm-bindgen",
   1882 ]
   1883 
   1884 [[package]]
   1885 name = "winapi"
   1886 version = "0.3.9"
   1887 source = "registry+https://github.com/rust-lang/crates.io-index"
   1888 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
   1889 dependencies = [
   1890  "winapi-i686-pc-windows-gnu",
   1891  "winapi-x86_64-pc-windows-gnu",
   1892 ]
   1893 
   1894 [[package]]
   1895 name = "winapi-i686-pc-windows-gnu"
   1896 version = "0.4.0"
   1897 source = "registry+https://github.com/rust-lang/crates.io-index"
   1898 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
   1899 
   1900 [[package]]
   1901 name = "winapi-x86_64-pc-windows-gnu"
   1902 version = "0.4.0"
   1903 source = "registry+https://github.com/rust-lang/crates.io-index"
   1904 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
   1905 
   1906 [[package]]
   1907 name = "windows"
   1908 version = "0.32.0"
   1909 source = "registry+https://github.com/rust-lang/crates.io-index"
   1910 checksum = "fbedf6db9096bc2364adce0ae0aa636dcd89f3c3f2cd67947062aaf0ca2a10ec"
   1911 dependencies = [
   1912  "windows_aarch64_msvc 0.32.0",
   1913  "windows_i686_gnu 0.32.0",
   1914  "windows_i686_msvc 0.32.0",
   1915  "windows_x86_64_gnu 0.32.0",
   1916  "windows_x86_64_msvc 0.32.0",
   1917 ]
   1918 
   1919 [[package]]
   1920 name = "windows-sys"
   1921 version = "0.36.1"
   1922 source = "registry+https://github.com/rust-lang/crates.io-index"
   1923 checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
   1924 dependencies = [
   1925  "windows_aarch64_msvc 0.36.1",
   1926  "windows_i686_gnu 0.36.1",
   1927  "windows_i686_msvc 0.36.1",
   1928  "windows_x86_64_gnu 0.36.1",
   1929  "windows_x86_64_msvc 0.36.1",
   1930 ]
   1931 
   1932 [[package]]
   1933 name = "windows_aarch64_msvc"
   1934 version = "0.32.0"
   1935 source = "registry+https://github.com/rust-lang/crates.io-index"
   1936 checksum = "d8e92753b1c443191654ec532f14c199742964a061be25d77d7a96f09db20bf5"
   1937 
   1938 [[package]]
   1939 name = "windows_aarch64_msvc"
   1940 version = "0.36.1"
   1941 source = "registry+https://github.com/rust-lang/crates.io-index"
   1942 checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
   1943 
   1944 [[package]]
   1945 name = "windows_i686_gnu"
   1946 version = "0.32.0"
   1947 source = "registry+https://github.com/rust-lang/crates.io-index"
   1948 checksum = "6a711c68811799e017b6038e0922cb27a5e2f43a2ddb609fe0b6f3eeda9de615"
   1949 
   1950 [[package]]
   1951 name = "windows_i686_gnu"
   1952 version = "0.36.1"
   1953 source = "registry+https://github.com/rust-lang/crates.io-index"
   1954 checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
   1955 
   1956 [[package]]
   1957 name = "windows_i686_msvc"
   1958 version = "0.32.0"
   1959 source = "registry+https://github.com/rust-lang/crates.io-index"
   1960 checksum = "146c11bb1a02615db74680b32a68e2d61f553cc24c4eb5b4ca10311740e44172"
   1961 
   1962 [[package]]
   1963 name = "windows_i686_msvc"
   1964 version = "0.36.1"
   1965 source = "registry+https://github.com/rust-lang/crates.io-index"
   1966 checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
   1967 
   1968 [[package]]
   1969 name = "windows_x86_64_gnu"
   1970 version = "0.32.0"
   1971 source = "registry+https://github.com/rust-lang/crates.io-index"
   1972 checksum = "c912b12f7454c6620635bbff3450962753834be2a594819bd5e945af18ec64bc"
   1973 
   1974 [[package]]
   1975 name = "windows_x86_64_gnu"
   1976 version = "0.36.1"
   1977 source = "registry+https://github.com/rust-lang/crates.io-index"
   1978 checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
   1979 
   1980 [[package]]
   1981 name = "windows_x86_64_msvc"
   1982 version = "0.32.0"
   1983 source = "registry+https://github.com/rust-lang/crates.io-index"
   1984 checksum = "504a2476202769977a040c6364301a3f65d0cc9e3fb08600b2bda150a0488316"
   1985 
   1986 [[package]]
   1987 name = "windows_x86_64_msvc"
   1988 version = "0.36.1"
   1989 source = "registry+https://github.com/rust-lang/crates.io-index"
   1990 checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
   1991 
   1992 [[package]]
   1993 name = "winreg"
   1994 version = "0.10.1"
   1995 source = "registry+https://github.com/rust-lang/crates.io-index"
   1996 checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
   1997 dependencies = [
   1998  "winapi",
   1999 ]
   2000 
   2001 [[package]]
   2002 name = "yansi"
   2003 version = "0.5.1"
   2004 source = "registry+https://github.com/rust-lang/crates.io-index"
   2005 checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"