liveterm/Cargo.lock

650 lines
16 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.
2022-05-09 16:32:09 +00:00
version = 3
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
dependencies = [
"winapi",
]
2020-04-11 01:29:58 +00:00
[[package]]
name = "anyhow"
2022-05-09 16:32:09 +00:00
version = "1.0.57"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "08f9b8508dccb7687a1d6c4ce66b2b0ecef467c94667de27d8d7fe1f8d2a9cdc"
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",
2022-05-09 16:32:09 +00:00
"structopt",
2020-04-11 01:29:58 +00:00
"termios",
2020-11-19 16:11:23 +00:00
"thiserror",
2020-04-11 01:29:58 +00:00
"tokio",
"tokio-util",
]
[[package]]
2022-05-09 16:32:09 +00:00
name = "atty"
version = "0.2.14"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi",
"libc",
"winapi",
]
2020-04-11 01:29:58 +00:00
[[package]]
2022-05-09 16:32:09 +00:00
name = "autocfg"
version = "1.1.0"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2020-04-11 01:29:58 +00:00
[[package]]
2022-05-09 16:32:09 +00:00
name = "bitflags"
version = "1.3.2"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2020-04-11 01:29:58 +00:00
[[package]]
2022-05-09 16:32:09 +00:00
name = "bytes"
version = "0.6.0"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "e0dcbc35f504eb6fc275a6d20e4ebcda18cf50d40ba6fabff8c711fa16cb3b16"
2020-04-11 01:29:58 +00:00
[[package]]
2022-05-09 16:32:09 +00:00
name = "cc"
version = "1.0.73"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
2020-04-11 01:29:58 +00:00
[[package]]
2022-05-09 16:32:09 +00:00
name = "cfg-if"
version = "1.0.0"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2020-04-11 01:29:58 +00:00
[[package]]
2022-05-09 16:32:09 +00:00
name = "clap"
version = "2.34.0"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
2020-04-11 01:29:58 +00:00
dependencies = [
2022-05-09 16:32:09 +00:00
"ansi_term",
"atty",
2020-04-11 01:29:58 +00:00
"bitflags",
2022-05-09 16:32:09 +00:00
"strsim",
"textwrap",
"unicode-width",
"vec_map",
2020-04-11 01:29:58 +00:00
]
[[package]]
name = "futures"
2022-05-09 16:32:09 +00:00
version = "0.3.21"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e"
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"
2022-05-09 16:32:09 +00:00
version = "0.3.21"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
2020-04-11 01:29:58 +00:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2022-05-09 16:32:09 +00:00
version = "0.3.21"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
2020-04-11 01:29:58 +00:00
[[package]]
name = "futures-executor"
2022-05-09 16:32:09 +00:00
version = "0.3.21"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6"
2020-04-11 01:29:58 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2022-05-09 16:32:09 +00:00
version = "0.3.21"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
2020-04-11 01:29:58 +00:00
[[package]]
name = "futures-macro"
2022-05-09 16:32:09 +00:00
version = "0.3.21"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512"
2020-04-11 01:29:58 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
2022-05-09 16:32:09 +00:00
version = "0.3.21"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
2020-04-11 01:29:58 +00:00
[[package]]
name = "futures-task"
2022-05-09 16:32:09 +00:00
version = "0.3.21"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
2020-04-11 01:29:58 +00:00
[[package]]
name = "futures-util"
2022-05-09 16:32:09 +00:00
version = "0.3.21"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
2020-04-11 01:29:58 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
2022-05-09 16:32:09 +00:00
"pin-project-lite",
2020-04-11 01:29:58 +00:00
"pin-utils",
"slab",
]
[[package]]
2022-05-09 16:32:09 +00:00
name = "heck"
version = "0.3.3"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
2020-04-11 01:29:58 +00:00
dependencies = [
2022-05-09 16:32:09 +00:00
"unicode-segmentation",
2020-04-11 01:29:58 +00:00
]
[[package]]
2022-05-09 16:32:09 +00:00
name = "hermit-abi"
version = "0.1.19"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2020-04-11 01:29:58 +00:00
dependencies = [
"libc",
]
[[package]]
2022-05-09 16:32:09 +00:00
name = "instant"
version = "0.1.12"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
"cfg-if",
]
2020-04-11 01:29:58 +00:00
[[package]]
2022-05-09 16:32:09 +00:00
name = "itoa"
version = "1.0.1"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
2020-04-11 01:29:58 +00:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2022-05-09 16:32:09 +00:00
version = "0.2.125"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "5916d2ae698f6de9bfb891ad7a8d65c09d232dc58cc4ac433c7da3b2fd84bc2b"
2020-04-11 01:29:58 +00:00
[[package]]
name = "lock_api"
2022-05-09 16:32:09 +00:00
version = "0.4.7"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
2020-04-11 01:29:58 +00:00
dependencies = [
2022-05-09 16:32:09 +00:00
"autocfg",
2020-04-11 01:29:58 +00:00
"scopeguard",
]
[[package]]
name = "log"
2022-05-09 16:32:09 +00:00
version = "0.4.17"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2020-04-11 01:29:58 +00:00
dependencies = [
"cfg-if",
]
[[package]]
name = "memchr"
2022-05-09 16:32:09 +00:00
version = "2.5.0"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2020-04-11 01:29:58 +00:00
[[package]]
name = "mio"
2022-05-09 16:32:09 +00:00
version = "0.7.14"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc"
2020-04-11 01:29:58 +00:00
dependencies = [
"libc",
"log",
2022-05-09 16:32:09 +00:00
"miow",
"ntapi",
"winapi",
2020-04-11 01:29:58 +00:00
]
[[package]]
name = "miow"
2022-05-09 16:32:09 +00:00
version = "0.3.7"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
2020-04-11 01:29:58 +00:00
dependencies = [
2022-05-09 16:32:09 +00:00
"winapi",
2020-04-11 01:29:58 +00:00
]
[[package]]
2022-05-09 16:32:09 +00:00
name = "nix"
version = "0.19.1"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "b2ccba0cfe4fdf15982d1674c69b1fd80bad427d293849982668dfe454bd61f2"
2020-04-11 01:29:58 +00:00
dependencies = [
2022-05-09 16:32:09 +00:00
"bitflags",
"cc",
2020-04-11 01:29:58 +00:00
"cfg-if",
"libc",
]
[[package]]
2022-05-09 16:32:09 +00:00
name = "ntapi"
version = "0.3.7"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
2020-04-11 01:29:58 +00:00
dependencies = [
2022-05-09 16:32:09 +00:00
"winapi",
2020-04-11 01:29:58 +00:00
]
[[package]]
name = "num_cpus"
2022-05-09 16:32:09 +00:00
version = "1.13.1"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
2020-04-11 01:29:58 +00:00
dependencies = [
"hermit-abi",
"libc",
]
2020-11-19 16:11:23 +00:00
[[package]]
name = "once_cell"
2022-05-09 16:32:09 +00:00
version = "1.10.0"
2020-11-19 16:11:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9"
2020-11-19 16:11:23 +00:00
2020-04-11 01:29:58 +00:00
[[package]]
name = "parking_lot"
2022-05-09 16:32:09 +00:00
version = "0.11.2"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
2020-04-11 01:29:58 +00:00
dependencies = [
2022-05-09 16:32:09 +00:00
"instant",
2020-04-11 01:29:58 +00:00
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2022-05-09 16:32:09 +00:00
version = "0.8.5"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
2020-04-11 01:29:58 +00:00
dependencies = [
"cfg-if",
2022-05-09 16:32:09 +00:00
"instant",
2020-04-11 01:29:58 +00:00
"libc",
"redox_syscall",
"smallvec",
2022-05-09 16:32:09 +00:00
"winapi",
2020-04-11 01:29:58 +00:00
]
[[package]]
name = "pin-project-lite"
2022-05-09 16:32:09 +00:00
version = "0.2.9"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
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]]
2022-05-09 16:32:09 +00:00
name = "proc-macro-error"
version = "1.0.4"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn",
"version_check",
]
2020-04-11 01:29:58 +00:00
[[package]]
2022-05-09 16:32:09 +00:00
name = "proc-macro-error-attr"
version = "1.0.4"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
"version_check",
]
2020-04-11 01:29:58 +00:00
[[package]]
name = "proc-macro2"
2022-05-09 16:32:09 +00:00
version = "1.0.38"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "9027b48e9d4c9175fa2218adf3557f91c1137021739951d4932f5f8268ac48aa"
2020-04-11 01:29:58 +00:00
dependencies = [
"unicode-xid",
]
[[package]]
name = "quote"
2022-05-09 16:32:09 +00:00
version = "1.0.18"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1"
2020-04-11 01:29:58 +00:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "redox_syscall"
2022-05-09 16:32:09 +00:00
version = "0.2.13"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
dependencies = [
"bitflags",
]
2020-04-11 01:29:58 +00:00
[[package]]
name = "ryu"
2022-05-09 16:32:09 +00:00
version = "1.0.9"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
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"
2022-05-09 16:32:09 +00:00
version = "1.0.137"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1"
2020-04-11 01:29:58 +00:00
[[package]]
name = "serde_derive"
2022-05-09 16:32:09 +00:00
version = "1.0.137"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be"
2020-04-11 01:29:58 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
2022-05-09 16:32:09 +00:00
version = "1.0.81"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "9b7ce2b32a1aed03c558dc61a5cd328f15aff2dbc17daad8fb8af04d2100e15c"
2020-04-11 01:29:58 +00:00
dependencies = [
"itoa",
"ryu",
"serde",
]
[[package]]
name = "signal-hook"
2022-05-09 16:32:09 +00:00
version = "0.1.17"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "7e31d442c16f047a671b5a71e2161d6e68814012b7f5379d269ebd915fac2729"
2020-04-11 01:29:58 +00:00
dependencies = [
"libc",
"signal-hook-registry",
]
[[package]]
name = "signal-hook-registry"
2022-05-09 16:32:09 +00:00
version = "1.4.0"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
2020-04-11 01:29:58 +00:00
dependencies = [
"libc",
]
[[package]]
name = "slab"
2022-05-09 16:32:09 +00:00
version = "0.4.6"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
2020-04-11 01:29:58 +00:00
[[package]]
name = "smallvec"
2022-05-09 16:32:09 +00:00
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
[[package]]
name = "strsim"
version = "0.8.0"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
2020-04-11 01:29:58 +00:00
[[package]]
2022-05-09 16:32:09 +00:00
name = "structopt"
version = "0.3.26"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
2020-04-11 01:29:58 +00:00
dependencies = [
2022-05-09 16:32:09 +00:00
"clap",
"lazy_static",
"structopt-derive",
]
[[package]]
name = "structopt-derive"
version = "0.4.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
dependencies = [
"heck",
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
2020-04-11 01:29:58 +00:00
]
[[package]]
name = "syn"
2022-05-09 16:32:09 +00:00
version = "1.0.92"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "7ff7c592601f11445996a06f8ad0c27f094a58857c2f89e97974ab9235b92c52"
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",
]
2022-05-09 16:32:09 +00:00
[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
dependencies = [
"unicode-width",
]
2020-11-19 16:11:23 +00:00
[[package]]
name = "thiserror"
2022-05-09 16:32:09 +00:00
version = "1.0.31"
2020-11-19 16:11:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a"
2020-11-19 16:11:23 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2022-05-09 16:32:09 +00:00
version = "1.0.31"
2020-11-19 16:11:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a"
2020-11-19 16:11:23 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-04-11 01:29:58 +00:00
[[package]]
name = "tokio"
2022-05-09 16:32:09 +00:00
version = "0.3.7"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "46409491c9375a693ce7032101970a54f8a2010efb77e13f70788f0d84489e39"
2020-04-11 01:29:58 +00:00
dependencies = [
2022-05-09 16:32:09 +00:00
"autocfg",
2020-04-11 01:29:58 +00:00
"bytes",
"futures-core",
"libc",
"memchr",
"mio",
"num_cpus",
2022-05-09 16:32:09 +00:00
"once_cell",
"parking_lot",
2020-04-11 01:29:58 +00:00
"pin-project-lite",
"signal-hook-registry",
"slab",
"tokio-macros",
2022-05-09 16:32:09 +00:00
"winapi",
2020-04-11 01:29:58 +00:00
]
[[package]]
name = "tokio-macros"
2022-05-09 16:32:09 +00:00
version = "0.3.2"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "46dfffa59fc3c8aad216ed61bdc2c263d2b9d87a9c8ac9de0c11a813e51b6db7"
2020-04-11 01:29:58 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tokio-util"
2022-05-09 16:32:09 +00:00
version = "0.5.1"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "3137de2b078e95274b696cc522e87f22c9a753fe3ef3344116ffb94f104f10a3"
2020-04-11 01:29:58 +00:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"log",
"pin-project-lite",
"tokio",
]
2022-05-09 16:32:09 +00:00
[[package]]
name = "unicode-segmentation"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99"
[[package]]
name = "unicode-width"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
2020-04-11 01:29:58 +00:00
[[package]]
name = "unicode-xid"
2022-05-09 16:32:09 +00:00
version = "0.2.3"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "957e51f3646910546462e67d5f7599b9e4fb8acdd304b087a6494730f9eebf04"
2020-04-11 01:29:58 +00:00
[[package]]
2022-05-09 16:32:09 +00:00
name = "vec_map"
version = "0.8.2"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
2020-04-11 01:29:58 +00:00
[[package]]
2022-05-09 16:32:09 +00:00
name = "version_check"
version = "0.9.4"
2020-04-11 01:29:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:32:09 +00:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2020-04-11 01:29:58 +00:00
[[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-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"