fd/Cargo.lock

659 lines
16 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.52"
2020-04-03 20:55:14 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "84450d0b4a8bd1ba4144ce8ce718fbc5d071358b1e5384bace6536b3d1f2d5b3"
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"
2021-08-11 09:48:42 +02:00
version = "1.0.1"
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 = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
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"
2021-11-14 18:28:21 +01:00
version = "1.0.72"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-14 18:28:21 +01:00
checksum = "22a9137b95ea06864e018375b72adfb7db6e6f68cfc8df5a04d00288050485ee"
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 = "2.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
dependencies = [
"ansi_term",
"atty",
"bitflags",
"strsim",
"term_size",
"textwrap",
"unicode-width",
"vec_map",
]
2018-12-12 19:22:09 +01:00
[[package]]
name = "crossbeam-utils"
2021-08-11 09:48:42 +02:00
version = "0.8.5"
2018-12-12 19:22:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-11 09:48:42 +02:00
checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db"
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-06 14:02:55 +01:00
version = "8.3.1"
dependencies = [
"ansi_term",
"anyhow",
"atty",
"chrono",
"clap",
"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"
2021-08-11 09:48:42 +02:00
version = "0.2.3"
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 = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
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 = "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
]
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.112"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b03d17f364a3a042d5e5d46b053bbbf82c92c9430c592dd4c064dc6ee997125"
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"
2021-11-14 18:28:21 +01:00
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-14 18:28:21 +01:00
checksum = "9dd58d8727f3035fa6d5272f16b519741fd4875936b99d8a7cde21291b7d9174"
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.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59accc507f1338036a0477ef61afdae33cde60840f4dfe481319ce3ad116ddf9"
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.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "640c20e9df4a2d4a5adad5b47e17d76dac3e824346b181931c3ec9f7a85687b1"
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.9.0"
2021-08-11 09:48:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da32515d9f6e6e489d7bc9d84c71b060db7247dc035bbe44eac88cf87486d8d5"
2021-08-11 09:48:42 +02:00
[[package]]
name = "proc-macro2"
version = "1.0.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba508cc11742c0dc5c1659771673afbab7a0efab23aa17e854cbab0837ed0b43"
dependencies = [
"unicode-xid",
]
[[package]]
name = "quote"
version = "1.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38bc8cc6a5f2e3655e0899c1b848643b2562f853f114bfec7be120678e3ace05"
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.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
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.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
[[package]]
name = "syn"
2021-11-26 22:00:07 +01:00
version = "1.0.82"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-26 22:00:07 +01:00
checksum = "8daf5dd0bb60cbd4137b1b587d2fc0ae729bc07cf01cd70b36a1ed5ade3b9d59"
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 = "term_size"
2020-05-19 18:01:51 +02:00
version = "0.3.2"
2018-01-01 12:15:39 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e4129646ca0ed8f45d09b929036bafad5377103edd06e50bf574b353d2b08d9"
2018-01-01 12:15:39 +01:00
dependencies = [
"libc",
"winapi",
2018-01-01 12:15:39 +01:00
]
[[package]]
name = "test-case"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c7cad0a06f9a61e94355aa3b3dc92d85ab9c83406722b1ca5e918d4297c12c23"
dependencies = [
2021-08-11 09:48:42 +02:00
"cfg-if",
"proc-macro2",
"quote",
"syn",
"version_check",
]
2017-05-12 11:50:03 +02:00
[[package]]
2017-09-09 10:04:34 +02:00
name = "textwrap"
version = "0.11.0"
2017-05-12 11:50:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
2017-05-12 11:50:03 +02:00
dependencies = [
"term_size",
"unicode-width",
2017-05-12 11:50:03 +02:00
]
[[package]]
name = "thread_local"
2021-08-11 09:48:42 +02:00
version = "1.1.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 = "8018d24e04c95ac8790716a5987d0fec4f8b27249ffa0f7d33f1369bdfb88cbd"
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-width"
version = "0.1.9"
2018-12-12 19:22:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
2017-05-12 11:50:03 +02:00
[[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 = "vec_map"
2020-05-19 18:01:51 +02:00
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
[[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"