tmux-thumbs/Cargo.lock

201 lines
5.2 KiB
Plaintext
Raw Normal View History

2019-03-28 12:48:43 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-06-20 15:04:40 +00:00
version = 3
2019-02-04 21:40:45 +00:00
[[package]]
name = "aho-corasick"
2021-06-20 10:09:41 +00:00
version = "0.7.18"
2019-02-04 21:40:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-20 10:09:41 +00:00
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
2019-02-04 21:40:45 +00:00
dependencies = [
2020-11-30 20:50:56 +00:00
"memchr",
2019-02-04 21:40:45 +00:00
]
[[package]]
name = "ansi_term"
2022-01-01 16:12:24 +00:00
version = "0.12.1"
2019-02-04 21:40:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 16:12:24 +00:00
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
2019-02-04 21:40:45 +00:00
dependencies = [
2020-11-30 20:50:56 +00:00
"winapi",
2019-02-04 21:40:45 +00:00
]
[[package]]
name = "atty"
2020-05-02 15:15:26 +00:00
version = "0.2.14"
2019-02-04 21:40:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-30 20:50:56 +00:00
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
2019-02-04 21:40:45 +00:00
dependencies = [
2020-11-30 20:50:56 +00:00
"hermit-abi",
"libc",
"winapi",
2019-02-04 21:40:45 +00:00
]
[[package]]
name = "base64"
2021-07-21 14:37:01 +00:00
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-21 14:37:01 +00:00
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
2019-02-04 21:40:45 +00:00
[[package]]
name = "bitflags"
2022-01-01 16:12:24 +00:00
version = "1.3.2"
2019-12-14 00:14:09 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 16:12:24 +00:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2019-12-14 00:14:09 +00:00
2019-02-04 21:40:45 +00:00
[[package]]
name = "clap"
2022-01-01 16:12:24 +00:00
version = "2.34.0"
2019-02-04 21:40:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 16:12:24 +00:00
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
2019-02-04 21:40:45 +00:00
dependencies = [
2020-11-30 20:50:56 +00:00
"ansi_term",
"atty",
"bitflags",
"strsim",
"textwrap",
"unicode-width",
"vec_map",
2019-02-04 21:40:45 +00:00
]
2020-05-02 15:15:26 +00:00
[[package]]
name = "hermit-abi"
2021-07-21 14:34:04 +00:00
version = "0.1.19"
2020-05-02 15:15:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-21 14:34:04 +00:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2020-05-02 15:15:26 +00:00
dependencies = [
2020-11-30 20:50:56 +00:00
"libc",
2020-05-02 15:15:26 +00:00
]
2019-02-04 21:40:45 +00:00
[[package]]
name = "lazy_static"
2019-12-14 00:14:09 +00:00
version = "1.4.0"
2019-02-04 21:40:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-30 20:50:56 +00:00
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2019-02-04 21:40:45 +00:00
[[package]]
name = "libc"
2022-01-01 16:12:24 +00:00
version = "0.2.112"
2019-02-04 21:40:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 16:12:24 +00:00
checksum = "1b03d17f364a3a042d5e5d46b053bbbf82c92c9430c592dd4c064dc6ee997125"
2019-02-04 21:40:45 +00:00
[[package]]
name = "memchr"
2022-01-01 16:12:24 +00:00
version = "2.4.1"
2019-02-04 21:40:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 16:12:24 +00:00
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
2019-02-04 21:40:45 +00:00
[[package]]
2020-04-30 16:10:07 +00:00
name = "numtoa"
version = "0.1.0"
2019-02-04 21:40:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-30 20:50:56 +00:00
checksum = "b8f8bdf33df195859076e54ab11ee78a1b208382d3a26ec40d142ffc1ecc49ef"
2019-02-04 21:40:45 +00:00
[[package]]
2020-04-30 16:10:07 +00:00
name = "redox_syscall"
2022-01-01 16:12:24 +00:00
version = "0.2.10"
2019-02-04 21:40:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 16:12:24 +00:00
checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
2021-06-20 10:09:41 +00:00
dependencies = [
"bitflags",
]
2019-02-04 21:40:45 +00:00
[[package]]
2020-04-30 16:10:07 +00:00
name = "redox_termios"
2021-06-20 10:09:41 +00:00
version = "0.1.2"
2019-02-04 21:40:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-20 10:09:41 +00:00
checksum = "8440d8acb4fd3d277125b4bd01a6f38aee8d814b3b5fc09b3f2b825d37d3fe8f"
2019-02-04 21:40:45 +00:00
dependencies = [
2020-11-30 20:50:56 +00:00
"redox_syscall",
2019-02-04 21:40:45 +00:00
]
[[package]]
name = "regex"
2021-06-20 10:09:41 +00:00
version = "1.5.4"
2019-02-04 21:40:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-20 10:09:41 +00:00
checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
2019-02-04 21:40:45 +00:00
dependencies = [
2020-11-30 20:50:56 +00:00
"aho-corasick",
"memchr",
"regex-syntax",
2019-02-04 21:40:45 +00:00
]
[[package]]
name = "regex-syntax"
2021-06-20 10:09:41 +00:00
version = "0.6.25"
2019-02-04 21:40:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-20 10:09:41 +00:00
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
2019-02-04 21:40:45 +00:00
[[package]]
name = "strsim"
2019-12-14 00:14:09 +00:00
version = "0.8.0"
2019-02-04 21:40:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-30 20:50:56 +00:00
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
2019-02-04 21:40:45 +00:00
[[package]]
2020-04-30 16:10:07 +00:00
name = "termion"
2021-06-20 10:09:41 +00:00
version = "1.5.6"
2019-02-04 21:40:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-20 10:09:41 +00:00
checksum = "077185e2eac69c3f8379a4298e1e07cd36beb962290d4a51199acf0fdc10607e"
2019-02-04 21:40:45 +00:00
dependencies = [
2020-11-30 20:50:56 +00:00
"libc",
"numtoa",
"redox_syscall",
"redox_termios",
2019-02-04 21:40:45 +00:00
]
[[package]]
name = "textwrap"
2019-12-14 00:14:09 +00:00
version = "0.11.0"
2019-02-04 21:40:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-30 20:50:56 +00:00
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
2019-02-04 21:40:45 +00:00
dependencies = [
2020-11-30 20:50:56 +00:00
"unicode-width",
2019-02-04 21:40:45 +00:00
]
[[package]]
2019-12-14 00:32:14 +00:00
name = "thumbs"
2022-02-01 22:23:46 +00:00
version = "0.7.1"
2019-02-04 21:40:45 +00:00
dependencies = [
2020-11-30 20:50:56 +00:00
"base64",
"clap",
2020-12-29 15:19:46 +00:00
"lazy_static",
2020-11-30 20:50:56 +00:00
"regex",
"termion",
"unicode-width",
2019-02-04 21:40:45 +00:00
]
[[package]]
name = "unicode-width"
2022-01-01 16:12:24 +00:00
version = "0.1.9"
2019-02-04 21:40:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 16:12:24 +00:00
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
2019-02-04 21:40:45 +00:00
[[package]]
2019-12-14 00:14:09 +00:00
name = "vec_map"
2021-06-20 10:09:41 +00:00
version = "0.8.2"
2019-02-04 21:40:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-20 10:09:41 +00:00
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
2019-02-04 21:40:45 +00:00
[[package]]
name = "winapi"
2021-06-20 10:09:41 +00:00
version = "0.3.9"
2019-02-04 21:40:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-20 10:09:41 +00:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2019-02-04 21:40:45 +00:00
dependencies = [
2020-11-30 20:50:56 +00:00
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2019-02-04 21:40:45 +00:00
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-30 20:50:56 +00:00
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2019-02-04 21:40:45 +00:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-30 20:50:56 +00:00
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"