mx-bookmarks

A small bookmarks tui based on the matrix protocol and MSC2771
git clone git://archive.git.mtrnord.blog/MTRNord/mx-bookmarks.git
Log | Files | Refs | LICENSE

Cargo.lock (66404B)


      1 # This file is automatically @generated by Cargo.
      2 # It is not intended for manual editing.
      3 [[package]]
      4 name = "aes-ctr"
      5 version = "0.5.0"
      6 source = "registry+https://github.com/rust-lang/crates.io-index"
      7 checksum = "64c3b03608ea1c077228520a167cca2514dc7cd8100a81b30a2b38be985234e5"
      8 dependencies = [
      9  "aes-soft",
     10  "aesni",
     11  "ctr",
     12  "stream-cipher",
     13 ]
     14 
     15 [[package]]
     16 name = "aes-soft"
     17 version = "0.5.0"
     18 source = "registry+https://github.com/rust-lang/crates.io-index"
     19 checksum = "63dd91889c49327ad7ef3b500fd1109dbd3c509a03db0d4a9ce413b79f575cb6"
     20 dependencies = [
     21  "block-cipher",
     22  "byteorder",
     23  "opaque-debug",
     24 ]
     25 
     26 [[package]]
     27 name = "aesni"
     28 version = "0.9.0"
     29 source = "registry+https://github.com/rust-lang/crates.io-index"
     30 checksum = "b6a4d655ae633a96d0acaf0fd7e76aafb8ca5732739bba37aac6f882c8fce656"
     31 dependencies = [
     32  "block-cipher",
     33  "opaque-debug",
     34  "stream-cipher",
     35 ]
     36 
     37 [[package]]
     38 name = "ahash"
     39 version = "0.3.8"
     40 source = "registry+https://github.com/rust-lang/crates.io-index"
     41 checksum = "e8fd72866655d1904d6b0997d0b07ba561047d070fbe29de039031c641b61217"
     42 dependencies = [
     43  "const-random",
     44 ]
     45 
     46 [[package]]
     47 name = "aho-corasick"
     48 version = "0.7.15"
     49 source = "registry+https://github.com/rust-lang/crates.io-index"
     50 checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5"
     51 dependencies = [
     52  "memchr",
     53 ]
     54 
     55 [[package]]
     56 name = "ansi_term"
     57 version = "0.12.1"
     58 source = "registry+https://github.com/rust-lang/crates.io-index"
     59 checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
     60 dependencies = [
     61  "winapi 0.3.9",
     62 ]
     63 
     64 [[package]]
     65 name = "anyhow"
     66 version = "1.0.34"
     67 source = "registry+https://github.com/rust-lang/crates.io-index"
     68 checksum = "bf8dcb5b4bbaa28653b647d8c77bd4ed40183b48882e130c1f1ffb73de069fd7"
     69 
     70 [[package]]
     71 name = "assign"
     72 version = "1.1.0"
     73 source = "registry+https://github.com/rust-lang/crates.io-index"
     74 checksum = "4af5687fe33aec5e70ef14caac5e0d363e335e5e5d6385fb75978d0c241b1d67"
     75 
     76 [[package]]
     77 name = "async-native-tls"
     78 version = "0.3.3"
     79 source = "registry+https://github.com/rust-lang/crates.io-index"
     80 checksum = "9e9e7a929bd34c68a82d58a4de7f86fffdaf97fb2af850162a7bb19dd7269b33"
     81 dependencies = [
     82  "native-tls",
     83  "thiserror",
     84  "tokio",
     85  "url",
     86 ]
     87 
     88 [[package]]
     89 name = "async-stream"
     90 version = "0.2.1"
     91 source = "registry+https://github.com/rust-lang/crates.io-index"
     92 checksum = "22068c0c19514942eefcfd4daf8976ef1aad84e61539f95cd200c35202f80af5"
     93 dependencies = [
     94  "async-stream-impl",
     95  "futures-core",
     96 ]
     97 
     98 [[package]]
     99 name = "async-stream-impl"
    100 version = "0.2.1"
    101 source = "registry+https://github.com/rust-lang/crates.io-index"
    102 checksum = "25f9db3b38af870bf7e5cc649167533b493928e50744e2c30ae350230b414670"
    103 dependencies = [
    104  "proc-macro2",
    105  "quote",
    106  "syn",
    107 ]
    108 
    109 [[package]]
    110 name = "async-trait"
    111 version = "0.1.41"
    112 source = "registry+https://github.com/rust-lang/crates.io-index"
    113 checksum = "b246867b8b3b6ae56035f1eb1ed557c1d8eae97f0d53696138a50fa0e3a3b8c0"
    114 dependencies = [
    115  "proc-macro2",
    116  "quote",
    117  "syn",
    118 ]
    119 
    120 [[package]]
    121 name = "atomic"
    122 version = "0.5.0"
    123 source = "registry+https://github.com/rust-lang/crates.io-index"
    124 checksum = "c3410529e8288c463bedb5930f82833bc0c90e5d2fe639a56582a4d09220b281"
    125 dependencies = [
    126  "autocfg",
    127 ]
    128 
    129 [[package]]
    130 name = "autocfg"
    131 version = "1.0.1"
    132 source = "registry+https://github.com/rust-lang/crates.io-index"
    133 checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
    134 
    135 [[package]]
    136 name = "base-x"
    137 version = "0.2.7"
    138 source = "registry+https://github.com/rust-lang/crates.io-index"
    139 checksum = "c2734baf8ed08920ccecce1b48a2dfce4ac74a973144add031163bd21a1c5dab"
    140 
    141 [[package]]
    142 name = "base64"
    143 version = "0.12.3"
    144 source = "registry+https://github.com/rust-lang/crates.io-index"
    145 checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
    146 
    147 [[package]]
    148 name = "base64"
    149 version = "0.13.0"
    150 source = "registry+https://github.com/rust-lang/crates.io-index"
    151 checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
    152 
    153 [[package]]
    154 name = "bitflags"
    155 version = "1.2.1"
    156 source = "registry+https://github.com/rust-lang/crates.io-index"
    157 checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
    158 
    159 [[package]]
    160 name = "block-buffer"
    161 version = "0.9.0"
    162 source = "registry+https://github.com/rust-lang/crates.io-index"
    163 checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
    164 dependencies = [
    165  "generic-array",
    166 ]
    167 
    168 [[package]]
    169 name = "block-cipher"
    170 version = "0.8.0"
    171 source = "registry+https://github.com/rust-lang/crates.io-index"
    172 checksum = "f337a3e6da609650eb74e02bc9fac7b735049f7623ab12f2e4c719316fcc7e80"
    173 dependencies = [
    174  "generic-array",
    175 ]
    176 
    177 [[package]]
    178 name = "bumpalo"
    179 version = "3.4.0"
    180 source = "registry+https://github.com/rust-lang/crates.io-index"
    181 checksum = "2e8c087f005730276d1096a652e92a8bacee2e2472bcc9715a74d2bec38b5820"
    182 
    183 [[package]]
    184 name = "byteorder"
    185 version = "1.3.4"
    186 source = "registry+https://github.com/rust-lang/crates.io-index"
    187 checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
    188 
    189 [[package]]
    190 name = "bytes"
    191 version = "0.5.6"
    192 source = "registry+https://github.com/rust-lang/crates.io-index"
    193 checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
    194 
    195 [[package]]
    196 name = "cassowary"
    197 version = "0.3.0"
    198 source = "registry+https://github.com/rust-lang/crates.io-index"
    199 checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53"
    200 
    201 [[package]]
    202 name = "cc"
    203 version = "1.0.61"
    204 source = "registry+https://github.com/rust-lang/crates.io-index"
    205 checksum = "ed67cbde08356238e75fc4656be4749481eeffb09e19f320a25237d5221c985d"
    206 
    207 [[package]]
    208 name = "cfg-if"
    209 version = "0.1.10"
    210 source = "registry+https://github.com/rust-lang/crates.io-index"
    211 checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
    212 
    213 [[package]]
    214 name = "cfg-if"
    215 version = "1.0.0"
    216 source = "registry+https://github.com/rust-lang/crates.io-index"
    217 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
    218 
    219 [[package]]
    220 name = "chrono"
    221 version = "0.4.19"
    222 source = "registry+https://github.com/rust-lang/crates.io-index"
    223 checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
    224 dependencies = [
    225  "libc",
    226  "num-integer",
    227  "num-traits",
    228  "time 0.1.44",
    229  "winapi 0.3.9",
    230 ]
    231 
    232 [[package]]
    233 name = "cjson"
    234 version = "0.1.1"
    235 source = "registry+https://github.com/rust-lang/crates.io-index"
    236 checksum = "a2b601fb350e2fdbbd2ffb19aef2141fa90864d8fdca83d64466cb9bdb5694a7"
    237 dependencies = [
    238  "itoa",
    239  "serde",
    240  "serde_derive",
    241  "serde_json",
    242 ]
    243 
    244 [[package]]
    245 name = "cloudabi"
    246 version = "0.0.3"
    247 source = "registry+https://github.com/rust-lang/crates.io-index"
    248 checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
    249 dependencies = [
    250  "bitflags",
    251 ]
    252 
    253 [[package]]
    254 name = "cloudabi"
    255 version = "0.1.0"
    256 source = "registry+https://github.com/rust-lang/crates.io-index"
    257 checksum = "4344512281c643ae7638bbabc3af17a11307803ec8f0fcad9fae512a8bf36467"
    258 dependencies = [
    259  "bitflags",
    260 ]
    261 
    262 [[package]]
    263 name = "cmake"
    264 version = "0.1.44"
    265 source = "registry+https://github.com/rust-lang/crates.io-index"
    266 checksum = "0e56268c17a6248366d66d4a47a3381369d068cce8409bb1716ed77ea32163bb"
    267 dependencies = [
    268  "cc",
    269 ]
    270 
    271 [[package]]
    272 name = "const-random"
    273 version = "0.1.11"
    274 source = "registry+https://github.com/rust-lang/crates.io-index"
    275 checksum = "02dc82c12dc2ee6e1ded861cf7d582b46f66f796d1b6c93fa28b911ead95da02"
    276 dependencies = [
    277  "const-random-macro",
    278  "proc-macro-hack",
    279 ]
    280 
    281 [[package]]
    282 name = "const-random-macro"
    283 version = "0.1.11"
    284 source = "registry+https://github.com/rust-lang/crates.io-index"
    285 checksum = "fc757bbb9544aa296c2ae00c679e81f886b37e28e59097defe0cf524306f6685"
    286 dependencies = [
    287  "getrandom 0.2.0",
    288  "proc-macro-hack",
    289 ]
    290 
    291 [[package]]
    292 name = "const_fn"
    293 version = "0.4.3"
    294 source = "registry+https://github.com/rust-lang/crates.io-index"
    295 checksum = "c478836e029dcef17fb47c89023448c64f781a046e0300e257ad8225ae59afab"
    296 
    297 [[package]]
    298 name = "core-foundation"
    299 version = "0.9.1"
    300 source = "registry+https://github.com/rust-lang/crates.io-index"
    301 checksum = "0a89e2ae426ea83155dccf10c0fa6b1463ef6d5fcb44cee0b224a408fa640a62"
    302 dependencies = [
    303  "core-foundation-sys",
    304  "libc",
    305 ]
    306 
    307 [[package]]
    308 name = "core-foundation-sys"
    309 version = "0.8.2"
    310 source = "registry+https://github.com/rust-lang/crates.io-index"
    311 checksum = "ea221b5284a47e40033bf9b66f35f984ec0ea2931eb03505246cd27a963f981b"
    312 
    313 [[package]]
    314 name = "cpuid-bool"
    315 version = "0.1.2"
    316 source = "registry+https://github.com/rust-lang/crates.io-index"
    317 checksum = "8aebca1129a03dc6dc2b127edd729435bbc4a37e1d5f4d7513165089ceb02634"
    318 
    319 [[package]]
    320 name = "crossbeam-queue"
    321 version = "0.2.3"
    322 source = "registry+https://github.com/rust-lang/crates.io-index"
    323 checksum = "774ba60a54c213d409d5353bda12d49cd68d14e45036a285234c8d6f91f92570"
    324 dependencies = [
    325  "cfg-if 0.1.10",
    326  "crossbeam-utils",
    327  "maybe-uninit",
    328 ]
    329 
    330 [[package]]
    331 name = "crossbeam-utils"
    332 version = "0.7.2"
    333 source = "registry+https://github.com/rust-lang/crates.io-index"
    334 checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
    335 dependencies = [
    336  "autocfg",
    337  "cfg-if 0.1.10",
    338  "lazy_static",
    339 ]
    340 
    341 [[package]]
    342 name = "crossterm"
    343 version = "0.17.7"
    344 source = "registry+https://github.com/rust-lang/crates.io-index"
    345 checksum = "6f4919d60f26ae233e14233cc39746c8c8bb8cd7b05840ace83604917b51b6c7"
    346 dependencies = [
    347  "bitflags",
    348  "crossterm_winapi",
    349  "lazy_static",
    350  "libc",
    351  "mio 0.7.5",
    352  "parking_lot 0.10.2",
    353  "signal-hook",
    354  "winapi 0.3.9",
    355 ]
    356 
    357 [[package]]
    358 name = "crossterm"
    359 version = "0.18.2"
    360 source = "registry+https://github.com/rust-lang/crates.io-index"
    361 checksum = "4e86d73f2a0b407b5768d10a8c720cf5d2df49a9efc10ca09176d201ead4b7fb"
    362 dependencies = [
    363  "bitflags",
    364  "crossterm_winapi",
    365  "lazy_static",
    366  "libc",
    367  "mio 0.7.5",
    368  "parking_lot 0.11.0",
    369  "signal-hook",
    370  "winapi 0.3.9",
    371 ]
    372 
    373 [[package]]
    374 name = "crossterm_winapi"
    375 version = "0.6.2"
    376 source = "registry+https://github.com/rust-lang/crates.io-index"
    377 checksum = "c2265c3f8e080075d9b6417aa72293fc71662f34b4af2612d8d1b074d29510db"
    378 dependencies = [
    379  "winapi 0.3.9",
    380 ]
    381 
    382 [[package]]
    383 name = "crypto-mac"
    384 version = "0.9.1"
    385 source = "registry+https://github.com/rust-lang/crates.io-index"
    386 checksum = "58bcd97a54c7ca5ce2f6eb16f6bede5b0ab5f0055fedc17d2f0b4466e21671ca"
    387 dependencies = [
    388  "generic-array",
    389  "subtle",
    390 ]
    391 
    392 [[package]]
    393 name = "ctr"
    394 version = "0.5.0"
    395 source = "registry+https://github.com/rust-lang/crates.io-index"
    396 checksum = "cc03dee3a2843ac6eb4b5fb39cfcf4cb034d078555d1f4a0afbed418b822f3c2"
    397 dependencies = [
    398  "stream-cipher",
    399 ]
    400 
    401 [[package]]
    402 name = "dashmap"
    403 version = "3.11.10"
    404 source = "registry+https://github.com/rust-lang/crates.io-index"
    405 checksum = "0f260e2fc850179ef410018660006951c1b55b79e8087e87111a2c388994b9b5"
    406 dependencies = [
    407  "ahash",
    408  "cfg-if 0.1.10",
    409  "num_cpus",
    410 ]
    411 
    412 [[package]]
    413 name = "digest"
    414 version = "0.9.0"
    415 source = "registry+https://github.com/rust-lang/crates.io-index"
    416 checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
    417 dependencies = [
    418  "generic-array",
    419 ]
    420 
    421 [[package]]
    422 name = "discard"
    423 version = "1.0.4"
    424 source = "registry+https://github.com/rust-lang/crates.io-index"
    425 checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
    426 
    427 [[package]]
    428 name = "dotenv"
    429 version = "0.15.0"
    430 source = "registry+https://github.com/rust-lang/crates.io-index"
    431 checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
    432 
    433 [[package]]
    434 name = "dtoa"
    435 version = "0.4.6"
    436 source = "registry+https://github.com/rust-lang/crates.io-index"
    437 checksum = "134951f4028bdadb9b84baf4232681efbf277da25144b9b0ad65df75946c422b"
    438 
    439 [[package]]
    440 name = "encoding_rs"
    441 version = "0.8.26"
    442 source = "registry+https://github.com/rust-lang/crates.io-index"
    443 checksum = "801bbab217d7f79c0062f4f7205b5d4427c6d1a7bd7aafdd1475f7c59d62b283"
    444 dependencies = [
    445  "cfg-if 1.0.0",
    446 ]
    447 
    448 [[package]]
    449 name = "fnv"
    450 version = "1.0.7"
    451 source = "registry+https://github.com/rust-lang/crates.io-index"
    452 checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
    453 
    454 [[package]]
    455 name = "foreign-types"
    456 version = "0.3.2"
    457 source = "registry+https://github.com/rust-lang/crates.io-index"
    458 checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
    459 dependencies = [
    460  "foreign-types-shared",
    461 ]
    462 
    463 [[package]]
    464 name = "foreign-types-shared"
    465 version = "0.1.1"
    466 source = "registry+https://github.com/rust-lang/crates.io-index"
    467 checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
    468 
    469 [[package]]
    470 name = "form_urlencoded"
    471 version = "1.0.0"
    472 source = "registry+https://github.com/rust-lang/crates.io-index"
    473 checksum = "ece68d15c92e84fa4f19d3780f1294e5ca82a78a6d515f1efaabcc144688be00"
    474 dependencies = [
    475  "matches",
    476  "percent-encoding",
    477 ]
    478 
    479 [[package]]
    480 name = "fuchsia-zircon"
    481 version = "0.3.3"
    482 source = "registry+https://github.com/rust-lang/crates.io-index"
    483 checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
    484 dependencies = [
    485  "bitflags",
    486  "fuchsia-zircon-sys",
    487 ]
    488 
    489 [[package]]
    490 name = "fuchsia-zircon-sys"
    491 version = "0.3.3"
    492 source = "registry+https://github.com/rust-lang/crates.io-index"
    493 checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
    494 
    495 [[package]]
    496 name = "futures"
    497 version = "0.3.7"
    498 source = "registry+https://github.com/rust-lang/crates.io-index"
    499 checksum = "95314d38584ffbfda215621d723e0a3906f032e03ae5551e650058dac83d4797"
    500 dependencies = [
    501  "futures-channel",
    502  "futures-core",
    503  "futures-executor",
    504  "futures-io",
    505  "futures-sink",
    506  "futures-task",
    507  "futures-util",
    508 ]
    509 
    510 [[package]]
    511 name = "futures-channel"
    512 version = "0.3.7"
    513 source = "registry+https://github.com/rust-lang/crates.io-index"
    514 checksum = "0448174b01148032eed37ac4aed28963aaaa8cfa93569a08e5b479bbc6c2c151"
    515 dependencies = [
    516  "futures-core",
    517  "futures-sink",
    518 ]
    519 
    520 [[package]]
    521 name = "futures-core"
    522 version = "0.3.7"
    523 source = "registry+https://github.com/rust-lang/crates.io-index"
    524 checksum = "18eaa56102984bed2c88ea39026cff3ce3b4c7f508ca970cedf2450ea10d4e46"
    525 
    526 [[package]]
    527 name = "futures-executor"
    528 version = "0.3.7"
    529 source = "registry+https://github.com/rust-lang/crates.io-index"
    530 checksum = "f5f8e0c9258abaea85e78ebdda17ef9666d390e987f006be6080dfe354b708cb"
    531 dependencies = [
    532  "futures-core",
    533  "futures-task",
    534  "futures-util",
    535 ]
    536 
    537 [[package]]
    538 name = "futures-io"
    539 version = "0.3.7"
    540 source = "registry+https://github.com/rust-lang/crates.io-index"
    541 checksum = "6e1798854a4727ff944a7b12aa999f58ce7aa81db80d2dfaaf2ba06f065ddd2b"
    542 
    543 [[package]]
    544 name = "futures-locks"
    545 version = "0.6.0"
    546 source = "registry+https://github.com/rust-lang/crates.io-index"
    547 checksum = "50c4e684ddb2d8a4db5ca8a02b35156da129674ba4412b6f528698d58c594954"
    548 dependencies = [
    549  "futures",
    550 ]
    551 
    552 [[package]]
    553 name = "futures-macro"
    554 version = "0.3.7"
    555 source = "registry+https://github.com/rust-lang/crates.io-index"
    556 checksum = "e36fccf3fc58563b4a14d265027c627c3b665d7fed489427e88e7cc929559efe"
    557 dependencies = [
    558  "proc-macro-hack",
    559  "proc-macro2",
    560  "quote",
    561  "syn",
    562 ]
    563 
    564 [[package]]
    565 name = "futures-sink"
    566 version = "0.3.7"
    567 source = "registry+https://github.com/rust-lang/crates.io-index"
    568 checksum = "0e3ca3f17d6e8804ae5d3df7a7d35b2b3a6fe89dac84b31872720fc3060a0b11"
    569 
    570 [[package]]
    571 name = "futures-task"
    572 version = "0.3.7"
    573 source = "registry+https://github.com/rust-lang/crates.io-index"
    574 checksum = "96d502af37186c4fef99453df03e374683f8a1eec9dcc1e66b3b82dc8278ce3c"
    575 dependencies = [
    576  "once_cell",
    577 ]
    578 
    579 [[package]]
    580 name = "futures-timer"
    581 version = "3.0.2"
    582 source = "registry+https://github.com/rust-lang/crates.io-index"
    583 checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
    584 dependencies = [
    585  "gloo-timers",
    586  "send_wrapper",
    587 ]
    588 
    589 [[package]]
    590 name = "futures-util"
    591 version = "0.3.7"
    592 source = "registry+https://github.com/rust-lang/crates.io-index"
    593 checksum = "abcb44342f62e6f3e8ac427b8aa815f724fd705dfad060b18ac7866c15bb8e34"
    594 dependencies = [
    595  "futures-channel",
    596  "futures-core",
    597  "futures-io",
    598  "futures-macro",
    599  "futures-sink",
    600  "futures-task",
    601  "memchr",
    602  "pin-project 1.0.1",
    603  "pin-utils",
    604  "proc-macro-hack",
    605  "proc-macro-nested",
    606  "slab",
    607 ]
    608 
    609 [[package]]
    610 name = "generator"
    611 version = "0.6.23"
    612 source = "registry+https://github.com/rust-lang/crates.io-index"
    613 checksum = "8cdc09201b2e8ca1b19290cf7e65de2246b8e91fb6874279722189c4de7b94dc"
    614 dependencies = [
    615  "cc",
    616  "libc",
    617  "log",
    618  "rustc_version",
    619  "winapi 0.3.9",
    620 ]
    621 
    622 [[package]]
    623 name = "generic-array"
    624 version = "0.14.4"
    625 source = "registry+https://github.com/rust-lang/crates.io-index"
    626 checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
    627 dependencies = [
    628  "typenum",
    629  "version_check",
    630 ]
    631 
    632 [[package]]
    633 name = "getrandom"
    634 version = "0.1.15"
    635 source = "registry+https://github.com/rust-lang/crates.io-index"
    636 checksum = "fc587bc0ec293155d5bfa6b9891ec18a1e330c234f896ea47fbada4cadbe47e6"
    637 dependencies = [
    638  "cfg-if 0.1.10",
    639  "libc",
    640  "wasi 0.9.0+wasi-snapshot-preview1",
    641  "wasm-bindgen",
    642 ]
    643 
    644 [[package]]
    645 name = "getrandom"
    646 version = "0.2.0"
    647 source = "registry+https://github.com/rust-lang/crates.io-index"
    648 checksum = "ee8025cf36f917e6a52cce185b7c7177689b838b7ec138364e50cc2277a56cf4"
    649 dependencies = [
    650  "cfg-if 0.1.10",
    651  "libc",
    652  "wasi 0.9.0+wasi-snapshot-preview1",
    653 ]
    654 
    655 [[package]]
    656 name = "gloo-timers"
    657 version = "0.2.1"
    658 source = "registry+https://github.com/rust-lang/crates.io-index"
    659 checksum = "47204a46aaff920a1ea58b11d03dec6f704287d27561724a4631e450654a891f"
    660 dependencies = [
    661  "futures-channel",
    662  "futures-core",
    663  "js-sys",
    664  "wasm-bindgen",
    665  "web-sys",
    666 ]
    667 
    668 [[package]]
    669 name = "h2"
    670 version = "0.2.7"
    671 source = "registry+https://github.com/rust-lang/crates.io-index"
    672 checksum = "5e4728fd124914ad25e99e3d15a9361a879f6620f63cb56bbb08f95abb97a535"
    673 dependencies = [
    674  "bytes",
    675  "fnv",
    676  "futures-core",
    677  "futures-sink",
    678  "futures-util",
    679  "http",
    680  "indexmap",
    681  "slab",
    682  "tokio",
    683  "tokio-util",
    684  "tracing",
    685  "tracing-futures",
    686 ]
    687 
    688 [[package]]
    689 name = "hashbrown"
    690 version = "0.9.1"
    691 source = "registry+https://github.com/rust-lang/crates.io-index"
    692 checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
    693 
    694 [[package]]
    695 name = "heck"
    696 version = "0.3.1"
    697 source = "registry+https://github.com/rust-lang/crates.io-index"
    698 checksum = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205"
    699 dependencies = [
    700  "unicode-segmentation",
    701 ]
    702 
    703 [[package]]
    704 name = "hermit-abi"
    705 version = "0.1.17"
    706 source = "registry+https://github.com/rust-lang/crates.io-index"
    707 checksum = "5aca5565f760fb5b220e499d72710ed156fdb74e631659e99377d9ebfbd13ae8"
    708 dependencies = [
    709  "libc",
    710 ]
    711 
    712 [[package]]
    713 name = "hex"
    714 version = "0.4.2"
    715 source = "registry+https://github.com/rust-lang/crates.io-index"
    716 checksum = "644f9158b2f133fd50f5fb3242878846d9eb792e445c893805ff0e3824006e35"
    717 
    718 [[package]]
    719 name = "hmac"
    720 version = "0.9.0"
    721 source = "registry+https://github.com/rust-lang/crates.io-index"
    722 checksum = "deae6d9dbb35ec2c502d62b8f7b1c000a0822c3b0794ba36b3149c0a1c840dff"
    723 dependencies = [
    724  "crypto-mac",
    725  "digest",
    726 ]
    727 
    728 [[package]]
    729 name = "http"
    730 version = "0.2.1"
    731 source = "registry+https://github.com/rust-lang/crates.io-index"
    732 checksum = "28d569972648b2c512421b5f2a405ad6ac9666547189d0c5477a3f200f3e02f9"
    733 dependencies = [
    734  "bytes",
    735  "fnv",
    736  "itoa",
    737 ]
    738 
    739 [[package]]
    740 name = "http-body"
    741 version = "0.3.1"
    742 source = "registry+https://github.com/rust-lang/crates.io-index"
    743 checksum = "13d5ff830006f7646652e057693569bfe0d51760c0085a071769d142a205111b"
    744 dependencies = [
    745  "bytes",
    746  "http",
    747 ]
    748 
    749 [[package]]
    750 name = "httparse"
    751 version = "1.3.4"
    752 source = "registry+https://github.com/rust-lang/crates.io-index"
    753 checksum = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9"
    754 
    755 [[package]]
    756 name = "httpdate"
    757 version = "0.3.2"
    758 source = "registry+https://github.com/rust-lang/crates.io-index"
    759 checksum = "494b4d60369511e7dea41cf646832512a94e542f68bb9c49e54518e0f468eb47"
    760 
    761 [[package]]
    762 name = "hyper"
    763 version = "0.13.9"
    764 source = "registry+https://github.com/rust-lang/crates.io-index"
    765 checksum = "f6ad767baac13b44d4529fcf58ba2cd0995e36e7b435bc5b039de6f47e880dbf"
    766 dependencies = [
    767  "bytes",
    768  "futures-channel",
    769  "futures-core",
    770  "futures-util",
    771  "h2",
    772  "http",
    773  "http-body",
    774  "httparse",
    775  "httpdate",
    776  "itoa",
    777  "pin-project 1.0.1",
    778  "socket2",
    779  "tokio",
    780  "tower-service",
    781  "tracing",
    782  "want",
    783 ]
    784 
    785 [[package]]
    786 name = "hyper-tls"
    787 version = "0.4.3"
    788 source = "registry+https://github.com/rust-lang/crates.io-index"
    789 checksum = "d979acc56dcb5b8dddba3917601745e877576475aa046df3226eabdecef78eed"
    790 dependencies = [
    791  "bytes",
    792  "hyper",
    793  "native-tls",
    794  "tokio",
    795  "tokio-tls",
    796 ]
    797 
    798 [[package]]
    799 name = "idna"
    800 version = "0.2.0"
    801 source = "registry+https://github.com/rust-lang/crates.io-index"
    802 checksum = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9"
    803 dependencies = [
    804  "matches",
    805  "unicode-bidi",
    806  "unicode-normalization",
    807 ]
    808 
    809 [[package]]
    810 name = "indexmap"
    811 version = "1.6.0"
    812 source = "registry+https://github.com/rust-lang/crates.io-index"
    813 checksum = "55e2e4c765aa53a0424761bf9f41aa7a6ac1efa87238f59560640e27fca028f2"
    814 dependencies = [
    815  "autocfg",
    816  "hashbrown",
    817 ]
    818 
    819 [[package]]
    820 name = "instant"
    821 version = "0.1.8"
    822 source = "registry+https://github.com/rust-lang/crates.io-index"
    823 checksum = "cb1fc4429a33e1f80d41dc9fea4d108a88bec1de8053878898ae448a0b52f613"
    824 dependencies = [
    825  "cfg-if 1.0.0",
    826  "js-sys",
    827  "time 0.2.22",
    828  "wasm-bindgen",
    829  "web-sys",
    830 ]
    831 
    832 [[package]]
    833 name = "iovec"
    834 version = "0.1.4"
    835 source = "registry+https://github.com/rust-lang/crates.io-index"
    836 checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
    837 dependencies = [
    838  "libc",
    839 ]
    840 
    841 [[package]]
    842 name = "ipnet"
    843 version = "2.3.0"
    844 source = "registry+https://github.com/rust-lang/crates.io-index"
    845 checksum = "47be2f14c678be2fdcab04ab1171db51b2762ce6f0a8ee87c8dd4a04ed216135"
    846 
    847 [[package]]
    848 name = "itoa"
    849 version = "0.4.6"
    850 source = "registry+https://github.com/rust-lang/crates.io-index"
    851 checksum = "dc6f3ad7b9d11a0c00842ff8de1b60ee58661048eb8049ed33c73594f359d7e6"
    852 
    853 [[package]]
    854 name = "js-sys"
    855 version = "0.3.45"
    856 source = "registry+https://github.com/rust-lang/crates.io-index"
    857 checksum = "ca059e81d9486668f12d455a4ea6daa600bd408134cd17e3d3fb5a32d1f016f8"
    858 dependencies = [
    859  "wasm-bindgen",
    860 ]
    861 
    862 [[package]]
    863 name = "js_int"
    864 version = "0.1.9"
    865 source = "registry+https://github.com/rust-lang/crates.io-index"
    866 checksum = "b96797f53235a1d6dc985f244a69de54b04c45b7e0e357a35c85a45a847d92f2"
    867 dependencies = [
    868  "serde",
    869 ]
    870 
    871 [[package]]
    872 name = "kernel32-sys"
    873 version = "0.2.2"
    874 source = "registry+https://github.com/rust-lang/crates.io-index"
    875 checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
    876 dependencies = [
    877  "winapi 0.2.8",
    878  "winapi-build",
    879 ]
    880 
    881 [[package]]
    882 name = "lazy_static"
    883 version = "1.4.0"
    884 source = "registry+https://github.com/rust-lang/crates.io-index"
    885 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
    886 
    887 [[package]]
    888 name = "libc"
    889 version = "0.2.80"
    890 source = "registry+https://github.com/rust-lang/crates.io-index"
    891 checksum = "4d58d1b70b004888f764dfbf6a26a3b0342a1632d33968e4a179d8011c760614"
    892 
    893 [[package]]
    894 name = "libsqlite3-sys"
    895 version = "0.17.3"
    896 source = "registry+https://github.com/rust-lang/crates.io-index"
    897 checksum = "56d90181c2904c287e5390186be820e5ef311a3c62edebb7d6ca3d6a48ce041d"
    898 dependencies = [
    899  "cc",
    900  "pkg-config",
    901  "vcpkg",
    902 ]
    903 
    904 [[package]]
    905 name = "lock_api"
    906 version = "0.3.4"
    907 source = "registry+https://github.com/rust-lang/crates.io-index"
    908 checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75"
    909 dependencies = [
    910  "scopeguard",
    911 ]
    912 
    913 [[package]]
    914 name = "lock_api"
    915 version = "0.4.1"
    916 source = "registry+https://github.com/rust-lang/crates.io-index"
    917 checksum = "28247cc5a5be2f05fbcd76dd0cf2c7d3b5400cb978a28042abcd4fa0b3f8261c"
    918 dependencies = [
    919  "scopeguard",
    920 ]
    921 
    922 [[package]]
    923 name = "log"
    924 version = "0.4.11"
    925 source = "registry+https://github.com/rust-lang/crates.io-index"
    926 checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b"
    927 dependencies = [
    928  "cfg-if 0.1.10",
    929 ]
    930 
    931 [[package]]
    932 name = "loom"
    933 version = "0.3.6"
    934 source = "registry+https://github.com/rust-lang/crates.io-index"
    935 checksum = "a0e8460f2f2121162705187214720353c517b97bdfb3494c0b1e33d83ebe4bed"
    936 dependencies = [
    937  "cfg-if 0.1.10",
    938  "generator",
    939  "scoped-tls",
    940  "serde",
    941  "serde_json",
    942 ]
    943 
    944 [[package]]
    945 name = "maplit"
    946 version = "1.0.2"
    947 source = "registry+https://github.com/rust-lang/crates.io-index"
    948 checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
    949 
    950 [[package]]
    951 name = "matchers"
    952 version = "0.0.1"
    953 source = "registry+https://github.com/rust-lang/crates.io-index"
    954 checksum = "f099785f7595cc4b4553a174ce30dd7589ef93391ff414dbb67f62392b9e0ce1"
    955 dependencies = [
    956  "regex-automata",
    957 ]
    958 
    959 [[package]]
    960 name = "matches"
    961 version = "0.1.8"
    962 source = "registry+https://github.com/rust-lang/crates.io-index"
    963 checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
    964 
    965 [[package]]
    966 name = "matrix-sdk"
    967 version = "0.1.0"
    968 source = "git+https://github.com/matrix-org/matrix-rust-sdk.git?rev=8f99180c99ccd74803565fb36098389198091ded#8f99180c99ccd74803565fb36098389198091ded"
    969 dependencies = [
    970  "async-trait",
    971  "dashmap",
    972  "futures-timer",
    973  "http",
    974  "matrix-sdk-base",
    975  "matrix-sdk-common",
    976  "matrix-sdk-common-macros",
    977  "mime",
    978  "reqwest",
    979  "serde_json",
    980  "thiserror",
    981  "tokio",
    982  "tracing",
    983  "tracing-futures",
    984  "url",
    985  "zeroize",
    986 ]
    987 
    988 [[package]]
    989 name = "matrix-sdk-base"
    990 version = "0.1.0"
    991 source = "git+https://github.com/matrix-org/matrix-rust-sdk.git?rev=8f99180c99ccd74803565fb36098389198091ded#8f99180c99ccd74803565fb36098389198091ded"
    992 dependencies = [
    993  "async-trait",
    994  "matrix-sdk-common",
    995  "matrix-sdk-common-macros",
    996  "matrix-sdk-crypto",
    997  "serde",
    998  "serde_json",
    999  "thiserror",
   1000  "tokio",
   1001  "tracing",
   1002  "zeroize",
   1003 ]
   1004 
   1005 [[package]]
   1006 name = "matrix-sdk-common"
   1007 version = "0.1.0"
   1008 source = "git+https://github.com/matrix-org/matrix-rust-sdk.git?rev=8f99180c99ccd74803565fb36098389198091ded#8f99180c99ccd74803565fb36098389198091ded"
   1009 dependencies = [
   1010  "assign",
   1011  "futures-locks",
   1012  "instant",
   1013  "js_int",
   1014  "ruma",
   1015  "tokio",
   1016  "uuid",
   1017 ]
   1018 
   1019 [[package]]
   1020 name = "matrix-sdk-common-macros"
   1021 version = "0.1.0"
   1022 source = "git+https://github.com/matrix-org/matrix-rust-sdk.git?rev=8f99180c99ccd74803565fb36098389198091ded#8f99180c99ccd74803565fb36098389198091ded"
   1023 dependencies = [
   1024  "quote",
   1025  "syn",
   1026 ]
   1027 
   1028 [[package]]
   1029 name = "matrix-sdk-crypto"
   1030 version = "0.1.0"
   1031 source = "git+https://github.com/matrix-org/matrix-rust-sdk.git?rev=8f99180c99ccd74803565fb36098389198091ded#8f99180c99ccd74803565fb36098389198091ded"
   1032 dependencies = [
   1033  "aes-ctr",
   1034  "async-trait",
   1035  "atomic",
   1036  "base64 0.13.0",
   1037  "byteorder",
   1038  "cjson",
   1039  "dashmap",
   1040  "getrandom 0.2.0",
   1041  "hmac",
   1042  "matrix-sdk-common",
   1043  "matrix-sdk-common-macros",
   1044  "olm-rs",
   1045  "pbkdf2",
   1046  "serde",
   1047  "serde_json",
   1048  "sha2",
   1049  "sqlx",
   1050  "thiserror",
   1051  "tracing",
   1052  "tracing-futures",
   1053  "url",
   1054  "zeroize",
   1055 ]
   1056 
   1057 [[package]]
   1058 name = "maybe-uninit"
   1059 version = "2.0.0"
   1060 source = "registry+https://github.com/rust-lang/crates.io-index"
   1061 checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
   1062 
   1063 [[package]]
   1064 name = "memchr"
   1065 version = "2.3.4"
   1066 source = "registry+https://github.com/rust-lang/crates.io-index"
   1067 checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
   1068 
   1069 [[package]]
   1070 name = "mime"
   1071 version = "0.3.16"
   1072 source = "registry+https://github.com/rust-lang/crates.io-index"
   1073 checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
   1074 
   1075 [[package]]
   1076 name = "mime_guess"
   1077 version = "2.0.3"
   1078 source = "registry+https://github.com/rust-lang/crates.io-index"
   1079 checksum = "2684d4c2e97d99848d30b324b00c8fcc7e5c897b7cbb5819b09e7c90e8baf212"
   1080 dependencies = [
   1081  "mime",
   1082  "unicase",
   1083 ]
   1084 
   1085 [[package]]
   1086 name = "mio"
   1087 version = "0.6.22"
   1088 source = "registry+https://github.com/rust-lang/crates.io-index"
   1089 checksum = "fce347092656428bc8eaf6201042cb551b8d67855af7374542a92a0fbfcac430"
   1090 dependencies = [
   1091  "cfg-if 0.1.10",
   1092  "fuchsia-zircon",
   1093  "fuchsia-zircon-sys",
   1094  "iovec",
   1095  "kernel32-sys",
   1096  "libc",
   1097  "log",
   1098  "miow 0.2.1",
   1099  "net2",
   1100  "slab",
   1101  "winapi 0.2.8",
   1102 ]
   1103 
   1104 [[package]]
   1105 name = "mio"
   1106 version = "0.7.5"
   1107 source = "registry+https://github.com/rust-lang/crates.io-index"
   1108 checksum = "8962c171f57fcfffa53f4df1bb15ec4c8cf26a7569459c9ceb62d94aab0d9584"
   1109 dependencies = [
   1110  "libc",
   1111  "log",
   1112  "miow 0.3.5",
   1113  "ntapi",
   1114  "winapi 0.3.9",
   1115 ]
   1116 
   1117 [[package]]
   1118 name = "mio-named-pipes"
   1119 version = "0.1.7"
   1120 source = "registry+https://github.com/rust-lang/crates.io-index"
   1121 checksum = "0840c1c50fd55e521b247f949c241c9997709f23bd7f023b9762cd561e935656"
   1122 dependencies = [
   1123  "log",
   1124  "mio 0.6.22",
   1125  "miow 0.3.5",
   1126  "winapi 0.3.9",
   1127 ]
   1128 
   1129 [[package]]
   1130 name = "mio-uds"
   1131 version = "0.6.8"
   1132 source = "registry+https://github.com/rust-lang/crates.io-index"
   1133 checksum = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0"
   1134 dependencies = [
   1135  "iovec",
   1136  "libc",
   1137  "mio 0.6.22",
   1138 ]
   1139 
   1140 [[package]]
   1141 name = "miow"
   1142 version = "0.2.1"
   1143 source = "registry+https://github.com/rust-lang/crates.io-index"
   1144 checksum = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919"
   1145 dependencies = [
   1146  "kernel32-sys",
   1147  "net2",
   1148  "winapi 0.2.8",
   1149  "ws2_32-sys",
   1150 ]
   1151 
   1152 [[package]]
   1153 name = "miow"
   1154 version = "0.3.5"
   1155 source = "registry+https://github.com/rust-lang/crates.io-index"
   1156 checksum = "07b88fb9795d4d36d62a012dfbf49a8f5cf12751f36d31a9dbe66d528e58979e"
   1157 dependencies = [
   1158  "socket2",
   1159  "winapi 0.3.9",
   1160 ]
   1161 
   1162 [[package]]
   1163 name = "mx-bookmarks"
   1164 version = "0.1.0"
   1165 dependencies = [
   1166  "anyhow",
   1167  "async-trait",
   1168  "crossterm 0.18.2",
   1169  "dotenv",
   1170  "matrix-sdk",
   1171  "matrix-sdk-common-macros",
   1172  "ruma",
   1173  "serde",
   1174  "serde_json",
   1175  "sqlx",
   1176  "thiserror",
   1177  "tokio",
   1178  "tracing",
   1179  "tracing-futures",
   1180  "tracing-subscriber",
   1181  "tui",
   1182  "url",
   1183 ]
   1184 
   1185 [[package]]
   1186 name = "native-tls"
   1187 version = "0.2.5"
   1188 source = "registry+https://github.com/rust-lang/crates.io-index"
   1189 checksum = "1a1cda389c26d6b88f3d2dc38aa1b750fe87d298cc5d795ec9e975f402f00372"
   1190 dependencies = [
   1191  "lazy_static",
   1192  "libc",
   1193  "log",
   1194  "openssl",
   1195  "openssl-probe",
   1196  "openssl-sys",
   1197  "schannel",
   1198  "security-framework",
   1199  "security-framework-sys",
   1200  "tempfile",
   1201 ]
   1202 
   1203 [[package]]
   1204 name = "net2"
   1205 version = "0.2.35"
   1206 source = "registry+https://github.com/rust-lang/crates.io-index"
   1207 checksum = "3ebc3ec692ed7c9a255596c67808dee269f64655d8baf7b4f0638e51ba1d6853"
   1208 dependencies = [
   1209  "cfg-if 0.1.10",
   1210  "libc",
   1211  "winapi 0.3.9",
   1212 ]
   1213 
   1214 [[package]]
   1215 name = "ntapi"
   1216 version = "0.3.6"
   1217 source = "registry+https://github.com/rust-lang/crates.io-index"
   1218 checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
   1219 dependencies = [
   1220  "winapi 0.3.9",
   1221 ]
   1222 
   1223 [[package]]
   1224 name = "num-integer"
   1225 version = "0.1.44"
   1226 source = "registry+https://github.com/rust-lang/crates.io-index"
   1227 checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
   1228 dependencies = [
   1229  "autocfg",
   1230  "num-traits",
   1231 ]
   1232 
   1233 [[package]]
   1234 name = "num-traits"
   1235 version = "0.2.14"
   1236 source = "registry+https://github.com/rust-lang/crates.io-index"
   1237 checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
   1238 dependencies = [
   1239  "autocfg",
   1240 ]
   1241 
   1242 [[package]]
   1243 name = "num_cpus"
   1244 version = "1.13.0"
   1245 source = "registry+https://github.com/rust-lang/crates.io-index"
   1246 checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
   1247 dependencies = [
   1248  "hermit-abi",
   1249  "libc",
   1250 ]
   1251 
   1252 [[package]]
   1253 name = "olm-rs"
   1254 version = "1.0.0"
   1255 source = "registry+https://github.com/rust-lang/crates.io-index"
   1256 checksum = "daab4abdd728e5e77ec15888fc12688c0b821c81fca621f1bb28dbe489cbc404"
   1257 dependencies = [
   1258  "getrandom 0.2.0",
   1259  "olm-sys",
   1260  "serde",
   1261  "serde_json",
   1262  "zeroize",
   1263 ]
   1264 
   1265 [[package]]
   1266 name = "olm-sys"
   1267 version = "1.0.1"
   1268 source = "registry+https://github.com/rust-lang/crates.io-index"
   1269 checksum = "87fa74f77d7ce49231025de2a26df4e71228a9ea5bd5b0a3edc8d6bb05e3d420"
   1270 dependencies = [
   1271  "cmake",
   1272 ]
   1273 
   1274 [[package]]
   1275 name = "once_cell"
   1276 version = "1.4.1"
   1277 source = "registry+https://github.com/rust-lang/crates.io-index"
   1278 checksum = "260e51e7efe62b592207e9e13a68e43692a7a279171d6ba57abd208bf23645ad"
   1279 
   1280 [[package]]
   1281 name = "opaque-debug"
   1282 version = "0.3.0"
   1283 source = "registry+https://github.com/rust-lang/crates.io-index"
   1284 checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
   1285 
   1286 [[package]]
   1287 name = "openssl"
   1288 version = "0.10.30"
   1289 source = "registry+https://github.com/rust-lang/crates.io-index"
   1290 checksum = "8d575eff3665419f9b83678ff2815858ad9d11567e082f5ac1814baba4e2bcb4"
   1291 dependencies = [
   1292  "bitflags",
   1293  "cfg-if 0.1.10",
   1294  "foreign-types",
   1295  "lazy_static",
   1296  "libc",
   1297  "openssl-sys",
   1298 ]
   1299 
   1300 [[package]]
   1301 name = "openssl-probe"
   1302 version = "0.1.2"
   1303 source = "registry+https://github.com/rust-lang/crates.io-index"
   1304 checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
   1305 
   1306 [[package]]
   1307 name = "openssl-sys"
   1308 version = "0.9.58"
   1309 source = "registry+https://github.com/rust-lang/crates.io-index"
   1310 checksum = "a842db4709b604f0fe5d1170ae3565899be2ad3d9cbc72dedc789ac0511f78de"
   1311 dependencies = [
   1312  "autocfg",
   1313  "cc",
   1314  "libc",
   1315  "pkg-config",
   1316  "vcpkg",
   1317 ]
   1318 
   1319 [[package]]
   1320 name = "parking_lot"
   1321 version = "0.10.2"
   1322 source = "registry+https://github.com/rust-lang/crates.io-index"
   1323 checksum = "d3a704eb390aafdc107b0e392f56a82b668e3a71366993b5340f5833fd62505e"
   1324 dependencies = [
   1325  "lock_api 0.3.4",
   1326  "parking_lot_core 0.7.2",
   1327 ]
   1328 
   1329 [[package]]
   1330 name = "parking_lot"
   1331 version = "0.11.0"
   1332 source = "registry+https://github.com/rust-lang/crates.io-index"
   1333 checksum = "a4893845fa2ca272e647da5d0e46660a314ead9c2fdd9a883aabc32e481a8733"
   1334 dependencies = [
   1335  "instant",
   1336  "lock_api 0.4.1",
   1337  "parking_lot_core 0.8.0",
   1338 ]
   1339 
   1340 [[package]]
   1341 name = "parking_lot_core"
   1342 version = "0.7.2"
   1343 source = "registry+https://github.com/rust-lang/crates.io-index"
   1344 checksum = "d58c7c768d4ba344e3e8d72518ac13e259d7c7ade24167003b8488e10b6740a3"
   1345 dependencies = [
   1346  "cfg-if 0.1.10",
   1347  "cloudabi 0.0.3",
   1348  "libc",
   1349  "redox_syscall",
   1350  "smallvec",
   1351  "winapi 0.3.9",
   1352 ]
   1353 
   1354 [[package]]
   1355 name = "parking_lot_core"
   1356 version = "0.8.0"
   1357 source = "registry+https://github.com/rust-lang/crates.io-index"
   1358 checksum = "c361aa727dd08437f2f1447be8b59a33b0edd15e0fcee698f935613d9efbca9b"
   1359 dependencies = [
   1360  "cfg-if 0.1.10",
   1361  "cloudabi 0.1.0",
   1362  "instant",
   1363  "libc",
   1364  "redox_syscall",
   1365  "smallvec",
   1366  "winapi 0.3.9",
   1367 ]
   1368 
   1369 [[package]]
   1370 name = "pbkdf2"
   1371 version = "0.5.0"
   1372 source = "registry+https://github.com/rust-lang/crates.io-index"
   1373 checksum = "7170d73bf11f39b4ce1809aabc95bf5c33564cdc16fc3200ddda17a5f6e5e48b"
   1374 dependencies = [
   1375  "crypto-mac",
   1376 ]
   1377 
   1378 [[package]]
   1379 name = "percent-encoding"
   1380 version = "2.1.0"
   1381 source = "registry+https://github.com/rust-lang/crates.io-index"
   1382 checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
   1383 
   1384 [[package]]
   1385 name = "pin-project"
   1386 version = "0.4.27"
   1387 source = "registry+https://github.com/rust-lang/crates.io-index"
   1388 checksum = "2ffbc8e94b38ea3d2d8ba92aea2983b503cd75d0888d75b86bb37970b5698e15"
   1389 dependencies = [
   1390  "pin-project-internal 0.4.27",
   1391 ]
   1392 
   1393 [[package]]
   1394 name = "pin-project"
   1395 version = "1.0.1"
   1396 source = "registry+https://github.com/rust-lang/crates.io-index"
   1397 checksum = "ee41d838744f60d959d7074e3afb6b35c7456d0f61cad38a24e35e6553f73841"
   1398 dependencies = [
   1399  "pin-project-internal 1.0.1",
   1400 ]
   1401 
   1402 [[package]]
   1403 name = "pin-project-internal"
   1404 version = "0.4.27"
   1405 source = "registry+https://github.com/rust-lang/crates.io-index"
   1406 checksum = "65ad2ae56b6abe3a1ee25f15ee605bacadb9a764edaba9c2bf4103800d4a1895"
   1407 dependencies = [
   1408  "proc-macro2",
   1409  "quote",
   1410  "syn",
   1411 ]
   1412 
   1413 [[package]]
   1414 name = "pin-project-internal"
   1415 version = "1.0.1"
   1416 source = "registry+https://github.com/rust-lang/crates.io-index"
   1417 checksum = "81a4ffa594b66bff340084d4081df649a7dc049ac8d7fc458d8e628bfbbb2f86"
   1418 dependencies = [
   1419  "proc-macro2",
   1420  "quote",
   1421  "syn",
   1422 ]
   1423 
   1424 [[package]]
   1425 name = "pin-project-lite"
   1426 version = "0.1.11"
   1427 source = "registry+https://github.com/rust-lang/crates.io-index"
   1428 checksum = "c917123afa01924fc84bb20c4c03f004d9c38e5127e3c039bbf7f4b9c76a2f6b"
   1429 
   1430 [[package]]
   1431 name = "pin-utils"
   1432 version = "0.1.0"
   1433 source = "registry+https://github.com/rust-lang/crates.io-index"
   1434 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
   1435 
   1436 [[package]]
   1437 name = "pkg-config"
   1438 version = "0.3.19"
   1439 source = "registry+https://github.com/rust-lang/crates.io-index"
   1440 checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
   1441 
   1442 [[package]]
   1443 name = "ppv-lite86"
   1444 version = "0.2.10"
   1445 source = "registry+https://github.com/rust-lang/crates.io-index"
   1446 checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
   1447 
   1448 [[package]]
   1449 name = "proc-macro-crate"
   1450 version = "0.1.5"
   1451 source = "registry+https://github.com/rust-lang/crates.io-index"
   1452 checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
   1453 dependencies = [
   1454  "toml",
   1455 ]
   1456 
   1457 [[package]]
   1458 name = "proc-macro-hack"
   1459 version = "0.5.19"
   1460 source = "registry+https://github.com/rust-lang/crates.io-index"
   1461 checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
   1462 
   1463 [[package]]
   1464 name = "proc-macro-nested"
   1465 version = "0.1.6"
   1466 source = "registry+https://github.com/rust-lang/crates.io-index"
   1467 checksum = "eba180dafb9038b050a4c280019bbedf9f2467b61e5d892dcad585bb57aadc5a"
   1468 
   1469 [[package]]
   1470 name = "proc-macro2"
   1471 version = "1.0.24"
   1472 source = "registry+https://github.com/rust-lang/crates.io-index"
   1473 checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
   1474 dependencies = [
   1475  "unicode-xid",
   1476 ]
   1477 
   1478 [[package]]
   1479 name = "quote"
   1480 version = "1.0.7"
   1481 source = "registry+https://github.com/rust-lang/crates.io-index"
   1482 checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37"
   1483 dependencies = [
   1484  "proc-macro2",
   1485 ]
   1486 
   1487 [[package]]
   1488 name = "rand"
   1489 version = "0.7.3"
   1490 source = "registry+https://github.com/rust-lang/crates.io-index"
   1491 checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
   1492 dependencies = [
   1493  "getrandom 0.1.15",
   1494  "libc",
   1495  "rand_chacha",
   1496  "rand_core",
   1497  "rand_hc",
   1498 ]
   1499 
   1500 [[package]]
   1501 name = "rand_chacha"
   1502 version = "0.2.2"
   1503 source = "registry+https://github.com/rust-lang/crates.io-index"
   1504 checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
   1505 dependencies = [
   1506  "ppv-lite86",
   1507  "rand_core",
   1508 ]
   1509 
   1510 [[package]]
   1511 name = "rand_core"
   1512 version = "0.5.1"
   1513 source = "registry+https://github.com/rust-lang/crates.io-index"
   1514 checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
   1515 dependencies = [
   1516  "getrandom 0.1.15",
   1517 ]
   1518 
   1519 [[package]]
   1520 name = "rand_hc"
   1521 version = "0.2.0"
   1522 source = "registry+https://github.com/rust-lang/crates.io-index"
   1523 checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
   1524 dependencies = [
   1525  "rand_core",
   1526 ]
   1527 
   1528 [[package]]
   1529 name = "redox_syscall"
   1530 version = "0.1.57"
   1531 source = "registry+https://github.com/rust-lang/crates.io-index"
   1532 checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
   1533 
   1534 [[package]]
   1535 name = "regex"
   1536 version = "1.4.2"
   1537 source = "registry+https://github.com/rust-lang/crates.io-index"
   1538 checksum = "38cf2c13ed4745de91a5eb834e11c00bcc3709e773173b2ce4c56c9fbde04b9c"
   1539 dependencies = [
   1540  "aho-corasick",
   1541  "memchr",
   1542  "regex-syntax",
   1543  "thread_local",
   1544 ]
   1545 
   1546 [[package]]
   1547 name = "regex-automata"
   1548 version = "0.1.9"
   1549 source = "registry+https://github.com/rust-lang/crates.io-index"
   1550 checksum = "ae1ded71d66a4a97f5e961fd0cb25a5f366a42a41570d16a763a69c092c26ae4"
   1551 dependencies = [
   1552  "byteorder",
   1553  "regex-syntax",
   1554 ]
   1555 
   1556 [[package]]
   1557 name = "regex-syntax"
   1558 version = "0.6.21"
   1559 source = "registry+https://github.com/rust-lang/crates.io-index"
   1560 checksum = "3b181ba2dcf07aaccad5448e8ead58db5b742cf85dfe035e2227f137a539a189"
   1561 
   1562 [[package]]
   1563 name = "remove_dir_all"
   1564 version = "0.5.3"
   1565 source = "registry+https://github.com/rust-lang/crates.io-index"
   1566 checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
   1567 dependencies = [
   1568  "winapi 0.3.9",
   1569 ]
   1570 
   1571 [[package]]
   1572 name = "reqwest"
   1573 version = "0.10.8"
   1574 source = "registry+https://github.com/rust-lang/crates.io-index"
   1575 checksum = "e9eaa17ac5d7b838b7503d118fa16ad88f440498bf9ffe5424e621f93190d61e"
   1576 dependencies = [
   1577  "base64 0.12.3",
   1578  "bytes",
   1579  "encoding_rs",
   1580  "futures-core",
   1581  "futures-util",
   1582  "http",
   1583  "http-body",
   1584  "hyper",
   1585  "hyper-tls",
   1586  "ipnet",
   1587  "js-sys",
   1588  "lazy_static",
   1589  "log",
   1590  "mime",
   1591  "mime_guess",
   1592  "native-tls",
   1593  "percent-encoding",
   1594  "pin-project-lite",
   1595  "serde",
   1596  "serde_urlencoded",
   1597  "tokio",
   1598  "tokio-tls",
   1599  "url",
   1600  "wasm-bindgen",
   1601  "wasm-bindgen-futures",
   1602  "web-sys",
   1603  "winreg",
   1604 ]
   1605 
   1606 [[package]]
   1607 name = "ruma"
   1608 version = "0.0.1"
   1609 source = "git+https://github.com/ruma/ruma?rev=50eb700571480d1440e15a387d10f98be8abab59#50eb700571480d1440e15a387d10f98be8abab59"
   1610 dependencies = [
   1611  "assign",
   1612  "js_int",
   1613  "ruma-api",
   1614  "ruma-appservice-api",
   1615  "ruma-client-api",
   1616  "ruma-common",
   1617  "ruma-events",
   1618  "ruma-federation-api",
   1619  "ruma-identifiers",
   1620  "ruma-serde",
   1621 ]
   1622 
   1623 [[package]]
   1624 name = "ruma-api"
   1625 version = "0.17.0-alpha.1"
   1626 source = "git+https://github.com/ruma/ruma?rev=50eb700571480d1440e15a387d10f98be8abab59#50eb700571480d1440e15a387d10f98be8abab59"
   1627 dependencies = [
   1628  "http",
   1629  "percent-encoding",
   1630  "ruma-api-macros",
   1631  "ruma-common",
   1632  "ruma-identifiers",
   1633  "ruma-serde",
   1634  "serde",
   1635  "serde_json",
   1636  "strum",
   1637  "thiserror",
   1638 ]
   1639 
   1640 [[package]]
   1641 name = "ruma-api-macros"
   1642 version = "0.17.0-alpha.1"
   1643 source = "git+https://github.com/ruma/ruma?rev=50eb700571480d1440e15a387d10f98be8abab59#50eb700571480d1440e15a387d10f98be8abab59"
   1644 dependencies = [
   1645  "proc-macro-crate",
   1646  "proc-macro2",
   1647  "quote",
   1648  "syn",
   1649 ]
   1650 
   1651 [[package]]
   1652 name = "ruma-appservice-api"
   1653 version = "0.2.0-alpha.1"
   1654 source = "git+https://github.com/ruma/ruma?rev=50eb700571480d1440e15a387d10f98be8abab59#50eb700571480d1440e15a387d10f98be8abab59"
   1655 dependencies = [
   1656  "ruma-api",
   1657  "ruma-common",
   1658  "ruma-events",
   1659  "ruma-identifiers",
   1660  "serde",
   1661  "serde_json",
   1662 ]
   1663 
   1664 [[package]]
   1665 name = "ruma-client-api"
   1666 version = "0.10.0-alpha.1"
   1667 source = "git+https://github.com/ruma/ruma?rev=50eb700571480d1440e15a387d10f98be8abab59#50eb700571480d1440e15a387d10f98be8abab59"
   1668 dependencies = [
   1669  "assign",
   1670  "http",
   1671  "js_int",
   1672  "maplit",
   1673  "percent-encoding",
   1674  "ruma-api",
   1675  "ruma-common",
   1676  "ruma-events",
   1677  "ruma-identifiers",
   1678  "ruma-serde",
   1679  "serde",
   1680  "serde_json",
   1681  "strum",
   1682 ]
   1683 
   1684 [[package]]
   1685 name = "ruma-common"
   1686 version = "0.2.0"
   1687 source = "git+https://github.com/ruma/ruma?rev=50eb700571480d1440e15a387d10f98be8abab59#50eb700571480d1440e15a387d10f98be8abab59"
   1688 dependencies = [
   1689  "js_int",
   1690  "ruma-common-macros",
   1691  "ruma-identifiers",
   1692  "ruma-serde",
   1693  "serde",
   1694  "serde_json",
   1695  "strum",
   1696 ]
   1697 
   1698 [[package]]
   1699 name = "ruma-common-macros"
   1700 version = "0.2.0"
   1701 source = "git+https://github.com/ruma/ruma?rev=50eb700571480d1440e15a387d10f98be8abab59#50eb700571480d1440e15a387d10f98be8abab59"
   1702 dependencies = [
   1703  "proc-macro-crate",
   1704  "proc-macro2",
   1705  "quote",
   1706  "syn",
   1707 ]
   1708 
   1709 [[package]]
   1710 name = "ruma-events"
   1711 version = "0.22.0-alpha.1"
   1712 source = "git+https://github.com/ruma/ruma?rev=50eb700571480d1440e15a387d10f98be8abab59#50eb700571480d1440e15a387d10f98be8abab59"
   1713 dependencies = [
   1714  "js_int",
   1715  "ruma-common",
   1716  "ruma-events-macros",
   1717  "ruma-identifiers",
   1718  "ruma-serde",
   1719  "serde",
   1720  "serde_json",
   1721  "strum",
   1722 ]
   1723 
   1724 [[package]]
   1725 name = "ruma-events-macros"
   1726 version = "0.22.0-alpha.1"
   1727 source = "git+https://github.com/ruma/ruma?rev=50eb700571480d1440e15a387d10f98be8abab59#50eb700571480d1440e15a387d10f98be8abab59"
   1728 dependencies = [
   1729  "proc-macro-crate",
   1730  "proc-macro2",
   1731  "quote",
   1732  "syn",
   1733 ]
   1734 
   1735 [[package]]
   1736 name = "ruma-federation-api"
   1737 version = "0.0.3"
   1738 source = "git+https://github.com/ruma/ruma?rev=50eb700571480d1440e15a387d10f98be8abab59#50eb700571480d1440e15a387d10f98be8abab59"
   1739 dependencies = [
   1740  "js_int",
   1741  "ruma-api",
   1742  "ruma-common",
   1743  "ruma-events",
   1744  "ruma-identifiers",
   1745  "ruma-serde",
   1746  "serde",
   1747  "serde_json",
   1748 ]
   1749 
   1750 [[package]]
   1751 name = "ruma-identifiers"
   1752 version = "0.17.4"
   1753 source = "git+https://github.com/ruma/ruma?rev=50eb700571480d1440e15a387d10f98be8abab59#50eb700571480d1440e15a387d10f98be8abab59"
   1754 dependencies = [
   1755  "ruma-identifiers-macros",
   1756  "ruma-identifiers-validation",
   1757  "serde",
   1758  "strum",
   1759 ]
   1760 
   1761 [[package]]
   1762 name = "ruma-identifiers-macros"
   1763 version = "0.17.4"
   1764 source = "git+https://github.com/ruma/ruma?rev=50eb700571480d1440e15a387d10f98be8abab59#50eb700571480d1440e15a387d10f98be8abab59"
   1765 dependencies = [
   1766  "proc-macro2",
   1767  "quote",
   1768  "ruma-identifiers-validation",
   1769  "syn",
   1770 ]
   1771 
   1772 [[package]]
   1773 name = "ruma-identifiers-validation"
   1774 version = "0.1.1"
   1775 source = "git+https://github.com/ruma/ruma?rev=50eb700571480d1440e15a387d10f98be8abab59#50eb700571480d1440e15a387d10f98be8abab59"
   1776 dependencies = [
   1777  "serde",
   1778  "strum",
   1779 ]
   1780 
   1781 [[package]]
   1782 name = "ruma-serde"
   1783 version = "0.2.3"
   1784 source = "git+https://github.com/ruma/ruma?rev=50eb700571480d1440e15a387d10f98be8abab59#50eb700571480d1440e15a387d10f98be8abab59"
   1785 dependencies = [
   1786  "form_urlencoded",
   1787  "itoa",
   1788  "js_int",
   1789  "serde",
   1790  "serde_json",
   1791 ]
   1792 
   1793 [[package]]
   1794 name = "rustc_version"
   1795 version = "0.2.3"
   1796 source = "registry+https://github.com/rust-lang/crates.io-index"
   1797 checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
   1798 dependencies = [
   1799  "semver",
   1800 ]
   1801 
   1802 [[package]]
   1803 name = "ryu"
   1804 version = "1.0.5"
   1805 source = "registry+https://github.com/rust-lang/crates.io-index"
   1806 checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
   1807 
   1808 [[package]]
   1809 name = "schannel"
   1810 version = "0.1.19"
   1811 source = "registry+https://github.com/rust-lang/crates.io-index"
   1812 checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
   1813 dependencies = [
   1814  "lazy_static",
   1815  "winapi 0.3.9",
   1816 ]
   1817 
   1818 [[package]]
   1819 name = "scoped-tls"
   1820 version = "1.0.0"
   1821 source = "registry+https://github.com/rust-lang/crates.io-index"
   1822 checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
   1823 
   1824 [[package]]
   1825 name = "scopeguard"
   1826 version = "1.1.0"
   1827 source = "registry+https://github.com/rust-lang/crates.io-index"
   1828 checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
   1829 
   1830 [[package]]
   1831 name = "security-framework"
   1832 version = "2.0.0"
   1833 source = "registry+https://github.com/rust-lang/crates.io-index"
   1834 checksum = "c1759c2e3c8580017a484a7ac56d3abc5a6c1feadf88db2f3633f12ae4268c69"
   1835 dependencies = [
   1836  "bitflags",
   1837  "core-foundation",
   1838  "core-foundation-sys",
   1839  "libc",
   1840  "security-framework-sys",
   1841 ]
   1842 
   1843 [[package]]
   1844 name = "security-framework-sys"
   1845 version = "2.0.0"
   1846 source = "registry+https://github.com/rust-lang/crates.io-index"
   1847 checksum = "f99b9d5e26d2a71633cc4f2ebae7cc9f874044e0c351a27e17892d76dce5678b"
   1848 dependencies = [
   1849  "core-foundation-sys",
   1850  "libc",
   1851 ]
   1852 
   1853 [[package]]
   1854 name = "semver"
   1855 version = "0.9.0"
   1856 source = "registry+https://github.com/rust-lang/crates.io-index"
   1857 checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
   1858 dependencies = [
   1859  "semver-parser",
   1860 ]
   1861 
   1862 [[package]]
   1863 name = "semver-parser"
   1864 version = "0.7.0"
   1865 source = "registry+https://github.com/rust-lang/crates.io-index"
   1866 checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
   1867 
   1868 [[package]]
   1869 name = "send_wrapper"
   1870 version = "0.4.0"
   1871 source = "registry+https://github.com/rust-lang/crates.io-index"
   1872 checksum = "f638d531eccd6e23b980caf34876660d38e265409d8e99b397ab71eb3612fad0"
   1873 
   1874 [[package]]
   1875 name = "serde"
   1876 version = "1.0.117"
   1877 source = "registry+https://github.com/rust-lang/crates.io-index"
   1878 checksum = "b88fa983de7720629c9387e9f517353ed404164b1e482c970a90c1a4aaf7dc1a"
   1879 dependencies = [
   1880  "serde_derive",
   1881 ]
   1882 
   1883 [[package]]
   1884 name = "serde_derive"
   1885 version = "1.0.117"
   1886 source = "registry+https://github.com/rust-lang/crates.io-index"
   1887 checksum = "cbd1ae72adb44aab48f325a02444a5fc079349a8d804c1fc922aed3f7454c74e"
   1888 dependencies = [
   1889  "proc-macro2",
   1890  "quote",
   1891  "syn",
   1892 ]
   1893 
   1894 [[package]]
   1895 name = "serde_json"
   1896 version = "1.0.59"
   1897 source = "registry+https://github.com/rust-lang/crates.io-index"
   1898 checksum = "dcac07dbffa1c65e7f816ab9eba78eb142c6d44410f4eeba1e26e4f5dfa56b95"
   1899 dependencies = [
   1900  "itoa",
   1901  "ryu",
   1902  "serde",
   1903 ]
   1904 
   1905 [[package]]
   1906 name = "serde_urlencoded"
   1907 version = "0.6.1"
   1908 source = "registry+https://github.com/rust-lang/crates.io-index"
   1909 checksum = "9ec5d77e2d4c73717816afac02670d5c4f534ea95ed430442cad02e7a6e32c97"
   1910 dependencies = [
   1911  "dtoa",
   1912  "itoa",
   1913  "serde",
   1914  "url",
   1915 ]
   1916 
   1917 [[package]]
   1918 name = "sha1"
   1919 version = "0.6.0"
   1920 source = "registry+https://github.com/rust-lang/crates.io-index"
   1921 checksum = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d"
   1922 
   1923 [[package]]
   1924 name = "sha2"
   1925 version = "0.9.2"
   1926 source = "registry+https://github.com/rust-lang/crates.io-index"
   1927 checksum = "6e7aab86fe2149bad8c507606bdb3f4ef5e7b2380eb92350f56122cca72a42a8"
   1928 dependencies = [
   1929  "block-buffer",
   1930  "cfg-if 1.0.0",
   1931  "cpuid-bool",
   1932  "digest",
   1933  "opaque-debug",
   1934 ]
   1935 
   1936 [[package]]
   1937 name = "sharded-slab"
   1938 version = "0.1.0"
   1939 source = "registry+https://github.com/rust-lang/crates.io-index"
   1940 checksum = "7b4921be914e16899a80adefb821f8ddb7974e3f1250223575a44ed994882127"
   1941 dependencies = [
   1942  "lazy_static",
   1943  "loom",
   1944 ]
   1945 
   1946 [[package]]
   1947 name = "signal-hook"
   1948 version = "0.1.16"
   1949 source = "registry+https://github.com/rust-lang/crates.io-index"
   1950 checksum = "604508c1418b99dfe1925ca9224829bb2a8a9a04dda655cc01fcad46f4ab05ed"
   1951 dependencies = [
   1952  "libc",
   1953  "mio 0.7.5",
   1954  "signal-hook-registry",
   1955 ]
   1956 
   1957 [[package]]
   1958 name = "signal-hook-registry"
   1959 version = "1.2.2"
   1960 source = "registry+https://github.com/rust-lang/crates.io-index"
   1961 checksum = "ce32ea0c6c56d5eacaeb814fbed9960547021d3edd010ded1425f180536b20ab"
   1962 dependencies = [
   1963  "libc",
   1964 ]
   1965 
   1966 [[package]]
   1967 name = "slab"
   1968 version = "0.4.2"
   1969 source = "registry+https://github.com/rust-lang/crates.io-index"
   1970 checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
   1971 
   1972 [[package]]
   1973 name = "smallvec"
   1974 version = "1.4.2"
   1975 source = "registry+https://github.com/rust-lang/crates.io-index"
   1976 checksum = "fbee7696b84bbf3d89a1c2eccff0850e3047ed46bfcd2e92c29a2d074d57e252"
   1977 
   1978 [[package]]
   1979 name = "socket2"
   1980 version = "0.3.15"
   1981 source = "registry+https://github.com/rust-lang/crates.io-index"
   1982 checksum = "b1fa70dc5c8104ec096f4fe7ede7a221d35ae13dcd19ba1ad9a81d2cab9a1c44"
   1983 dependencies = [
   1984  "cfg-if 0.1.10",
   1985  "libc",
   1986  "redox_syscall",
   1987  "winapi 0.3.9",
   1988 ]
   1989 
   1990 [[package]]
   1991 name = "sqlformat"
   1992 version = "0.1.1"
   1993 source = "registry+https://github.com/rust-lang/crates.io-index"
   1994 checksum = "f699301eec598ffd6c39832cca1416381ea459ac73c506f6ca74c8750fb52969"
   1995 dependencies = [
   1996  "lazy_static",
   1997  "maplit",
   1998  "regex",
   1999 ]
   2000 
   2001 [[package]]
   2002 name = "sqlx"
   2003 version = "0.3.5"
   2004 source = "registry+https://github.com/rust-lang/crates.io-index"
   2005 checksum = "8974cacd80085fbe49e778708d660dec6fb351604dc34c3905b26efb2803b038"
   2006 dependencies = [
   2007  "sqlx-core",
   2008  "sqlx-macros",
   2009 ]
   2010 
   2011 [[package]]
   2012 name = "sqlx-core"
   2013 version = "0.3.5"
   2014 source = "registry+https://github.com/rust-lang/crates.io-index"
   2015 checksum = "88ac5a436f941c42eac509471a730df5c3c58e1450e68cd39afedbd948206273"
   2016 dependencies = [
   2017  "async-native-tls",
   2018  "async-stream",
   2019  "bitflags",
   2020  "byteorder",
   2021  "crossbeam-queue",
   2022  "crossbeam-utils",
   2023  "futures-channel",
   2024  "futures-core",
   2025  "futures-util",
   2026  "hex",
   2027  "libc",
   2028  "libsqlite3-sys",
   2029  "log",
   2030  "memchr",
   2031  "percent-encoding",
   2032  "sqlformat",
   2033  "tokio",
   2034  "url",
   2035 ]
   2036 
   2037 [[package]]
   2038 name = "sqlx-macros"
   2039 version = "0.3.5"
   2040 source = "registry+https://github.com/rust-lang/crates.io-index"
   2041 checksum = "de2ae78b783af5922d811b14665a5a3755e531c3087bb805cf24cf71f15e6780"
   2042 dependencies = [
   2043  "dotenv",
   2044  "futures",
   2045  "heck",
   2046  "lazy_static",
   2047  "proc-macro2",
   2048  "quote",
   2049  "sqlx-core",
   2050  "syn",
   2051  "tokio",
   2052  "url",
   2053 ]
   2054 
   2055 [[package]]
   2056 name = "standback"
   2057 version = "0.2.11"
   2058 source = "registry+https://github.com/rust-lang/crates.io-index"
   2059 checksum = "f4e0831040d2cf2bdfd51b844be71885783d489898a192f254ae25d57cce725c"
   2060 dependencies = [
   2061  "version_check",
   2062 ]
   2063 
   2064 [[package]]
   2065 name = "stdweb"
   2066 version = "0.4.20"
   2067 source = "registry+https://github.com/rust-lang/crates.io-index"
   2068 checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5"
   2069 dependencies = [
   2070  "discard",
   2071  "rustc_version",
   2072  "stdweb-derive",
   2073  "stdweb-internal-macros",
   2074  "stdweb-internal-runtime",
   2075  "wasm-bindgen",
   2076 ]
   2077 
   2078 [[package]]
   2079 name = "stdweb-derive"
   2080 version = "0.5.3"
   2081 source = "registry+https://github.com/rust-lang/crates.io-index"
   2082 checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef"
   2083 dependencies = [
   2084  "proc-macro2",
   2085  "quote",
   2086  "serde",
   2087  "serde_derive",
   2088  "syn",
   2089 ]
   2090 
   2091 [[package]]
   2092 name = "stdweb-internal-macros"
   2093 version = "0.2.9"
   2094 source = "registry+https://github.com/rust-lang/crates.io-index"
   2095 checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11"
   2096 dependencies = [
   2097  "base-x",
   2098  "proc-macro2",
   2099  "quote",
   2100  "serde",
   2101  "serde_derive",
   2102  "serde_json",
   2103  "sha1",
   2104  "syn",
   2105 ]
   2106 
   2107 [[package]]
   2108 name = "stdweb-internal-runtime"
   2109 version = "0.1.5"
   2110 source = "registry+https://github.com/rust-lang/crates.io-index"
   2111 checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0"
   2112 
   2113 [[package]]
   2114 name = "stream-cipher"
   2115 version = "0.7.1"
   2116 source = "registry+https://github.com/rust-lang/crates.io-index"
   2117 checksum = "c80e15f898d8d8f25db24c253ea615cc14acf418ff307822995814e7d42cfa89"
   2118 dependencies = [
   2119  "block-cipher",
   2120  "generic-array",
   2121 ]
   2122 
   2123 [[package]]
   2124 name = "strum"
   2125 version = "0.19.5"
   2126 source = "registry+https://github.com/rust-lang/crates.io-index"
   2127 checksum = "b89a286a7e3b5720b9a477b23253bc50debac207c8d21505f8e70b36792f11b5"
   2128 dependencies = [
   2129  "strum_macros",
   2130 ]
   2131 
   2132 [[package]]
   2133 name = "strum_macros"
   2134 version = "0.19.4"
   2135 source = "registry+https://github.com/rust-lang/crates.io-index"
   2136 checksum = "e61bb0be289045cb80bfce000512e32d09f8337e54c186725da381377ad1f8d5"
   2137 dependencies = [
   2138  "heck",
   2139  "proc-macro2",
   2140  "quote",
   2141  "syn",
   2142 ]
   2143 
   2144 [[package]]
   2145 name = "subtle"
   2146 version = "2.3.0"
   2147 source = "registry+https://github.com/rust-lang/crates.io-index"
   2148 checksum = "343f3f510c2915908f155e94f17220b19ccfacf2a64a2a5d8004f2c3e311e7fd"
   2149 
   2150 [[package]]
   2151 name = "syn"
   2152 version = "1.0.48"
   2153 source = "registry+https://github.com/rust-lang/crates.io-index"
   2154 checksum = "cc371affeffc477f42a221a1e4297aedcea33d47d19b61455588bd9d8f6b19ac"
   2155 dependencies = [
   2156  "proc-macro2",
   2157  "quote",
   2158  "unicode-xid",
   2159 ]
   2160 
   2161 [[package]]
   2162 name = "synstructure"
   2163 version = "0.12.4"
   2164 source = "registry+https://github.com/rust-lang/crates.io-index"
   2165 checksum = "b834f2d66f734cb897113e34aaff2f1ab4719ca946f9a7358dba8f8064148701"
   2166 dependencies = [
   2167  "proc-macro2",
   2168  "quote",
   2169  "syn",
   2170  "unicode-xid",
   2171 ]
   2172 
   2173 [[package]]
   2174 name = "tempfile"
   2175 version = "3.1.0"
   2176 source = "registry+https://github.com/rust-lang/crates.io-index"
   2177 checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
   2178 dependencies = [
   2179  "cfg-if 0.1.10",
   2180  "libc",
   2181  "rand",
   2182  "redox_syscall",
   2183  "remove_dir_all",
   2184  "winapi 0.3.9",
   2185 ]
   2186 
   2187 [[package]]
   2188 name = "thiserror"
   2189 version = "1.0.22"
   2190 source = "registry+https://github.com/rust-lang/crates.io-index"
   2191 checksum = "0e9ae34b84616eedaaf1e9dd6026dbe00dcafa92aa0c8077cb69df1fcfe5e53e"
   2192 dependencies = [
   2193  "thiserror-impl",
   2194 ]
   2195 
   2196 [[package]]
   2197 name = "thiserror-impl"
   2198 version = "1.0.22"
   2199 source = "registry+https://github.com/rust-lang/crates.io-index"
   2200 checksum = "9ba20f23e85b10754cd195504aebf6a27e2e6cbe28c17778a0c930724628dd56"
   2201 dependencies = [
   2202  "proc-macro2",
   2203  "quote",
   2204  "syn",
   2205 ]
   2206 
   2207 [[package]]
   2208 name = "thread_local"
   2209 version = "1.0.1"
   2210 source = "registry+https://github.com/rust-lang/crates.io-index"
   2211 checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
   2212 dependencies = [
   2213  "lazy_static",
   2214 ]
   2215 
   2216 [[package]]
   2217 name = "time"
   2218 version = "0.1.44"
   2219 source = "registry+https://github.com/rust-lang/crates.io-index"
   2220 checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
   2221 dependencies = [
   2222  "libc",
   2223  "wasi 0.10.0+wasi-snapshot-preview1",
   2224  "winapi 0.3.9",
   2225 ]
   2226 
   2227 [[package]]
   2228 name = "time"
   2229 version = "0.2.22"
   2230 source = "registry+https://github.com/rust-lang/crates.io-index"
   2231 checksum = "55b7151c9065e80917fbf285d9a5d1432f60db41d170ccafc749a136b41a93af"
   2232 dependencies = [
   2233  "const_fn",
   2234  "libc",
   2235  "standback",
   2236  "stdweb",
   2237  "time-macros",
   2238  "version_check",
   2239  "winapi 0.3.9",
   2240 ]
   2241 
   2242 [[package]]
   2243 name = "time-macros"
   2244 version = "0.1.1"
   2245 source = "registry+https://github.com/rust-lang/crates.io-index"
   2246 checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1"
   2247 dependencies = [
   2248  "proc-macro-hack",
   2249  "time-macros-impl",
   2250 ]
   2251 
   2252 [[package]]
   2253 name = "time-macros-impl"
   2254 version = "0.1.1"
   2255 source = "registry+https://github.com/rust-lang/crates.io-index"
   2256 checksum = "e5c3be1edfad6027c69f5491cf4cb310d1a71ecd6af742788c6ff8bced86b8fa"
   2257 dependencies = [
   2258  "proc-macro-hack",
   2259  "proc-macro2",
   2260  "quote",
   2261  "standback",
   2262  "syn",
   2263 ]
   2264 
   2265 [[package]]
   2266 name = "tinyvec"
   2267 version = "0.3.4"
   2268 source = "registry+https://github.com/rust-lang/crates.io-index"
   2269 checksum = "238ce071d267c5710f9d31451efec16c5ee22de34df17cc05e56cbc92e967117"
   2270 
   2271 [[package]]
   2272 name = "tokio"
   2273 version = "0.2.22"
   2274 source = "registry+https://github.com/rust-lang/crates.io-index"
   2275 checksum = "5d34ca54d84bf2b5b4d7d31e901a8464f7b60ac145a284fba25ceb801f2ddccd"
   2276 dependencies = [
   2277  "bytes",
   2278  "fnv",
   2279  "futures-core",
   2280  "iovec",
   2281  "lazy_static",
   2282  "libc",
   2283  "memchr",
   2284  "mio 0.6.22",
   2285  "mio-named-pipes",
   2286  "mio-uds",
   2287  "num_cpus",
   2288  "pin-project-lite",
   2289  "signal-hook-registry",
   2290  "slab",
   2291  "tokio-macros",
   2292  "winapi 0.3.9",
   2293 ]
   2294 
   2295 [[package]]
   2296 name = "tokio-macros"
   2297 version = "0.2.5"
   2298 source = "registry+https://github.com/rust-lang/crates.io-index"
   2299 checksum = "f0c3acc6aa564495a0f2e1d59fab677cd7f81a19994cfc7f3ad0e64301560389"
   2300 dependencies = [
   2301  "proc-macro2",
   2302  "quote",
   2303  "syn",
   2304 ]
   2305 
   2306 [[package]]
   2307 name = "tokio-tls"
   2308 version = "0.3.1"
   2309 source = "registry+https://github.com/rust-lang/crates.io-index"
   2310 checksum = "9a70f4fcd7b3b24fb194f837560168208f669ca8cb70d0c4b862944452396343"
   2311 dependencies = [
   2312  "native-tls",
   2313  "tokio",
   2314 ]
   2315 
   2316 [[package]]
   2317 name = "tokio-util"
   2318 version = "0.3.1"
   2319 source = "registry+https://github.com/rust-lang/crates.io-index"
   2320 checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499"
   2321 dependencies = [
   2322  "bytes",
   2323  "futures-core",
   2324  "futures-sink",
   2325  "log",
   2326  "pin-project-lite",
   2327  "tokio",
   2328 ]
   2329 
   2330 [[package]]
   2331 name = "toml"
   2332 version = "0.5.7"
   2333 source = "registry+https://github.com/rust-lang/crates.io-index"
   2334 checksum = "75cf45bb0bef80604d001caaec0d09da99611b3c0fd39d3080468875cdb65645"
   2335 dependencies = [
   2336  "serde",
   2337 ]
   2338 
   2339 [[package]]
   2340 name = "tower-service"
   2341 version = "0.3.0"
   2342 source = "registry+https://github.com/rust-lang/crates.io-index"
   2343 checksum = "e987b6bf443f4b5b3b6f38704195592cca41c5bb7aedd3c3693c7081f8289860"
   2344 
   2345 [[package]]
   2346 name = "tracing"
   2347 version = "0.1.21"
   2348 source = "registry+https://github.com/rust-lang/crates.io-index"
   2349 checksum = "b0987850db3733619253fe60e17cb59b82d37c7e6c0236bb81e4d6b87c879f27"
   2350 dependencies = [
   2351  "cfg-if 0.1.10",
   2352  "log",
   2353  "pin-project-lite",
   2354  "tracing-attributes",
   2355  "tracing-core",
   2356 ]
   2357 
   2358 [[package]]
   2359 name = "tracing-attributes"
   2360 version = "0.1.11"
   2361 source = "registry+https://github.com/rust-lang/crates.io-index"
   2362 checksum = "80e0ccfc3378da0cce270c946b676a376943f5cd16aeba64568e7939806f4ada"
   2363 dependencies = [
   2364  "proc-macro2",
   2365  "quote",
   2366  "syn",
   2367 ]
   2368 
   2369 [[package]]
   2370 name = "tracing-core"
   2371 version = "0.1.17"
   2372 source = "registry+https://github.com/rust-lang/crates.io-index"
   2373 checksum = "f50de3927f93d202783f4513cda820ab47ef17f624b03c096e86ef00c67e6b5f"
   2374 dependencies = [
   2375  "lazy_static",
   2376 ]
   2377 
   2378 [[package]]
   2379 name = "tracing-futures"
   2380 version = "0.2.4"
   2381 source = "registry+https://github.com/rust-lang/crates.io-index"
   2382 checksum = "ab7bb6f14721aa00656086e9335d363c5c8747bae02ebe32ea2c7dece5689b4c"
   2383 dependencies = [
   2384  "pin-project 0.4.27",
   2385  "tracing",
   2386 ]
   2387 
   2388 [[package]]
   2389 name = "tracing-log"
   2390 version = "0.1.1"
   2391 source = "registry+https://github.com/rust-lang/crates.io-index"
   2392 checksum = "5e0f8c7178e13481ff6765bd169b33e8d554c5d2bbede5e32c356194be02b9b9"
   2393 dependencies = [
   2394  "lazy_static",
   2395  "log",
   2396  "tracing-core",
   2397 ]
   2398 
   2399 [[package]]
   2400 name = "tracing-serde"
   2401 version = "0.1.2"
   2402 source = "registry+https://github.com/rust-lang/crates.io-index"
   2403 checksum = "fb65ea441fbb84f9f6748fd496cf7f63ec9af5bca94dd86456978d055e8eb28b"
   2404 dependencies = [
   2405  "serde",
   2406  "tracing-core",
   2407 ]
   2408 
   2409 [[package]]
   2410 name = "tracing-subscriber"
   2411 version = "0.2.15"
   2412 source = "registry+https://github.com/rust-lang/crates.io-index"
   2413 checksum = "a1fa8f0c8f4c594e4fc9debc1990deab13238077271ba84dd853d54902ee3401"
   2414 dependencies = [
   2415  "ansi_term",
   2416  "chrono",
   2417  "lazy_static",
   2418  "matchers",
   2419  "regex",
   2420  "serde",
   2421  "serde_json",
   2422  "sharded-slab",
   2423  "smallvec",
   2424  "thread_local",
   2425  "tracing",
   2426  "tracing-core",
   2427  "tracing-log",
   2428  "tracing-serde",
   2429 ]
   2430 
   2431 [[package]]
   2432 name = "try-lock"
   2433 version = "0.2.3"
   2434 source = "registry+https://github.com/rust-lang/crates.io-index"
   2435 checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
   2436 
   2437 [[package]]
   2438 name = "tui"
   2439 version = "0.12.0"
   2440 source = "registry+https://github.com/rust-lang/crates.io-index"
   2441 checksum = "c2eaeee894a1e9b90f80aa466fe59154fdb471980b5e104d8836fcea309ae17e"
   2442 dependencies = [
   2443  "bitflags",
   2444  "cassowary",
   2445  "crossterm 0.17.7",
   2446  "unicode-segmentation",
   2447  "unicode-width",
   2448 ]
   2449 
   2450 [[package]]
   2451 name = "typenum"
   2452 version = "1.12.0"
   2453 source = "registry+https://github.com/rust-lang/crates.io-index"
   2454 checksum = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33"
   2455 
   2456 [[package]]
   2457 name = "unicase"
   2458 version = "2.6.0"
   2459 source = "registry+https://github.com/rust-lang/crates.io-index"
   2460 checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
   2461 dependencies = [
   2462  "version_check",
   2463 ]
   2464 
   2465 [[package]]
   2466 name = "unicode-bidi"
   2467 version = "0.3.4"
   2468 source = "registry+https://github.com/rust-lang/crates.io-index"
   2469 checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
   2470 dependencies = [
   2471  "matches",
   2472 ]
   2473 
   2474 [[package]]
   2475 name = "unicode-normalization"
   2476 version = "0.1.13"
   2477 source = "registry+https://github.com/rust-lang/crates.io-index"
   2478 checksum = "6fb19cf769fa8c6a80a162df694621ebeb4dafb606470b2b2fce0be40a98a977"
   2479 dependencies = [
   2480  "tinyvec",
   2481 ]
   2482 
   2483 [[package]]
   2484 name = "unicode-segmentation"
   2485 version = "1.6.0"
   2486 source = "registry+https://github.com/rust-lang/crates.io-index"
   2487 checksum = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0"
   2488 
   2489 [[package]]
   2490 name = "unicode-width"
   2491 version = "0.1.8"
   2492 source = "registry+https://github.com/rust-lang/crates.io-index"
   2493 checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
   2494 
   2495 [[package]]
   2496 name = "unicode-xid"
   2497 version = "0.2.1"
   2498 source = "registry+https://github.com/rust-lang/crates.io-index"
   2499 checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
   2500 
   2501 [[package]]
   2502 name = "url"
   2503 version = "2.2.0"
   2504 source = "registry+https://github.com/rust-lang/crates.io-index"
   2505 checksum = "5909f2b0817350449ed73e8bcd81c8c3c8d9a7a5d8acba4b27db277f1868976e"
   2506 dependencies = [
   2507  "form_urlencoded",
   2508  "idna",
   2509  "matches",
   2510  "percent-encoding",
   2511 ]
   2512 
   2513 [[package]]
   2514 name = "uuid"
   2515 version = "0.8.1"
   2516 source = "registry+https://github.com/rust-lang/crates.io-index"
   2517 checksum = "9fde2f6a4bea1d6e007c4ad38c6839fa71cbb63b6dbf5b595aa38dc9b1093c11"
   2518 dependencies = [
   2519  "rand",
   2520  "serde",
   2521 ]
   2522 
   2523 [[package]]
   2524 name = "vcpkg"
   2525 version = "0.2.10"
   2526 source = "registry+https://github.com/rust-lang/crates.io-index"
   2527 checksum = "6454029bf181f092ad1b853286f23e2c507d8e8194d01d92da4a55c274a5508c"
   2528 
   2529 [[package]]
   2530 name = "version_check"
   2531 version = "0.9.2"
   2532 source = "registry+https://github.com/rust-lang/crates.io-index"
   2533 checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
   2534 
   2535 [[package]]
   2536 name = "want"
   2537 version = "0.3.0"
   2538 source = "registry+https://github.com/rust-lang/crates.io-index"
   2539 checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
   2540 dependencies = [
   2541  "log",
   2542  "try-lock",
   2543 ]
   2544 
   2545 [[package]]
   2546 name = "wasi"
   2547 version = "0.9.0+wasi-snapshot-preview1"
   2548 source = "registry+https://github.com/rust-lang/crates.io-index"
   2549 checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
   2550 
   2551 [[package]]
   2552 name = "wasi"
   2553 version = "0.10.0+wasi-snapshot-preview1"
   2554 source = "registry+https://github.com/rust-lang/crates.io-index"
   2555 checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
   2556 
   2557 [[package]]
   2558 name = "wasm-bindgen"
   2559 version = "0.2.68"
   2560 source = "registry+https://github.com/rust-lang/crates.io-index"
   2561 checksum = "1ac64ead5ea5f05873d7c12b545865ca2b8d28adfc50a49b84770a3a97265d42"
   2562 dependencies = [
   2563  "cfg-if 0.1.10",
   2564  "serde",
   2565  "serde_json",
   2566  "wasm-bindgen-macro",
   2567 ]
   2568 
   2569 [[package]]
   2570 name = "wasm-bindgen-backend"
   2571 version = "0.2.68"
   2572 source = "registry+https://github.com/rust-lang/crates.io-index"
   2573 checksum = "f22b422e2a757c35a73774860af8e112bff612ce6cb604224e8e47641a9e4f68"
   2574 dependencies = [
   2575  "bumpalo",
   2576  "lazy_static",
   2577  "log",
   2578  "proc-macro2",
   2579  "quote",
   2580  "syn",
   2581  "wasm-bindgen-shared",
   2582 ]
   2583 
   2584 [[package]]
   2585 name = "wasm-bindgen-futures"
   2586 version = "0.4.18"
   2587 source = "registry+https://github.com/rust-lang/crates.io-index"
   2588 checksum = "b7866cab0aa01de1edf8b5d7936938a7e397ee50ce24119aef3e1eaa3b6171da"
   2589 dependencies = [
   2590  "cfg-if 0.1.10",
   2591  "js-sys",
   2592  "wasm-bindgen",
   2593  "web-sys",
   2594 ]
   2595 
   2596 [[package]]
   2597 name = "wasm-bindgen-macro"
   2598 version = "0.2.68"
   2599 source = "registry+https://github.com/rust-lang/crates.io-index"
   2600 checksum = "6b13312a745c08c469f0b292dd2fcd6411dba5f7160f593da6ef69b64e407038"
   2601 dependencies = [
   2602  "quote",
   2603  "wasm-bindgen-macro-support",
   2604 ]
   2605 
   2606 [[package]]
   2607 name = "wasm-bindgen-macro-support"
   2608 version = "0.2.68"
   2609 source = "registry+https://github.com/rust-lang/crates.io-index"
   2610 checksum = "f249f06ef7ee334cc3b8ff031bfc11ec99d00f34d86da7498396dc1e3b1498fe"
   2611 dependencies = [
   2612  "proc-macro2",
   2613  "quote",
   2614  "syn",
   2615  "wasm-bindgen-backend",
   2616  "wasm-bindgen-shared",
   2617 ]
   2618 
   2619 [[package]]
   2620 name = "wasm-bindgen-shared"
   2621 version = "0.2.68"
   2622 source = "registry+https://github.com/rust-lang/crates.io-index"
   2623 checksum = "1d649a3145108d7d3fbcde896a468d1bd636791823c9921135218ad89be08307"
   2624 
   2625 [[package]]
   2626 name = "web-sys"
   2627 version = "0.3.45"
   2628 source = "registry+https://github.com/rust-lang/crates.io-index"
   2629 checksum = "4bf6ef87ad7ae8008e15a355ce696bed26012b7caa21605188cfd8214ab51e2d"
   2630 dependencies = [
   2631  "js-sys",
   2632  "wasm-bindgen",
   2633 ]
   2634 
   2635 [[package]]
   2636 name = "winapi"
   2637 version = "0.2.8"
   2638 source = "registry+https://github.com/rust-lang/crates.io-index"
   2639 checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
   2640 
   2641 [[package]]
   2642 name = "winapi"
   2643 version = "0.3.9"
   2644 source = "registry+https://github.com/rust-lang/crates.io-index"
   2645 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
   2646 dependencies = [
   2647  "winapi-i686-pc-windows-gnu",
   2648  "winapi-x86_64-pc-windows-gnu",
   2649 ]
   2650 
   2651 [[package]]
   2652 name = "winapi-build"
   2653 version = "0.1.1"
   2654 source = "registry+https://github.com/rust-lang/crates.io-index"
   2655 checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
   2656 
   2657 [[package]]
   2658 name = "winapi-i686-pc-windows-gnu"
   2659 version = "0.4.0"
   2660 source = "registry+https://github.com/rust-lang/crates.io-index"
   2661 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
   2662 
   2663 [[package]]
   2664 name = "winapi-x86_64-pc-windows-gnu"
   2665 version = "0.4.0"
   2666 source = "registry+https://github.com/rust-lang/crates.io-index"
   2667 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
   2668 
   2669 [[package]]
   2670 name = "winreg"
   2671 version = "0.7.0"
   2672 source = "registry+https://github.com/rust-lang/crates.io-index"
   2673 checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69"
   2674 dependencies = [
   2675  "winapi 0.3.9",
   2676 ]
   2677 
   2678 [[package]]
   2679 name = "ws2_32-sys"
   2680 version = "0.2.1"
   2681 source = "registry+https://github.com/rust-lang/crates.io-index"
   2682 checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
   2683 dependencies = [
   2684  "winapi 0.2.8",
   2685  "winapi-build",
   2686 ]
   2687 
   2688 [[package]]
   2689 name = "zeroize"
   2690 version = "1.1.1"
   2691 source = "registry+https://github.com/rust-lang/crates.io-index"
   2692 checksum = "05f33972566adbd2d3588b0491eb94b98b43695c4ef897903470ede4f3f5a28a"
   2693 dependencies = [
   2694  "zeroize_derive",
   2695 ]
   2696 
   2697 [[package]]
   2698 name = "zeroize_derive"
   2699 version = "1.0.1"
   2700 source = "registry+https://github.com/rust-lang/crates.io-index"
   2701 checksum = "c3f369ddb18862aba61aa49bf31e74d29f0f162dec753063200e1dc084345d16"
   2702 dependencies = [
   2703  "proc-macro2",
   2704  "quote",
   2705  "syn",
   2706  "synstructure",
   2707 ]