nur-packages

My NUR packages
git clone git://git.sikmir.ru/nur-packages
Log | Files | Refs | README | LICENSE

cargo-lock.patch (20293B)


      1 diff --git c/Cargo.lock i/Cargo.lock
      2 new file mode 100644
      3 index 0000000..fd4da9a
      4 --- /dev/null
      5 +++ i/Cargo.lock
      6 @@ -0,0 +1,781 @@
      7 +# This file is automatically @generated by Cargo.
      8 +# It is not intended for manual editing.
      9 +version = 3
     10 +
     11 +[[package]]
     12 +name = "CoreFoundation-sys"
     13 +version = "0.1.4"
     14 +source = "registry+https://github.com/rust-lang/crates.io-index"
     15 +checksum = "d0e9889e6db118d49d88d84728d0e964d973a5680befb5f85f55141beea5c20b"
     16 +dependencies = [
     17 + "libc",
     18 + "mach 0.1.2",
     19 +]
     20 +
     21 +[[package]]
     22 +name = "IOKit-sys"
     23 +version = "0.1.5"
     24 +source = "registry+https://github.com/rust-lang/crates.io-index"
     25 +checksum = "99696c398cbaf669d2368076bdb3d627fb0ce51a26899d7c61228c5c0af3bf4a"
     26 +dependencies = [
     27 + "CoreFoundation-sys",
     28 + "libc",
     29 + "mach 0.1.2",
     30 +]
     31 +
     32 +[[package]]
     33 +name = "aho-corasick"
     34 +version = "0.7.20"
     35 +source = "registry+https://github.com/rust-lang/crates.io-index"
     36 +checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
     37 +dependencies = [
     38 + "memchr",
     39 +]
     40 +
     41 +[[package]]
     42 +name = "atty"
     43 +version = "0.2.14"
     44 +source = "registry+https://github.com/rust-lang/crates.io-index"
     45 +checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
     46 +dependencies = [
     47 + "hermit-abi 0.1.19",
     48 + "libc",
     49 + "winapi",
     50 +]
     51 +
     52 +[[package]]
     53 +name = "autocfg"
     54 +version = "1.1.0"
     55 +source = "registry+https://github.com/rust-lang/crates.io-index"
     56 +checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
     57 +
     58 +[[package]]
     59 +name = "bitflags"
     60 +version = "1.3.2"
     61 +source = "registry+https://github.com/rust-lang/crates.io-index"
     62 +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
     63 +
     64 +[[package]]
     65 +name = "byteorder"
     66 +version = "1.4.3"
     67 +source = "registry+https://github.com/rust-lang/crates.io-index"
     68 +checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
     69 +
     70 +[[package]]
     71 +name = "bytes"
     72 +version = "1.3.0"
     73 +source = "registry+https://github.com/rust-lang/crates.io-index"
     74 +checksum = "dfb24e866b15a1af2a1b663f10c6b6b8f397a84aadb828f12e5b289ec23a3a3c"
     75 +
     76 +[[package]]
     77 +name = "cfg-if"
     78 +version = "1.0.0"
     79 +source = "registry+https://github.com/rust-lang/crates.io-index"
     80 +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
     81 +
     82 +[[package]]
     83 +name = "codec"
     84 +version = "0.1.0"
     85 +dependencies = [
     86 + "byteorder",
     87 + "bytes",
     88 + "env_logger",
     89 + "frame",
     90 + "log",
     91 + "tokio-util",
     92 +]
     93 +
     94 +[[package]]
     95 +name = "env_logger"
     96 +version = "0.9.3"
     97 +source = "registry+https://github.com/rust-lang/crates.io-index"
     98 +checksum = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7"
     99 +dependencies = [
    100 + "atty",
    101 + "humantime",
    102 + "log",
    103 + "regex",
    104 + "termcolor",
    105 +]
    106 +
    107 +[[package]]
    108 +name = "frame"
    109 +version = "0.1.0"
    110 +dependencies = [
    111 + "byteorder",
    112 + "bytes",
    113 + "smallvec",
    114 +]
    115 +
    116 +[[package]]
    117 +name = "futures"
    118 +version = "0.3.25"
    119 +source = "registry+https://github.com/rust-lang/crates.io-index"
    120 +checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0"
    121 +dependencies = [
    122 + "futures-channel",
    123 + "futures-core",
    124 + "futures-executor",
    125 + "futures-io",
    126 + "futures-sink",
    127 + "futures-task",
    128 + "futures-util",
    129 +]
    130 +
    131 +[[package]]
    132 +name = "futures-channel"
    133 +version = "0.3.25"
    134 +source = "registry+https://github.com/rust-lang/crates.io-index"
    135 +checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed"
    136 +dependencies = [
    137 + "futures-core",
    138 + "futures-sink",
    139 +]
    140 +
    141 +[[package]]
    142 +name = "futures-core"
    143 +version = "0.3.25"
    144 +source = "registry+https://github.com/rust-lang/crates.io-index"
    145 +checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac"
    146 +
    147 +[[package]]
    148 +name = "futures-executor"
    149 +version = "0.3.25"
    150 +source = "registry+https://github.com/rust-lang/crates.io-index"
    151 +checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2"
    152 +dependencies = [
    153 + "futures-core",
    154 + "futures-task",
    155 + "futures-util",
    156 +]
    157 +
    158 +[[package]]
    159 +name = "futures-io"
    160 +version = "0.3.25"
    161 +source = "registry+https://github.com/rust-lang/crates.io-index"
    162 +checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb"
    163 +
    164 +[[package]]
    165 +name = "futures-macro"
    166 +version = "0.3.25"
    167 +source = "registry+https://github.com/rust-lang/crates.io-index"
    168 +checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d"
    169 +dependencies = [
    170 + "proc-macro2",
    171 + "quote",
    172 + "syn",
    173 +]
    174 +
    175 +[[package]]
    176 +name = "futures-sink"
    177 +version = "0.3.25"
    178 +source = "registry+https://github.com/rust-lang/crates.io-index"
    179 +checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9"
    180 +
    181 +[[package]]
    182 +name = "futures-task"
    183 +version = "0.3.25"
    184 +source = "registry+https://github.com/rust-lang/crates.io-index"
    185 +checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea"
    186 +
    187 +[[package]]
    188 +name = "futures-util"
    189 +version = "0.3.25"
    190 +source = "registry+https://github.com/rust-lang/crates.io-index"
    191 +checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6"
    192 +dependencies = [
    193 + "futures-channel",
    194 + "futures-core",
    195 + "futures-io",
    196 + "futures-macro",
    197 + "futures-sink",
    198 + "futures-task",
    199 + "memchr",
    200 + "pin-project-lite",
    201 + "pin-utils",
    202 + "slab",
    203 +]
    204 +
    205 +[[package]]
    206 +name = "getrandom"
    207 +version = "0.2.8"
    208 +source = "registry+https://github.com/rust-lang/crates.io-index"
    209 +checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
    210 +dependencies = [
    211 + "cfg-if",
    212 + "libc",
    213 + "wasi",
    214 +]
    215 +
    216 +[[package]]
    217 +name = "hermit-abi"
    218 +version = "0.1.19"
    219 +source = "registry+https://github.com/rust-lang/crates.io-index"
    220 +checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
    221 +dependencies = [
    222 + "libc",
    223 +]
    224 +
    225 +[[package]]
    226 +name = "hermit-abi"
    227 +version = "0.2.6"
    228 +source = "registry+https://github.com/rust-lang/crates.io-index"
    229 +checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
    230 +dependencies = [
    231 + "libc",
    232 +]
    233 +
    234 +[[package]]
    235 +name = "humantime"
    236 +version = "2.1.0"
    237 +source = "registry+https://github.com/rust-lang/crates.io-index"
    238 +checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
    239 +
    240 +[[package]]
    241 +name = "libc"
    242 +version = "0.2.139"
    243 +source = "registry+https://github.com/rust-lang/crates.io-index"
    244 +checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
    245 +
    246 +[[package]]
    247 +name = "lock_api"
    248 +version = "0.4.9"
    249 +source = "registry+https://github.com/rust-lang/crates.io-index"
    250 +checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
    251 +dependencies = [
    252 + "autocfg",
    253 + "scopeguard",
    254 +]
    255 +
    256 +[[package]]
    257 +name = "log"
    258 +version = "0.4.17"
    259 +source = "registry+https://github.com/rust-lang/crates.io-index"
    260 +checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
    261 +dependencies = [
    262 + "cfg-if",
    263 +]
    264 +
    265 +[[package]]
    266 +name = "mach"
    267 +version = "0.1.2"
    268 +source = "registry+https://github.com/rust-lang/crates.io-index"
    269 +checksum = "2fd13ee2dd61cc82833ba05ade5a30bb3d63f7ced605ef827063c63078302de9"
    270 +dependencies = [
    271 + "libc",
    272 +]
    273 +
    274 +[[package]]
    275 +name = "mach"
    276 +version = "0.3.2"
    277 +source = "registry+https://github.com/rust-lang/crates.io-index"
    278 +checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
    279 +dependencies = [
    280 + "libc",
    281 +]
    282 +
    283 +[[package]]
    284 +name = "memchr"
    285 +version = "2.5.0"
    286 +source = "registry+https://github.com/rust-lang/crates.io-index"
    287 +checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
    288 +
    289 +[[package]]
    290 +name = "memoffset"
    291 +version = "0.7.1"
    292 +source = "registry+https://github.com/rust-lang/crates.io-index"
    293 +checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
    294 +dependencies = [
    295 + "autocfg",
    296 +]
    297 +
    298 +[[package]]
    299 +name = "mio"
    300 +version = "0.8.5"
    301 +source = "registry+https://github.com/rust-lang/crates.io-index"
    302 +checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
    303 +dependencies = [
    304 + "libc",
    305 + "log",
    306 + "wasi",
    307 + "windows-sys",
    308 +]
    309 +
    310 +[[package]]
    311 +name = "mio-serial"
    312 +version = "5.0.4"
    313 +source = "registry+https://github.com/rust-lang/crates.io-index"
    314 +checksum = "58a4717ec0fd1b8a842d40635b8df912334826ee181a88ee638d7c080cea1485"
    315 +dependencies = [
    316 + "log",
    317 + "mio",
    318 + "nix 0.26.2",
    319 + "serialport",
    320 + "winapi",
    321 +]
    322 +
    323 +[[package]]
    324 +name = "nix"
    325 +version = "0.24.3"
    326 +source = "registry+https://github.com/rust-lang/crates.io-index"
    327 +checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069"
    328 +dependencies = [
    329 + "bitflags",
    330 + "cfg-if",
    331 + "libc",
    332 +]
    333 +
    334 +[[package]]
    335 +name = "nix"
    336 +version = "0.26.2"
    337 +source = "registry+https://github.com/rust-lang/crates.io-index"
    338 +checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a"
    339 +dependencies = [
    340 + "bitflags",
    341 + "cfg-if",
    342 + "libc",
    343 + "memoffset",
    344 + "pin-utils",
    345 + "static_assertions",
    346 +]
    347 +
    348 +[[package]]
    349 +name = "num_cpus"
    350 +version = "1.15.0"
    351 +source = "registry+https://github.com/rust-lang/crates.io-index"
    352 +checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
    353 +dependencies = [
    354 + "hermit-abi 0.2.6",
    355 + "libc",
    356 +]
    357 +
    358 +[[package]]
    359 +name = "once_cell"
    360 +version = "1.17.0"
    361 +source = "registry+https://github.com/rust-lang/crates.io-index"
    362 +checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66"
    363 +
    364 +[[package]]
    365 +name = "parking_lot"
    366 +version = "0.12.1"
    367 +source = "registry+https://github.com/rust-lang/crates.io-index"
    368 +checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
    369 +dependencies = [
    370 + "lock_api",
    371 + "parking_lot_core",
    372 +]
    373 +
    374 +[[package]]
    375 +name = "parking_lot_core"
    376 +version = "0.9.6"
    377 +source = "registry+https://github.com/rust-lang/crates.io-index"
    378 +checksum = "ba1ef8814b5c993410bb3adfad7a5ed269563e4a2f90c41f5d85be7fb47133bf"
    379 +dependencies = [
    380 + "cfg-if",
    381 + "libc",
    382 + "redox_syscall",
    383 + "smallvec",
    384 + "windows-sys",
    385 +]
    386 +
    387 +[[package]]
    388 +name = "pin-project-lite"
    389 +version = "0.2.9"
    390 +source = "registry+https://github.com/rust-lang/crates.io-index"
    391 +checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
    392 +
    393 +[[package]]
    394 +name = "pin-utils"
    395 +version = "0.1.0"
    396 +source = "registry+https://github.com/rust-lang/crates.io-index"
    397 +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
    398 +
    399 +[[package]]
    400 +name = "ppv-lite86"
    401 +version = "0.2.17"
    402 +source = "registry+https://github.com/rust-lang/crates.io-index"
    403 +checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
    404 +
    405 +[[package]]
    406 +name = "proc-macro2"
    407 +version = "1.0.50"
    408 +source = "registry+https://github.com/rust-lang/crates.io-index"
    409 +checksum = "6ef7d57beacfaf2d8aee5937dab7b7f28de3cb8b1828479bb5de2a7106f2bae2"
    410 +dependencies = [
    411 + "unicode-ident",
    412 +]
    413 +
    414 +[[package]]
    415 +name = "quote"
    416 +version = "1.0.23"
    417 +source = "registry+https://github.com/rust-lang/crates.io-index"
    418 +checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b"
    419 +dependencies = [
    420 + "proc-macro2",
    421 +]
    422 +
    423 +[[package]]
    424 +name = "rand"
    425 +version = "0.8.5"
    426 +source = "registry+https://github.com/rust-lang/crates.io-index"
    427 +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
    428 +dependencies = [
    429 + "libc",
    430 + "rand_chacha",
    431 + "rand_core",
    432 +]
    433 +
    434 +[[package]]
    435 +name = "rand_chacha"
    436 +version = "0.3.1"
    437 +source = "registry+https://github.com/rust-lang/crates.io-index"
    438 +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
    439 +dependencies = [
    440 + "ppv-lite86",
    441 + "rand_core",
    442 +]
    443 +
    444 +[[package]]
    445 +name = "rand_core"
    446 +version = "0.6.4"
    447 +source = "registry+https://github.com/rust-lang/crates.io-index"
    448 +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
    449 +dependencies = [
    450 + "getrandom",
    451 +]
    452 +
    453 +[[package]]
    454 +name = "redox_syscall"
    455 +version = "0.2.16"
    456 +source = "registry+https://github.com/rust-lang/crates.io-index"
    457 +checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
    458 +dependencies = [
    459 + "bitflags",
    460 +]
    461 +
    462 +[[package]]
    463 +name = "regex"
    464 +version = "1.7.1"
    465 +source = "registry+https://github.com/rust-lang/crates.io-index"
    466 +checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733"
    467 +dependencies = [
    468 + "aho-corasick",
    469 + "memchr",
    470 + "regex-syntax",
    471 +]
    472 +
    473 +[[package]]
    474 +name = "regex-syntax"
    475 +version = "0.6.28"
    476 +source = "registry+https://github.com/rust-lang/crates.io-index"
    477 +checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
    478 +
    479 +[[package]]
    480 +name = "scopeguard"
    481 +version = "1.1.0"
    482 +source = "registry+https://github.com/rust-lang/crates.io-index"
    483 +checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
    484 +
    485 +[[package]]
    486 +name = "serialport"
    487 +version = "4.2.0"
    488 +source = "registry+https://github.com/rust-lang/crates.io-index"
    489 +checksum = "aab92efb5cf60ad310548bc3f16fa6b0d950019cb7ed8ff41968c3d03721cf12"
    490 +dependencies = [
    491 + "CoreFoundation-sys",
    492 + "IOKit-sys",
    493 + "bitflags",
    494 + "cfg-if",
    495 + "mach 0.3.2",
    496 + "nix 0.24.3",
    497 + "regex",
    498 + "winapi",
    499 +]
    500 +
    501 +[[package]]
    502 +name = "signal-hook-registry"
    503 +version = "1.4.0"
    504 +source = "registry+https://github.com/rust-lang/crates.io-index"
    505 +checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
    506 +dependencies = [
    507 + "libc",
    508 +]
    509 +
    510 +[[package]]
    511 +name = "slab"
    512 +version = "0.4.7"
    513 +source = "registry+https://github.com/rust-lang/crates.io-index"
    514 +checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
    515 +dependencies = [
    516 + "autocfg",
    517 +]
    518 +
    519 +[[package]]
    520 +name = "slave-rnd"
    521 +version = "0.1.0"
    522 +dependencies = [
    523 + "env_logger",
    524 + "frame",
    525 + "futures",
    526 + "log",
    527 + "rand",
    528 + "tokio",
    529 + "transport",
    530 + "uuid",
    531 +]
    532 +
    533 +[[package]]
    534 +name = "smallvec"
    535 +version = "1.10.0"
    536 +source = "registry+https://github.com/rust-lang/crates.io-index"
    537 +checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
    538 +
    539 +[[package]]
    540 +name = "socket2"
    541 +version = "0.4.7"
    542 +source = "registry+https://github.com/rust-lang/crates.io-index"
    543 +checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
    544 +dependencies = [
    545 + "libc",
    546 + "winapi",
    547 +]
    548 +
    549 +[[package]]
    550 +name = "static_assertions"
    551 +version = "1.1.0"
    552 +source = "registry+https://github.com/rust-lang/crates.io-index"
    553 +checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
    554 +
    555 +[[package]]
    556 +name = "syn"
    557 +version = "1.0.107"
    558 +source = "registry+https://github.com/rust-lang/crates.io-index"
    559 +checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5"
    560 +dependencies = [
    561 + "proc-macro2",
    562 + "quote",
    563 + "unicode-ident",
    564 +]
    565 +
    566 +[[package]]
    567 +name = "termcolor"
    568 +version = "1.2.0"
    569 +source = "registry+https://github.com/rust-lang/crates.io-index"
    570 +checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
    571 +dependencies = [
    572 + "winapi-util",
    573 +]
    574 +
    575 +[[package]]
    576 +name = "tokio"
    577 +version = "1.24.2"
    578 +source = "registry+https://github.com/rust-lang/crates.io-index"
    579 +checksum = "597a12a59981d9e3c38d216785b0c37399f6e415e8d0712047620f189371b0bb"
    580 +dependencies = [
    581 + "autocfg",
    582 + "bytes",
    583 + "libc",
    584 + "memchr",
    585 + "mio",
    586 + "num_cpus",
    587 + "parking_lot",
    588 + "pin-project-lite",
    589 + "signal-hook-registry",
    590 + "socket2",
    591 + "tokio-macros",
    592 + "windows-sys",
    593 +]
    594 +
    595 +[[package]]
    596 +name = "tokio-macros"
    597 +version = "1.8.2"
    598 +source = "registry+https://github.com/rust-lang/crates.io-index"
    599 +checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8"
    600 +dependencies = [
    601 + "proc-macro2",
    602 + "quote",
    603 + "syn",
    604 +]
    605 +
    606 +[[package]]
    607 +name = "tokio-serial"
    608 +version = "5.4.4"
    609 +source = "registry+https://github.com/rust-lang/crates.io-index"
    610 +checksum = "aa6e2e4cf0520a99c5f87d5abb24172b5bd220de57c3181baaaa5440540c64aa"
    611 +dependencies = [
    612 + "cfg-if",
    613 + "futures",
    614 + "log",
    615 + "mio-serial",
    616 + "tokio",
    617 +]
    618 +
    619 +[[package]]
    620 +name = "tokio-stream"
    621 +version = "0.1.11"
    622 +source = "registry+https://github.com/rust-lang/crates.io-index"
    623 +checksum = "d660770404473ccd7bc9f8b28494a811bc18542b915c0855c51e8f419d5223ce"
    624 +dependencies = [
    625 + "futures-core",
    626 + "pin-project-lite",
    627 + "tokio",
    628 +]
    629 +
    630 +[[package]]
    631 +name = "tokio-util"
    632 +version = "0.7.4"
    633 +source = "registry+https://github.com/rust-lang/crates.io-index"
    634 +checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740"
    635 +dependencies = [
    636 + "bytes",
    637 + "futures-core",
    638 + "futures-sink",
    639 + "pin-project-lite",
    640 + "tokio",
    641 + "tracing",
    642 +]
    643 +
    644 +[[package]]
    645 +name = "tracing"
    646 +version = "0.1.37"
    647 +source = "registry+https://github.com/rust-lang/crates.io-index"
    648 +checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
    649 +dependencies = [
    650 + "cfg-if",
    651 + "pin-project-lite",
    652 + "tracing-core",
    653 +]
    654 +
    655 +[[package]]
    656 +name = "tracing-core"
    657 +version = "0.1.30"
    658 +source = "registry+https://github.com/rust-lang/crates.io-index"
    659 +checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
    660 +dependencies = [
    661 + "once_cell",
    662 +]
    663 +
    664 +[[package]]
    665 +name = "transport"
    666 +version = "0.1.0"
    667 +dependencies = [
    668 + "codec",
    669 + "frame",
    670 + "futures",
    671 + "log",
    672 + "tokio",
    673 + "tokio-serial",
    674 + "tokio-stream",
    675 + "tokio-util",
    676 + "uuid",
    677 +]
    678 +
    679 +[[package]]
    680 +name = "unicode-ident"
    681 +version = "1.0.6"
    682 +source = "registry+https://github.com/rust-lang/crates.io-index"
    683 +checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
    684 +
    685 +[[package]]
    686 +name = "uuid"
    687 +version = "1.2.2"
    688 +source = "registry+https://github.com/rust-lang/crates.io-index"
    689 +checksum = "422ee0de9031b5b948b97a8fc04e3aa35230001a722ddd27943e0be31564ce4c"
    690 +dependencies = [
    691 + "getrandom",
    692 + "rand",
    693 +]
    694 +
    695 +[[package]]
    696 +name = "wasi"
    697 +version = "0.11.0+wasi-snapshot-preview1"
    698 +source = "registry+https://github.com/rust-lang/crates.io-index"
    699 +checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
    700 +
    701 +[[package]]
    702 +name = "winapi"
    703 +version = "0.3.9"
    704 +source = "registry+https://github.com/rust-lang/crates.io-index"
    705 +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
    706 +dependencies = [
    707 + "winapi-i686-pc-windows-gnu",
    708 + "winapi-x86_64-pc-windows-gnu",
    709 +]
    710 +
    711 +[[package]]
    712 +name = "winapi-i686-pc-windows-gnu"
    713 +version = "0.4.0"
    714 +source = "registry+https://github.com/rust-lang/crates.io-index"
    715 +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
    716 +
    717 +[[package]]
    718 +name = "winapi-util"
    719 +version = "0.1.5"
    720 +source = "registry+https://github.com/rust-lang/crates.io-index"
    721 +checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
    722 +dependencies = [
    723 + "winapi",
    724 +]
    725 +
    726 +[[package]]
    727 +name = "winapi-x86_64-pc-windows-gnu"
    728 +version = "0.4.0"
    729 +source = "registry+https://github.com/rust-lang/crates.io-index"
    730 +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
    731 +
    732 +[[package]]
    733 +name = "windows-sys"
    734 +version = "0.42.0"
    735 +source = "registry+https://github.com/rust-lang/crates.io-index"
    736 +checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
    737 +dependencies = [
    738 + "windows_aarch64_gnullvm",
    739 + "windows_aarch64_msvc",
    740 + "windows_i686_gnu",
    741 + "windows_i686_msvc",
    742 + "windows_x86_64_gnu",
    743 + "windows_x86_64_gnullvm",
    744 + "windows_x86_64_msvc",
    745 +]
    746 +
    747 +[[package]]
    748 +name = "windows_aarch64_gnullvm"
    749 +version = "0.42.1"
    750 +source = "registry+https://github.com/rust-lang/crates.io-index"
    751 +checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
    752 +
    753 +[[package]]
    754 +name = "windows_aarch64_msvc"
    755 +version = "0.42.1"
    756 +source = "registry+https://github.com/rust-lang/crates.io-index"
    757 +checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
    758 +
    759 +[[package]]
    760 +name = "windows_i686_gnu"
    761 +version = "0.42.1"
    762 +source = "registry+https://github.com/rust-lang/crates.io-index"
    763 +checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
    764 +
    765 +[[package]]
    766 +name = "windows_i686_msvc"
    767 +version = "0.42.1"
    768 +source = "registry+https://github.com/rust-lang/crates.io-index"
    769 +checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
    770 +
    771 +[[package]]
    772 +name = "windows_x86_64_gnu"
    773 +version = "0.42.1"
    774 +source = "registry+https://github.com/rust-lang/crates.io-index"
    775 +checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
    776 +
    777 +[[package]]
    778 +name = "windows_x86_64_gnullvm"
    779 +version = "0.42.1"
    780 +source = "registry+https://github.com/rust-lang/crates.io-index"
    781 +checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
    782 +
    783 +[[package]]
    784 +name = "windows_x86_64_msvc"
    785 +version = "0.42.1"
    786 +source = "registry+https://github.com/rust-lang/crates.io-index"
    787 +checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"