watchexec/Cargo.lock

595 lines
14 KiB
Plaintext
Raw Normal View History

2019-05-29 08:27:11 +02:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "aho-corasick"
2021-04-10 20:09:48 +02:00
version = "0.7.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 20:09:48 +02:00
checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5"
dependencies = [
2021-04-10 19:51:33 +02:00
"memchr",
]
[[package]]
name = "bitflags"
2019-10-28 00:16:05 +01:00
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
2019-10-28 00:16:05 +01:00
[[package]]
name = "bstr"
2021-04-10 20:09:48 +02:00
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 20:09:48 +02:00
checksum = "a40b47ad93e1a5404e6c18dec46b628214fee441c70f4ab5d6942142cc268a3d"
2019-10-28 00:16:05 +01:00
dependencies = [
2021-04-10 19:51:33 +02:00
"memchr",
2019-10-28 00:16:05 +01:00
]
[[package]]
name = "cc"
2021-04-10 20:09:48 +02:00
version = "1.0.67"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 20:09:48 +02:00
checksum = "e3c69b077ad434294d3ce9f1f6143a2a4b89a8a2d54ef813d85003a4fd1137fd"
[[package]]
name = "cfg-if"
2019-10-28 00:16:05 +01:00
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
2021-04-10 19:51:33 +02:00
version = "2.33.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
dependencies = [
2021-04-10 19:51:33 +02:00
"bitflags",
"term_size",
"textwrap",
"unicode-width",
]
2019-10-27 11:29:58 +01:00
[[package]]
name = "darling"
2021-04-26 14:10:21 +02:00
version = "0.12.4"
2019-10-27 11:29:58 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-26 14:10:21 +02:00
checksum = "5f2c43f534ea4b0b049015d00269734195e6d3f0f6635cb692251aca6f9f8b3c"
2019-10-27 11:29:58 +01:00
dependencies = [
2021-04-10 19:51:33 +02:00
"darling_core",
"darling_macro",
2019-10-27 11:29:58 +01:00
]
[[package]]
name = "darling_core"
2021-04-26 14:10:21 +02:00
version = "0.12.4"
2019-10-27 11:29:58 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-26 14:10:21 +02:00
checksum = "8e91455b86830a1c21799d94524df0845183fa55bafd9aa137b01c7d1065fa36"
2019-10-27 11:29:58 +01:00
dependencies = [
2021-04-10 19:51:33 +02:00
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim",
"syn",
2019-10-27 11:29:58 +01:00
]
[[package]]
name = "darling_macro"
2021-04-26 14:10:21 +02:00
version = "0.12.4"
2019-10-27 11:29:58 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-26 14:10:21 +02:00
checksum = "29b5acf0dea37a7f66f7b25d2c5e93fd46f8f6968b1a5d7a3e02e97768afc95a"
2019-10-27 11:29:58 +01:00
dependencies = [
2021-04-10 19:51:33 +02:00
"darling_core",
"quote",
"syn",
2019-10-27 11:29:58 +01:00
]
[[package]]
name = "derive_builder"
2021-04-26 14:10:21 +02:00
version = "0.10.2"
2019-10-27 11:29:58 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-26 14:10:21 +02:00
checksum = "d13202debe11181040ae9063d739fa32cfcaaebe2275fe387703460ae2365b30"
2019-10-27 11:29:58 +01:00
dependencies = [
2021-04-10 19:51:33 +02:00
"derive_builder_macro",
2019-10-27 11:29:58 +01:00
]
[[package]]
name = "derive_builder_core"
2021-04-26 14:10:21 +02:00
version = "0.10.2"
2021-04-10 19:51:33 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-26 14:10:21 +02:00
checksum = "66e616858f6187ed828df7c64a6d71720d83767a7f19740b2d1b6fe6327b36e5"
2021-04-10 19:51:33 +02:00
dependencies = [
"darling",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "derive_builder_macro"
2021-04-26 14:10:21 +02:00
version = "0.10.2"
2019-10-27 11:29:58 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-26 14:10:21 +02:00
checksum = "58a94ace95092c5acb1e97a7e846b310cfbd499652f72297da7493f618a98d73"
2019-10-27 11:29:58 +01:00
dependencies = [
2021-04-10 19:51:33 +02:00
"derive_builder_core",
"syn",
2019-10-27 11:29:58 +01:00
]
[[package]]
name = "embed-resource"
2021-04-26 14:10:21 +02:00
version = "1.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-26 14:10:21 +02:00
checksum = "d0ea6debf1262982d24274dc85f3374b42534df140897c25cea86b81e017d470"
dependencies = [
2021-04-10 19:51:33 +02:00
"cc",
"vswhom",
"winreg",
]
[[package]]
name = "env_logger"
2021-04-10 19:51:33 +02:00
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "17392a012ea30ef05a610aa97dfb49496e71c9f676b27879922ea5bdf60d9d3f"
dependencies = [
2021-04-10 19:51:33 +02:00
"log",
]
[[package]]
name = "filetime"
2021-04-10 20:09:48 +02:00
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 20:09:48 +02:00
checksum = "1d34cfa13a63ae058bfa601fe9e313bbdb3746427c1459185464ce0fcf62e1e8"
dependencies = [
2021-04-10 20:09:48 +02:00
"cfg-if 1.0.0",
2021-04-10 19:51:33 +02:00
"libc",
"redox_syscall",
"winapi 0.3.9",
]
[[package]]
name = "fnv"
2021-04-10 20:09:48 +02:00
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 20:09:48 +02:00
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "fsevent"
2019-05-29 08:27:11 +02:00
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "5ab7d1bd1bd33cc98b0889831b72da23c0aa4df9cec7e0702f46ecea04b35db6"
dependencies = [
2021-04-10 19:51:33 +02:00
"bitflags",
"fsevent-sys",
]
[[package]]
name = "fsevent-sys"
2019-05-29 08:27:11 +02:00
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "f41b048a94555da0f42f1d632e2e19510084fb8e303b0daa2816e733fb3644a0"
dependencies = [
2021-04-10 19:51:33 +02:00
"libc",
]
[[package]]
name = "fuchsia-zircon"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
dependencies = [
2021-04-10 19:51:33 +02:00
"bitflags",
"fuchsia-zircon-sys",
]
[[package]]
name = "fuchsia-zircon-sys"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
[[package]]
name = "glob"
2019-10-28 07:02:57 +01:00
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
[[package]]
name = "globset"
2021-04-10 19:51:33 +02:00
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "c152169ef1e421390738366d2f796655fec62621dabbd0fd476f905934061e4a"
dependencies = [
2021-04-10 19:51:33 +02:00
"aho-corasick",
"bstr",
"fnv",
"log",
"regex",
2018-08-19 10:58:47 +02:00
]
2019-10-27 11:29:58 +01:00
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2019-10-27 11:29:58 +01:00
[[package]]
name = "inotify"
2021-04-10 20:09:48 +02:00
version = "0.7.1"
2018-09-09 05:01:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 20:09:48 +02:00
checksum = "4816c66d2c8ae673df83366c18341538f234a26d65a9ecea5c348b453ac1d02f"
2018-09-09 05:01:18 +02:00
dependencies = [
2021-04-10 19:51:33 +02:00
"bitflags",
"inotify-sys",
"libc",
2018-09-09 05:01:18 +02:00
]
[[package]]
name = "inotify-sys"
2021-04-10 20:09:48 +02:00
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 20:09:48 +02:00
checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
dependencies = [
2021-04-10 19:51:33 +02:00
"libc",
]
2018-09-09 05:01:18 +02:00
[[package]]
name = "iovec"
2019-10-28 00:16:05 +01:00
version = "0.1.4"
2018-09-09 05:01:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
2018-09-09 05:01:18 +02:00
dependencies = [
2021-04-10 19:51:33 +02:00
"libc",
2018-09-09 05:01:18 +02:00
]
[[package]]
name = "kernel32-sys"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
dependencies = [
2021-04-10 19:51:33 +02:00
"winapi 0.2.8",
"winapi-build",
]
2016-10-22 21:37:03 +02:00
[[package]]
name = "lazy_static"
2019-10-28 00:16:05 +01:00
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2018-09-09 05:01:18 +02:00
[[package]]
name = "lazycell"
2021-04-10 20:09:48 +02:00
version = "1.3.0"
2018-09-09 05:01:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 20:09:48 +02:00
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2018-09-09 05:01:18 +02:00
[[package]]
name = "libc"
2021-04-10 19:51:33 +02:00
version = "0.2.93"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "9385f66bf6105b241aa65a61cb923ef20efc665cb9f9bb50ac2f0c4b7f378d41"
[[package]]
name = "log"
2021-04-10 19:51:33 +02:00
version = "0.4.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
dependencies = [
2021-04-10 19:51:33 +02:00
"cfg-if 1.0.0",
]
[[package]]
name = "memchr"
2021-04-10 20:09:48 +02:00
version = "2.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 20:09:48 +02:00
checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
[[package]]
name = "mio"
2021-04-10 20:09:48 +02:00
version = "0.6.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 20:09:48 +02:00
checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
dependencies = [
2021-04-10 20:09:48 +02:00
"cfg-if 0.1.10",
2021-04-10 19:51:33 +02:00
"fuchsia-zircon",
"fuchsia-zircon-sys",
"iovec",
"kernel32-sys",
"libc",
"log",
"miow",
"net2",
"slab",
"winapi 0.2.8",
]
2018-09-09 05:01:18 +02:00
[[package]]
name = "mio-extras"
2021-04-10 20:09:48 +02:00
version = "2.0.6"
2018-09-09 05:01:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 20:09:48 +02:00
checksum = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19"
2018-09-09 05:01:18 +02:00
dependencies = [
2021-04-10 19:51:33 +02:00
"lazycell",
"log",
"mio",
"slab",
2018-09-09 05:01:18 +02:00
]
[[package]]
name = "miow"
2021-04-10 20:09:48 +02:00
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 20:09:48 +02:00
checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
dependencies = [
2021-04-10 19:51:33 +02:00
"kernel32-sys",
"net2",
"winapi 0.2.8",
"ws2_32-sys",
]
[[package]]
name = "net2"
2021-04-10 20:09:48 +02:00
version = "0.2.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 20:09:48 +02:00
checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae"
dependencies = [
2021-04-10 19:51:33 +02:00
"cfg-if 0.1.10",
"libc",
"winapi 0.3.9",
]
2016-10-22 21:37:03 +02:00
[[package]]
name = "nix"
2021-04-10 19:51:33 +02:00
version = "0.20.0"
2016-10-22 21:37:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "fa9b4819da1bc61c0ea48b63b7bc8604064dd43013e7cc325df098d49cd7c18a"
2016-10-22 21:37:03 +02:00
dependencies = [
2021-04-10 19:51:33 +02:00
"bitflags",
"cc",
"cfg-if 1.0.0",
"libc",
2016-10-22 21:37:03 +02:00
]
[[package]]
name = "notify"
version = "4.0.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2599080e87c9bd051ddb11b10074f4da7b1223298df65d4c2ec5bcf309af1533"
dependencies = [
2021-04-10 19:51:33 +02:00
"bitflags",
"filetime",
"fsevent",
"fsevent-sys",
"inotify",
"libc",
"mio",
"mio-extras",
"walkdir",
"winapi 0.3.9",
2018-09-09 05:01:18 +02:00
]
2019-10-27 11:29:58 +01:00
[[package]]
name = "proc-macro2"
2021-04-10 19:51:33 +02:00
version = "1.0.26"
2019-10-27 11:29:58 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "a152013215dca273577e18d2bf00fa862b89b24169fb78c4c95aeb07992c9cec"
2019-10-27 11:29:58 +01:00
dependencies = [
2021-04-10 19:51:33 +02:00
"unicode-xid",
2019-10-27 11:29:58 +01:00
]
[[package]]
name = "quote"
2021-04-10 19:51:33 +02:00
version = "1.0.9"
2019-10-27 11:29:58 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
2019-10-27 11:29:58 +01:00
dependencies = [
2021-04-10 19:51:33 +02:00
"proc-macro2",
2019-10-27 11:29:58 +01:00
]
2017-01-27 19:13:08 +01:00
[[package]]
name = "redox_syscall"
version = "0.2.6"
2017-01-27 19:13:08 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8270314b5ccceb518e7e578952f0b72b88222d02e8f77f5ecf7abbb673539041"
2021-04-10 20:09:48 +02:00
dependencies = [
"bitflags",
]
2017-01-27 19:13:08 +01:00
[[package]]
name = "regex"
2021-04-26 14:10:21 +02:00
version = "1.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-26 14:10:21 +02:00
checksum = "2a26af418b574bd56588335b3a3659a65725d4e636eb1016c2f9e3b38c7cc759"
dependencies = [
2021-04-10 19:51:33 +02:00
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2021-04-10 20:09:48 +02:00
version = "0.6.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 20:09:48 +02:00
checksum = "24d5f089152e60f62d28b835fbff2cd2e8dc0baf1ac13343bef92ab7eed84548"
[[package]]
name = "same-file"
2021-04-10 20:09:48 +02:00
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 20:09:48 +02:00
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
2021-04-10 19:51:33 +02:00
"winapi-util",
]
[[package]]
name = "slab"
2021-04-26 14:10:21 +02:00
version = "0.4.3"
2018-09-09 05:01:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-26 14:10:21 +02:00
checksum = "f173ac3d1a7e3b28003f40de0b5ce7fe2710f9b9dc3fc38664cebee46b3b6527"
2018-09-09 05:01:18 +02:00
2019-10-27 11:29:58 +01:00
[[package]]
name = "strsim"
2021-04-10 19:51:33 +02:00
version = "0.10.0"
2019-10-27 11:29:58 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2019-10-27 11:29:58 +01:00
[[package]]
name = "syn"
2021-04-26 14:10:21 +02:00
version = "1.0.70"
2019-10-27 11:29:58 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-26 14:10:21 +02:00
checksum = "b9505f307c872bab8eb46f77ae357c8eba1fdacead58ee5a850116b1d7f82883"
2019-10-27 11:29:58 +01:00
dependencies = [
2021-04-10 19:51:33 +02:00
"proc-macro2",
"quote",
"unicode-xid",
2019-10-27 11:29:58 +01:00
]
[[package]]
name = "term_size"
2021-04-10 20:09:48 +02:00
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 20:09:48 +02:00
checksum = "1e4129646ca0ed8f45d09b929036bafad5377103edd06e50bf574b353d2b08d9"
dependencies = [
2021-04-10 19:51:33 +02:00
"libc",
2021-04-10 20:09:48 +02:00
"winapi 0.3.9",
]
[[package]]
name = "textwrap"
2019-10-28 00:16:05 +01:00
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
dependencies = [
2021-04-10 19:51:33 +02:00
"term_size",
"unicode-width",
]
[[package]]
name = "unicode-width"
2021-04-10 20:09:48 +02:00
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 20:09:48 +02:00
checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
2019-10-27 11:29:58 +01:00
[[package]]
name = "unicode-xid"
2021-04-10 20:09:48 +02:00
version = "0.2.1"
2019-10-27 11:29:58 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 20:09:48 +02:00
checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
2016-10-22 21:37:03 +02:00
[[package]]
name = "vswhom"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b"
dependencies = [
2021-04-10 19:51:33 +02:00
"libc",
"vswhom-sys",
]
[[package]]
name = "vswhom-sys"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "fc2f5402d3d0e79a069714f7b48e3ecc60be7775a2c049cb839457457a239532"
dependencies = [
2021-04-10 19:51:33 +02:00
"cc",
"libc",
]
[[package]]
name = "walkdir"
2021-04-10 19:51:33 +02:00
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
dependencies = [
2021-04-10 19:51:33 +02:00
"same-file",
"winapi 0.3.9",
"winapi-util",
]
[[package]]
name = "watchexec"
2021-04-30 14:27:44 +02:00
version = "1.15.3"
dependencies = [
2021-04-10 19:51:33 +02:00
"clap",
"derive_builder",
"embed-resource",
"env_logger",
"glob",
"globset",
"lazy_static",
"log",
"nix",
"notify",
"walkdir",
"winapi 0.3.9",
]
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
[[package]]
name = "winapi"
2020-07-03 14:51:51 +02:00
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
2021-04-10 19:51:33 +02:00
"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"
2021-04-10 19:51:33 +02:00
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2018-09-09 05:01:18 +02:00
[[package]]
name = "winapi-util"
2021-04-10 20:09:48 +02:00
version = "0.1.5"
2018-09-09 05:01:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 20:09:48 +02:00
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
2018-09-09 05:01:18 +02:00
dependencies = [
2021-04-10 19:51:33 +02:00
"winapi 0.3.9",
2018-09-09 05:01:18 +02:00
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "winreg"
2021-04-10 19:51:33 +02:00
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "d107f8c6e916235c4c01cabb3e8acf7bea8ef6a63ca2e7fa0527c049badfc48c"
dependencies = [
2021-04-10 19:51:33 +02:00
"winapi 0.3.9",
]
[[package]]
name = "ws2_32-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 19:51:33 +02:00
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
dependencies = [
2021-04-10 19:51:33 +02:00
"winapi 0.2.8",
"winapi-build",
]