liveterm/Cargo.lock

670 lines
17 KiB
Text
Raw Normal View History

2020-04-11 01:29:58 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "anyhow"
2020-11-19 16:11:23 +00:00
version = "1.0.34"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "bf8dcb5b4bbaa28653b647d8c77bd4ed40183b48882e130c1f1ffb73de069fd7"
2020-04-11 01:29:58 +00:00
[[package]]
name = "asciinema"
version = "0.1.0"
dependencies = [
"anyhow",
"futures",
"libc",
"nix",
"parking_lot",
"serde",
"serde_derive",
"serde_json",
"signal-hook",
"termios",
2020-11-19 16:11:23 +00:00
"thiserror",
2020-04-11 01:29:58 +00:00
"tokio",
"tokio-util",
]
[[package]]
name = "bitflags"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
[[package]]
name = "bytes"
2020-11-19 16:11:23 +00:00
version = "0.5.6"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
2020-04-11 01:29:58 +00:00
[[package]]
name = "cc"
2020-11-19 16:11:23 +00:00
version = "1.0.63"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "ad9c6140b5a2c7db40ea56eb1821245e5362b44385c05b76288b1a599934ac87"
2020-04-11 01:29:58 +00:00
[[package]]
name = "cfg-if"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
[[package]]
name = "cloudabi"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
dependencies = [
"bitflags",
]
[[package]]
name = "fnv"
2020-11-19 16:11:23 +00:00
version = "1.0.7"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2020-04-11 01:29:58 +00:00
[[package]]
name = "fuchsia-zircon"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
dependencies = [
"bitflags",
"fuchsia-zircon-sys",
]
[[package]]
name = "fuchsia-zircon-sys"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
[[package]]
name = "futures"
2020-11-19 16:11:23 +00:00
version = "0.3.8"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "9b3b0c040a1fe6529d30b3c5944b280c7f0dcb2930d2c3062bca967b602583d0"
2020-04-11 01:29:58 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2020-11-19 16:11:23 +00:00
version = "0.3.8"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "4b7109687aa4e177ef6fe84553af6280ef2778bdb7783ba44c9dc3399110fe64"
2020-04-11 01:29:58 +00:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2020-11-19 16:11:23 +00:00
version = "0.3.8"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "847ce131b72ffb13b6109a221da9ad97a64cbe48feb1028356b836b47b8f1748"
2020-04-11 01:29:58 +00:00
[[package]]
name = "futures-executor"
2020-11-19 16:11:23 +00:00
version = "0.3.8"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "4caa2b2b68b880003057c1dd49f1ed937e38f22fcf6c212188a121f08cf40a65"
2020-04-11 01:29:58 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2020-11-19 16:11:23 +00:00
version = "0.3.8"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "611834ce18aaa1bd13c4b374f5d653e1027cf99b6b502584ff8c9a64413b30bb"
2020-04-11 01:29:58 +00:00
[[package]]
name = "futures-macro"
2020-11-19 16:11:23 +00:00
version = "0.3.8"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "77408a692f1f97bcc61dc001d752e00643408fbc922e4d634c655df50d595556"
2020-04-11 01:29:58 +00:00
dependencies = [
"proc-macro-hack",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
2020-11-19 16:11:23 +00:00
version = "0.3.8"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "f878195a49cee50e006b02b93cf7e0a95a38ac7b776b4c4d9cc1207cd20fcb3d"
2020-04-11 01:29:58 +00:00
[[package]]
name = "futures-task"
2020-11-19 16:11:23 +00:00
version = "0.3.8"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "7c554eb5bf48b2426c4771ab68c6b14468b6e76cc90996f528c3338d761a4d0d"
dependencies = [
"once_cell",
]
2020-04-11 01:29:58 +00:00
[[package]]
name = "futures-util"
2020-11-19 16:11:23 +00:00
version = "0.3.8"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "d304cff4a7b99cfb7986f7d43fbe93d175e72e704a8860787cc95e9ffd85cbd2"
2020-04-11 01:29:58 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
2020-11-19 16:11:23 +00:00
"pin-project",
2020-04-11 01:29:58 +00:00
"pin-utils",
"proc-macro-hack",
"proc-macro-nested",
"slab",
]
[[package]]
name = "hermit-abi"
2020-11-19 16:11:23 +00:00
version = "0.1.17"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "5aca5565f760fb5b220e499d72710ed156fdb74e631659e99377d9ebfbd13ae8"
2020-04-11 01:29:58 +00:00
dependencies = [
"libc",
]
[[package]]
name = "iovec"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
dependencies = [
"libc",
]
[[package]]
name = "itoa"
2020-11-19 16:11:23 +00:00
version = "0.4.6"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "dc6f3ad7b9d11a0c00842ff8de1b60ee58661048eb8049ed33c73594f359d7e6"
2020-04-11 01:29:58 +00:00
[[package]]
name = "kernel32-sys"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
dependencies = [
"winapi 0.2.8",
"winapi-build",
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2020-11-19 16:11:23 +00:00
version = "0.2.80"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "4d58d1b70b004888f764dfbf6a26a3b0342a1632d33968e4a179d8011c760614"
2020-04-11 01:29:58 +00:00
[[package]]
name = "lock_api"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75"
dependencies = [
"scopeguard",
]
[[package]]
name = "log"
2020-11-19 16:11:23 +00:00
version = "0.4.11"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b"
2020-04-11 01:29:58 +00:00
dependencies = [
"cfg-if",
]
[[package]]
name = "memchr"
2020-11-19 16:11:23 +00:00
version = "2.3.4"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
2020-04-11 01:29:58 +00:00
[[package]]
name = "mio"
2020-11-19 16:11:23 +00:00
version = "0.6.22"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "fce347092656428bc8eaf6201042cb551b8d67855af7374542a92a0fbfcac430"
2020-04-11 01:29:58 +00:00
dependencies = [
"cfg-if",
"fuchsia-zircon",
"fuchsia-zircon-sys",
"iovec",
"kernel32-sys",
"libc",
"log",
"miow 0.2.1",
"net2",
"slab",
"winapi 0.2.8",
]
[[package]]
name = "mio-named-pipes"
2020-11-19 16:11:23 +00:00
version = "0.1.7"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "0840c1c50fd55e521b247f949c241c9997709f23bd7f023b9762cd561e935656"
2020-04-11 01:29:58 +00:00
dependencies = [
"log",
"mio",
2020-11-19 16:11:23 +00:00
"miow 0.3.6",
"winapi 0.3.9",
2020-04-11 01:29:58 +00:00
]
[[package]]
name = "mio-uds"
2020-11-19 16:11:23 +00:00
version = "0.6.8"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0"
2020-04-11 01:29:58 +00:00
dependencies = [
"iovec",
"libc",
"mio",
]
[[package]]
name = "miow"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919"
dependencies = [
"kernel32-sys",
"net2",
"winapi 0.2.8",
"ws2_32-sys",
]
[[package]]
name = "miow"
2020-11-19 16:11:23 +00:00
version = "0.3.6"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "5a33c1b55807fbed163481b5ba66db4b2fa6cde694a5027be10fb724206c5897"
2020-04-11 01:29:58 +00:00
dependencies = [
"socket2",
2020-11-19 16:11:23 +00:00
"winapi 0.3.9",
2020-04-11 01:29:58 +00:00
]
[[package]]
name = "net2"
2020-11-19 16:11:23 +00:00
version = "0.2.35"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "3ebc3ec692ed7c9a255596c67808dee269f64655d8baf7b4f0638e51ba1d6853"
2020-04-11 01:29:58 +00:00
dependencies = [
"cfg-if",
"libc",
2020-11-19 16:11:23 +00:00
"winapi 0.3.9",
2020-04-11 01:29:58 +00:00
]
[[package]]
name = "nix"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50e4785f2c3b7589a0d0c1dd60285e1188adac4006e8abd6dd578e1567027363"
dependencies = [
"bitflags",
"cc",
"cfg-if",
"libc",
"void",
]
[[package]]
name = "num_cpus"
2020-11-19 16:11:23 +00:00
version = "1.13.0"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
2020-04-11 01:29:58 +00:00
dependencies = [
"hermit-abi",
"libc",
]
2020-11-19 16:11:23 +00:00
[[package]]
name = "once_cell"
version = "1.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13bd41f508810a131401606d54ac32a467c97172d74ba7662562ebba5ad07fa0"
2020-04-11 01:29:58 +00:00
[[package]]
name = "parking_lot"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3a704eb390aafdc107b0e392f56a82b668e3a71366993b5340f5833fd62505e"
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2020-11-19 16:11:23 +00:00
version = "0.7.2"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "d58c7c768d4ba344e3e8d72518ac13e259d7c7ade24167003b8488e10b6740a3"
2020-04-11 01:29:58 +00:00
dependencies = [
"cfg-if",
"cloudabi",
"libc",
"redox_syscall",
"smallvec",
2020-11-19 16:11:23 +00:00
"winapi 0.3.9",
]
[[package]]
name = "pin-project"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ccc2237c2c489783abd8c4c80e5450fc0e98644555b1364da68cc29aa151ca7"
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8e8d2bf0b23038a4424865103a4df472855692821aab4e4f5c3312d461d9e5f"
dependencies = [
"proc-macro2",
"quote",
"syn",
2020-04-11 01:29:58 +00:00
]
[[package]]
name = "pin-project-lite"
2020-11-19 16:11:23 +00:00
version = "0.1.11"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "c917123afa01924fc84bb20c4c03f004d9c38e5127e3c039bbf7f4b9c76a2f6b"
2020-04-11 01:29:58 +00:00
[[package]]
name = "pin-utils"
2020-11-19 16:11:23 +00:00
version = "0.1.0"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2020-04-11 01:29:58 +00:00
[[package]]
name = "proc-macro-hack"
2020-11-19 16:11:23 +00:00
version = "0.5.19"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
2020-04-11 01:29:58 +00:00
[[package]]
name = "proc-macro-nested"
2020-11-19 16:11:23 +00:00
version = "0.1.6"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "eba180dafb9038b050a4c280019bbedf9f2467b61e5d892dcad585bb57aadc5a"
2020-04-11 01:29:58 +00:00
[[package]]
name = "proc-macro2"
2020-11-19 16:11:23 +00:00
version = "1.0.24"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
2020-04-11 01:29:58 +00:00
dependencies = [
"unicode-xid",
]
[[package]]
name = "quote"
2020-11-19 16:11:23 +00:00
version = "1.0.7"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37"
2020-04-11 01:29:58 +00:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "redox_syscall"
2020-11-19 16:11:23 +00:00
version = "0.1.57"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
2020-04-11 01:29:58 +00:00
[[package]]
name = "ryu"
2020-11-19 16:11:23 +00:00
version = "1.0.5"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
2020-04-11 01:29:58 +00:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "serde"
2020-11-19 16:11:23 +00:00
version = "1.0.117"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "b88fa983de7720629c9387e9f517353ed404164b1e482c970a90c1a4aaf7dc1a"
2020-04-11 01:29:58 +00:00
[[package]]
name = "serde_derive"
2020-11-19 16:11:23 +00:00
version = "1.0.117"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "cbd1ae72adb44aab48f325a02444a5fc079349a8d804c1fc922aed3f7454c74e"
2020-04-11 01:29:58 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
2020-11-19 16:11:23 +00:00
version = "1.0.59"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "dcac07dbffa1c65e7f816ab9eba78eb142c6d44410f4eeba1e26e4f5dfa56b95"
2020-04-11 01:29:58 +00:00
dependencies = [
"itoa",
"ryu",
"serde",
]
[[package]]
name = "signal-hook"
2020-11-19 16:11:23 +00:00
version = "0.1.16"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "604508c1418b99dfe1925ca9224829bb2a8a9a04dda655cc01fcad46f4ab05ed"
2020-04-11 01:29:58 +00:00
dependencies = [
"libc",
"signal-hook-registry",
]
[[package]]
name = "signal-hook-registry"
2020-11-19 16:11:23 +00:00
version = "1.2.2"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "ce32ea0c6c56d5eacaeb814fbed9960547021d3edd010ded1425f180536b20ab"
2020-04-11 01:29:58 +00:00
dependencies = [
"libc",
]
[[package]]
name = "slab"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
[[package]]
name = "smallvec"
2020-11-19 16:11:23 +00:00
version = "1.5.0"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "7acad6f34eb9e8a259d3283d1e8c1d34d7415943d4895f65cc73813c7396fc85"
2020-04-11 01:29:58 +00:00
[[package]]
name = "socket2"
2020-11-19 16:11:23 +00:00
version = "0.3.16"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "7fd8b795c389288baa5f355489c65e71fd48a02104600d15c4cfbc561e9e429d"
2020-04-11 01:29:58 +00:00
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
2020-11-19 16:11:23 +00:00
"winapi 0.3.9",
2020-04-11 01:29:58 +00:00
]
[[package]]
name = "syn"
2020-11-19 16:11:23 +00:00
version = "1.0.48"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "cc371affeffc477f42a221a1e4297aedcea33d47d19b61455588bd9d8f6b19ac"
2020-04-11 01:29:58 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
]
[[package]]
name = "termios"
2020-11-19 16:11:23 +00:00
version = "0.3.3"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "411c5bf740737c7918b8b1fe232dca4dc9f8e754b8ad5e20966814001ed0ac6b"
2020-04-11 01:29:58 +00:00
dependencies = [
"libc",
]
2020-11-19 16:11:23 +00:00
[[package]]
name = "thiserror"
version = "1.0.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e9ae34b84616eedaaf1e9dd6026dbe00dcafa92aa0c8077cb69df1fcfe5e53e"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ba20f23e85b10754cd195504aebf6a27e2e6cbe28c17778a0c930724628dd56"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-04-11 01:29:58 +00:00
[[package]]
name = "tokio"
2020-11-19 16:11:23 +00:00
version = "0.2.23"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "a6d7ad61edd59bfcc7e80dababf0f4aed2e6d5e0ba1659356ae889752dfc12ff"
2020-04-11 01:29:58 +00:00
dependencies = [
"bytes",
"fnv",
"futures-core",
"lazy_static",
"libc",
"memchr",
"mio",
"mio-named-pipes",
"mio-uds",
"num_cpus",
"pin-project-lite",
"signal-hook-registry",
"slab",
"tokio-macros",
2020-11-19 16:11:23 +00:00
"winapi 0.3.9",
2020-04-11 01:29:58 +00:00
]
[[package]]
name = "tokio-macros"
2020-11-19 16:11:23 +00:00
version = "0.2.6"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "e44da00bfc73a25f814cd8d7e57a68a5c31b74b3152a0a1d1f590c97ed06265a"
2020-04-11 01:29:58 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tokio-util"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499"
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"log",
"pin-project-lite",
"tokio",
]
[[package]]
name = "unicode-xid"
2020-11-19 16:11:23 +00:00
version = "0.2.1"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
2020-04-11 01:29:58 +00:00
[[package]]
name = "void"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
[[package]]
name = "winapi"
2020-11-19 16:11:23 +00:00
version = "0.3.9"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 16:11:23 +00:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2020-04-11 01:29:58 +00:00
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "ws2_32-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
dependencies = [
"winapi 0.2.8",
"winapi-build",
]