osm-to-euroscope

A tool to generate Radar Screens from OSM Data
git clone git://archive.git.mtrnord.blog/MTRNord/osm-to-euroscope.git
Log | Files | Refs | README | LICENSE

Cargo.lock (33477B)


      1 # This file is automatically @generated by Cargo.
      2 # It is not intended for manual editing.
      3 [[package]]
      4 name = "OSM_to_Euroscope"
      5 version = "0.1.0"
      6 dependencies = [
      7  "clap",
      8  "fnv",
      9  "osmio",
     10  "percent-encoding",
     11  "reqwest",
     12  "tokio",
     13 ]
     14 
     15 [[package]]
     16 name = "adler32"
     17 version = "1.0.4"
     18 source = "registry+https://github.com/rust-lang/crates.io-index"
     19 checksum = "5d2e7343e7fc9de883d1b0341e0b13970f764c14101234857d2ddafa1cb1cac2"
     20 
     21 [[package]]
     22 name = "ansi_term"
     23 version = "0.11.0"
     24 source = "registry+https://github.com/rust-lang/crates.io-index"
     25 checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
     26 dependencies = [
     27  "winapi 0.3.8",
     28 ]
     29 
     30 [[package]]
     31 name = "anyhow"
     32 version = "1.0.26"
     33 source = "registry+https://github.com/rust-lang/crates.io-index"
     34 checksum = "7825f6833612eb2414095684fcf6c635becf3ce97fe48cf6421321e93bfbd53c"
     35 
     36 [[package]]
     37 name = "arc-swap"
     38 version = "0.4.4"
     39 source = "registry+https://github.com/rust-lang/crates.io-index"
     40 checksum = "d7b8a9123b8027467bce0099fe556c628a53c8d83df0507084c31e9ba2e39aff"
     41 
     42 [[package]]
     43 name = "atty"
     44 version = "0.2.13"
     45 source = "registry+https://github.com/rust-lang/crates.io-index"
     46 checksum = "1803c647a3ec87095e7ae7acfca019e98de5ec9a7d01343f611cf3152ed71a90"
     47 dependencies = [
     48  "libc",
     49  "winapi 0.3.8",
     50 ]
     51 
     52 [[package]]
     53 name = "autocfg"
     54 version = "1.0.0"
     55 source = "registry+https://github.com/rust-lang/crates.io-index"
     56 checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
     57 
     58 [[package]]
     59 name = "base64"
     60 version = "0.12.1"
     61 source = "registry+https://github.com/rust-lang/crates.io-index"
     62 checksum = "53d1ccbaf7d9ec9537465a97bf19edc1a4e158ecb49fc16178202238c569cc42"
     63 
     64 [[package]]
     65 name = "bitflags"
     66 version = "1.2.1"
     67 source = "registry+https://github.com/rust-lang/crates.io-index"
     68 checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
     69 
     70 [[package]]
     71 name = "bumpalo"
     72 version = "3.2.0"
     73 source = "registry+https://github.com/rust-lang/crates.io-index"
     74 checksum = "1f359dc14ff8911330a51ef78022d376f25ed00248912803b58f00cb1c27f742"
     75 
     76 [[package]]
     77 name = "byteorder"
     78 version = "1.3.2"
     79 source = "registry+https://github.com/rust-lang/crates.io-index"
     80 checksum = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5"
     81 
     82 [[package]]
     83 name = "bytes"
     84 version = "0.5.4"
     85 source = "registry+https://github.com/rust-lang/crates.io-index"
     86 checksum = "130aac562c0dd69c56b3b1cc8ffd2e17be31d0b6c25b61c96b76231aa23e39e1"
     87 
     88 [[package]]
     89 name = "c2-chacha"
     90 version = "0.2.3"
     91 source = "registry+https://github.com/rust-lang/crates.io-index"
     92 checksum = "214238caa1bf3a496ec3392968969cab8549f96ff30652c9e56885329315f6bb"
     93 dependencies = [
     94  "ppv-lite86",
     95 ]
     96 
     97 [[package]]
     98 name = "cc"
     99 version = "1.0.50"
    100 source = "registry+https://github.com/rust-lang/crates.io-index"
    101 checksum = "95e28fa049fda1c330bcf9d723be7663a899c4679724b34c81e9f5a326aab8cd"
    102 
    103 [[package]]
    104 name = "cfg-if"
    105 version = "0.1.10"
    106 source = "registry+https://github.com/rust-lang/crates.io-index"
    107 checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
    108 
    109 [[package]]
    110 name = "chrono"
    111 version = "0.4.10"
    112 source = "registry+https://github.com/rust-lang/crates.io-index"
    113 checksum = "31850b4a4d6bae316f7a09e691c944c28299298837edc0a03f755618c23cbc01"
    114 dependencies = [
    115  "num-integer",
    116  "num-traits",
    117  "time",
    118 ]
    119 
    120 [[package]]
    121 name = "clap"
    122 version = "2.33.1"
    123 source = "registry+https://github.com/rust-lang/crates.io-index"
    124 checksum = "bdfa80d47f954d53a35a64987ca1422f495b8d6483c0fe9f7117b36c2a792129"
    125 dependencies = [
    126  "ansi_term",
    127  "atty",
    128  "bitflags",
    129  "strsim",
    130  "textwrap",
    131  "unicode-width",
    132  "vec_map",
    133 ]
    134 
    135 [[package]]
    136 name = "core-foundation"
    137 version = "0.6.4"
    138 source = "registry+https://github.com/rust-lang/crates.io-index"
    139 checksum = "25b9e03f145fd4f2bf705e07b900cd41fc636598fe5dc452fd0db1441c3f496d"
    140 dependencies = [
    141  "core-foundation-sys",
    142  "libc",
    143 ]
    144 
    145 [[package]]
    146 name = "core-foundation-sys"
    147 version = "0.6.2"
    148 source = "registry+https://github.com/rust-lang/crates.io-index"
    149 checksum = "e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b"
    150 
    151 [[package]]
    152 name = "crc32fast"
    153 version = "1.2.0"
    154 source = "registry+https://github.com/rust-lang/crates.io-index"
    155 checksum = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1"
    156 dependencies = [
    157  "cfg-if",
    158 ]
    159 
    160 [[package]]
    161 name = "dtoa"
    162 version = "0.4.5"
    163 source = "registry+https://github.com/rust-lang/crates.io-index"
    164 checksum = "4358a9e11b9a09cf52383b451b49a169e8d797b68aa02301ff586d70d9661ea3"
    165 
    166 [[package]]
    167 name = "encoding_rs"
    168 version = "0.8.22"
    169 source = "registry+https://github.com/rust-lang/crates.io-index"
    170 checksum = "cd8d03faa7fe0c1431609dfad7bbe827af30f82e1e2ae6f7ee4fca6bd764bc28"
    171 dependencies = [
    172  "cfg-if",
    173 ]
    174 
    175 [[package]]
    176 name = "flate2"
    177 version = "1.0.13"
    178 source = "registry+https://github.com/rust-lang/crates.io-index"
    179 checksum = "6bd6d6f4752952feb71363cffc9ebac9411b75b87c6ab6058c40c8900cf43c0f"
    180 dependencies = [
    181  "cfg-if",
    182  "crc32fast",
    183  "libc",
    184  "miniz_oxide",
    185 ]
    186 
    187 [[package]]
    188 name = "fnv"
    189 version = "1.0.7"
    190 source = "registry+https://github.com/rust-lang/crates.io-index"
    191 checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
    192 
    193 [[package]]
    194 name = "foreign-types"
    195 version = "0.3.2"
    196 source = "registry+https://github.com/rust-lang/crates.io-index"
    197 checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
    198 dependencies = [
    199  "foreign-types-shared",
    200 ]
    201 
    202 [[package]]
    203 name = "foreign-types-shared"
    204 version = "0.1.1"
    205 source = "registry+https://github.com/rust-lang/crates.io-index"
    206 checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
    207 
    208 [[package]]
    209 name = "fuchsia-zircon"
    210 version = "0.3.3"
    211 source = "registry+https://github.com/rust-lang/crates.io-index"
    212 checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
    213 dependencies = [
    214  "bitflags",
    215  "fuchsia-zircon-sys",
    216 ]
    217 
    218 [[package]]
    219 name = "fuchsia-zircon-sys"
    220 version = "0.3.3"
    221 source = "registry+https://github.com/rust-lang/crates.io-index"
    222 checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
    223 
    224 [[package]]
    225 name = "futures-channel"
    226 version = "0.3.4"
    227 source = "registry+https://github.com/rust-lang/crates.io-index"
    228 checksum = "f0c77d04ce8edd9cb903932b608268b3fffec4163dc053b3b402bf47eac1f1a8"
    229 dependencies = [
    230  "futures-core",
    231 ]
    232 
    233 [[package]]
    234 name = "futures-core"
    235 version = "0.3.4"
    236 source = "registry+https://github.com/rust-lang/crates.io-index"
    237 checksum = "f25592f769825e89b92358db00d26f965761e094951ac44d3663ef25b7ac464a"
    238 
    239 [[package]]
    240 name = "futures-sink"
    241 version = "0.3.4"
    242 source = "registry+https://github.com/rust-lang/crates.io-index"
    243 checksum = "3466821b4bc114d95b087b850a724c6f83115e929bc88f1fa98a3304a944c8a6"
    244 
    245 [[package]]
    246 name = "futures-task"
    247 version = "0.3.4"
    248 source = "registry+https://github.com/rust-lang/crates.io-index"
    249 checksum = "7b0a34e53cf6cdcd0178aa573aed466b646eb3db769570841fda0c7ede375a27"
    250 
    251 [[package]]
    252 name = "futures-util"
    253 version = "0.3.4"
    254 source = "registry+https://github.com/rust-lang/crates.io-index"
    255 checksum = "22766cf25d64306bedf0384da004d05c9974ab104fcc4528f1236181c18004c5"
    256 dependencies = [
    257  "futures-core",
    258  "futures-task",
    259  "pin-utils",
    260 ]
    261 
    262 [[package]]
    263 name = "getrandom"
    264 version = "0.1.14"
    265 source = "registry+https://github.com/rust-lang/crates.io-index"
    266 checksum = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb"
    267 dependencies = [
    268  "cfg-if",
    269  "libc",
    270  "wasi",
    271 ]
    272 
    273 [[package]]
    274 name = "h2"
    275 version = "0.2.2"
    276 source = "registry+https://github.com/rust-lang/crates.io-index"
    277 checksum = "9d5c295d1c0c68e4e42003d75f908f5e16a1edd1cbe0b0d02e4dc2006a384f47"
    278 dependencies = [
    279  "bytes",
    280  "fnv",
    281  "futures-core",
    282  "futures-sink",
    283  "futures-util",
    284  "http",
    285  "indexmap",
    286  "log",
    287  "slab",
    288  "tokio",
    289  "tokio-util",
    290 ]
    291 
    292 [[package]]
    293 name = "heck"
    294 version = "0.3.1"
    295 source = "registry+https://github.com/rust-lang/crates.io-index"
    296 checksum = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205"
    297 dependencies = [
    298  "unicode-segmentation",
    299 ]
    300 
    301 [[package]]
    302 name = "hermit-abi"
    303 version = "0.1.5"
    304 source = "registry+https://github.com/rust-lang/crates.io-index"
    305 checksum = "f629dc602392d3ec14bfc8a09b5e644d7ffd725102b48b81e59f90f2633621d7"
    306 dependencies = [
    307  "libc",
    308 ]
    309 
    310 [[package]]
    311 name = "http"
    312 version = "0.2.0"
    313 source = "registry+https://github.com/rust-lang/crates.io-index"
    314 checksum = "b708cc7f06493459026f53b9a61a7a121a5d1ec6238dee58ea4941132b30156b"
    315 dependencies = [
    316  "bytes",
    317  "fnv",
    318  "itoa",
    319 ]
    320 
    321 [[package]]
    322 name = "http-body"
    323 version = "0.3.1"
    324 source = "registry+https://github.com/rust-lang/crates.io-index"
    325 checksum = "13d5ff830006f7646652e057693569bfe0d51760c0085a071769d142a205111b"
    326 dependencies = [
    327  "bytes",
    328  "http",
    329 ]
    330 
    331 [[package]]
    332 name = "httparse"
    333 version = "1.3.4"
    334 source = "registry+https://github.com/rust-lang/crates.io-index"
    335 checksum = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9"
    336 
    337 [[package]]
    338 name = "hyper"
    339 version = "0.13.6"
    340 source = "registry+https://github.com/rust-lang/crates.io-index"
    341 checksum = "a6e7655b9594024ad0ee439f3b5a7299369dc2a3f459b47c696f9ff676f9aa1f"
    342 dependencies = [
    343  "bytes",
    344  "futures-channel",
    345  "futures-core",
    346  "futures-util",
    347  "h2",
    348  "http",
    349  "http-body",
    350  "httparse",
    351  "itoa",
    352  "log",
    353  "pin-project",
    354  "socket2",
    355  "time",
    356  "tokio",
    357  "tower-service",
    358  "want",
    359 ]
    360 
    361 [[package]]
    362 name = "hyper-tls"
    363 version = "0.4.1"
    364 source = "registry+https://github.com/rust-lang/crates.io-index"
    365 checksum = "3adcd308402b9553630734e9c36b77a7e48b3821251ca2493e8cd596763aafaa"
    366 dependencies = [
    367  "bytes",
    368  "hyper",
    369  "native-tls",
    370  "tokio",
    371  "tokio-tls",
    372 ]
    373 
    374 [[package]]
    375 name = "idna"
    376 version = "0.2.0"
    377 source = "registry+https://github.com/rust-lang/crates.io-index"
    378 checksum = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9"
    379 dependencies = [
    380  "matches",
    381  "unicode-bidi",
    382  "unicode-normalization",
    383 ]
    384 
    385 [[package]]
    386 name = "indexmap"
    387 version = "1.3.2"
    388 source = "registry+https://github.com/rust-lang/crates.io-index"
    389 checksum = "076f042c5b7b98f31d205f1249267e12a6518c1481e9dae9764af19b707d2292"
    390 dependencies = [
    391  "autocfg",
    392 ]
    393 
    394 [[package]]
    395 name = "iovec"
    396 version = "0.1.4"
    397 source = "registry+https://github.com/rust-lang/crates.io-index"
    398 checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
    399 dependencies = [
    400  "libc",
    401 ]
    402 
    403 [[package]]
    404 name = "ipnet"
    405 version = "2.3.0"
    406 source = "registry+https://github.com/rust-lang/crates.io-index"
    407 checksum = "47be2f14c678be2fdcab04ab1171db51b2762ce6f0a8ee87c8dd4a04ed216135"
    408 
    409 [[package]]
    410 name = "itoa"
    411 version = "0.4.5"
    412 source = "registry+https://github.com/rust-lang/crates.io-index"
    413 checksum = "b8b7a7c0c47db5545ed3fef7468ee7bb5b74691498139e4b3f6a20685dc6dd8e"
    414 
    415 [[package]]
    416 name = "js-sys"
    417 version = "0.3.35"
    418 source = "registry+https://github.com/rust-lang/crates.io-index"
    419 checksum = "7889c7c36282151f6bf465be4700359318aef36baa951462382eae49e9577cf9"
    420 dependencies = [
    421  "wasm-bindgen",
    422 ]
    423 
    424 [[package]]
    425 name = "kernel32-sys"
    426 version = "0.2.2"
    427 source = "registry+https://github.com/rust-lang/crates.io-index"
    428 checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
    429 dependencies = [
    430  "winapi 0.2.8",
    431  "winapi-build",
    432 ]
    433 
    434 [[package]]
    435 name = "lazy_static"
    436 version = "1.4.0"
    437 source = "registry+https://github.com/rust-lang/crates.io-index"
    438 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
    439 
    440 [[package]]
    441 name = "libc"
    442 version = "0.2.66"
    443 source = "registry+https://github.com/rust-lang/crates.io-index"
    444 checksum = "d515b1f41455adea1313a4a2ac8a8a477634fbae63cc6100e3aebb207ce61558"
    445 
    446 [[package]]
    447 name = "log"
    448 version = "0.4.8"
    449 source = "registry+https://github.com/rust-lang/crates.io-index"
    450 checksum = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
    451 dependencies = [
    452  "cfg-if",
    453 ]
    454 
    455 [[package]]
    456 name = "matches"
    457 version = "0.1.8"
    458 source = "registry+https://github.com/rust-lang/crates.io-index"
    459 checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
    460 
    461 [[package]]
    462 name = "memchr"
    463 version = "2.3.0"
    464 source = "registry+https://github.com/rust-lang/crates.io-index"
    465 checksum = "3197e20c7edb283f87c071ddfc7a2cca8f8e0b888c242959846a6fce03c72223"
    466 
    467 [[package]]
    468 name = "mime"
    469 version = "0.3.16"
    470 source = "registry+https://github.com/rust-lang/crates.io-index"
    471 checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
    472 
    473 [[package]]
    474 name = "mime_guess"
    475 version = "2.0.1"
    476 source = "registry+https://github.com/rust-lang/crates.io-index"
    477 checksum = "1a0ed03949aef72dbdf3116a383d7b38b4768e6f960528cd6a6044aa9ed68599"
    478 dependencies = [
    479  "mime",
    480  "unicase",
    481 ]
    482 
    483 [[package]]
    484 name = "miniz_oxide"
    485 version = "0.3.5"
    486 source = "registry+https://github.com/rust-lang/crates.io-index"
    487 checksum = "6f3f74f726ae935c3f514300cc6773a0c9492abc5e972d42ba0c0ebb88757625"
    488 dependencies = [
    489  "adler32",
    490 ]
    491 
    492 [[package]]
    493 name = "mio"
    494 version = "0.6.21"
    495 source = "registry+https://github.com/rust-lang/crates.io-index"
    496 checksum = "302dec22bcf6bae6dfb69c647187f4b4d0fb6f535521f7bc022430ce8e12008f"
    497 dependencies = [
    498  "cfg-if",
    499  "fuchsia-zircon",
    500  "fuchsia-zircon-sys",
    501  "iovec",
    502  "kernel32-sys",
    503  "libc",
    504  "log",
    505  "miow 0.2.1",
    506  "net2",
    507  "slab",
    508  "winapi 0.2.8",
    509 ]
    510 
    511 [[package]]
    512 name = "mio-named-pipes"
    513 version = "0.1.6"
    514 source = "registry+https://github.com/rust-lang/crates.io-index"
    515 checksum = "f5e374eff525ce1c5b7687c4cef63943e7686524a387933ad27ca7ec43779cb3"
    516 dependencies = [
    517  "log",
    518  "mio",
    519  "miow 0.3.3",
    520  "winapi 0.3.8",
    521 ]
    522 
    523 [[package]]
    524 name = "mio-uds"
    525 version = "0.6.7"
    526 source = "registry+https://github.com/rust-lang/crates.io-index"
    527 checksum = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125"
    528 dependencies = [
    529  "iovec",
    530  "libc",
    531  "mio",
    532 ]
    533 
    534 [[package]]
    535 name = "miow"
    536 version = "0.2.1"
    537 source = "registry+https://github.com/rust-lang/crates.io-index"
    538 checksum = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919"
    539 dependencies = [
    540  "kernel32-sys",
    541  "net2",
    542  "winapi 0.2.8",
    543  "ws2_32-sys",
    544 ]
    545 
    546 [[package]]
    547 name = "miow"
    548 version = "0.3.3"
    549 source = "registry+https://github.com/rust-lang/crates.io-index"
    550 checksum = "396aa0f2003d7df8395cb93e09871561ccc3e785f0acb369170e8cc74ddf9226"
    551 dependencies = [
    552  "socket2",
    553  "winapi 0.3.8",
    554 ]
    555 
    556 [[package]]
    557 name = "native-tls"
    558 version = "0.2.3"
    559 source = "registry+https://github.com/rust-lang/crates.io-index"
    560 checksum = "4b2df1a4c22fd44a62147fd8f13dd0f95c9d8ca7b2610299b2a2f9cf8964274e"
    561 dependencies = [
    562  "lazy_static",
    563  "libc",
    564  "log",
    565  "openssl",
    566  "openssl-probe",
    567  "openssl-sys",
    568  "schannel",
    569  "security-framework",
    570  "security-framework-sys",
    571  "tempfile",
    572 ]
    573 
    574 [[package]]
    575 name = "net2"
    576 version = "0.2.33"
    577 source = "registry+https://github.com/rust-lang/crates.io-index"
    578 checksum = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88"
    579 dependencies = [
    580  "cfg-if",
    581  "libc",
    582  "winapi 0.3.8",
    583 ]
    584 
    585 [[package]]
    586 name = "nom"
    587 version = "4.2.3"
    588 source = "registry+https://github.com/rust-lang/crates.io-index"
    589 checksum = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6"
    590 dependencies = [
    591  "memchr",
    592  "version_check 0.1.5",
    593 ]
    594 
    595 [[package]]
    596 name = "num-integer"
    597 version = "0.1.42"
    598 source = "registry+https://github.com/rust-lang/crates.io-index"
    599 checksum = "3f6ea62e9d81a77cd3ee9a2a5b9b609447857f3d358704331e4ef39eb247fcba"
    600 dependencies = [
    601  "autocfg",
    602  "num-traits",
    603 ]
    604 
    605 [[package]]
    606 name = "num-traits"
    607 version = "0.2.11"
    608 source = "registry+https://github.com/rust-lang/crates.io-index"
    609 checksum = "c62be47e61d1842b9170f0fdeec8eba98e60e90e5446449a0545e5152acd7096"
    610 dependencies = [
    611  "autocfg",
    612 ]
    613 
    614 [[package]]
    615 name = "num_cpus"
    616 version = "1.11.1"
    617 source = "registry+https://github.com/rust-lang/crates.io-index"
    618 checksum = "76dac5ed2a876980778b8b85f75a71b6cbf0db0b1232ee12f826bccb00d09d72"
    619 dependencies = [
    620  "hermit-abi",
    621  "libc",
    622 ]
    623 
    624 [[package]]
    625 name = "openssl"
    626 version = "0.10.28"
    627 source = "registry+https://github.com/rust-lang/crates.io-index"
    628 checksum = "973293749822d7dd6370d6da1e523b0d1db19f06c459134c658b2a4261378b52"
    629 dependencies = [
    630  "bitflags",
    631  "cfg-if",
    632  "foreign-types",
    633  "lazy_static",
    634  "libc",
    635  "openssl-sys",
    636 ]
    637 
    638 [[package]]
    639 name = "openssl-probe"
    640 version = "0.1.2"
    641 source = "registry+https://github.com/rust-lang/crates.io-index"
    642 checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
    643 
    644 [[package]]
    645 name = "openssl-sys"
    646 version = "0.9.54"
    647 source = "registry+https://github.com/rust-lang/crates.io-index"
    648 checksum = "1024c0a59774200a555087a6da3f253a9095a5f344e353b212ac4c8b8e450986"
    649 dependencies = [
    650  "autocfg",
    651  "cc",
    652  "libc",
    653  "pkg-config",
    654  "vcpkg",
    655 ]
    656 
    657 [[package]]
    658 name = "osmio"
    659 version = "0.2.1"
    660 source = "registry+https://github.com/rust-lang/crates.io-index"
    661 checksum = "7f15e45e0f6c4582a25c5cb37b4710e90eca7e3ce72846d5eed22aa0bb2bd422"
    662 dependencies = [
    663  "byteorder",
    664  "chrono",
    665  "flate2",
    666  "protobuf",
    667  "separator",
    668  "xml-rs",
    669 ]
    670 
    671 [[package]]
    672 name = "percent-encoding"
    673 version = "2.1.0"
    674 source = "registry+https://github.com/rust-lang/crates.io-index"
    675 checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
    676 
    677 [[package]]
    678 name = "pin-project"
    679 version = "0.4.8"
    680 source = "registry+https://github.com/rust-lang/crates.io-index"
    681 checksum = "7804a463a8d9572f13453c516a5faea534a2403d7ced2f0c7e100eeff072772c"
    682 dependencies = [
    683  "pin-project-internal",
    684 ]
    685 
    686 [[package]]
    687 name = "pin-project-internal"
    688 version = "0.4.8"
    689 source = "registry+https://github.com/rust-lang/crates.io-index"
    690 checksum = "385322a45f2ecf3410c68d2a549a4a2685e8051d0f278e39743ff4e451cb9b3f"
    691 dependencies = [
    692  "proc-macro2",
    693  "quote",
    694  "syn",
    695 ]
    696 
    697 [[package]]
    698 name = "pin-project-lite"
    699 version = "0.1.4"
    700 source = "registry+https://github.com/rust-lang/crates.io-index"
    701 checksum = "237844750cfbb86f67afe27eee600dfbbcb6188d734139b534cbfbf4f96792ae"
    702 
    703 [[package]]
    704 name = "pin-utils"
    705 version = "0.1.0-alpha.4"
    706 source = "registry+https://github.com/rust-lang/crates.io-index"
    707 checksum = "5894c618ce612a3fa23881b152b608bafb8c56cfc22f434a3ba3120b40f7b587"
    708 
    709 [[package]]
    710 name = "pkg-config"
    711 version = "0.3.17"
    712 source = "registry+https://github.com/rust-lang/crates.io-index"
    713 checksum = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677"
    714 
    715 [[package]]
    716 name = "ppv-lite86"
    717 version = "0.2.6"
    718 source = "registry+https://github.com/rust-lang/crates.io-index"
    719 checksum = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b"
    720 
    721 [[package]]
    722 name = "proc-macro2"
    723 version = "1.0.7"
    724 source = "registry+https://github.com/rust-lang/crates.io-index"
    725 checksum = "0319972dcae462681daf4da1adeeaa066e3ebd29c69be96c6abb1259d2ee2bcc"
    726 dependencies = [
    727  "unicode-xid",
    728 ]
    729 
    730 [[package]]
    731 name = "protobuf"
    732 version = "2.8.2"
    733 source = "registry+https://github.com/rust-lang/crates.io-index"
    734 checksum = "70731852eec72c56d11226c8a5f96ad5058a3dab73647ca5f7ee351e464f2571"
    735 
    736 [[package]]
    737 name = "quote"
    738 version = "1.0.2"
    739 source = "registry+https://github.com/rust-lang/crates.io-index"
    740 checksum = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe"
    741 dependencies = [
    742  "proc-macro2",
    743 ]
    744 
    745 [[package]]
    746 name = "rand"
    747 version = "0.7.3"
    748 source = "registry+https://github.com/rust-lang/crates.io-index"
    749 checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
    750 dependencies = [
    751  "getrandom",
    752  "libc",
    753  "rand_chacha",
    754  "rand_core",
    755  "rand_hc",
    756 ]
    757 
    758 [[package]]
    759 name = "rand_chacha"
    760 version = "0.2.1"
    761 source = "registry+https://github.com/rust-lang/crates.io-index"
    762 checksum = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853"
    763 dependencies = [
    764  "c2-chacha",
    765  "rand_core",
    766 ]
    767 
    768 [[package]]
    769 name = "rand_core"
    770 version = "0.5.1"
    771 source = "registry+https://github.com/rust-lang/crates.io-index"
    772 checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
    773 dependencies = [
    774  "getrandom",
    775 ]
    776 
    777 [[package]]
    778 name = "rand_hc"
    779 version = "0.2.0"
    780 source = "registry+https://github.com/rust-lang/crates.io-index"
    781 checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
    782 dependencies = [
    783  "rand_core",
    784 ]
    785 
    786 [[package]]
    787 name = "redox_syscall"
    788 version = "0.1.56"
    789 source = "registry+https://github.com/rust-lang/crates.io-index"
    790 checksum = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
    791 
    792 [[package]]
    793 name = "remove_dir_all"
    794 version = "0.5.2"
    795 source = "registry+https://github.com/rust-lang/crates.io-index"
    796 checksum = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e"
    797 dependencies = [
    798  "winapi 0.3.8",
    799 ]
    800 
    801 [[package]]
    802 name = "reqwest"
    803 version = "0.10.7"
    804 source = "registry+https://github.com/rust-lang/crates.io-index"
    805 checksum = "12427a5577082c24419c9c417db35cfeb65962efc7675bb6b0d5f1f9d315bfe6"
    806 dependencies = [
    807  "base64",
    808  "bytes",
    809  "encoding_rs",
    810  "futures-core",
    811  "futures-util",
    812  "http",
    813  "http-body",
    814  "hyper",
    815  "hyper-tls",
    816  "ipnet",
    817  "js-sys",
    818  "lazy_static",
    819  "log",
    820  "mime",
    821  "mime_guess",
    822  "native-tls",
    823  "percent-encoding",
    824  "pin-project-lite",
    825  "serde",
    826  "serde_json",
    827  "serde_urlencoded",
    828  "tokio",
    829  "tokio-tls",
    830  "url",
    831  "wasm-bindgen",
    832  "wasm-bindgen-futures",
    833  "web-sys",
    834  "winreg",
    835 ]
    836 
    837 [[package]]
    838 name = "ryu"
    839 version = "1.0.2"
    840 source = "registry+https://github.com/rust-lang/crates.io-index"
    841 checksum = "bfa8506c1de11c9c4e4c38863ccbe02a305c8188e85a05a784c9e11e1c3910c8"
    842 
    843 [[package]]
    844 name = "schannel"
    845 version = "0.1.17"
    846 source = "registry+https://github.com/rust-lang/crates.io-index"
    847 checksum = "507a9e6e8ffe0a4e0ebb9a10293e62fdf7657c06f1b8bb07a8fcf697d2abf295"
    848 dependencies = [
    849  "lazy_static",
    850  "winapi 0.3.8",
    851 ]
    852 
    853 [[package]]
    854 name = "security-framework"
    855 version = "0.3.4"
    856 source = "registry+https://github.com/rust-lang/crates.io-index"
    857 checksum = "8ef2429d7cefe5fd28bd1d2ed41c944547d4ff84776f5935b456da44593a16df"
    858 dependencies = [
    859  "core-foundation",
    860  "core-foundation-sys",
    861  "libc",
    862  "security-framework-sys",
    863 ]
    864 
    865 [[package]]
    866 name = "security-framework-sys"
    867 version = "0.3.3"
    868 source = "registry+https://github.com/rust-lang/crates.io-index"
    869 checksum = "e31493fc37615debb8c5090a7aeb4a9730bc61e77ab10b9af59f1a202284f895"
    870 dependencies = [
    871  "core-foundation-sys",
    872 ]
    873 
    874 [[package]]
    875 name = "separator"
    876 version = "0.4.1"
    877 source = "registry+https://github.com/rust-lang/crates.io-index"
    878 checksum = "f97841a747eef040fcd2e7b3b9a220a7205926e60488e673d9e4926d27772ce5"
    879 
    880 [[package]]
    881 name = "serde"
    882 version = "1.0.104"
    883 source = "registry+https://github.com/rust-lang/crates.io-index"
    884 checksum = "414115f25f818d7dfccec8ee535d76949ae78584fc4f79a6f45a904bf8ab4449"
    885 
    886 [[package]]
    887 name = "serde_json"
    888 version = "1.0.47"
    889 source = "registry+https://github.com/rust-lang/crates.io-index"
    890 checksum = "15913895b61e0be854afd32fd4163fcd2a3df34142cf2cb961b310ce694cbf90"
    891 dependencies = [
    892  "itoa",
    893  "ryu",
    894  "serde",
    895 ]
    896 
    897 [[package]]
    898 name = "serde_urlencoded"
    899 version = "0.6.1"
    900 source = "registry+https://github.com/rust-lang/crates.io-index"
    901 checksum = "9ec5d77e2d4c73717816afac02670d5c4f534ea95ed430442cad02e7a6e32c97"
    902 dependencies = [
    903  "dtoa",
    904  "itoa",
    905  "serde",
    906  "url",
    907 ]
    908 
    909 [[package]]
    910 name = "signal-hook-registry"
    911 version = "1.2.0"
    912 source = "registry+https://github.com/rust-lang/crates.io-index"
    913 checksum = "94f478ede9f64724c5d173d7bb56099ec3e2d9fc2774aac65d34b8b890405f41"
    914 dependencies = [
    915  "arc-swap",
    916  "libc",
    917 ]
    918 
    919 [[package]]
    920 name = "slab"
    921 version = "0.4.2"
    922 source = "registry+https://github.com/rust-lang/crates.io-index"
    923 checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
    924 
    925 [[package]]
    926 name = "smallvec"
    927 version = "1.2.0"
    928 source = "registry+https://github.com/rust-lang/crates.io-index"
    929 checksum = "5c2fb2ec9bcd216a5b0d0ccf31ab17b5ed1d627960edff65bbe95d3ce221cefc"
    930 
    931 [[package]]
    932 name = "socket2"
    933 version = "0.3.11"
    934 source = "registry+https://github.com/rust-lang/crates.io-index"
    935 checksum = "e8b74de517221a2cb01a53349cf54182acdc31a074727d3079068448c0676d85"
    936 dependencies = [
    937  "cfg-if",
    938  "libc",
    939  "redox_syscall",
    940  "winapi 0.3.8",
    941 ]
    942 
    943 [[package]]
    944 name = "sourcefile"
    945 version = "0.1.4"
    946 source = "registry+https://github.com/rust-lang/crates.io-index"
    947 checksum = "4bf77cb82ba8453b42b6ae1d692e4cdc92f9a47beaf89a847c8be83f4e328ad3"
    948 
    949 [[package]]
    950 name = "strsim"
    951 version = "0.8.0"
    952 source = "registry+https://github.com/rust-lang/crates.io-index"
    953 checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
    954 
    955 [[package]]
    956 name = "syn"
    957 version = "1.0.13"
    958 source = "registry+https://github.com/rust-lang/crates.io-index"
    959 checksum = "1e4ff033220a41d1a57d8125eab57bf5263783dfdcc18688b1dacc6ce9651ef8"
    960 dependencies = [
    961  "proc-macro2",
    962  "quote",
    963  "unicode-xid",
    964 ]
    965 
    966 [[package]]
    967 name = "tempfile"
    968 version = "3.1.0"
    969 source = "registry+https://github.com/rust-lang/crates.io-index"
    970 checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
    971 dependencies = [
    972  "cfg-if",
    973  "libc",
    974  "rand",
    975  "redox_syscall",
    976  "remove_dir_all",
    977  "winapi 0.3.8",
    978 ]
    979 
    980 [[package]]
    981 name = "textwrap"
    982 version = "0.11.0"
    983 source = "registry+https://github.com/rust-lang/crates.io-index"
    984 checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
    985 dependencies = [
    986  "unicode-width",
    987 ]
    988 
    989 [[package]]
    990 name = "time"
    991 version = "0.1.42"
    992 source = "registry+https://github.com/rust-lang/crates.io-index"
    993 checksum = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f"
    994 dependencies = [
    995  "libc",
    996  "redox_syscall",
    997  "winapi 0.3.8",
    998 ]
    999 
   1000 [[package]]
   1001 name = "tokio"
   1002 version = "0.2.22"
   1003 source = "registry+https://github.com/rust-lang/crates.io-index"
   1004 checksum = "5d34ca54d84bf2b5b4d7d31e901a8464f7b60ac145a284fba25ceb801f2ddccd"
   1005 dependencies = [
   1006  "bytes",
   1007  "fnv",
   1008  "futures-core",
   1009  "iovec",
   1010  "lazy_static",
   1011  "libc",
   1012  "memchr",
   1013  "mio",
   1014  "mio-named-pipes",
   1015  "mio-uds",
   1016  "num_cpus",
   1017  "pin-project-lite",
   1018  "signal-hook-registry",
   1019  "slab",
   1020  "tokio-macros",
   1021  "winapi 0.3.8",
   1022 ]
   1023 
   1024 [[package]]
   1025 name = "tokio-macros"
   1026 version = "0.2.4"
   1027 source = "registry+https://github.com/rust-lang/crates.io-index"
   1028 checksum = "f4b1e7ed7d5d4c2af3d999904b0eebe76544897cdbfb2b9684bed2174ab20f7c"
   1029 dependencies = [
   1030  "proc-macro2",
   1031  "quote",
   1032  "syn",
   1033 ]
   1034 
   1035 [[package]]
   1036 name = "tokio-tls"
   1037 version = "0.3.0"
   1038 source = "registry+https://github.com/rust-lang/crates.io-index"
   1039 checksum = "7bde02a3a5291395f59b06ec6945a3077602fac2b07eeeaf0dee2122f3619828"
   1040 dependencies = [
   1041  "native-tls",
   1042  "tokio",
   1043 ]
   1044 
   1045 [[package]]
   1046 name = "tokio-util"
   1047 version = "0.2.0"
   1048 source = "registry+https://github.com/rust-lang/crates.io-index"
   1049 checksum = "571da51182ec208780505a32528fc5512a8fe1443ab960b3f2f3ef093cd16930"
   1050 dependencies = [
   1051  "bytes",
   1052  "futures-core",
   1053  "futures-sink",
   1054  "log",
   1055  "pin-project-lite",
   1056  "tokio",
   1057 ]
   1058 
   1059 [[package]]
   1060 name = "tower-service"
   1061 version = "0.3.0"
   1062 source = "registry+https://github.com/rust-lang/crates.io-index"
   1063 checksum = "e987b6bf443f4b5b3b6f38704195592cca41c5bb7aedd3c3693c7081f8289860"
   1064 
   1065 [[package]]
   1066 name = "try-lock"
   1067 version = "0.2.2"
   1068 source = "registry+https://github.com/rust-lang/crates.io-index"
   1069 checksum = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382"
   1070 
   1071 [[package]]
   1072 name = "unicase"
   1073 version = "2.6.0"
   1074 source = "registry+https://github.com/rust-lang/crates.io-index"
   1075 checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
   1076 dependencies = [
   1077  "version_check 0.9.1",
   1078 ]
   1079 
   1080 [[package]]
   1081 name = "unicode-bidi"
   1082 version = "0.3.4"
   1083 source = "registry+https://github.com/rust-lang/crates.io-index"
   1084 checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
   1085 dependencies = [
   1086  "matches",
   1087 ]
   1088 
   1089 [[package]]
   1090 name = "unicode-normalization"
   1091 version = "0.1.12"
   1092 source = "registry+https://github.com/rust-lang/crates.io-index"
   1093 checksum = "5479532badd04e128284890390c1e876ef7a993d0570b3597ae43dfa1d59afa4"
   1094 dependencies = [
   1095  "smallvec",
   1096 ]
   1097 
   1098 [[package]]
   1099 name = "unicode-segmentation"
   1100 version = "1.6.0"
   1101 source = "registry+https://github.com/rust-lang/crates.io-index"
   1102 checksum = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0"
   1103 
   1104 [[package]]
   1105 name = "unicode-width"
   1106 version = "0.1.7"
   1107 source = "registry+https://github.com/rust-lang/crates.io-index"
   1108 checksum = "caaa9d531767d1ff2150b9332433f32a24622147e5ebb1f26409d5da67afd479"
   1109 
   1110 [[package]]
   1111 name = "unicode-xid"
   1112 version = "0.2.0"
   1113 source = "registry+https://github.com/rust-lang/crates.io-index"
   1114 checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
   1115 
   1116 [[package]]
   1117 name = "url"
   1118 version = "2.1.1"
   1119 source = "registry+https://github.com/rust-lang/crates.io-index"
   1120 checksum = "829d4a8476c35c9bf0bbce5a3b23f4106f79728039b726d292bb93bc106787cb"
   1121 dependencies = [
   1122  "idna",
   1123  "matches",
   1124  "percent-encoding",
   1125 ]
   1126 
   1127 [[package]]
   1128 name = "vcpkg"
   1129 version = "0.2.8"
   1130 source = "registry+https://github.com/rust-lang/crates.io-index"
   1131 checksum = "3fc439f2794e98976c88a2a2dafce96b930fe8010b0a256b3c2199a773933168"
   1132 
   1133 [[package]]
   1134 name = "vec_map"
   1135 version = "0.8.1"
   1136 source = "registry+https://github.com/rust-lang/crates.io-index"
   1137 checksum = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a"
   1138 
   1139 [[package]]
   1140 name = "version_check"
   1141 version = "0.1.5"
   1142 source = "registry+https://github.com/rust-lang/crates.io-index"
   1143 checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd"
   1144 
   1145 [[package]]
   1146 name = "version_check"
   1147 version = "0.9.1"
   1148 source = "registry+https://github.com/rust-lang/crates.io-index"
   1149 checksum = "078775d0255232fb988e6fccf26ddc9d1ac274299aaedcedce21c6f72cc533ce"
   1150 
   1151 [[package]]
   1152 name = "want"
   1153 version = "0.3.0"
   1154 source = "registry+https://github.com/rust-lang/crates.io-index"
   1155 checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
   1156 dependencies = [
   1157  "log",
   1158  "try-lock",
   1159 ]
   1160 
   1161 [[package]]
   1162 name = "wasi"
   1163 version = "0.9.0+wasi-snapshot-preview1"
   1164 source = "registry+https://github.com/rust-lang/crates.io-index"
   1165 checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
   1166 
   1167 [[package]]
   1168 name = "wasm-bindgen"
   1169 version = "0.2.58"
   1170 source = "registry+https://github.com/rust-lang/crates.io-index"
   1171 checksum = "5205e9afdf42282b192e2310a5b463a6d1c1d774e30dc3c791ac37ab42d2616c"
   1172 dependencies = [
   1173  "cfg-if",
   1174  "serde",
   1175  "serde_json",
   1176  "wasm-bindgen-macro",
   1177 ]
   1178 
   1179 [[package]]
   1180 name = "wasm-bindgen-backend"
   1181 version = "0.2.58"
   1182 source = "registry+https://github.com/rust-lang/crates.io-index"
   1183 checksum = "11cdb95816290b525b32587d76419facd99662a07e59d3cdb560488a819d9a45"
   1184 dependencies = [
   1185  "bumpalo",
   1186  "lazy_static",
   1187  "log",
   1188  "proc-macro2",
   1189  "quote",
   1190  "syn",
   1191  "wasm-bindgen-shared",
   1192 ]
   1193 
   1194 [[package]]
   1195 name = "wasm-bindgen-futures"
   1196 version = "0.4.8"
   1197 source = "registry+https://github.com/rust-lang/crates.io-index"
   1198 checksum = "8bbdd49e3e28b40dec6a9ba8d17798245ce32b019513a845369c641b275135d9"
   1199 dependencies = [
   1200  "cfg-if",
   1201  "js-sys",
   1202  "wasm-bindgen",
   1203  "web-sys",
   1204 ]
   1205 
   1206 [[package]]
   1207 name = "wasm-bindgen-macro"
   1208 version = "0.2.58"
   1209 source = "registry+https://github.com/rust-lang/crates.io-index"
   1210 checksum = "574094772ce6921576fb6f2e3f7497b8a76273b6db092be18fc48a082de09dc3"
   1211 dependencies = [
   1212  "quote",
   1213  "wasm-bindgen-macro-support",
   1214 ]
   1215 
   1216 [[package]]
   1217 name = "wasm-bindgen-macro-support"
   1218 version = "0.2.58"
   1219 source = "registry+https://github.com/rust-lang/crates.io-index"
   1220 checksum = "e85031354f25eaebe78bb7db1c3d86140312a911a106b2e29f9cc440ce3e7668"
   1221 dependencies = [
   1222  "proc-macro2",
   1223  "quote",
   1224  "syn",
   1225  "wasm-bindgen-backend",
   1226  "wasm-bindgen-shared",
   1227 ]
   1228 
   1229 [[package]]
   1230 name = "wasm-bindgen-shared"
   1231 version = "0.2.58"
   1232 source = "registry+https://github.com/rust-lang/crates.io-index"
   1233 checksum = "f5e7e61fc929f4c0dddb748b102ebf9f632e2b8d739f2016542b4de2965a9601"
   1234 
   1235 [[package]]
   1236 name = "wasm-bindgen-webidl"
   1237 version = "0.2.58"
   1238 source = "registry+https://github.com/rust-lang/crates.io-index"
   1239 checksum = "ef012a0d93fc0432df126a8eaf547b2dce25a8ce9212e1d3cbeef5c11157975d"
   1240 dependencies = [
   1241  "anyhow",
   1242  "heck",
   1243  "log",
   1244  "proc-macro2",
   1245  "quote",
   1246  "syn",
   1247  "wasm-bindgen-backend",
   1248  "weedle",
   1249 ]
   1250 
   1251 [[package]]
   1252 name = "web-sys"
   1253 version = "0.3.35"
   1254 source = "registry+https://github.com/rust-lang/crates.io-index"
   1255 checksum = "aaf97caf6aa8c2b1dac90faf0db529d9d63c93846cca4911856f78a83cebf53b"
   1256 dependencies = [
   1257  "anyhow",
   1258  "js-sys",
   1259  "sourcefile",
   1260  "wasm-bindgen",
   1261  "wasm-bindgen-webidl",
   1262 ]
   1263 
   1264 [[package]]
   1265 name = "weedle"
   1266 version = "0.10.0"
   1267 source = "registry+https://github.com/rust-lang/crates.io-index"
   1268 checksum = "3bb43f70885151e629e2a19ce9e50bd730fd436cfd4b666894c9ce4de9141164"
   1269 dependencies = [
   1270  "nom",
   1271 ]
   1272 
   1273 [[package]]
   1274 name = "winapi"
   1275 version = "0.2.8"
   1276 source = "registry+https://github.com/rust-lang/crates.io-index"
   1277 checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
   1278 
   1279 [[package]]
   1280 name = "winapi"
   1281 version = "0.3.8"
   1282 source = "registry+https://github.com/rust-lang/crates.io-index"
   1283 checksum = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
   1284 dependencies = [
   1285  "winapi-i686-pc-windows-gnu",
   1286  "winapi-x86_64-pc-windows-gnu",
   1287 ]
   1288 
   1289 [[package]]
   1290 name = "winapi-build"
   1291 version = "0.1.1"
   1292 source = "registry+https://github.com/rust-lang/crates.io-index"
   1293 checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
   1294 
   1295 [[package]]
   1296 name = "winapi-i686-pc-windows-gnu"
   1297 version = "0.4.0"
   1298 source = "registry+https://github.com/rust-lang/crates.io-index"
   1299 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
   1300 
   1301 [[package]]
   1302 name = "winapi-x86_64-pc-windows-gnu"
   1303 version = "0.4.0"
   1304 source = "registry+https://github.com/rust-lang/crates.io-index"
   1305 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
   1306 
   1307 [[package]]
   1308 name = "winreg"
   1309 version = "0.7.0"
   1310 source = "registry+https://github.com/rust-lang/crates.io-index"
   1311 checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69"
   1312 dependencies = [
   1313  "winapi 0.3.8",
   1314 ]
   1315 
   1316 [[package]]
   1317 name = "ws2_32-sys"
   1318 version = "0.2.1"
   1319 source = "registry+https://github.com/rust-lang/crates.io-index"
   1320 checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
   1321 dependencies = [
   1322  "winapi 0.2.8",
   1323  "winapi-build",
   1324 ]
   1325 
   1326 [[package]]
   1327 name = "xml-rs"
   1328 version = "0.8.0"
   1329 source = "registry+https://github.com/rust-lang/crates.io-index"
   1330 checksum = "541b12c998c5b56aa2b4e6f18f03664eef9a4fd0a246a55594efae6cc2d964b5"