watchexec/Cargo.lock

2758 lines
66 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.
version = 3
[[package]]
name = "addr2line"
2021-12-23 14:35:26 +01:00
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b"
dependencies = [
"gimli",
]
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2021-09-13 09:51:07 +02:00
[[package]]
name = "aho-corasick"
version = "0.7.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
dependencies = [
"memchr",
]
2021-08-16 15:15:17 +02:00
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
dependencies = [
"winapi",
2021-08-16 15:15:17 +02:00
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "anyhow"
2022-01-18 10:14:34 +01:00
version = "1.0.52"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "84450d0b4a8bd1ba4144ce8ce718fbc5d071358b1e5384bace6536b3d1f2d5b3"
2021-09-29 12:38:02 +02:00
[[package]]
name = "arrayref"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
[[package]]
name = "arrayvec"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
2021-05-10 13:02:31 +02:00
[[package]]
name = "assert_cmd"
2022-01-18 10:14:34 +01:00
version = "2.0.4"
2021-05-10 13:02:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "93ae1ddd39efd67689deb1979d80bad3bf7f2b09c6e6117c8d1f2443b5e2f83e"
2021-05-10 13:02:31 +02:00
dependencies = [
"bstr",
"doc-comment",
"predicates",
"predicates-core",
"predicates-tree",
"wait-timeout",
]
[[package]]
name = "async-io"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a811e6a479f2439f0c04038796b5cfb3d2ad56c230e0f2d3f7b04d68cfee607b"
dependencies = [
"concurrent-queue",
"futures-lite",
"libc",
"log",
"once_cell",
"parking",
"polling",
"slab",
"socket2",
"waker-fn",
"winapi",
]
2021-08-22 14:28:20 +02:00
[[package]]
name = "async-recursion"
2022-01-18 10:14:34 +01:00
version = "1.0.0"
2021-08-22 14:28:20 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "2cda8f4bcc10624c4e85bc66b3f452cca98cfa5ca002dc83a16aad2367641bea"
2021-08-22 14:28:20 +02:00
dependencies = [
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
"syn",
2021-08-22 14:28:20 +02:00
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "async-stream"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "171374e7e3b2504e0e5236e3b59260560f9fe94bfe9ac39ba5e4e929c5590625"
dependencies = [
"async-stream-impl",
"futures-core",
]
[[package]]
name = "async-stream-impl"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "648ed8c8d2ce5409ccd57453d9d1b214b342a0d69376a6feda1fd6cae3299308"
dependencies = [
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
"syn",
2021-09-29 12:38:02 +02:00
]
2021-08-16 17:09:22 +02:00
[[package]]
name = "async-trait"
2021-12-23 14:35:26 +01:00
version = "0.1.52"
2021-08-16 17:09:22 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "061a7acccaa286c011ddc30970520b98fa40e00c9d644633fb26b5fc63a265e3"
2021-08-16 17:09:22 +02:00
dependencies = [
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
"syn",
2021-08-16 17:09:22 +02:00
]
[[package]]
name = "atomic-take"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9f65e4fb35ff6a80b3298d1f028649f3a23da141fa3951e9b24dde1d515b67e"
2021-08-22 16:37:13 +02:00
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi",
"libc",
"winapi",
2021-08-22 16:37:13 +02:00
]
[[package]]
name = "autocfg"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
[[package]]
name = "backtrace"
2021-12-23 14:35:26 +01:00
version = "0.3.63"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "321629d8ba6513061f26707241fa9bc89524ff1cd7a915a97ef0c62c666ce1b6"
dependencies = [
"addr2line",
"cc",
"cfg-if 1.0.0",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
[[package]]
name = "bitflags"
2021-10-16 08:08:35 +02:00
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-16 08:08:35 +02:00
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
2019-10-28 00:16:05 +01:00
[[package]]
name = "blake2b_simd"
version = "0.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587"
dependencies = [
"arrayref",
"arrayvec",
"constant_time_eq",
]
[[package]]
name = "block"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
2019-10-28 00:16:05 +01:00
[[package]]
name = "bstr"
2021-09-28 14:47:18 +02:00
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-28 14:47:18 +02:00
checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
2019-10-28 00:16:05 +01:00
dependencies = [
2021-05-10 13:02:31 +02:00
"lazy_static",
2021-04-10 19:51:33 +02:00
"memchr",
2021-05-10 13:02:31 +02:00
"regex-automata",
2019-10-28 00:16:05 +01:00
]
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2021-08-16 11:49:12 +02:00
[[package]]
name = "bytes"
2021-09-28 14:47:18 +02:00
version = "1.1.0"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-28 14:47:18 +02:00
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
2021-08-16 11:49:12 +02:00
[[package]]
name = "cache-padded"
2021-12-23 14:35:26 +01:00
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c"
[[package]]
name = "cc"
2021-12-23 14:35:26 +01:00
version = "1.0.72"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "22a9137b95ea06864e018375b72adfb7db6e6f68cfc8df5a04d00288050485ee"
dependencies = [
"jobserver",
]
[[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 = "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"
2021-12-23 14:35:26 +01:00
version = "2.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
dependencies = [
2021-10-16 06:25:21 +02:00
"bitflags",
2021-04-10 19:51:33 +02:00
"term_size",
"textwrap 0.11.0",
2021-04-10 19:51:33 +02:00
"unicode-width",
]
[[package]]
name = "clearscreen"
2021-12-23 14:35:26 +01:00
version = "1.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "a7ed49b0e894fe6264a58496c7ec4e9d3c46f66b59efae527cd5bee429d0a418"
dependencies = [
2021-10-16 08:08:35 +02:00
"nix 0.22.2",
"terminfo",
"thiserror",
"which",
"winapi",
]
[[package]]
name = "command-group"
2021-10-16 08:08:35 +02:00
version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-16 08:08:35 +02:00
checksum = "f7a8a86f409b4a59df3a3e4bee2de0b83f1755fdd2a25e3a9684c396fc4bed2c"
dependencies = [
2021-08-16 17:09:22 +02:00
"async-trait",
2021-10-16 08:08:35 +02:00
"nix 0.22.2",
2021-08-16 17:09:22 +02:00
"tokio",
"winapi",
]
[[package]]
name = "concurrent-queue"
version = "1.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30ed07550be01594c6026cff2a1d7fe9c8f683caa798e12b68694ac9e88286a3"
dependencies = [
"cache-padded",
]
2021-05-10 13:02:31 +02:00
[[package]]
name = "console"
2022-01-18 10:14:34 +01:00
version = "0.15.0"
2021-05-10 13:02:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "a28b32d32ca44b70c3e4acd7db1babf555fa026e385fb95f18028f88848b3c31"
2021-05-10 13:02:31 +02:00
dependencies = [
"encode_unicode",
"libc",
2022-01-18 10:14:34 +01:00
"once_cell",
2021-05-10 13:02:31 +02:00
"terminal_size",
"winapi",
2021-05-10 13:02:31 +02:00
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "console-api"
version = "0.1.0"
2021-12-23 14:28:21 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "033fddce299c93dd44ae21d5f5a6e749baa5d103784bcdde65701c07272a9fde"
2021-09-29 12:38:02 +02:00
dependencies = [
"prost",
"prost-types",
"tonic",
"tonic-build",
"tracing-core",
]
[[package]]
name = "console-subscriber"
version = "0.1.0"
2021-12-23 14:28:21 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2380cc150266375aeda8f9aeadc5527395c1a8807ecf9fa97a46d1bb760ec5b"
2021-09-29 12:38:02 +02:00
dependencies = [
"console-api",
"futures",
"hdrhistogram",
"humantime",
"serde",
"serde_json",
"thread_local",
"tokio",
"tokio-stream",
"tonic",
"tracing",
"tracing-core",
2021-12-23 14:35:26 +01:00
"tracing-subscriber",
2021-09-29 12:38:02 +02:00
]
[[package]]
name = "constant_time_eq"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
2021-09-29 12:38:02 +02:00
[[package]]
name = "crc32fast"
2021-12-23 14:35:26 +01:00
version = "1.3.0"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "738c290dfaea84fc1ca15ad9c168d083b05a714e1efddd8edaab678dc28d2836"
2021-09-29 12:38:02 +02:00
dependencies = [
"cfg-if 1.0.0",
]
2021-08-16 11:49:12 +02:00
[[package]]
name = "crossbeam-channel"
2022-01-18 10:14:34 +01:00
version = "0.5.2"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "e54ea8bc3fb1ee042f5aace6e3c6e025d3874866da222930f70ce62aceba0bfa"
2021-08-16 11:49:12 +02:00
dependencies = [
"cfg-if 1.0.0",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
2022-01-18 10:14:34 +01:00
version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "cfcae03edb34f947e64acdb1c33ec169824e20657e9ecb61cef6c8c74dcb8120"
dependencies = [
"cfg-if 1.0.0",
"lazy_static",
]
[[package]]
name = "derivative"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
dependencies = [
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
"syn",
2019-10-27 11:29:58 +01:00
]
2021-05-10 13:02:31 +02:00
[[package]]
2021-07-10 10:07:59 +02:00
name = "difflib"
version = "0.4.0"
2021-05-10 13:02:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-10 10:07:59 +02:00
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
2021-05-10 13:02:31 +02:00
[[package]]
name = "dirs"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901"
dependencies = [
"libc",
"redox_users 0.3.5",
"winapi",
]
[[package]]
name = "dirs"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13aea89a5c93364a98e9b37b2fa237effbb694d5cfe01c5b70941f7eb087d5e3"
dependencies = [
"cfg-if 0.1.10",
"dirs-sys",
]
[[package]]
name = "dirs-sys"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03d86534ed367a67548dc68113a0f5db55432fdfbb6e6f9d77704397d95d5780"
dependencies = [
"libc",
"redox_users 0.4.0",
"winapi",
]
2021-05-10 13:02:31 +02:00
[[package]]
name = "doc-comment"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
2021-08-16 15:15:17 +02:00
[[package]]
name = "dunce"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "453440c271cf5577fd2a40e4942540cb7d0d2f85e27c8d07dd0023c925a67541"
[[package]]
name = "either"
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
[[package]]
name = "embed-resource"
2021-12-23 14:35:26 +01:00
version = "1.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "85505eb239fc952b300f29f0556d2d884082a83566768d980278d8faf38c780d"
dependencies = [
2021-04-10 19:51:33 +02:00
"cc",
"vswhom",
"winreg",
]
2021-05-10 13:02:31 +02:00
[[package]]
name = "encode_unicode"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
[[package]]
name = "enumflags2"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83c8d82922337cd23a15f88b70d8e4ef5f11da38dd7cdb55e84dd5de99695da0"
dependencies = [
"enumflags2_derive",
"serde",
]
[[package]]
name = "enumflags2_derive"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "946ee94e3dbf58fdd324f9ce245c7b238d46a66f00e86a020b71996349e46cce"
dependencies = [
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
"syn",
]
[[package]]
name = "fastrand"
2021-12-23 14:35:26 +01:00
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "779d043b6a0b90cc4c0ed7ee380a6504394cee7efd7db050e3774eee387324b2"
dependencies = [
"instant",
]
[[package]]
name = "filetime"
2021-09-28 14:47:18 +02:00
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-28 14:47:18 +02:00
checksum = "975ccf83d8d9d0d84682850a38c8169027be83368805971cc4f238c2b245bc98"
dependencies = [
2021-04-10 20:09:48 +02:00
"cfg-if 1.0.0",
2021-04-10 19:51:33 +02:00
"libc",
2021-09-28 14:47:18 +02:00
"redox_syscall 0.2.10",
"winapi",
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "fixedbitset"
2022-01-18 10:14:34 +01:00
version = "0.4.1"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "279fb028e20b3c4c320317955b77c5e0c9701f05a1d309905d6fc702cdc5053e"
2021-09-29 12:38:02 +02:00
[[package]]
name = "flate2"
version = "1.0.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e6988e897c1c9c485f43b47a529cef42fde0547f9d8d41a7062518f1d8fc53f"
dependencies = [
"cfg-if 1.0.0",
"crc32fast",
"libc",
"miniz_oxide",
]
[[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 = "form_urlencoded"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
dependencies = [
"matches",
"percent-encoding",
]
[[package]]
name = "futures"
2021-12-23 14:35:26 +01:00
version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "28560757fe2bb34e79f907794bb6b22ae8b0e5c669b638a1132f2592b19035b4"
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2021-12-23 14:35:26 +01:00
version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "ba3dda0b6588335f360afc675d0564c17a77a2bda81ca178a4b6081bd86c7f0b"
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2021-12-23 14:35:26 +01:00
version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "d0c8ff0461b82559810cdccfde3215c3f373807f5e5232b71479bff7bb2583d7"
[[package]]
name = "futures-executor"
2021-12-23 14:35:26 +01:00
version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "29d6d2ff5bb10fb95c85b8ce46538a2e5f5e7fdc755623a7d4529ab8a4ed9d2a"
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2021-12-23 14:35:26 +01:00
version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "b1f9d34af5a1aac6fb380f735fe510746c38067c5bf16c7fd250280503c971b2"
[[package]]
name = "futures-lite"
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"
dependencies = [
"fastrand",
"futures-core",
"futures-io",
"memchr",
"parking",
"pin-project-lite",
"waker-fn",
]
[[package]]
name = "futures-macro"
2021-12-23 14:35:26 +01:00
version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "6dbd947adfffb0efc70599b3ddcf7b5597bb5fa9e245eb99f62b3a5f7bb8bd3c"
dependencies = [
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
"syn",
]
[[package]]
name = "futures-sink"
2021-12-23 14:35:26 +01:00
version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "e3055baccb68d74ff6480350f8d6eb8fcfa3aa11bdc1a1ae3afdd0514617d508"
[[package]]
name = "futures-task"
2021-12-23 14:35:26 +01:00
version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "6ee7c6485c30167ce4dfb83ac568a849fe53274c831081476ee13e0dce1aad72"
[[package]]
name = "futures-util"
2021-12-23 14:35:26 +01:00
version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "d9b5cf40b47a271f77a8b1bec03ca09044d99d2372c0de244e66430761127164"
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
"pin-project-lite",
"pin-utils",
"slab",
]
[[package]]
name = "getrandom"
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
dependencies = [
"cfg-if 1.0.0",
"libc",
"wasi 0.9.0+wasi-snapshot-preview1",
]
[[package]]
name = "getrandom"
2022-01-18 10:14:34 +01:00
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "418d37c8b1d42553c93648be529cb70f920d3baf8ef469b74b9638df426e0b4c"
dependencies = [
"cfg-if 1.0.0",
"libc",
"wasi 0.10.2+wasi-snapshot-preview1",
]
[[package]]
name = "gimli"
2021-12-23 14:35:26 +01:00
version = "0.26.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "78cc372d058dcf6d5ecd98510e7fbc9e5aec4d21de70f65fea8fecebcd881bd4"
[[package]]
name = "git2"
2021-12-23 14:35:26 +01:00
version = "0.13.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "f29229cc1b24c0e6062f6e742aa3e256492a5323365e5ed3413599f8a5eff7d6"
dependencies = [
2021-10-16 06:25:21 +02:00
"bitflags",
"libc",
"libgit2-sys",
"log",
"url",
]
2021-09-14 10:09:57 +02:00
[[package]]
name = "globset"
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10463d9ff00a2a068db14231982f5132edebad0d7660cd956a1c30292dbcbfbd"
dependencies = [
"aho-corasick",
"bstr",
"fnv",
"log",
"regex",
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "h2"
2022-01-18 10:14:34 +01:00
version = "0.3.10"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "0c9de88456263e249e241fcd211d3954e2c9b0ef7ccfc235a444eb367cae3689"
2021-09-29 12:38:02 +02:00
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio",
"tokio-util",
"tracing",
]
2021-08-22 16:37:13 +02:00
[[package]]
name = "hashbrown"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
2021-09-29 12:38:02 +02:00
[[package]]
name = "hdrhistogram"
2021-12-23 14:35:26 +01:00
version = "7.4.0"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "6490be71f07a5f62b564bc58e36953f675833df11c7e4a0647bee7a07ca1ec5e"
2021-09-29 12:38:02 +02:00
dependencies = [
"base64",
"byteorder",
"flate2",
2021-12-23 14:35:26 +01:00
"nom 7.1.0",
2021-09-29 12:38:02 +02:00
"num-traits",
]
[[package]]
name = "heck"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
dependencies = [
"unicode-segmentation",
]
2021-08-16 11:49:12 +02:00
[[package]]
name = "hermit-abi"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "http"
2022-01-18 10:14:34 +01:00
version = "0.2.6"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "31f4c6746584866f0feabcc69893c5b51beef3831656a968ed7ae254cdc4fd03"
2021-09-29 12:38:02 +02:00
dependencies = [
"bytes",
"fnv",
2022-01-18 10:14:34 +01:00
"itoa 1.0.1",
2021-09-29 12:38:02 +02:00
]
[[package]]
name = "http-body"
2021-12-23 14:28:21 +01:00
version = "0.4.4"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:28:21 +01:00
checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6"
2021-09-29 12:38:02 +02:00
dependencies = [
"bytes",
"http",
"pin-project-lite",
]
[[package]]
name = "httparse"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acd94fdbe1d4ff688b67b04eee2e17bd50995534a61539e45adfefb45e5e5503"
[[package]]
name = "httpdate"
2021-12-23 14:35:26 +01:00
version = "1.0.2"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2021-09-29 12:38:02 +02:00
[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
[[package]]
name = "hyper"
2021-12-23 14:28:21 +01:00
version = "0.14.16"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:28:21 +01:00
checksum = "b7ec3e62bdc98a2f0393a5048e4c30ef659440ea6e0e572965103e72bd836f55"
2021-09-29 12:38:02 +02:00
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
"httpdate",
2021-12-23 14:35:26 +01:00
"itoa 0.4.8",
2021-09-29 12:38:02 +02:00
"pin-project-lite",
"socket2",
"tokio",
"tower-service",
"tracing",
"want",
]
[[package]]
name = "hyper-timeout"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
dependencies = [
"hyper",
"pin-project-lite",
"tokio",
"tokio-io-timeout",
]
[[package]]
name = "idna"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
2021-10-12 14:49:38 +02:00
[[package]]
name = "ignore"
version = "0.4.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d"
dependencies = [
"crossbeam-utils",
"globset",
"lazy_static",
"log",
"memchr",
"regex",
"same-file",
"thread_local",
"walkdir",
"winapi-util",
]
2021-08-22 16:37:13 +02:00
[[package]]
name = "indexmap"
2022-01-18 10:14:34 +01:00
version = "1.8.0"
2021-08-22 16:37:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223"
2021-08-22 16:37:13 +02:00
dependencies = [
"autocfg",
"hashbrown",
]
2021-08-16 11:49:12 +02:00
[[package]]
name = "inotify"
2021-12-23 14:35:26 +01:00
version = "0.9.6"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff"
2021-08-16 11:49:12 +02:00
dependencies = [
2021-10-16 06:25:21 +02:00
"bitflags",
2021-08-16 11:49:12 +02:00
"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",
]
2021-05-10 13:02:31 +02:00
[[package]]
name = "insta"
2022-01-18 10:14:34 +01:00
version = "1.10.0"
2021-05-10 13:02:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "b3cb858fc306825b542b1311d5fd536e4483680528f303a17a1d6803b0f6ce17"
2021-05-10 13:02:31 +02:00
dependencies = [
"console",
"lazy_static",
"serde",
"serde_json",
"serde_yaml",
"similar",
"uuid",
]
[[package]]
name = "instant"
2021-12-23 14:35:26 +01:00
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
"cfg-if 1.0.0",
]
[[package]]
name = "is_ci"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "616cde7c720bb2bb5824a224687d8f77bfd38922027f01d825cd7453be5099fb"
2021-07-10 10:07:59 +02:00
[[package]]
name = "itertools"
2021-12-23 14:35:26 +01:00
version = "0.10.3"
2021-07-10 10:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
2021-07-10 10:07:59 +02:00
dependencies = [
"either",
]
2021-05-10 13:02:31 +02:00
[[package]]
name = "itoa"
2021-09-28 14:47:18 +02:00
version = "0.4.8"
2021-05-10 13:02:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-28 14:47:18 +02:00
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
2021-05-10 13:02:31 +02:00
2021-12-23 14:35:26 +01:00
[[package]]
name = "itoa"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
[[package]]
name = "jobserver"
version = "0.1.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
dependencies = [
"libc",
]
2021-08-16 11:49:12 +02:00
[[package]]
name = "kqueue"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "058a107a784f8be94c7d35c1300f4facced2e93d2fbe5b1452b44e905ddca4a9"
dependencies = [
"kqueue-sys",
"libc",
]
[[package]]
name = "kqueue-sys"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8367585489f01bc55dd27404dcf56b95e6da061a256a666ab23be9ba96a2e587"
dependencies = [
2021-10-16 06:25:21 +02:00
"bitflags",
2021-08-16 11:49:12 +02:00
"libc",
]
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"
[[package]]
name = "libc"
2021-12-23 14:35:26 +01:00
version = "0.2.112"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "1b03d17f364a3a042d5e5d46b053bbbf82c92c9430c592dd4c064dc6ee997125"
[[package]]
name = "libgit2-sys"
2021-12-23 14:35:26 +01:00
version = "0.12.26+1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "19e1c899248e606fbfe68dcb31d8b0176ebab833b103824af31bddf4b7457494"
dependencies = [
"cc",
"libc",
"libz-sys",
"pkg-config",
]
[[package]]
name = "libmimalloc-sys"
2021-12-23 14:35:26 +01:00
version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "9636c194f9db483f4d0adf2f99a65011a99f904bd222bbd67fb4df4f37863c30"
dependencies = [
"cc",
]
[[package]]
name = "libz-sys"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "de5435b8549c16d423ed0c03dbaafe57cf6c3344744f1242520d59c9d8ecec66"
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2021-05-10 13:02:31 +02:00
[[package]]
name = "linked-hash-map"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3"
2021-08-16 11:49:12 +02:00
[[package]]
name = "lock_api"
2021-09-28 14:47:18 +02:00
version = "0.4.5"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-28 14:47:18 +02:00
checksum = "712a4d093c9976e24e7dbca41db895dabcbac38eb5f4045393d17a95bdfb1109"
2021-08-16 11:49:12 +02:00
dependencies = [
"scopeguard",
]
[[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 = "mac-notification-sys"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dfb6b71a9a89cd38b395d994214297447e8e63b1ba5708a9a2b0b1048ceda76"
dependencies = [
"cc",
"chrono",
"dirs 1.0.5",
"objc-foundation",
]
[[package]]
name = "malloc_buf"
version = "0.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
dependencies = [
"libc",
]
2021-08-16 15:15:17 +02:00
[[package]]
name = "matchers"
2021-12-23 14:35:26 +01:00
version = "0.1.0"
2021-08-16 15:15:17 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
2021-08-16 15:15:17 +02:00
dependencies = [
"regex-automata",
]
[[package]]
name = "matches"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
[[package]]
name = "memchr"
2021-09-28 14:47:18 +02:00
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-28 14:47:18 +02:00
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
[[package]]
name = "memoffset"
2021-12-23 14:35:26 +01:00
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
dependencies = [
"autocfg",
]
2021-08-16 11:49:12 +02:00
[[package]]
name = "miette"
version = "3.3.0"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd2adcfcced5d625bf90a958a82ae5b93231f57f3df1383fee28c9b5096d35ed"
2021-08-16 11:49:12 +02:00
dependencies = [
2021-08-22 16:37:13 +02:00
"atty",
"backtrace",
2021-08-16 11:49:12 +02:00
"miette-derive",
2021-08-22 16:37:13 +02:00
"once_cell",
2021-10-10 10:04:40 +02:00
"owo-colors",
"supports-color",
"supports-hyperlinks",
"supports-unicode",
"terminal_size",
"textwrap 0.14.2",
2021-08-16 11:49:12 +02:00
"thiserror",
]
[[package]]
name = "miette-derive"
version = "3.3.0"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c01a8b61312d367ce87956bb686731f87e4c6dd5dbc550e8f06e3c24fb1f67f"
2021-08-16 11:49:12 +02:00
dependencies = [
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
"syn",
2021-08-16 11:49:12 +02:00
]
[[package]]
name = "mimalloc"
2021-12-23 14:35:26 +01:00
version = "0.1.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "cf5f78c1d9892fb5677a8b2f543f967ab891ac0f71feecd961435b74f877283a"
dependencies = [
"libmimalloc-sys",
]
2021-09-14 10:09:57 +02:00
[[package]]
name = "minimal-lexical"
2021-12-23 14:35:26 +01:00
version = "0.2.1"
2021-09-14 10:09:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2021-09-14 10:09:57 +02:00
[[package]]
name = "miniz_oxide"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
dependencies = [
"adler",
"autocfg",
]
2021-08-16 11:49:12 +02:00
[[package]]
name = "mio"
2021-12-23 14:35:26 +01:00
version = "0.7.14"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc"
2021-08-16 11:49:12 +02:00
dependencies = [
"libc",
"log",
"miow",
2021-08-16 11:49:12 +02:00
"ntapi",
"winapi",
]
2022-03-14 00:57:49 +01:00
[[package]]
name = "mio"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ba42135c6a5917b9db9cd7b293e5409e1c6b041e6f9825e92e55a894c63b6f8"
dependencies = [
"libc",
"log",
"miow",
"ntapi",
"wasi 0.11.0+wasi-snapshot-preview1",
"winapi",
]
2021-08-16 11:49:12 +02:00
[[package]]
name = "miow"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
dependencies = [
"winapi",
2021-08-16 11:49:12 +02:00
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "multimap"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a"
[[package]]
name = "nb-connect"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1bb540dc6ef51cfe1916ec038ce7a620daf3a111e2502d745197cd53d6bca15"
dependencies = [
"libc",
"socket2",
]
[[package]]
name = "nix"
2021-10-16 08:08:35 +02:00
version = "0.20.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-16 08:08:35 +02:00
checksum = "f5e06129fb611568ef4e868c14b326274959aa70ff7776e9d55323531c374945"
dependencies = [
2021-10-16 06:25:21 +02:00
"bitflags",
"cc",
2021-10-16 08:08:35 +02:00
"cfg-if 1.0.0",
"libc",
2021-10-16 08:08:35 +02:00
"memoffset",
]
[[package]]
name = "nix"
2021-10-16 08:08:35 +02:00
version = "0.22.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-16 08:08:35 +02:00
checksum = "d3bb9a13fa32bc5aeb64150cd3f32d6cf4c748f8f8a417cce5d2eb976a8370ba"
dependencies = [
2021-10-16 06:25:21 +02:00
"bitflags",
"cc",
"cfg-if 1.0.0",
"libc",
"memoffset",
]
[[package]]
name = "nom"
version = "5.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af"
dependencies = [
"memchr",
"version_check",
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "nom"
2021-12-23 14:35:26 +01:00
version = "7.1.0"
2021-09-14 10:09:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "1b1d11e1ef389c76fe5b81bcaf2ea32cf88b62bc494e19f493d0b30e7a930109"
2021-09-14 10:09:57 +02:00
dependencies = [
"memchr",
"minimal-lexical",
"version_check",
]
2021-08-16 11:49:12 +02:00
[[package]]
name = "notify"
2022-03-14 00:57:49 +01:00
version = "5.0.0-pre.14"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-14 00:57:49 +01:00
checksum = "d13c22db70a63592e098fb51735bab36646821e6389a0ba171f3549facdf0b74"
2021-08-16 11:49:12 +02:00
dependencies = [
2021-10-16 06:25:21 +02:00
"bitflags",
2021-08-16 11:49:12 +02:00
"crossbeam-channel",
"filetime",
"inotify",
2021-08-16 11:49:12 +02:00
"kqueue",
"libc",
2022-03-14 00:57:49 +01:00
"mio 0.8.1",
2021-08-16 11:49:12 +02:00
"walkdir",
"winapi",
2021-08-16 11:49:12 +02:00
]
[[package]]
name = "notify-rust"
2021-12-23 14:35:26 +01:00
version = "4.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "ca6ebab865e67efdd7182a88d76cadbdd2a8d02d1c7a4e16bb7c234016a12cac"
dependencies = [
"mac-notification-sys",
"serde",
"winrt-notification",
"zbus",
"zvariant",
"zvariant_derive",
]
2021-08-16 11:49:12 +02:00
[[package]]
name = "ntapi"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
dependencies = [
"winapi",
2021-08-16 11:49:12 +02:00
]
[[package]]
name = "num-integer"
version = "0.1.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-traits"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
dependencies = [
"autocfg",
]
2021-08-16 11:49:12 +02:00
[[package]]
name = "num_cpus"
2021-12-23 14:35:26 +01:00
version = "1.13.1"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
2021-08-16 11:49:12 +02:00
dependencies = [
"hermit-abi",
"libc",
]
[[package]]
name = "objc"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
dependencies = [
"malloc_buf",
]
[[package]]
name = "objc-foundation"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9"
dependencies = [
"block",
"objc",
"objc_id",
]
[[package]]
name = "objc_id"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
dependencies = [
"objc",
]
[[package]]
name = "object"
2021-12-23 14:35:26 +01:00
version = "0.27.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "67ac1d3f9a1d3616fd9a60c8d74296f22406a238b6a72f5cc1e6f314df4ffbf9"
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
2021-12-23 14:35:26 +01:00
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "da32515d9f6e6e489d7bc9d84c71b060db7247dc035bbe44eac88cf87486d8d5"
2021-08-22 16:37:13 +02:00
[[package]]
name = "owo-colors"
version = "3.2.0"
2021-08-22 16:37:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "20448fd678ec04e6ea15bbe0476874af65e98a01515d667aa49f1434dc44ebf4"
2021-08-22 16:37:13 +02:00
[[package]]
name = "parking"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
2021-08-16 11:49:12 +02:00
[[package]]
name = "parking_lot"
2021-09-28 14:47:18 +02:00
version = "0.11.2"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-28 14:47:18 +02:00
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
2021-08-16 11:49:12 +02:00
dependencies = [
"instant",
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2021-09-28 14:47:18 +02:00
version = "0.8.5"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-28 14:47:18 +02:00
checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
2021-08-16 11:49:12 +02:00
dependencies = [
"cfg-if 1.0.0",
"instant",
"libc",
2021-09-28 14:47:18 +02:00
"redox_syscall 0.2.10",
2021-08-16 11:49:12 +02:00
"smallvec",
"winapi",
2021-08-16 11:49:12 +02:00
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "percent-encoding"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
[[package]]
name = "petgraph"
2021-12-23 14:28:21 +01:00
version = "0.6.0"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:28:21 +01:00
checksum = "4a13a2fa9d0b63e5f22328828741e523766fff0ee9e779316902290dff3f824f"
2021-09-29 12:38:02 +02:00
dependencies = [
"fixedbitset",
"indexmap",
]
[[package]]
name = "phf"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
dependencies = [
"phf_shared",
]
[[package]]
name = "phf_codegen"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
dependencies = [
"phf_generator",
"phf_shared",
]
[[package]]
name = "phf_generator"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
dependencies = [
"phf_shared",
2021-09-29 12:38:02 +02:00
"rand 0.7.3",
]
[[package]]
name = "phf_shared"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
dependencies = [
"siphasher",
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "pin-project"
2022-01-18 10:14:34 +01:00
version = "1.0.10"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "58ad3879ad3baf4e44784bc6a718a8698867bb991f8ce24d1bcbe2cfb4c3a75e"
2021-09-29 12:38:02 +02:00
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2022-01-18 10:14:34 +01:00
version = "1.0.10"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "744b6f092ba29c3650faf274db506afd39944f48420f6c86b17cfe0ee1cb36bb"
2021-09-29 12:38:02 +02:00
dependencies = [
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
"syn",
2021-09-29 12:38:02 +02:00
]
[[package]]
name = "pin-project-lite"
2022-01-18 10:14:34 +01:00
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "e280fbe77cc62c91527259e9442153f4688736748d24660126286329742b4c6c"
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pkg-config"
2021-12-23 14:35:26 +01:00
version = "0.3.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "58893f751c9b0412871a09abd62ecd2a00298c6c83befa223ef98c52aef40cbe"
[[package]]
name = "polling"
2021-12-23 14:35:26 +01:00
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "685404d509889fade3e86fe3a5803bca2ec09b0c0778d5ada6ec8bf7a8de5259"
dependencies = [
"cfg-if 1.0.0",
"libc",
"log",
"wepoll-ffi",
"winapi",
]
[[package]]
name = "ppv-lite86"
2022-01-18 10:14:34 +01:00
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
2021-05-10 13:02:31 +02:00
[[package]]
name = "predicates"
2022-01-18 10:14:34 +01:00
version = "2.1.1"
2021-05-10 13:02:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "a5aab5be6e4732b473071984b3164dbbfb7a3674d30ea5ff44410b6bcd960c3c"
2021-05-10 13:02:31 +02:00
dependencies = [
2021-07-10 10:07:59 +02:00
"difflib",
"itertools",
2021-05-10 13:02:31 +02:00
"predicates-core",
]
[[package]]
name = "predicates-core"
2022-01-18 10:14:34 +01:00
version = "1.0.3"
2021-05-10 13:02:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "da1c2388b1513e1b605fcec39a95e0a9e8ef088f71443ef37099fa9ae6673fcb"
2021-05-10 13:02:31 +02:00
[[package]]
name = "predicates-tree"
2022-01-18 10:14:34 +01:00
version = "1.0.5"
2021-05-10 13:02:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "4d86de6de25020a36c6d3643a86d9a6a9f552107c0559c60ea03551b5e16c032"
2021-05-10 13:02:31 +02:00
dependencies = [
"predicates-core",
2021-10-16 06:25:21 +02:00
"termtree",
2021-05-10 13:02:31 +02:00
]
[[package]]
name = "proc-macro-crate"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
dependencies = [
"toml",
]
[[package]]
name = "proc-macro-crate"
2021-09-28 14:47:18 +02:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-28 14:47:18 +02:00
checksum = "1ebace6889caf889b4d3f76becee12e90353f2b8c7d875534a71e5742f8f6f83"
dependencies = [
"thiserror",
"toml",
]
2019-10-27 11:29:58 +01:00
[[package]]
name = "proc-macro2"
2022-01-18 10:14:34 +01:00
version = "1.0.36"
2019-10-27 11:29:58 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029"
2019-10-27 11:29:58 +01:00
dependencies = [
2021-10-16 06:25:21 +02:00
"unicode-xid",
2019-10-27 11:29:58 +01:00
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "prost"
2021-12-23 14:28:21 +01:00
version = "0.9.0"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:28:21 +01:00
checksum = "444879275cb4fd84958b1a1d5420d15e6fcf7c235fe47f053c9c2a80aceb6001"
2021-09-29 12:38:02 +02:00
dependencies = [
"bytes",
"prost-derive",
]
[[package]]
name = "prost-build"
2021-12-23 14:28:21 +01:00
version = "0.9.0"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:28:21 +01:00
checksum = "62941722fb675d463659e49c4f3fe1fe792ff24fe5bbaa9c08cd3b98a1c354f5"
2021-09-29 12:38:02 +02:00
dependencies = [
"bytes",
"heck",
"itertools",
2021-12-23 14:28:21 +01:00
"lazy_static",
2021-09-29 12:38:02 +02:00
"log",
"multimap",
"petgraph",
"prost",
"prost-types",
2021-12-23 14:28:21 +01:00
"regex",
2021-09-29 12:38:02 +02:00
"tempfile",
"which",
]
[[package]]
name = "prost-derive"
2021-12-23 14:28:21 +01:00
version = "0.9.0"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:28:21 +01:00
checksum = "f9cc1a3263e07e0bf68e96268f37665207b49560d98739662cdfaae215c720fe"
2021-09-29 12:38:02 +02:00
dependencies = [
"anyhow",
"itertools",
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
"syn",
2021-09-29 12:38:02 +02:00
]
[[package]]
name = "prost-types"
2021-12-23 14:28:21 +01:00
version = "0.9.0"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:28:21 +01:00
checksum = "534b7a0e836e3c482d2693070f982e39e7611da9695d4d1f5a4b186b51faef0a"
2021-09-29 12:38:02 +02:00
dependencies = [
"bytes",
"prost",
]
[[package]]
name = "quote"
2022-01-18 10:14:34 +01:00
version = "1.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "47aa80447ce4daf1717500037052af176af5d38cc3e571d9ec1c7353fc10c87d"
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
]
[[package]]
name = "rand"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
dependencies = [
"getrandom 0.1.16",
"libc",
2021-09-29 12:38:02 +02:00
"rand_chacha 0.2.2",
"rand_core 0.5.1",
"rand_hc 0.2.0",
"rand_pcg",
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "rand"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
dependencies = [
"libc",
"rand_chacha 0.3.1",
"rand_core 0.6.3",
"rand_hc 0.3.1",
]
[[package]]
name = "rand_chacha"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
dependencies = [
"ppv-lite86",
2021-09-29 12:38:02 +02:00
"rand_core 0.5.1",
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core 0.6.3",
]
[[package]]
name = "rand_core"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
dependencies = [
"getrandom 0.1.16",
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "rand_core"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
dependencies = [
2022-01-18 10:14:34 +01:00
"getrandom 0.2.4",
2021-09-29 12:38:02 +02:00
]
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
dependencies = [
2021-09-29 12:38:02 +02:00
"rand_core 0.5.1",
]
[[package]]
name = "rand_hc"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
dependencies = [
"rand_core 0.6.3",
]
[[package]]
name = "rand_pcg"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
dependencies = [
2021-09-29 12:38:02 +02:00
"rand_core 0.5.1",
]
[[package]]
name = "redox_syscall"
version = "0.1.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
2017-01-27 19:13:08 +01:00
[[package]]
name = "redox_syscall"
2021-09-28 14:47:18 +02:00
version = "0.2.10"
2017-01-27 19:13:08 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-28 14:47:18 +02:00
checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
2021-04-10 20:09:48 +02:00
dependencies = [
2021-10-16 06:25:21 +02:00
"bitflags",
]
[[package]]
name = "redox_users"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d"
dependencies = [
"getrandom 0.1.16",
"redox_syscall 0.1.57",
"rust-argon2",
2021-04-10 20:09:48 +02:00
]
2017-01-27 19:13:08 +01:00
[[package]]
name = "redox_users"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64"
dependencies = [
2022-01-18 10:14:34 +01:00
"getrandom 0.2.4",
2021-09-28 14:47:18 +02:00
"redox_syscall 0.2.10",
]
[[package]]
name = "regex"
2021-05-22 10:00:06 +02:00
version = "1.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-22 10:00:06 +02:00
checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
dependencies = [
2021-09-13 09:51:07 +02:00
"aho-corasick",
"memchr",
2021-04-10 19:51:33 +02:00
"regex-syntax",
]
2021-05-10 13:02:31 +02:00
[[package]]
name = "regex-automata"
2021-07-10 10:07:59 +02:00
version = "0.1.10"
2021-05-10 13:02:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-10 10:07:59 +02:00
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
2021-08-16 15:15:17 +02:00
dependencies = [
"regex-syntax",
]
2021-05-10 13:02:31 +02:00
[[package]]
name = "regex-syntax"
2021-05-22 10:00:06 +02:00
version = "0.6.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-22 10:00:06 +02:00
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
2021-09-29 12:38:02 +02:00
[[package]]
name = "remove_dir_all"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
dependencies = [
"winapi",
]
[[package]]
name = "rust-argon2"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb"
dependencies = [
"base64",
"blake2b_simd",
"constant_time_eq",
"crossbeam-utils",
]
[[package]]
name = "rustc-demangle"
2021-09-28 14:47:18 +02:00
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-28 14:47:18 +02:00
checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
2021-05-10 13:02:31 +02:00
[[package]]
name = "ryu"
2021-12-23 14:35:26 +01:00
version = "1.0.9"
2021-05-10 13:02:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
2021-05-10 13:02:31 +02:00
[[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 = "scoped-tls"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
2021-08-16 11:49:12 +02:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2021-05-10 13:02:31 +02:00
[[package]]
name = "serde"
2022-01-18 10:14:34 +01:00
version = "1.0.133"
2021-05-10 13:02:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "97565067517b60e2d1ea8b268e59ce036de907ac523ad83a0475da04e818989a"
2021-05-10 13:02:31 +02:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2022-01-18 10:14:34 +01:00
version = "1.0.133"
2021-05-10 13:02:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "ed201699328568d8d08208fdd080e3ff594e6c422e438b6705905da01005d537"
2021-05-10 13:02:31 +02:00
dependencies = [
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
"syn",
2021-05-10 13:02:31 +02:00
]
[[package]]
name = "serde_json"
2022-01-18 10:14:34 +01:00
version = "1.0.75"
2021-05-10 13:02:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "c059c05b48c5c0067d4b4b2b4f0732dd65feb52daf7e0ea09cd87e7dadc1af79"
2021-05-10 13:02:31 +02:00
dependencies = [
2021-12-23 14:35:26 +01:00
"itoa 1.0.1",
2021-05-10 13:02:31 +02:00
"ryu",
"serde",
]
[[package]]
name = "serde_repr"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "98d0516900518c29efa217c298fa1f4e6c6ffc85ae29fd7f4ee48f176e1a9ed5"
dependencies = [
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
"syn",
]
2021-05-10 13:02:31 +02:00
[[package]]
name = "serde_yaml"
2021-12-23 14:35:26 +01:00
version = "0.8.23"
2021-05-10 13:02:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "a4a521f2940385c165a24ee286aa8599633d162077a54bdcae2a6fd5a7bfa7a0"
2021-05-10 13:02:31 +02:00
dependencies = [
2021-09-28 14:47:18 +02:00
"indexmap",
2021-12-23 14:35:26 +01:00
"ryu",
2021-05-10 13:02:31 +02:00
"serde",
"yaml-rust",
]
[[package]]
name = "sharded-slab"
2021-10-16 06:25:21 +02:00
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-16 06:25:21 +02:00
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
dependencies = [
"lazy_static",
]
2021-08-16 11:49:12 +02:00
[[package]]
name = "signal-hook-registry"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
dependencies = [
"libc",
]
2021-05-10 13:02:31 +02:00
[[package]]
name = "similar"
2022-01-18 10:14:34 +01:00
version = "2.1.0"
2021-05-10 13:02:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "2e24979f63a11545f5f2c60141afe249d4f19f84581ea2138065e400941d83d3"
2021-05-10 13:02:31 +02:00
[[package]]
name = "siphasher"
2022-01-18 10:14:34 +01:00
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "a86232ab60fa71287d7f2ddae4a7073f6b7aac33631c3015abb556f08c6d0a3e"
[[package]]
name = "slab"
2021-10-16 06:25:21 +02:00
version = "0.4.5"
2018-09-09 05:01:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-16 06:25:21 +02:00
checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5"
2018-09-09 05:01:18 +02:00
2021-08-16 11:49:12 +02:00
[[package]]
name = "smallvec"
2022-01-18 10:14:34 +01:00
version = "1.8.0"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
2021-08-16 11:49:12 +02:00
[[package]]
name = "smawk"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043"
[[package]]
name = "socket2"
2021-09-28 14:47:18 +02:00
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-28 14:47:18 +02:00
checksum = "5dc90fe6c7be1a323296982db1836d1ea9e47b6839496dde9a541bc496df3516"
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
[[package]]
name = "strum"
2021-12-23 14:35:26 +01:00
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "f7ac893c7d471c8a21f31cfe213ec4f6d9afeed25537c772e08ef3f005f8729e"
2021-10-16 06:25:21 +02:00
dependencies = [
"strum_macros",
]
[[package]]
name = "strum_macros"
2021-12-23 14:35:26 +01:00
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "339f799d8b549e3744c7ac7feb216383e4005d94bdb22561b3ab8f3b808ae9fb"
dependencies = [
2021-10-16 06:25:21 +02:00
"heck",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "supports-color"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4872ced36b91d47bae8a214a683fe54e7078875b399dfa251df346c9b547d1f9"
dependencies = [
"atty",
"is_ci",
]
[[package]]
name = "supports-hyperlinks"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "590b34f7c5f01ecc9d78dba4b3f445f31df750a67621cf31626f3b7441ce6406"
dependencies = [
"atty",
]
[[package]]
name = "supports-unicode"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8b945e45b417b125a8ec51f1b7df2f8df7920367700d1f98aedd21e5735f8b2"
dependencies = [
"atty",
]
[[package]]
name = "syn"
2022-01-18 10:14:34 +01:00
version = "1.0.85"
2019-10-27 11:29:58 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "a684ac3dcd8913827e18cd09a68384ee66c1de24157e3c556c9ab16d85695fb7"
2019-10-27 11:29:58 +01:00
dependencies = [
2021-04-10 19:51:33 +02:00
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
"unicode-xid",
2019-10-27 11:29:58 +01:00
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "tempfile"
2022-01-18 10:14:34 +01:00
version = "3.3.0"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
2021-09-29 12:38:02 +02:00
dependencies = [
"cfg-if 1.0.0",
2022-01-18 10:14:34 +01:00
"fastrand",
2021-09-29 12:38:02 +02:00
"libc",
"redox_syscall 0.2.10",
"remove_dir_all",
"winapi",
]
[[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",
"winapi",
]
2021-05-10 13:02:31 +02:00
[[package]]
name = "terminal_size"
2021-05-22 10:00:06 +02:00
version = "0.1.17"
2021-05-10 13:02:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-22 10:00:06 +02:00
checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
2021-05-10 13:02:31 +02:00
dependencies = [
"libc",
"winapi",
2021-05-10 13:02:31 +02:00
]
[[package]]
name = "terminfo"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76971977e6121664ec1b960d1313aacfa75642adc93b9d4d53b247bd4cb1747e"
dependencies = [
"dirs 2.0.2",
"fnv",
2021-09-14 10:09:57 +02:00
"nom 5.1.2",
"phf",
"phf_codegen",
]
2021-10-16 06:25:21 +02:00
[[package]]
name = "termtree"
2022-01-18 10:14:34 +01:00
version = "0.2.4"
2021-10-16 06:25:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "507e9898683b6c43a9aa55b64259b721b52ba226e0f3779137e50ad114a4c90b"
2021-10-16 06:25:21 +02:00
[[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 = "textwrap"
version = "0.14.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0066c8d12af8b5acd21e00547c3797fde4e8677254a7ee429176ccebbe93dd80"
dependencies = [
"smawk",
"unicode-linebreak",
"unicode-width",
]
[[package]]
name = "thiserror"
2021-10-16 06:25:21 +02:00
version = "1.0.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-16 06:25:21 +02:00
checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2021-10-16 06:25:21 +02:00
version = "1.0.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-16 06:25:21 +02:00
checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"
dependencies = [
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
"syn",
]
[[package]]
name = "thread_local"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8018d24e04c95ac8790716a5987d0fec4f8b27249ffa0f7d33f1369bdfb88cbd"
dependencies = [
"once_cell",
]
[[package]]
name = "time"
version = "0.1.43"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "tinyvec"
2021-12-23 14:35:26 +01:00
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "2c1c1d5a42b6245520c249549ec267180beaffcc0615401ac8e31853d4b6d8d2"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2021-08-16 11:49:12 +02:00
[[package]]
name = "tokio"
2021-12-23 14:28:21 +01:00
version = "1.15.0"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:28:21 +01:00
checksum = "fbbf1c778ec206785635ce8ad57fe52b3009ae9e0c9f574a728f3049d3e55838"
2021-08-16 11:49:12 +02:00
dependencies = [
"bytes",
"libc",
"memchr",
2022-03-14 00:57:49 +01:00
"mio 0.7.14",
2021-08-16 11:49:12 +02:00
"num_cpus",
"once_cell",
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
"tokio-macros",
2021-09-29 12:38:02 +02:00
"tracing",
"winapi",
2021-08-16 11:49:12 +02:00
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "tokio-io-timeout"
2022-01-18 10:14:34 +01:00
version = "1.2.0"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
2021-09-29 12:38:02 +02:00
dependencies = [
"pin-project-lite",
"tokio",
]
2021-08-16 11:49:12 +02:00
[[package]]
name = "tokio-macros"
2021-12-23 14:28:21 +01:00
version = "1.7.0"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:28:21 +01:00
checksum = "b557f72f448c511a979e2564e55d74e6c4432fc96ff4f6241bc6bded342643b7"
2021-08-16 11:49:12 +02:00
dependencies = [
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
"syn",
2021-08-16 11:49:12 +02:00
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "tokio-stream"
2021-12-23 14:35:26 +01:00
version = "0.1.8"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "50145484efff8818b5ccd256697f36863f587da82cf8b409c53adf1e840798e3"
2021-09-29 12:38:02 +02:00
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
]
[[package]]
name = "tokio-util"
2021-12-23 14:35:26 +01:00
version = "0.6.9"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "9e99e1983e5d376cd8eb4b66604d2e99e79f5bd988c3055891dcd8c9e2604cc0"
2021-09-29 12:38:02 +02:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"log",
"pin-project-lite",
"tokio",
]
[[package]]
name = "toml"
version = "0.5.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa"
dependencies = [
"serde",
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "tonic"
2021-12-23 14:28:21 +01:00
version = "0.6.2"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:28:21 +01:00
checksum = "ff08f4649d10a70ffa3522ca559031285d8e421d727ac85c60825761818f5d0a"
2021-09-29 12:38:02 +02:00
dependencies = [
"async-stream",
"async-trait",
"base64",
"bytes",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"hyper",
"hyper-timeout",
"percent-encoding",
"pin-project",
"prost",
"prost-derive",
"tokio",
"tokio-stream",
"tokio-util",
"tower",
"tower-layer",
"tower-service",
"tracing",
"tracing-futures",
]
[[package]]
name = "tonic-build"
2021-12-23 14:28:21 +01:00
version = "0.6.2"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:28:21 +01:00
checksum = "9403f1bafde247186684b230dc6f38b5cd514584e8bec1dd32514be4745fa757"
2021-09-29 12:38:02 +02:00
dependencies = [
"proc-macro2",
"prost-build",
2021-10-16 06:25:21 +02:00
"quote",
"syn",
2021-09-29 12:38:02 +02:00
]
[[package]]
name = "tower"
2021-12-23 14:35:26 +01:00
version = "0.4.11"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "5651b5f6860a99bd1adb59dbfe1db8beb433e73709d9032b413a77e2fb7c066a"
2021-09-29 12:38:02 +02:00
dependencies = [
"futures-core",
"futures-util",
"indexmap",
"pin-project",
2021-10-16 06:25:21 +02:00
"pin-project-lite",
2021-09-29 12:38:02 +02:00
"rand 0.8.4",
"slab",
"tokio",
"tokio-stream",
"tokio-util",
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "tower-layer"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "343bc9466d3fe6b0f960ef45960509f84480bf4fd96f92901afe7ff3df9d3a62"
[[package]]
name = "tower-service"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
[[package]]
name = "tracing"
2021-10-16 06:25:21 +02:00
version = "0.1.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-16 06:25:21 +02:00
checksum = "375a639232caf30edfc78e8d89b2d4c375515393e7af7e16f01cd96917fb2105"
dependencies = [
"cfg-if 1.0.0",
2021-09-29 12:38:02 +02:00
"log",
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-attributes"
2021-10-16 06:25:21 +02:00
version = "0.1.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-16 06:25:21 +02:00
checksum = "f4f480b8f81512e825f337ad51e94c1eb5d3bbdf2b363dcd01e2b19a9ffe3f8e"
dependencies = [
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
"syn",
]
[[package]]
name = "tracing-core"
2021-10-16 06:25:21 +02:00
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-16 06:25:21 +02:00
checksum = "1f4ed65637b8390770814083d20756f87bfa2c21bf2f110babdc5438351746e4"
dependencies = [
"lazy_static",
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "tracing-futures"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
dependencies = [
"pin-project",
"tracing",
]
2021-08-16 15:15:17 +02:00
[[package]]
name = "tracing-log"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a6923477a48e41c1951f1999ef8bb5a3023eb723ceadafe78ffb65dc366761e3"
dependencies = [
"lazy_static",
"log",
"tracing-core",
]
[[package]]
name = "tracing-subscriber"
2022-01-18 10:14:34 +01:00
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "77be66445c4eeebb934a7340f227bfe7b338173d3f8c00a60a5a58005c9faecf"
dependencies = [
2021-08-16 15:15:17 +02:00
"ansi_term",
"lazy_static",
"matchers",
"regex",
"sharded-slab",
2021-08-16 15:15:17 +02:00
"smallvec",
"thread_local",
2021-08-16 15:15:17 +02:00
"tracing",
"tracing-core",
2021-08-16 15:15:17 +02:00
"tracing-log",
2021-12-23 14:28:21 +01:00
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "try-lock"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
[[package]]
name = "unicase"
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
dependencies = [
"version_check",
]
[[package]]
name = "unicode-bidi"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a01404663e3db436ed2746d9fefef640d868edae3cceb81c3b8d5732fda678f"
[[package]]
name = "unicode-linebreak"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3a52dcaab0c48d931f7cc8ef826fa51690a08e1ea55117ef26f89864f532383f"
dependencies = [
"regex",
]
[[package]]
name = "unicode-normalization"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
dependencies = [
"tinyvec",
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "unicode-segmentation"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b"
[[package]]
name = "unicode-width"
2021-09-28 14:47:18 +02:00
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-28 14:47:18 +02:00
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
2019-10-27 11:29:58 +01:00
[[package]]
name = "unicode-xid"
2021-05-22 10:00:06 +02:00
version = "0.2.2"
2019-10-27 11:29:58 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-22 10:00:06 +02:00
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
2016-10-22 21:37:03 +02:00
[[package]]
name = "url"
version = "2.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
dependencies = [
"form_urlencoded",
"idna",
"matches",
"percent-encoding",
]
2021-05-10 13:02:31 +02:00
[[package]]
name = "uuid"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
[[package]]
name = "vcpkg"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
[[package]]
name = "version_check"
2022-01-18 10:14:34 +01:00
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[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",
]
2021-05-10 13:02:31 +02:00
[[package]]
name = "wait-timeout"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
dependencies = [
"libc",
]
[[package]]
name = "waker-fn"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
[[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",
2021-04-10 19:51:33 +02:00
"winapi-util",
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
"try-lock",
]
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
[[package]]
name = "wasi"
version = "0.10.2+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
2022-03-14 00:57:49 +01:00
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "watchexec"
2022-03-07 08:59:47 +01:00
version = "2.0.0-pre.11"
2021-08-16 11:49:12 +02:00
dependencies = [
2021-08-22 14:28:20 +02:00
"async-recursion",
"async-stream",
"atomic-take",
2021-08-22 14:28:20 +02:00
"clearscreen",
2021-08-16 17:09:22 +02:00
"command-group",
2021-08-16 15:15:17 +02:00
"dunce",
2021-08-18 15:12:50 +02:00
"futures",
"git2",
2021-09-14 10:09:57 +02:00
"globset",
2021-10-12 14:49:38 +02:00
"ignore",
"libc",
2021-08-16 11:49:12 +02:00
"miette",
2021-12-23 14:35:26 +01:00
"nom 7.1.0",
"notify",
"once_cell",
2021-09-13 09:51:07 +02:00
"regex",
2021-08-16 11:49:12 +02:00
"thiserror",
"tokio",
2021-10-10 12:35:11 +02:00
"tokio-stream",
2021-08-16 11:49:12 +02:00
"tracing",
2022-01-30 12:45:47 +01:00
"tracing-subscriber",
"unicase",
2021-08-16 11:49:12 +02:00
]
[[package]]
name = "watchexec-cli"
2022-03-07 09:41:30 +01:00
version = "1.18.7"
dependencies = [
2021-05-10 13:02:31 +02:00
"assert_cmd",
"clap",
2021-09-29 12:38:02 +02:00
"console-subscriber",
"dunce",
"embed-resource",
2021-12-29 06:39:31 +01:00
"futures",
2021-05-10 13:02:31 +02:00
"insta",
"miette",
"mimalloc",
"notify-rust",
"tokio",
"tracing",
2021-12-23 14:35:26 +01:00
"tracing-subscriber",
2022-01-31 07:15:20 +01:00
"watchexec",
]
[[package]]
name = "wepoll-ffi"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb"
dependencies = [
"cc",
]
[[package]]
name = "which"
2021-08-16 11:49:12 +02:00
version = "4.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-16 11:49:12 +02:00
checksum = "ea187a8ef279bc014ec368c27a920da2024d2a711109bfbe3440585d5cf27ad9"
dependencies = [
"either",
2021-08-16 11:49:12 +02:00
"lazy_static",
"libc",
]
[[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-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 = [
"winapi",
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]]
2021-10-16 06:25:21 +02:00
name = "windows"
2021-12-23 14:35:26 +01:00
version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "a9f39345ae0c8ab072c0ac7fe8a8b411636aa34f89be19ddd0d9226544f13944"
dependencies = [
2021-12-23 14:35:26 +01:00
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_msvc",
]
[[package]]
2021-12-23 14:35:26 +01:00
name = "windows_i686_gnu"
version = "0.24.0"
2021-10-16 06:25:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "c0866510a3eca9aed73a077490bbbf03e5eaac4e1fd70849d89539e5830501fd"
2021-10-16 06:25:21 +02:00
[[package]]
2021-12-23 14:35:26 +01:00
name = "windows_i686_msvc"
version = "0.24.0"
2021-10-16 06:25:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "bf0ffed56b7e9369a29078d2ab3aaeceea48eb58999d2cff3aa2494a275b95c6"
2021-10-16 06:25:21 +02:00
[[package]]
2021-12-23 14:35:26 +01:00
name = "windows_x86_64_gnu"
version = "0.24.0"
2021-10-16 06:25:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "384a173630588044205a2993b6864a2f56e5a8c1e7668c07b93ec18cf4888dc4"
2021-10-16 06:25:21 +02:00
[[package]]
2021-12-23 14:35:26 +01:00
name = "windows_x86_64_msvc"
version = "0.24.0"
2021-10-16 06:25:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "9bd8f062d8ca5446358159d79a90be12c543b3a965c847c8f3eedf14b321d399"
2021-10-16 06:25:21 +02:00
[[package]]
name = "winreg"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-16 06:25:21 +02:00
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
dependencies = [
"winapi",
]
[[package]]
name = "winrt-notification"
2022-01-18 10:14:34 +01:00
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 10:14:34 +01:00
checksum = "007a0353840b23e0c6dc73e5b962ff58ed7f6bc9ceff3ce7fe6fbad8d496edf4"
dependencies = [
"strum",
2021-10-16 06:25:21 +02:00
"windows",
"xml-rs",
]
[[package]]
name = "xml-rs"
2021-10-16 06:25:21 +02:00
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-16 06:25:21 +02:00
checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3"
2021-05-10 13:02:31 +02:00
[[package]]
name = "yaml-rust"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
dependencies = [
"linked-hash-map",
]
[[package]]
name = "zbus"
2021-10-16 08:08:35 +02:00
version = "1.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-16 08:08:35 +02:00
checksum = "e5983c3d035549ab80db67c844ec83ed271f7c1f2546fd9577c594d34c1b6c85"
dependencies = [
"async-io",
"byteorder",
"derivative",
"enumflags2",
"fastrand",
"futures",
"nb-connect",
2021-10-16 08:08:35 +02:00
"nix 0.20.2",
"once_cell",
"polling",
"scoped-tls",
"serde",
"serde_repr",
"zbus_macros",
"zvariant",
]
[[package]]
name = "zbus_macros"
2021-10-16 08:08:35 +02:00
version = "1.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-16 08:08:35 +02:00
checksum = "bce54ac7b2150a2fa21ad5842a7470ce2288158d7da1f9bfda8ad455a1c59a97"
dependencies = [
"proc-macro-crate 0.1.5",
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
"syn",
]
[[package]]
name = "zvariant"
2021-12-23 14:35:26 +01:00
version = "2.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "a68c7b55f2074489b7e8e07d2d0a6ee6b4f233867a653c664d8020ba53692525"
dependencies = [
"byteorder",
"enumflags2",
2021-10-16 06:25:21 +02:00
"libc",
"serde",
"static_assertions",
"zvariant_derive",
]
[[package]]
name = "zvariant_derive"
2021-12-23 14:35:26 +01:00
version = "2.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-23 14:35:26 +01:00
checksum = "e4ca5e22593eb4212382d60d26350065bf2a02c34b85bc850474a74b589a3de9"
dependencies = [
2021-09-28 14:47:18 +02:00
"proc-macro-crate 1.1.0",
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
"syn",
]