fd/Cargo.lock

715 lines
17 KiB
Plaintext
Raw Normal View History

# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2017-05-12 11:50:03 +02:00
[[package]]
name = "aho-corasick"
version = "0.7.18"
2017-05-12 11:50:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
2017-05-12 11:50:03 +02:00
dependencies = [
"memchr",
2017-05-12 11:50:03 +02:00
]
2019-09-15 17:26:19 +02:00
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
2019-09-15 17:26:19 +02:00
dependencies = [
"winapi",
2019-09-15 17:26:19 +02:00
]
2020-04-03 20:55:14 +02:00
[[package]]
name = "anyhow"
version = "1.0.56"
2020-04-03 20:55:14 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4361135be9122e0870de935d7c439aef945b9f9ddd4199a553b5270b49c82a27"
2020-05-19 14:01:22 +02:00
2017-06-10 17:30:48 +02:00
[[package]]
name = "atty"
2020-03-22 15:47:06 +01:00
version = "0.2.14"
2017-06-10 17:30:48 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
2017-06-10 17:30:48 +02:00
dependencies = [
"hermit-abi",
"libc",
"winapi",
2017-06-10 17:30:48 +02:00
]
2020-03-22 15:47:06 +01:00
[[package]]
name = "autocfg"
version = "1.1.0"
2020-05-19 14:01:22 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2020-05-19 14:01:22 +02:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "bstr"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
dependencies = [
"memchr",
]
[[package]]
2018-07-30 17:19:37 +02:00
name = "cc"
version = "1.0.73"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
2020-12-06 12:00:11 +01:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chrono"
version = "0.4.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
dependencies = [
"libc",
"num-integer",
"num-traits",
"time",
"winapi",
]
[[package]]
name = "clap"
version = "3.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71c47df61d9e16dc010b55dba1952a57d8c215dbb533fd13cdd13369aac73b1c"
dependencies = [
"atty",
"bitflags",
"indexmap",
"lazy_static",
"os_str_bytes",
"strsim",
"termcolor",
"terminal_size",
"textwrap",
]
[[package]]
name = "clap_complete"
version = "3.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df6f3613c0a3cddfd78b41b10203eb322cb29b600cbdf808a7d3db95691b8e25"
dependencies = [
"clap",
]
2018-12-12 19:22:09 +01:00
[[package]]
name = "crossbeam-utils"
version = "0.8.7"
2018-12-12 19:22:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5e5bed1f1c269533fa816a0a5492b3545209a205ca1a54842be180eb63a16a6"
2018-12-12 19:22:09 +01:00
dependencies = [
2021-08-11 09:48:42 +02:00
"cfg-if",
"lazy_static",
2018-12-12 19:22:09 +01:00
]
2017-05-15 22:38:34 +02:00
[[package]]
name = "ctrlc"
version = "3.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a19c6cedffdc8c03a3346d723eb20bd85a13362bb96dc2ac000842c6381ec7bf"
dependencies = [
"nix",
"winapi",
]
[[package]]
2017-12-10 06:40:13 +01:00
name = "diff"
2020-03-22 15:47:06 +01:00
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499"
2020-05-19 14:01:22 +02:00
[[package]]
2020-10-09 18:45:26 +02:00
name = "dirs-next"
2020-12-06 12:02:04 +01:00
version = "2.0.0"
2020-05-19 14:01:22 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-06 12:02:04 +01:00
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
2020-05-19 14:01:22 +02:00
dependencies = [
2021-08-11 09:48:42 +02:00
"cfg-if",
"dirs-sys-next",
2020-05-19 14:01:22 +02:00
]
[[package]]
2020-10-09 18:45:26 +02:00
name = "dirs-sys-next"
2021-08-11 09:48:42 +02:00
version = "0.1.2"
2020-05-19 14:01:22 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-11 09:48:42 +02:00
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
2020-05-19 14:01:22 +02:00
dependencies = [
"libc",
"redox_users",
"winapi",
2020-05-19 14:01:22 +02:00
]
[[package]]
name = "fd-find"
2022-01-29 16:49:09 +01:00
version = "8.3.2"
dependencies = [
"ansi_term",
"anyhow",
"atty",
"chrono",
"clap",
"clap_complete",
"ctrlc",
"diff",
"dirs-next",
"filetime",
"globset",
"humantime",
"ignore",
"jemallocator",
"libc",
"lscolors",
"nix",
"normpath",
"num_cpus",
"once_cell",
"regex",
"regex-syntax",
"tempdir",
"test-case",
"users",
"version_check",
]
[[package]]
name = "filetime"
2021-08-11 09:48:42 +02:00
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-11 09:48:42 +02:00
checksum = "975ccf83d8d9d0d84682850a38c8169027be83368805971cc4f238c2b245bc98"
dependencies = [
2021-08-11 09:48:42 +02:00
"cfg-if",
"libc",
2021-08-11 09:48:42 +02:00
"redox_syscall",
"winapi",
]
[[package]]
2017-12-10 06:40:13 +01:00
name = "fnv"
2020-05-19 18:01:51 +02:00
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2019-09-15 19:29:15 +02:00
[[package]]
name = "fs_extra"
2021-08-11 09:48:42 +02:00
version = "1.2.0"
2019-09-15 19:29:15 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-11 09:48:42 +02:00
checksum = "2022715d62ab30faffd124d40b76f4134a550a87792276512b18d63272333394"
2019-09-15 19:29:15 +02:00
2017-05-15 22:38:34 +02:00
[[package]]
2019-02-13 19:53:48 +01:00
name = "fuchsia-cprng"
version = "0.1.1"
2017-05-15 22:38:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
2017-12-10 06:40:13 +01:00
2020-05-19 14:01:22 +02:00
[[package]]
name = "getrandom"
version = "0.2.5"
2020-05-19 14:01:22 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d39cd93900197114fa1fcb7ae84ca742095eed9442088988ae74fa744e930e77"
2020-05-19 14:01:22 +02:00
dependencies = [
2021-08-11 09:48:42 +02:00
"cfg-if",
"libc",
2021-08-11 09:48:42 +02:00
"wasi",
2020-05-19 14:01:22 +02:00
]
2017-12-10 06:40:13 +01:00
[[package]]
name = "globset"
2021-08-11 09:48:42 +02:00
version = "0.4.8"
2017-12-10 06:40:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-11 09:48:42 +02:00
checksum = "10463d9ff00a2a068db14231982f5132edebad0d7660cd956a1c30292dbcbfbd"
2017-12-10 06:40:13 +01:00
dependencies = [
"aho-corasick",
"bstr",
"fnv",
"log",
"regex",
2020-03-22 15:47:06 +01:00
]
[[package]]
name = "hashbrown"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
2020-03-22 15:47:06 +01:00
[[package]]
name = "hermit-abi"
2021-08-11 09:48:42 +02:00
version = "0.1.19"
2020-03-22 15:47:06 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-11 09:48:42 +02:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2020-03-22 15:47:06 +01:00
dependencies = [
"libc",
2017-05-15 22:38:34 +02:00
]
[[package]]
name = "humantime"
2021-08-11 09:48:42 +02:00
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-11 09:48:42 +02:00
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2017-05-15 22:38:34 +02:00
[[package]]
name = "ignore"
2021-08-11 09:48:42 +02:00
version = "0.4.18"
2017-05-15 22:38:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-11 09:48:42 +02:00
checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d"
2017-05-15 22:38:34 +02:00
dependencies = [
"crossbeam-utils",
"globset",
"lazy_static",
"log",
"memchr",
"regex",
"same-file",
"thread_local",
"walkdir",
"winapi-util",
2017-05-15 22:38:34 +02:00
]
[[package]]
name = "indexmap"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223"
dependencies = [
"autocfg",
"hashbrown",
]
2019-09-15 19:29:15 +02:00
[[package]]
name = "jemalloc-sys"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d3b9f3f5c9b31aa0f5ed3260385ac205db665baa41d49bb8338008ae94ede45"
2019-09-15 19:29:15 +02:00
dependencies = [
"cc",
"fs_extra",
"libc",
2019-09-15 19:29:15 +02:00
]
[[package]]
name = "jemallocator"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43ae63fcfc45e99ab3d1b29a46782ad679e98436c3169d15a167a1108a724b69"
2019-09-15 19:29:15 +02:00
dependencies = [
"jemalloc-sys",
"libc",
2017-05-12 11:50:03 +02:00
]
[[package]]
2017-12-10 06:40:13 +01:00
name = "lazy_static"
version = "1.4.0"
2017-05-12 11:50:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2017-05-12 11:50:03 +02:00
2017-05-15 22:38:34 +02:00
[[package]]
2017-12-10 06:40:13 +01:00
name = "libc"
version = "0.2.121"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "efaa7b300f3b5fe8eb6bf21ce3895e1751d9665086af2d64b42f19701015ff4f"
2018-01-03 10:32:18 +01:00
[[package]]
name = "log"
2021-08-11 09:48:42 +02:00
version = "0.4.14"
2018-01-03 10:32:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-11 09:48:42 +02:00
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
2018-01-03 10:32:18 +01:00
dependencies = [
2021-08-11 09:48:42 +02:00
"cfg-if",
2018-01-03 10:32:18 +01:00
]
[[package]]
name = "lscolors"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4e9323b3525d4efad2dead1837a105e313253bfdbad1d470994038eededa4d62"
dependencies = [
"ansi_term",
]
2017-05-12 11:50:03 +02:00
[[package]]
name = "memchr"
version = "2.4.1"
2017-05-12 11:50:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
2017-05-12 11:50:03 +02:00
2021-08-11 09:48:42 +02:00
[[package]]
name = "memoffset"
version = "0.6.5"
2021-08-11 09:48:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
2021-08-11 09:48:42 +02:00
dependencies = [
"autocfg",
]
[[package]]
name = "nix"
version = "0.23.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6"
dependencies = [
"bitflags",
"cc",
2021-08-11 09:48:42 +02:00
"cfg-if",
"libc",
2021-08-11 09:48:42 +02:00
"memoffset",
]
[[package]]
name = "normpath"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04aaf5e9cb0fbf883cc0423159eacdf96a9878022084b35c462c428cab73bcaf"
dependencies = [
"winapi",
]
[[package]]
name = "num-integer"
2021-08-11 09:48:42 +02:00
version = "0.1.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-11 09:48:42 +02:00
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-traits"
2021-08-11 09:48:42 +02:00
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-11 09:48:42 +02:00
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
version = "1.13.1"
2018-12-12 19:22:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
2018-12-12 19:22:09 +01:00
dependencies = [
"hermit-abi",
"libc",
]
2021-08-11 09:48:42 +02:00
[[package]]
name = "once_cell"
version = "1.10.0"
2021-08-11 09:48:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9"
2021-08-11 09:48:42 +02:00
[[package]]
name = "os_str_bytes"
version = "6.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64"
dependencies = [
"memchr",
]
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn",
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
"version_check",
]
[[package]]
name = "proc-macro2"
version = "1.0.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029"
dependencies = [
"unicode-xid",
]
[[package]]
name = "quote"
version = "1.0.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "864d3e96a899863136fc6e99f3d7cae289dafe43bf2c5ac19b70df7210c0a145"
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
2019-02-13 19:53:48 +01:00
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
dependencies = [
"fuchsia-cprng",
"libc",
"rand_core 0.3.1",
"rdrand",
"winapi",
]
2018-12-12 19:22:09 +01:00
[[package]]
name = "rand_core"
2019-02-13 19:53:48 +01:00
version = "0.3.1"
2019-01-01 22:23:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
2019-01-01 22:23:05 +01:00
dependencies = [
"rand_core 0.4.2",
2019-01-01 22:23:05 +01:00
]
[[package]]
2019-02-13 19:53:48 +01:00
name = "rand_core"
version = "0.4.2"
2019-01-01 22:23:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
2019-01-01 22:23:05 +01:00
[[package]]
2019-02-13 19:53:48 +01:00
name = "rdrand"
version = "0.4.0"
2019-01-01 22:23:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
2019-01-01 22:23:05 +01:00
dependencies = [
"rand_core 0.3.1",
2019-01-01 22:23:05 +01:00
]
[[package]]
name = "redox_syscall"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8380fe0152551244f0747b1bf41737e0f8a74f97a14ccefd1148187271634f3c"
dependencies = [
"bitflags",
]
2020-05-19 14:01:22 +02:00
[[package]]
name = "redox_users"
2021-08-11 09:48:42 +02:00
version = "0.4.0"
2020-05-19 14:01:22 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-11 09:48:42 +02:00
checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64"
2020-05-19 14:01:22 +02:00
dependencies = [
"getrandom",
2021-08-11 09:48:42 +02:00
"redox_syscall",
2020-05-19 14:01:22 +02:00
]
2017-05-12 11:50:03 +02:00
[[package]]
name = "regex"
version = "1.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
version = "0.6.25"
2017-05-12 11:50:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
2017-05-12 11:50:03 +02:00
[[package]]
2018-02-21 21:40:19 +01:00
name = "remove_dir_all"
2021-08-11 09:48:42 +02:00
version = "0.5.3"
2017-05-12 11:50:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-11 09:48:42 +02:00
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
2017-05-12 11:50:03 +02:00
dependencies = [
"winapi",
2018-12-12 19:22:09 +01:00
]
2018-02-21 21:40:19 +01:00
[[package]]
name = "same-file"
2020-03-22 15:47:06 +01:00
version = "1.0.6"
2018-12-12 19:22:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2018-12-12 19:22:09 +01:00
dependencies = [
"winapi-util",
2018-12-12 19:22:09 +01:00
]
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "syn"
version = "1.0.86"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a65b3f4ffa0092e9887669db0eae07941f023991ab58ea44da8fe8e2d511c6b"
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
]
[[package]]
name = "tempdir"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8"
dependencies = [
"rand",
"remove_dir_all",
]
2018-01-01 12:15:39 +01:00
[[package]]
name = "termcolor"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
dependencies = [
"winapi-util",
]
[[package]]
name = "terminal_size"
version = "0.1.17"
2018-01-01 12:15:39 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
2018-01-01 12:15:39 +01:00
dependencies = [
"libc",
"winapi",
2018-01-01 12:15:39 +01:00
]
[[package]]
name = "test-case"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6344589a99d3971d6fa4e8314dbcbeca2df6273a6b642e46906971779159af1f"
dependencies = [
2021-08-11 09:48:42 +02:00
"cfg-if",
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
]
2017-05-12 11:50:03 +02:00
[[package]]
2017-09-09 10:04:34 +02:00
name = "textwrap"
version = "0.15.0"
2017-05-12 11:50:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
2017-05-12 11:50:03 +02:00
dependencies = [
"terminal_size",
2017-05-12 11:50:03 +02:00
]
[[package]]
name = "thread_local"
version = "1.1.4"
2017-05-12 11:50:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
2017-05-12 11:50:03 +02:00
dependencies = [
2021-08-11 09:48:42 +02:00
"once_cell",
2017-05-12 11:50:03 +02:00
]
[[package]]
name = "time"
2021-08-11 09:48:42 +02:00
version = "0.1.43"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-11 09:48:42 +02:00
checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "unicode-xid"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
[[package]]
name = "users"
2020-12-06 12:02:04 +01:00
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-06 12:02:04 +01:00
checksum = "24cc0f6d6f267b73e5a2cadf007ba8f9bc39c6a6f9666f8cf25ea809a153b032"
dependencies = [
"libc",
"log",
]
[[package]]
name = "version_check"
version = "0.9.4"
2017-05-12 11:50:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2017-05-12 11:50:03 +02:00
[[package]]
name = "walkdir"
2021-08-11 09:48:42 +02:00
version = "2.3.2"
2017-05-12 11:50:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-11 09:48:42 +02:00
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
2017-05-12 11:50:03 +02:00
dependencies = [
"same-file",
"winapi",
"winapi-util",
2017-05-12 11:50:03 +02:00
]
2020-05-19 14:01:22 +02:00
[[package]]
name = "wasi"
2021-08-11 09:48:42 +02:00
version = "0.10.2+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-11 09:48:42 +02:00
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
2018-01-03 10:32:18 +01:00
[[package]]
name = "winapi"
2021-08-11 09:48:42 +02:00
version = "0.3.9"
2018-01-03 10:32:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-11 09:48:42 +02:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2018-01-03 10:32:18 +01:00
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2018-01-03 10:32:18 +01:00
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
2018-02-21 21:40:19 +01:00
version = "0.4.0"
2018-01-03 10:32:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2018-01-03 10:32:18 +01:00
2018-12-12 19:22:09 +01:00
[[package]]
name = "winapi-util"
2020-05-19 18:01:51 +02:00
version = "0.1.5"
2018-12-12 19:22:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
2018-12-12 19:22:09 +01:00
dependencies = [
"winapi",
2018-12-12 19:22:09 +01:00
]
2018-01-03 10:32:18 +01:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
2018-02-21 21:40:19 +01:00
version = "0.4.0"
2018-01-03 10:32:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"