watchexec/Cargo.lock

4297 lines
102 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"
2023-08-30 05:43:57 +02:00
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
dependencies = [
"gimli",
]
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
[[package]]
name = "ahash"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
dependencies = [
"cfg-if",
"getrandom",
"once_cell",
"version_check",
]
2021-08-16 15:15:17 +02:00
[[package]]
2023-03-03 16:21:38 +01:00
name = "aho-corasick"
2023-08-30 05:43:57 +02:00
version = "1.0.5"
2021-08-16 15:15:17 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "0c378d78423fdad8089616f827526ee33c19f2fddbd5de1629152c9593ba4783"
2021-08-16 15:15:17 +02:00
dependencies = [
2023-03-03 16:21:38 +01:00
"memchr",
2021-08-16 15:15:17 +02:00
]
2023-05-14 07:17:14 +02:00
[[package]]
2023-08-30 05:43:57 +02:00
name = "android-tzdata"
version = "0.1.1"
2023-05-14 07:17:14 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
2023-05-14 07:17:14 +02:00
[[package]]
name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
"libc",
]
2023-03-18 09:32:24 +01:00
[[package]]
name = "anstream"
2023-08-30 05:43:57 +02:00
version = "0.5.0"
2023-03-18 09:32:24 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "b1f58811cfac344940f1a400b6e6231ce35171f614f26439e80f8c1465c5cc0c"
2023-03-18 09:32:24 +01:00
dependencies = [
"anstyle",
"anstyle-parse",
2023-05-14 07:17:14 +02:00
"anstyle-query",
2023-03-18 09:32:24 +01:00
"anstyle-wincon",
2023-05-14 07:17:14 +02:00
"colorchoice",
2023-03-18 09:32:24 +01:00
"utf8parse",
]
[[package]]
name = "anstyle"
2023-08-30 05:43:57 +02:00
version = "1.0.2"
2023-03-18 09:32:24 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "15c4c2c83f81532e5845a733998b6971faca23490340a418e9b72a3ec9de12ea"
2023-03-18 09:32:24 +01:00
[[package]]
name = "anstyle-parse"
2023-08-30 05:43:57 +02:00
version = "0.2.1"
2023-03-18 09:32:24 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333"
2023-03-18 09:32:24 +01:00
dependencies = [
"utf8parse",
]
2023-05-14 07:17:14 +02:00
[[package]]
name = "anstyle-query"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
dependencies = [
"windows-sys 0.48.0",
]
2023-03-18 09:32:24 +01:00
[[package]]
name = "anstyle-wincon"
2023-08-30 05:43:57 +02:00
version = "2.1.0"
2023-03-18 09:32:24 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "58f54d10c6dfa51283a066ceab3ec1ab78d13fae00aa49243a45e4571fb79dfd"
2023-03-18 09:32:24 +01:00
dependencies = [
"anstyle",
2023-05-14 07:17:14 +02:00
"windows-sys 0.48.0",
2023-03-18 09:32:24 +01:00
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "anyhow"
2023-08-30 05:43:57 +02:00
version = "1.0.75"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
2021-05-10 13:02:31 +02:00
[[package]]
name = "arc-swap"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6"
[[package]]
name = "argfile"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "265f5108974489a217d5098cd81666b60480c8dd67302acbbe7cbdd8aa09d638"
dependencies = [
"os_str_bytes",
]
2022-03-14 00:58:02 +01:00
[[package]]
name = "async-broadcast"
2023-03-03 16:21:38 +01:00
version = "0.5.1"
2022-03-14 00:58:02 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b"
2022-03-14 00:58:02 +01:00
dependencies = [
"event-listener",
"futures-core",
]
2023-03-18 09:32:24 +01:00
[[package]]
name = "async-channel"
2023-08-30 05:43:57 +02:00
version = "1.9.0"
2023-03-18 09:32:24 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
2023-03-18 09:32:24 +01:00
dependencies = [
"concurrent-queue",
"event-listener",
"futures-core",
]
2022-03-14 00:58:02 +01:00
[[package]]
name = "async-executor"
2023-05-14 07:17:14 +02:00
version = "1.5.1"
2022-03-14 00:58:02 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb"
2022-03-14 00:58:02 +01:00
dependencies = [
2023-03-03 16:21:38 +01:00
"async-lock",
2022-03-14 00:58:02 +01:00
"async-task",
"concurrent-queue",
"fastrand 1.9.0",
2022-03-14 00:58:02 +01:00
"futures-lite",
"slab",
]
2023-03-18 09:32:24 +01:00
[[package]]
name = "async-fs"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06"
dependencies = [
"async-lock",
"autocfg",
"blocking",
"futures-lite",
]
[[package]]
name = "async-io"
2023-05-14 07:17:14 +02:00
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
dependencies = [
2023-03-03 16:21:38 +01:00
"async-lock",
2022-09-02 11:12:47 +02:00
"autocfg",
2023-05-14 07:17:14 +02:00
"cfg-if",
"concurrent-queue",
"futures-lite",
"log",
"parking",
"polling",
2023-08-30 05:43:57 +02:00
"rustix 0.37.23",
"slab",
2023-08-30 05:43:57 +02:00
"socket2 0.4.9",
"waker-fn",
]
2022-03-14 00:58:02 +01:00
[[package]]
name = "async-lock"
2023-08-30 05:43:57 +02:00
version = "2.8.0"
2022-03-14 00:58:02 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b"
2022-03-14 00:58:02 +01:00
dependencies = [
"event-listener",
]
[[package]]
name = "async-priority-channel"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c21678992e1b21bebfe2bc53ab5f5f68c106eddab31b24e0bb06e9b715a86640"
dependencies = [
"event-listener",
]
2023-08-30 05:43:57 +02:00
[[package]]
name = "async-process"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a9d28b1d97e08915212e2e45310d47854eafa69600756fc735fb788f75199c9"
dependencies = [
"async-io",
"async-lock",
"autocfg",
"blocking",
"cfg-if",
"event-listener",
"futures-lite",
"rustix 0.37.23",
"signal-hook",
"windows-sys 0.48.0",
]
2022-03-14 00:58:02 +01:00
[[package]]
name = "async-recursion"
2023-03-22 02:47:26 +01:00
version = "1.0.4"
2021-08-22 14:28:20 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 02:47:26 +01:00
checksum = "0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba"
2021-08-22 14:28:20 +02:00
dependencies = [
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
2023-08-30 05:43:57 +02:00
"syn 2.0.29",
2021-09-29 12:38:02 +02:00
]
2022-03-14 00:58:02 +01:00
[[package]]
name = "async-task"
2023-05-14 07:17:14 +02:00
version = "4.4.0"
2022-03-14 00:58:02 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae"
2022-03-14 00:58:02 +01:00
2021-08-16 17:09:22 +02:00
[[package]]
name = "async-trait"
2023-08-30 05:43:57 +02:00
version = "0.1.73"
2021-08-16 17:09:22 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0"
2021-08-16 17:09:22 +02:00
dependencies = [
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
2023-08-30 05:43:57 +02:00
"syn 2.0.29",
2021-08-16 17:09:22 +02:00
]
[[package]]
name = "atomic-take"
2023-03-03 16:21:38 +01:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "a8ab6b55fe97976e46f91ddbed8d147d966475dc29b2032757ba47e02376fbc3"
2021-08-22 16:37:13 +02:00
[[package]]
2023-03-18 09:32:24 +01:00
name = "atomic-waker"
2023-05-14 07:17:14 +02:00
version = "1.1.1"
2021-08-22 16:37:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3"
2021-08-22 16:37:13 +02:00
[[package]]
name = "autocfg"
2022-03-14 00:58:02 +01:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-14 00:58:02 +01:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "axum"
2023-08-30 05:43:57 +02:00
version = "0.6.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf"
dependencies = [
"async-trait",
"axum-core",
2023-03-22 02:47:26 +01:00
"bitflags 1.3.2",
"bytes",
"futures-util",
"http",
"http-body",
"hyper",
"itoa",
"matchit",
"memchr",
"mime",
"percent-encoding",
"pin-project-lite",
2023-03-03 16:21:38 +01:00
"rustversion",
"serde",
"sync_wrapper",
"tower",
"tower-layer",
"tower-service",
]
[[package]]
name = "axum-core"
2023-05-14 07:17:14 +02:00
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c"
dependencies = [
"async-trait",
"bytes",
"futures-util",
"http",
"http-body",
"mime",
2023-03-03 16:21:38 +01:00
"rustversion",
"tower-layer",
"tower-service",
]
[[package]]
name = "backtrace"
2023-08-30 05:43:57 +02:00
version = "0.3.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
dependencies = [
"addr2line",
"cc",
2023-03-03 16:21:38 +01:00
"cfg-if",
"libc",
2023-08-30 05:43:57 +02:00
"miniz_oxide",
"object",
"rustc-demangle",
]
2023-05-14 07:17:14 +02:00
[[package]]
name = "backtrace-ext"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "537beee3be4a18fb023b570f80e3ae28003db9167a751266b259926e25539d50"
dependencies = [
"backtrace",
]
[[package]]
name = "base64"
2023-03-03 16:21:38 +01:00
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
2023-05-14 07:17:14 +02:00
[[package]]
name = "base64"
2023-08-30 05:43:57 +02:00
version = "0.21.3"
2023-05-14 07:17:14 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "414dcefbc63d77c526a76b3afcf6fbb9b5e2791c19c3aa2297733208750c6e53"
2023-05-14 07:17:14 +02:00
[[package]]
name = "bitflags"
2022-03-14 00:58:02 +01:00
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-14 00:58:02 +01:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2019-10-28 00:16:05 +01:00
2023-03-22 02:47:26 +01:00
[[package]]
name = "bitflags"
2023-08-30 05:43:57 +02:00
version = "2.4.0"
2023-03-22 02:47:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635"
2023-03-22 02:47:26 +01:00
[[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]]
2023-03-03 16:21:38 +01:00
name = "block-buffer"
2023-03-18 09:32:24 +01:00
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-18 09:32:24 +01:00
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
2019-10-28 00:16:05 +01:00
dependencies = [
2023-03-03 16:21:38 +01:00
"generic-array",
]
2023-03-18 09:32:24 +01:00
[[package]]
name = "blocking"
2023-05-14 07:17:14 +02:00
version = "1.3.1"
2023-03-18 09:32:24 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65"
2023-03-18 09:32:24 +01:00
dependencies = [
"async-channel",
"async-lock",
"async-task",
"atomic-waker",
"fastrand 1.9.0",
2023-03-18 09:32:24 +01:00
"futures-lite",
2023-05-14 07:17:14 +02:00
"log",
2023-03-18 09:32:24 +01:00
]
[[package]]
name = "bosion"
version = "1.0.1"
dependencies = [
"gix",
2023-08-30 05:43:57 +02:00
"time 0.3.28",
]
[[package]]
name = "bstr"
2023-08-30 05:43:57 +02:00
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "8042c26c77e5bd6897a7358e0abb3ec412ed126d826988135653fc669263899d"
dependencies = [
"memchr",
2023-08-30 05:43:57 +02:00
"regex-automata 0.3.7",
"serde",
]
[[package]]
name = "btoi"
2023-03-03 16:21:38 +01:00
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "9dd6407f73a9b8b6162d8a2ef999fe6afd7cc15902ebf42c5cd296addf17e0ad"
dependencies = [
"num-traits",
2019-10-28 00:16:05 +01:00
]
[[package]]
name = "bumpalo"
2023-08-30 05:43:57 +02:00
version = "3.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
[[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"
2023-03-03 16:21:38 +01:00
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
[[package]]
name = "cc"
2023-08-30 05:43:57 +02:00
version = "1.0.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
dependencies = [
"jobserver",
2023-08-30 05:43:57 +02:00
"libc",
]
2021-04-10 19:51:33 +02:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chrono"
2023-08-30 05:43:57 +02:00
version = "0.4.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "f56b4c72906975ca04becb8a30e102dfecddd0c06181e3e95ddc444be28881f8"
dependencies = [
2023-08-30 05:43:57 +02:00
"android-tzdata",
"iana-time-zone",
"js-sys",
"num-traits",
"time 0.1.45",
"wasm-bindgen",
2023-08-30 05:43:57 +02:00
"windows-targets 0.48.5",
]
[[package]]
name = "clap"
2023-08-30 05:43:57 +02:00
version = "4.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "7c8d502cbaec4595d2e7d5f61e318f05417bd2b66fdc3809498f0d3fdf0bea27"
dependencies = [
2023-05-14 07:17:14 +02:00
"clap_builder",
"clap_derive",
2023-05-14 07:17:14 +02:00
"once_cell",
]
[[package]]
name = "clap_builder"
2023-08-30 05:43:57 +02:00
version = "4.4.1"
2023-05-14 07:17:14 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "5891c7bc0edb3e1c2204fc5e94009affabeb1821c9e5fdc3959536c5c0bb984d"
2023-05-14 07:17:14 +02:00
dependencies = [
"anstream",
"anstyle",
"clap_lex",
"once_cell",
"strsim",
2023-05-14 07:17:14 +02:00
"terminal_size 0.2.6",
]
[[package]]
name = "clap_complete"
2023-08-30 05:43:57 +02:00
version = "4.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "586a385f7ef2f8b4d86bddaa0c094794e7ccbfe5ffef1f434fe928143fc783a5"
dependencies = [
"clap",
]
[[package]]
name = "clap_complete_nushell"
2023-08-30 05:43:57 +02:00
version = "4.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "787093c7ce9278e9f7ae55cbdba76a2d6610fe809e54db4c6d61a65bc0258d15"
dependencies = [
"clap",
"clap_complete",
]
[[package]]
name = "clap_derive"
2023-08-30 05:43:57 +02:00
version = "4.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "c9fd1a5729c4548118d7d70ff234a44868d00489a4b6597b0b020918a0e91a1a"
dependencies = [
2023-08-30 05:43:57 +02:00
"heck",
"proc-macro2",
"quote",
2023-08-30 05:43:57 +02:00
"syn 2.0.29",
]
[[package]]
name = "clap_lex"
2023-08-30 05:43:57 +02:00
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961"
[[package]]
name = "clap_mangen"
2023-08-30 05:43:57 +02:00
version = "0.2.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "cf8e5f34d85d9e0bbe2491d100a7a7c1007bb2467b518080bfe311e8947197a9"
dependencies = [
"clap",
"roff",
]
[[package]]
name = "clearscreen"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72f3f22f1a586604e62efd23f78218f3ccdecf7a33c4500db2d37d85a24fe994"
dependencies = [
2023-03-18 09:32:24 +01:00
"nix",
"terminfo",
"thiserror",
"which",
"winapi",
]
[[package]]
name = "clru"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8191fa7302e03607ff0e237d4246cc043ff5b3cb9409d995172ba3bea16b807"
[[package]]
2023-05-14 07:17:14 +02:00
name = "colorchoice"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
[[package]]
name = "command-group"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5080df6b0f0ecb76cab30808f00d937ba725cebe266a3da8cd89dff92f2a9916"
dependencies = [
2021-08-16 17:09:22 +02:00
"async-trait",
2023-03-18 09:32:24 +01:00
"nix",
2021-08-16 17:09:22 +02:00
"tokio",
"winapi",
]
[[package]]
name = "concurrent-queue"
2023-05-14 07:17:14 +02:00
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c"
dependencies = [
2023-03-03 16:21:38 +01:00
"crossbeam-utils",
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "console-api"
2023-05-14 07:17:14 +02:00
version = "0.5.0"
2021-12-23 14:28:21 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "c2895653b4d9f1538a83970077cb01dfc77a4810524e51a110944688e916b18e"
2021-09-29 12:38:02 +02:00
dependencies = [
"prost",
"prost-types",
"tonic",
"tracing-core",
]
[[package]]
name = "console-subscriber"
2023-08-30 05:43:57 +02:00
version = "0.1.10"
2021-12-23 14:28:21 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "d4cf42660ac07fcebed809cfe561dd8730bcd35b075215e6479c516bcd0d11cb"
2021-09-29 12:38:02 +02:00
dependencies = [
"console-api",
2022-03-14 00:58:02 +01:00
"crossbeam-channel",
"crossbeam-utils",
2021-09-29 12:38:02 +02:00
"futures",
"hdrhistogram",
"humantime",
2022-03-14 00:58:02 +01:00
"prost-types",
2021-09-29 12:38:02 +02:00
"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 = "const_fn"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935"
[[package]]
name = "const_format"
2023-08-30 05:43:57 +02:00
version = "0.2.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "c990efc7a285731f9a4378d81aff2f0e85a2c8781a05ef0f8baa8dac54d0ff48"
dependencies = [
"const_format_proc_macros",
]
[[package]]
name = "const_format_proc_macros"
2023-08-30 05:43:57 +02:00
version = "0.2.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "e026b6ce194a874cb9cf32cd5772d1ef9767cc8fcb5765948d74f37a9d8b2bf6"
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
]
[[package]]
name = "core-foundation-sys"
2023-05-14 07:17:14 +02:00
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
2023-03-03 16:21:38 +01:00
[[package]]
name = "cpufeatures"
2023-08-30 05:43:57 +02:00
version = "0.2.9"
2023-03-03 16:21:38 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1"
2023-03-03 16:21:38 +01:00
dependencies = [
"libc",
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "crc32fast"
2022-03-14 00:58:02 +01:00
version = "1.3.2"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-14 00:58:02 +01:00
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
2021-09-29 12:38:02 +02:00
dependencies = [
2023-03-03 16:21:38 +01:00
"cfg-if",
2021-09-29 12:38:02 +02:00
]
2021-08-16 11:49:12 +02:00
[[package]]
name = "crossbeam-channel"
2023-05-14 07:17:14 +02:00
version = "0.5.8"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
2021-08-16 11:49:12 +02:00
dependencies = [
2023-03-03 16:21:38 +01:00
"cfg-if",
2021-08-16 11:49:12 +02:00
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
2023-08-30 05:43:57 +02:00
version = "0.8.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
dependencies = [
2023-03-03 16:21:38 +01:00
"cfg-if",
]
[[package]]
2023-03-03 16:21:38 +01:00
name = "crypto-common"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
2023-03-03 16:21:38 +01:00
"generic-array",
"typenum",
]
2023-08-30 05:43:57 +02:00
[[package]]
name = "deranged"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2696e8a945f658fd14dc3b87242e6b80cd0f36ff04ea560fa39082368847946"
[[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",
2023-03-22 02:47:26 +01:00
"syn 1.0.109",
2019-10-27 11:29:58 +01:00
]
[[package]]
2023-03-03 16:21:38 +01:00
name = "digest"
2023-08-30 05:43:57 +02:00
version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
dependencies = [
2023-03-03 16:21:38 +01:00
"block-buffer",
"crypto-common",
]
[[package]]
name = "dirs"
version = "4.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
dependencies = [
2023-03-22 02:23:00 +01:00
"dirs-sys 0.3.7",
]
[[package]]
name = "dirs"
2023-05-14 07:17:14 +02:00
version = "5.0.1"
2023-03-22 02:23:00 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
2023-03-22 02:23:00 +01:00
dependencies = [
2023-05-14 07:17:14 +02:00
"dirs-sys 0.4.1",
]
[[package]]
name = "dirs-next"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
dependencies = [
2023-03-03 16:21:38 +01:00
"cfg-if",
"dirs-sys-next",
]
[[package]]
name = "dirs-sys"
2022-03-18 02:08:36 +01:00
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-18 02:08:36 +01:00
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
dependencies = [
"libc",
"redox_users",
"winapi",
]
2023-03-22 02:23:00 +01:00
[[package]]
name = "dirs-sys"
2023-05-14 07:17:14 +02:00
version = "0.4.1"
2023-03-22 02:23:00 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
2023-03-22 02:23:00 +01:00
dependencies = [
"libc",
2023-05-14 07:17:14 +02:00
"option-ext",
2023-03-22 02:23:00 +01:00
"redox_users",
2023-05-14 07:17:14 +02:00
"windows-sys 0.48.0",
2023-03-22 02:23:00 +01:00
]
[[package]]
name = "dirs-sys-next"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
dependencies = [
"libc",
"redox_users",
"winapi",
]
[[package]]
name = "dunce"
2023-05-09 00:13:04 +02:00
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 00:13:04 +02:00
checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b"
[[package]]
name = "either"
2023-08-30 05:43:57 +02:00
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
[[package]]
name = "embed-resource"
2023-08-30 05:43:57 +02:00
version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "fd0a2c9b742a980060d22545a7a83b573acd6b73045b9de6370c9530ce652f27"
dependencies = [
2021-04-10 19:51:33 +02:00
"cc",
2022-03-14 00:58:02 +01:00
"rustc_version",
"toml",
2021-04-10 19:51:33 +02:00
"vswhom",
"winreg",
]
2023-05-09 00:13:04 +02:00
[[package]]
name = "endian-type"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d"
[[package]]
name = "enumflags2"
version = "0.7.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c041f5090df68b32bcd905365fd51769c8b9d553fe87fde0b683534f10c01bd2"
dependencies = [
"enumflags2_derive",
"serde",
]
[[package]]
name = "enumflags2_derive"
version = "0.7.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e9a1f9f7d83e59740248a6e14ecf93929ade55027844dfcea78beafccc15745"
dependencies = [
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
2023-08-30 05:43:57 +02:00
"syn 2.0.29",
2023-03-03 16:21:38 +01:00
]
2023-08-30 05:43:57 +02:00
[[package]]
name = "equivalent"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
2023-05-09 00:13:04 +02:00
[[package]]
name = "errno"
2023-08-30 05:43:57 +02:00
version = "0.3.3"
2023-05-09 00:13:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "136526188508e25c6fef639d7927dfb3e0e3084488bf202267829cf7fc23dbdd"
2023-05-09 00:13:04 +02:00
dependencies = [
"errno-dragonfly",
"libc",
"windows-sys 0.48.0",
]
2023-03-03 16:21:38 +01:00
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
2022-03-14 00:58:02 +01:00
[[package]]
name = "event-listener"
2022-09-02 11:12:47 +02:00
version = "2.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-02 11:12:47 +02:00
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
[[package]]
name = "fastrand"
2023-03-03 16:21:38 +01:00
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
dependencies = [
"instant",
]
[[package]]
name = "fastrand"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764"
[[package]]
name = "filetime"
2023-08-30 05:43:57 +02:00
version = "0.2.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0"
dependencies = [
2023-03-03 16:21:38 +01:00
"cfg-if",
2021-04-10 19:51:33 +02:00
"libc",
2023-08-30 05:43:57 +02:00
"redox_syscall 0.3.5",
2023-05-14 07:17:14 +02:00
"windows-sys 0.48.0",
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "flate2"
2023-08-30 05:43:57 +02:00
version = "1.0.27"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "c6c98ee8095e9d1dcbf2fcc6d95acccb90d1c81db1e44725c6a984b1dbdfb010"
2021-09-29 12:38:02 +02:00
dependencies = [
"crc32fast",
2023-08-30 05:43:57 +02:00
"miniz_oxide",
2021-09-29 12:38:02 +02:00
]
[[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"
2023-08-30 05:43:57 +02:00
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
dependencies = [
"percent-encoding",
]
2022-03-18 02:08:36 +01:00
[[package]]
name = "fsevent-sys"
version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
dependencies = [
"libc",
]
[[package]]
name = "futures"
2023-05-14 07:17:14 +02:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2023-05-14 07:17:14 +02:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2023-05-14 07:17:14 +02:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
[[package]]
name = "futures-executor"
2023-05-14 07:17:14 +02:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2023-05-14 07:17:14 +02:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
[[package]]
name = "futures-lite"
2023-05-14 07:17:14 +02:00
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
dependencies = [
"fastrand 1.9.0",
"futures-core",
"futures-io",
"memchr",
"parking",
"pin-project-lite",
"waker-fn",
]
[[package]]
name = "futures-macro"
2023-05-14 07:17:14 +02:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
dependencies = [
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
2023-08-30 05:43:57 +02:00
"syn 2.0.29",
]
[[package]]
name = "futures-sink"
2023-05-14 07:17:14 +02:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
[[package]]
name = "futures-task"
2023-05-14 07:17:14 +02:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
[[package]]
name = "futures-util"
2023-05-14 07:17:14 +02:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
"pin-project-lite",
"pin-utils",
"slab",
]
[[package]]
2023-03-03 16:21:38 +01:00
name = "generic-array"
2023-05-14 07:17:14 +02:00
version = "0.14.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
dependencies = [
2023-03-03 16:21:38 +01:00
"typenum",
"version_check",
]
[[package]]
name = "getrandom"
2023-08-30 05:43:57 +02:00
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
dependencies = [
2023-03-03 16:21:38 +01:00
"cfg-if",
"libc",
"wasi 0.11.0+wasi-snapshot-preview1",
]
[[package]]
name = "gimli"
2023-08-30 05:43:57 +02:00
version = "0.28.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0"
[[package]]
name = "git2"
version = "0.17.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b989d6a7ca95a362cf2cfc5ad688b3a467be1f87e480b8dad07fee8c79b0044"
dependencies = [
2023-03-22 02:47:26 +01:00
"bitflags 1.3.2",
"libc",
"libgit2-sys",
"log",
"url",
]
[[package]]
name = "gix"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1e74cea676de7f53a79f3c0365812b11f6814b81e671b8ee4abae6ca09c7881"
dependencies = [
"gix-actor",
"gix-attributes",
"gix-commitgraph",
"gix-config",
"gix-credentials",
"gix-date",
"gix-diff",
"gix-discover",
2023-08-30 05:43:57 +02:00
"gix-features 0.31.1",
"gix-fs 0.3.0",
"gix-glob",
"gix-hash",
"gix-hashtable",
2023-05-09 00:13:04 +02:00
"gix-ignore",
"gix-index",
"gix-lock",
"gix-mailmap",
"gix-negotiate",
"gix-object",
"gix-odb",
"gix-pack",
"gix-path",
"gix-prompt",
"gix-ref",
"gix-refspec",
"gix-revision",
"gix-sec",
"gix-tempfile",
"gix-trace",
"gix-traverse",
"gix-url",
2023-05-09 00:13:04 +02:00
"gix-utils",
"gix-validate",
"gix-worktree",
"log",
"once_cell",
"signal-hook",
"smallvec",
"thiserror",
"unicode-normalization",
]
[[package]]
name = "gix-actor"
version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1969b77b9ee4cc1755c841987ec6f7622aaca95e952bcafb76973ae59d1b8716"
dependencies = [
"bstr",
"btoi",
"gix-date",
"itoa",
"nom",
2023-03-03 16:21:38 +01:00
"thiserror",
]
[[package]]
name = "gix-attributes"
version = "0.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3772b0129dcd1fc73e985bbd08a1482d082097d2915cb1ee31ce8092b8e4434"
dependencies = [
"bstr",
"gix-glob",
"gix-path",
"gix-quote",
2023-05-09 00:13:04 +02:00
"kstring",
"log",
"smallvec",
"thiserror",
"unicode-bom",
]
[[package]]
name = "gix-bitmap"
2023-08-30 05:43:57 +02:00
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "0ccab4bc576844ddb51b78d81b4a42d73e6229660fa614dfc3d3999c874d1959"
dependencies = [
"thiserror",
]
[[package]]
name = "gix-chunk"
2023-08-30 05:43:57 +02:00
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "5b42ea64420f7994000130328f3c7a2038f639120518870436d31b8bde704493"
dependencies = [
"thiserror",
]
[[package]]
name = "gix-command"
2023-08-30 05:43:57 +02:00
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "0f28f654184b5f725c5737c7e4f466cbd8f0102ac352d5257eeab19647ee4256"
dependencies = [
"bstr",
]
[[package]]
name = "gix-commitgraph"
version = "0.17.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed42baa50075d41c1a0931074ce1a97c5797c7c6fe7591d9f1f2dcd448532c26"
dependencies = [
"bstr",
"gix-chunk",
2023-08-30 05:43:57 +02:00
"gix-features 0.31.1",
"gix-hash",
"memmap2",
"thiserror",
]
[[package]]
name = "gix-config"
version = "0.25.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "817688c7005a716d9363e267913526adea402dabd947f4ba63842d10cc5132af"
dependencies = [
2023-03-03 16:21:38 +01:00
"bstr",
"gix-config-value",
2023-08-30 05:43:57 +02:00
"gix-features 0.31.1",
"gix-glob",
"gix-path",
"gix-ref",
"gix-sec",
2023-05-09 00:13:04 +02:00
"log",
"memchr",
"nom",
"once_cell",
"smallvec",
"thiserror",
"unicode-bom",
]
[[package]]
name = "gix-config-value"
2023-08-30 05:43:57 +02:00
version = "0.12.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "6e874f41437441c02991dcea76990b9058fadfc54b02ab4dd06ab2218af43897"
dependencies = [
2023-08-30 05:43:57 +02:00
"bitflags 2.4.0",
2023-03-03 16:21:38 +01:00
"bstr",
"gix-path",
"libc",
"thiserror",
]
[[package]]
name = "gix-credentials"
version = "0.16.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75a75565e0e6e7f80cfa4eb1b05cc448c6846ddd48dcf413a28875fbc11ee9af"
dependencies = [
"bstr",
"gix-command",
"gix-config-value",
"gix-path",
"gix-prompt",
"gix-sec",
"gix-url",
"thiserror",
]
[[package]]
name = "gix-date"
2023-08-30 05:43:57 +02:00
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "01e476b4e156f6044d35bf1ce2079d97b7207515cfb5a2bb6fcd489bb697d700"
dependencies = [
"bstr",
"itoa",
"thiserror",
2023-08-30 05:43:57 +02:00
"time 0.3.28",
]
[[package]]
name = "gix-diff"
version = "0.32.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aaf5d9b9b521b284ebe53ee69eee33341835ec70edc314f36b2100ea81396121"
dependencies = [
"gix-hash",
"gix-object",
"imara-diff",
"thiserror",
]
[[package]]
name = "gix-discover"
version = "0.21.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "272aad20dc63dedba76615373dd8885fb5aebe4795e5b5b0aa2a24e63c82085c"
dependencies = [
"bstr",
"dunce",
"gix-hash",
"gix-path",
"gix-ref",
"gix-sec",
"thiserror",
]
[[package]]
name = "gix-features"
version = "0.31.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06142d8cff5d17509399b04052b64d2f9b3a311d5cff0b1a32b220f62cd0d595"
dependencies = [
"crc32fast",
"flate2",
"gix-hash",
"gix-trace",
"libc",
"once_cell",
"prodash",
"sha1_smol",
"thiserror",
"walkdir",
]
2023-08-30 05:43:57 +02:00
[[package]]
name = "gix-features"
version = "0.32.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "882695cccf38da4c3cc7ee687bdb412cf25e37932d7f8f2c306112ea712449f1"
dependencies = [
"gix-hash",
"gix-trace",
"libc",
]
[[package]]
name = "gix-fs"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb15956bc0256594c62a2399fcf6958a02a11724217eddfdc2b49b21b6292496"
dependencies = [
2023-08-30 05:43:57 +02:00
"gix-features 0.31.1",
]
[[package]]
name = "gix-fs"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d5b6e9d34a2c61ea4a02bbca94c409ab6dbbca1348cbb67298cd7fed8758761"
dependencies = [
"gix-features 0.32.1",
]
[[package]]
name = "gix-glob"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c18bdff83143d61e7d60da6183b87542a870d026b2a2d0b30170b8e9c0cd321a"
dependencies = [
2023-08-30 05:43:57 +02:00
"bitflags 2.4.0",
"bstr",
2023-08-30 05:43:57 +02:00
"gix-features 0.31.1",
2023-05-09 00:13:04 +02:00
"gix-path",
]
[[package]]
name = "gix-hash"
2023-08-30 05:43:57 +02:00
version = "0.11.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "4b422ff2ad9a0628baaad6da468cf05385bf3f5ab495ad5a33cce99b9f41092f"
dependencies = [
"hex",
2022-09-07 03:15:38 +02:00
"thiserror",
]
[[package]]
name = "gix-hashtable"
2023-08-30 05:43:57 +02:00
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "385f4ce6ecf3692d313ca3aa9bd3b3d8490de53368d6d94bedff3af8b6d9c58d"
dependencies = [
"gix-hash",
"hashbrown 0.14.0",
"parking_lot",
]
2023-05-09 00:13:04 +02:00
[[package]]
name = "gix-ignore"
version = "0.4.1"
2023-05-09 00:13:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca801f2d0535210f77b33e2c067d565aedecacc82f1b3dbce26da1388ebc4634"
2023-05-09 00:13:04 +02:00
dependencies = [
"bstr",
"gix-glob",
2023-05-09 00:13:04 +02:00
"gix-path",
"unicode-bom",
]
[[package]]
name = "gix-index"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68099abdf6ee50ae3c897e8b05de96871cbe54d52a37cdf559101f911b883562"
dependencies = [
2023-08-30 05:43:57 +02:00
"bitflags 2.4.0",
"bstr",
"btoi",
"filetime",
"gix-bitmap",
2023-08-30 05:43:57 +02:00
"gix-features 0.31.1",
"gix-hash",
"gix-lock",
"gix-object",
"gix-traverse",
"itoa",
"memmap2",
"smallvec",
"thiserror",
]
[[package]]
name = "gix-lock"
2023-08-30 05:43:57 +02:00
version = "7.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "7e82ec23c8a281f91044bf3ed126063b91b59f9c9340bf0ae746f385cc85a6fa"
dependencies = [
"gix-tempfile",
2023-05-14 07:17:14 +02:00
"gix-utils",
2023-03-03 16:21:38 +01:00
"thiserror",
]
[[package]]
name = "gix-mailmap"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1787e3c37fc43b1f7c0e3be6196c6837b3ba5f869190dfeaa444b816f0a7f34b"
dependencies = [
"bstr",
"gix-actor",
"gix-date",
"thiserror",
]
[[package]]
name = "gix-negotiate"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4e7bce64d4452dd609f44d04b14b29da2e0ad2c45fcdf4ce1472a5f5f8ec21c2"
dependencies = [
2023-08-30 05:43:57 +02:00
"bitflags 2.4.0",
"gix-commitgraph",
"gix-date",
"gix-hash",
"gix-object",
"gix-revwalk",
"smallvec",
"thiserror",
]
[[package]]
name = "gix-object"
version = "0.32.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a953f3d7ffad16734aa3ab1d05807972c80e339d1bd9dde03e0198716b99e2a6"
dependencies = [
2023-03-03 16:21:38 +01:00
"bstr",
"btoi",
"gix-actor",
"gix-date",
2023-08-30 05:43:57 +02:00
"gix-features 0.31.1",
"gix-hash",
"gix-validate",
"hex",
"itoa",
"nom",
"smallvec",
"thiserror",
]
[[package]]
name = "gix-odb"
version = "0.49.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6418cff00ecc2713b58c8e04bff30dda808fbba1a080e7248b299d069894a01"
dependencies = [
"arc-swap",
"gix-date",
2023-08-30 05:43:57 +02:00
"gix-features 0.31.1",
"gix-hash",
"gix-object",
"gix-pack",
"gix-path",
"gix-quote",
"parking_lot",
"tempfile",
"thiserror",
]
[[package]]
name = "gix-pack"
version = "0.39.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "414935138d90043ea5898de7a93f02c2558e52652492719470e203ef26a8fd0a"
dependencies = [
"clru",
"gix-chunk",
"gix-diff",
2023-08-30 05:43:57 +02:00
"gix-features 0.31.1",
"gix-hash",
"gix-hashtable",
"gix-object",
"gix-path",
"gix-tempfile",
"gix-traverse",
"memmap2",
"parking_lot",
"smallvec",
"thiserror",
]
[[package]]
name = "gix-path"
2023-08-30 05:43:57 +02:00
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "18609c8cbec8508ea97c64938c33cd305b75dfc04a78d0c3b78b8b3fd618a77c"
dependencies = [
2023-03-03 16:21:38 +01:00
"bstr",
"gix-trace",
2023-05-09 00:13:04 +02:00
"home",
"once_cell",
"thiserror",
]
[[package]]
name = "gix-prompt"
2023-08-30 05:43:57 +02:00
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "2c22decaf4a063ccae2b2108820c8630c01bd6756656df3fe464b32b8958a5ea"
dependencies = [
"gix-command",
"gix-config-value",
"parking_lot",
2023-08-30 05:43:57 +02:00
"rustix 0.38.10",
"thiserror",
]
[[package]]
name = "gix-quote"
2023-08-30 05:43:57 +02:00
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "475c86a97dd0127ba4465fbb239abac9ea10e68301470c9791a6dd5351cdc905"
dependencies = [
"bstr",
"btoi",
"thiserror",
]
[[package]]
name = "gix-ref"
version = "0.32.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39453f4e5f23cddc2e6e4cca2ba20adfdbec29379e3ca829714dfe98ae068ccd"
dependencies = [
"gix-actor",
"gix-date",
2023-08-30 05:43:57 +02:00
"gix-features 0.31.1",
"gix-fs 0.3.0",
"gix-hash",
"gix-lock",
"gix-object",
"gix-path",
"gix-tempfile",
"gix-validate",
"memmap2",
"nom",
"thiserror",
]
[[package]]
name = "gix-refspec"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8e76ff1f82fba295a121e31ab02f69642994e532c45c0c899aa393f4b740302"
dependencies = [
"bstr",
"gix-hash",
"gix-revision",
"gix-validate",
"smallvec",
"thiserror",
]
[[package]]
name = "gix-revision"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "237428a7d3978e8572964e1e45d984027c2acc94df47e594baa6c4b0da7c9922"
dependencies = [
"bstr",
"gix-date",
"gix-hash",
"gix-hashtable",
"gix-object",
"gix-revwalk",
"thiserror",
]
[[package]]
name = "gix-revwalk"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "028d50fcaf8326a8f79a359490d9ca9fb4e2b51ac9ac86503560d0bcc888d2eb"
dependencies = [
"gix-commitgraph",
"gix-date",
"gix-hash",
"gix-hashtable",
"gix-object",
"smallvec",
"thiserror",
]
[[package]]
name = "gix-sec"
2023-08-30 05:43:57 +02:00
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "9615cbd6b456898aeb942cd75e5810c382fbfc48dbbff2fa23ebd2d33dcbe9c7"
dependencies = [
2023-08-30 05:43:57 +02:00
"bitflags 2.4.0",
"gix-path",
"libc",
2023-05-09 00:13:04 +02:00
"windows 0.48.0",
]
[[package]]
name = "gix-tempfile"
2023-08-30 05:43:57 +02:00
version = "7.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "fa28d567848cec8fdd77d36ad4f5f78ecfaba7d78f647d4f63c8ae1a2cec7243"
dependencies = [
2023-08-30 05:43:57 +02:00
"gix-fs 0.4.1",
"libc",
"once_cell",
2023-03-03 16:21:38 +01:00
"parking_lot",
"signal-hook",
"signal-hook-registry",
"tempfile",
]
[[package]]
name = "gix-trace"
2023-08-30 05:43:57 +02:00
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "96b6d623a1152c3facb79067d6e2ecdae48130030cf27d6eb21109f13bd7b836"
[[package]]
name = "gix-traverse"
version = "0.29.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3cdfd54598db4fae57d5ae6f52958422b2d13382d2745796bfe5c8015ffa86e"
dependencies = [
"gix-commitgraph",
"gix-date",
"gix-hash",
"gix-hashtable",
"gix-object",
"gix-revwalk",
"smallvec",
"thiserror",
]
[[package]]
name = "gix-url"
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "beaede6dbc83f408b19adfd95bb52f1dbf01fb8862c3faf6c6243e2e67fcdfa1"
dependencies = [
"bstr",
2023-08-30 05:43:57 +02:00
"gix-features 0.31.1",
"gix-path",
"home",
"thiserror",
"url",
]
2023-05-09 00:13:04 +02:00
[[package]]
name = "gix-utils"
2023-08-30 05:43:57 +02:00
version = "0.1.5"
2023-05-09 00:13:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "b85d89dc728613e26e0ed952a19583744e7f5240fcd4aa30d6c824ffd8b52f0f"
2023-05-09 00:13:04 +02:00
dependencies = [
"fastrand 2.0.0",
2023-05-09 00:13:04 +02:00
]
[[package]]
name = "gix-validate"
2023-08-30 05:43:57 +02:00
version = "0.7.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "ba9b3737b2cef3dcd014633485f0034b0f1a931ee54aeb7d8f87f177f3c89040"
dependencies = [
2023-03-03 16:21:38 +01:00
"bstr",
"thiserror",
]
[[package]]
name = "gix-worktree"
version = "0.21.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1363b9aa66b9e14412ac04e1f759827203f491729d92172535a8ce6cde02efa"
dependencies = [
"bstr",
2023-05-09 00:13:04 +02:00
"filetime",
"gix-attributes",
2023-08-30 05:43:57 +02:00
"gix-features 0.31.1",
"gix-fs 0.3.0",
"gix-glob",
"gix-hash",
2023-05-09 00:13:04 +02:00
"gix-ignore",
"gix-index",
"gix-object",
"gix-path",
"io-close",
"thiserror",
]
2021-09-14 10:09:57 +02:00
[[package]]
name = "globset"
2023-08-30 05:43:57 +02:00
version = "0.4.13"
2021-09-14 10:09:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "759c97c1e17c55525b57192c06a267cda0ac5210b222d6b82189a2338fa1c13d"
2021-09-14 10:09:57 +02:00
dependencies = [
2023-08-30 05:43:57 +02:00
"aho-corasick",
2023-03-03 16:21:38 +01:00
"bstr",
2021-09-14 10:09:57 +02:00
"fnv",
"log",
"regex",
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "h2"
2023-08-30 05:43:57 +02:00
version = "0.3.21"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833"
2021-09-29 12:38:02 +02:00
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
2023-08-30 05:43:57 +02:00
"indexmap 1.9.3",
2021-09-29 12:38:02 +02:00
"slab",
"tokio",
"tokio-util",
2021-09-29 12:38:02 +02:00
"tracing",
]
2021-08-22 16:37:13 +02:00
[[package]]
name = "hashbrown"
2022-09-02 11:12:47 +02:00
version = "0.12.3"
2021-08-22 16:37:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-02 11:12:47 +02:00
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2021-08-22 16:37:13 +02:00
[[package]]
name = "hashbrown"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
2021-09-29 12:38:02 +02:00
[[package]]
name = "hdrhistogram"
2023-03-03 16:21:38 +01:00
version = "7.5.2"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8"
2021-09-29 12:38:02 +02:00
dependencies = [
2023-05-14 07:17:14 +02:00
"base64 0.13.1",
2021-09-29 12:38:02 +02:00
"byteorder",
"flate2",
"nom",
2021-09-29 12:38:02 +02:00
"num-traits",
]
[[package]]
name = "heck"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2023-03-03 16:21:38 +01:00
[[package]]
name = "hermit-abi"
2023-08-30 05:43:57 +02:00
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
2022-03-14 00:58:02 +01:00
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
[[package]]
name = "home"
2023-05-14 07:17:14 +02:00
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
dependencies = [
2023-05-14 07:17:14 +02:00
"windows-sys 0.48.0",
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "http"
2023-03-03 16:21:38 +01:00
version = "0.2.9"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
2021-09-29 12:38:02 +02:00
dependencies = [
"bytes",
"fnv",
2022-03-14 00:58:02 +01:00
"itoa",
2021-09-29 12:38:02 +02:00
]
[[package]]
name = "http-body"
version = "0.4.5"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
2021-09-29 12:38:02 +02:00
dependencies = [
"bytes",
"http",
"pin-project-lite",
]
[[package]]
name = "httparse"
2022-09-07 03:15:38 +02:00
version = "1.8.0"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 03:15:38 +02:00
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
2021-09-29 12:38:02 +02:00
[[package]]
name = "httpdate"
2023-08-30 05:43:57 +02:00
version = "1.0.3"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
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"
2023-08-30 05:43:57 +02:00
version = "0.14.27"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"
2021-09-29 12:38:02 +02:00
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
"httpdate",
2022-03-14 00:58:02 +01:00
"itoa",
2021-09-29 12:38:02 +02:00
"pin-project-lite",
2023-08-30 05:43:57 +02:00
"socket2 0.4.9",
2021-09-29 12:38:02 +02:00
"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 = "iana-time-zone"
2023-08-30 05:43:57 +02:00
version = "0.1.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613"
dependencies = [
"android_system_properties",
"core-foundation-sys",
"iana-time-zone-haiku",
"js-sys",
"wasm-bindgen",
2023-05-14 07:17:14 +02:00
"windows 0.48.0",
]
[[package]]
name = "iana-time-zone-haiku"
2023-05-14 07:17:14 +02:00
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
dependencies = [
2023-05-14 07:17:14 +02:00
"cc",
]
[[package]]
name = "idna"
2023-08-30 05:43:57 +02:00
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2021-10-12 14:49:38 +02:00
[[package]]
name = "ignore"
2023-03-03 16:21:38 +01:00
version = "0.4.20"
2021-10-12 14:49:38 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "dbe7873dab538a9a44ad79ede1faf5f30d49f9a5c883ddbab48bce81b64b7492"
2021-10-12 14:49:38 +02:00
dependencies = [
"globset",
"lazy_static",
"log",
"memchr",
"regex",
"same-file",
"thread_local",
"walkdir",
"winapi-util",
]
2022-06-15 05:25:05 +02:00
[[package]]
name = "ignore-files"
version = "1.3.1"
2022-06-15 05:25:05 +02:00
dependencies = [
2023-05-09 00:13:04 +02:00
"dunce",
2022-06-15 05:25:05 +02:00
"futures",
"gix-config",
2022-06-15 05:25:05 +02:00
"ignore",
"miette",
"project-origins",
2023-05-09 00:13:04 +02:00
"radix_trie",
2022-06-15 05:25:05 +02:00
"thiserror",
"tokio",
"tracing",
]
[[package]]
name = "imara-diff"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e98c1d0ad70fc91b8b9654b1f33db55e59579d3b3de2bffdced0fdb810570cb8"
dependencies = [
2023-08-30 05:43:57 +02:00
"ahash",
"hashbrown 0.12.3",
]
2021-08-22 16:37:13 +02:00
[[package]]
name = "indexmap"
2023-05-14 07:17:14 +02:00
version = "1.9.3"
2021-08-22 16:37:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
2021-08-22 16:37:13 +02:00
dependencies = [
"autocfg",
"hashbrown 0.12.3",
2021-08-22 16:37:13 +02:00
]
2023-08-30 05:43:57 +02:00
[[package]]
name = "indexmap"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d"
dependencies = [
"equivalent",
"hashbrown 0.14.0",
]
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 = [
2023-03-22 02:47:26 +01:00
"bitflags 1.3.2",
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",
]
[[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 = [
2023-03-03 16:21:38 +01:00
"cfg-if",
]
[[package]]
name = "io-close"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9cadcf447f06744f8ce713d2d6239bb5bde2c357a452397a9ed90c625da390bc"
dependencies = [
"libc",
"winapi",
]
2023-03-03 16:21:38 +01:00
[[package]]
name = "io-lifetimes"
2023-08-30 05:43:57 +02:00
version = "1.0.11"
2023-03-03 16:21:38 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
2023-03-03 16:21:38 +01:00
dependencies = [
2023-08-30 05:43:57 +02:00
"hermit-abi",
2023-03-03 16:21:38 +01:00
"libc",
2023-05-09 00:13:04 +02:00
"windows-sys 0.48.0",
]
[[package]]
name = "is-terminal"
2023-08-30 05:43:57 +02:00
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
dependencies = [
2023-08-30 05:43:57 +02:00
"hermit-abi",
"rustix 0.38.10",
2023-05-14 07:17:14 +02:00
"windows-sys 0.48.0",
]
[[package]]
name = "is_ci"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "616cde7c720bb2bb5824a224687d8f77bfd38922027f01d825cd7453be5099fb"
[[package]]
name = "is_debug"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06d198e9919d9822d5f7083ba8530e04de87841eaf21ead9af8f2304efd57c89"
2021-07-10 10:07:59 +02:00
[[package]]
name = "itertools"
2023-03-03 16:21:38 +01:00
version = "0.10.5"
2021-07-10 10:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
2021-07-10 10:07:59 +02:00
dependencies = [
"either",
]
2021-12-23 14:35:26 +01:00
[[package]]
name = "itoa"
2023-08-30 05:43:57 +02:00
version = "1.0.9"
2021-12-23 14:35:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
2021-12-23 14:35:26 +01:00
[[package]]
name = "jobserver"
version = "0.1.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
dependencies = [
"libc",
]
[[package]]
name = "js-sys"
2023-08-30 05:43:57 +02:00
version = "0.3.64"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
dependencies = [
"wasm-bindgen",
]
2021-08-16 11:49:12 +02:00
[[package]]
name = "kqueue"
2023-08-30 05:43:57 +02:00
version = "1.0.8"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c"
2021-08-16 11:49:12 +02:00
dependencies = [
"kqueue-sys",
"libc",
]
[[package]]
name = "kqueue-sys"
2023-08-30 05:43:57 +02:00
version = "1.0.4"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
2021-08-16 11:49:12 +02:00
dependencies = [
2023-03-22 02:47:26 +01:00
"bitflags 1.3.2",
2021-08-16 11:49:12 +02:00
"libc",
]
2023-05-09 00:13:04 +02:00
[[package]]
name = "kstring"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec3066350882a1cd6d950d055997f379ac37fd39f81cd4d8ed186032eb3c5747"
dependencies = [
"static_assertions",
]
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"
2023-08-30 05:43:57 +02:00
version = "0.2.147"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
[[package]]
name = "libgit2-sys"
version = "0.15.2+1.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a80df2e11fb4a61f4ba2ab42dbe7f74468da143f1a75c74e11dee7c813f694fa"
dependencies = [
"cc",
"libc",
"libz-sys",
"pkg-config",
]
[[package]]
name = "libmimalloc-sys"
2023-08-30 05:43:57 +02:00
version = "0.1.34"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "25d058a81af0d1c22d7a1c948576bee6d673f7af3c0f35564abd6c81122f513d"
dependencies = [
"cc",
2023-03-03 16:21:38 +01:00
"libc",
]
[[package]]
name = "libz-sys"
2023-08-30 05:43:57 +02:00
version = "1.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b"
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2023-05-09 00:13:04 +02:00
[[package]]
name = "linux-raw-sys"
2023-08-30 05:43:57 +02:00
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
[[package]]
name = "linux-raw-sys"
version = "0.4.5"
2023-05-09 00:13:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503"
2023-05-09 00:13:04 +02:00
2021-08-16 11:49:12 +02:00
[[package]]
name = "lock_api"
2023-08-30 05:43:57 +02:00
version = "0.4.10"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
2021-08-16 11:49:12 +02:00
dependencies = [
"autocfg",
2021-08-16 11:49:12 +02:00
"scopeguard",
]
[[package]]
name = "log"
2023-08-30 05:43:57 +02:00
version = "0.4.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
[[package]]
name = "mac-notification-sys"
2023-08-30 05:43:57 +02:00
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "51fca4d74ff9dbaac16a01b924bc3693fa2bba0862c2c633abc73f9a8ea21f64"
dependencies = [
"cc",
"dirs-next",
"objc-foundation",
"objc_id",
2023-08-30 05:43:57 +02:00
"time 0.3.28",
]
[[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 = [
2023-08-30 05:43:57 +02:00
"regex-automata 0.1.10",
2021-08-16 15:15:17 +02:00
]
[[package]]
name = "matchit"
2023-08-30 05:43:57 +02:00
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "ed1202b2a6f884ae56f04cff409ab315c5ce26b5e58d7412e484f01fd52f52ef"
[[package]]
name = "memchr"
2023-08-30 05:43:57 +02:00
version = "2.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "f478948fd84d9f8e86967bf432640e46adfb5a4bd4f14ef7e864ab38220534ae"
[[package]]
name = "memmap2"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f49388d20533534cd19360ad3d6a7dadc885944aa802ba3995040c5ec11288c6"
dependencies = [
"libc",
]
[[package]]
name = "memoffset"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
dependencies = [
"autocfg",
]
2021-08-16 11:49:12 +02:00
[[package]]
name = "miette"
2023-08-30 05:43:57 +02:00
version = "5.10.0"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "59bb584eaeeab6bd0226ccf3509a69d7936d148cf3d036ad350abe35e8c6856e"
2021-08-16 11:49:12 +02:00
dependencies = [
"backtrace",
2023-05-14 07:17:14 +02:00
"backtrace-ext",
2023-03-18 09:32:24 +01:00
"is-terminal",
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",
2023-03-03 16:21:38 +01:00
"terminal_size 0.1.17",
"textwrap",
2021-08-16 11:49:12 +02:00
"thiserror",
2022-06-11 09:55:43 +02:00
"unicode-width",
2021-08-16 11:49:12 +02:00
]
[[package]]
name = "miette-derive"
2023-08-30 05:43:57 +02:00
version = "5.10.0"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "49e7bc1560b95a3c4a25d03de42fe76ca718ab92d1a22a55b9b4cf67b3ae635c"
2021-08-16 11:49:12 +02:00
dependencies = [
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
2023-08-30 05:43:57 +02:00
"syn 2.0.29",
2021-08-16 11:49:12 +02:00
]
[[package]]
name = "mimalloc"
2023-08-30 05:43:57 +02:00
version = "0.1.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "972e5f23f6716f62665760b0f4cbf592576a80c7b879ba9beaafc0e558894127"
dependencies = [
"libmimalloc-sys",
]
[[package]]
name = "mime"
2023-03-22 02:47:26 +01:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 02:47:26 +01:00
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
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
2023-05-14 07:17:14 +02:00
[[package]]
name = "miniz_oxide"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
dependencies = [
"adler",
]
2022-03-14 00:57:49 +01:00
[[package]]
name = "mio"
2023-08-30 05:43:57 +02:00
version = "0.8.8"
2022-03-14 00:57:49 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
2022-03-14 00:57:49 +01:00
dependencies = [
"libc",
"log",
"wasi 0.11.0+wasi-snapshot-preview1",
2023-08-30 05:43:57 +02:00
"windows-sys 0.48.0",
]
2023-05-09 00:13:04 +02:00
[[package]]
name = "nibble_vec"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43"
dependencies = [
"smallvec",
]
[[package]]
name = "nix"
2023-08-30 05:43:57 +02:00
version = "0.26.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
dependencies = [
2023-03-22 02:47:26 +01:00
"bitflags 1.3.2",
2023-03-03 16:21:38 +01:00
"cfg-if",
"libc",
"memoffset",
"pin-utils",
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "nom"
2023-03-03 16:21:38 +01:00
version = "7.1.3"
2021-09-14 10:09:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2021-09-14 10:09:57 +02:00
dependencies = [
"memchr",
"minimal-lexical",
]
2023-03-18 09:32:24 +01:00
[[package]]
name = "normalize-line-endings"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
2023-01-06 14:53:49 +01:00
[[package]]
name = "normalize-path"
2023-08-30 05:43:57 +02:00
version = "0.2.1"
2023-01-06 14:53:49 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "f5438dd2b2ff4c6df6e1ce22d825ed2fa93ee2922235cc45186991717f0a892d"
2023-01-06 14:53:49 +01:00
2021-08-16 11:49:12 +02:00
[[package]]
name = "notify"
2023-08-30 05:43:57 +02:00
version = "5.2.0"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "729f63e1ca555a43fe3efa4f3efdf4801c479da85b432242a7b726f353c88486"
2021-08-16 11:49:12 +02:00
dependencies = [
2023-03-22 02:47:26 +01:00
"bitflags 1.3.2",
2021-08-16 11:49:12 +02:00
"crossbeam-channel",
"filetime",
2022-03-18 02:08:36 +01:00
"fsevent-sys",
"inotify",
2021-08-16 11:49:12 +02:00
"kqueue",
"libc",
2022-03-14 00:58:02 +01:00
"mio",
2023-03-18 09:32:24 +01:00
"serde",
2021-08-16 11:49:12 +02:00
"walkdir",
2023-08-30 05:43:57 +02:00
"windows-sys 0.45.0",
2021-08-16 11:49:12 +02:00
]
[[package]]
name = "notify-rust"
2023-08-30 05:43:57 +02:00
version = "4.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "6d7b75c8958cb2eab3451538b32db8a7b74006abc33eb2e6a9a56d21e4775c2b"
dependencies = [
2023-03-03 16:21:38 +01:00
"log",
"mac-notification-sys",
"serde",
2023-03-03 16:21:38 +01:00
"tauri-winrt-notification",
"zbus",
2023-03-03 16:21:38 +01:00
]
[[package]]
name = "nu-ansi-term"
version = "0.46.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
dependencies = [
"overload",
"winapi",
]
[[package]]
name = "num-traits"
2023-08-30 05:43:57 +02:00
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2"
dependencies = [
"autocfg",
]
2021-08-16 11:49:12 +02:00
[[package]]
name = "num_cpus"
2023-08-30 05:43:57 +02:00
version = "1.16.0"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2021-08-16 11:49:12 +02:00
dependencies = [
2023-08-30 05:43:57 +02:00
"hermit-abi",
2021-08-16 11:49:12 +02:00
"libc",
]
[[package]]
name = "num_threads"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
dependencies = [
"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"
2023-08-30 05:43:57 +02:00
version = "0.32.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "77ac5bbd07aea88c60a577a1ce218075ffd59208b2d7ca97adf9bfc5aeb21ebe"
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
2023-08-30 05:43:57 +02:00
version = "1.18.0"
2022-03-14 00:58:02 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
2022-03-14 00:58:02 +01:00
2023-05-14 07:17:14 +02:00
[[package]]
name = "option-ext"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
2022-03-14 00:58:02 +01:00
[[package]]
name = "ordered-stream"
2023-03-03 16:21:38 +01:00
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
2022-03-14 00:58:02 +01:00
dependencies = [
"futures-core",
"pin-project-lite",
]
[[package]]
name = "os_str_bytes"
2023-08-30 05:43:57 +02:00
version = "6.5.1"
2023-03-03 16:21:38 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "4d5d9eb14b174ee9aa2ef96dc2b94637a2d4b6e7cb873c7e171f0c20c6cf3eac"
dependencies = [
"memchr",
]
2023-03-03 16:21:38 +01:00
[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
2021-08-22 16:37:13 +02:00
[[package]]
name = "owo-colors"
2022-09-02 11:12:47 +02:00
version = "3.5.0"
2021-08-22 16:37:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-02 11:12:47 +02:00
checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
2021-08-22 16:37:13 +02:00
[[package]]
name = "parking"
2023-05-14 07:17:14 +02:00
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e"
2021-08-16 11:49:12 +02:00
[[package]]
name = "parking_lot"
2022-09-02 11:12:47 +02:00
version = "0.12.1"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-02 11:12:47 +02:00
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
2021-08-16 11:49:12 +02:00
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2023-08-30 05:43:57 +02:00
version = "0.9.8"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
2021-08-16 11:49:12 +02:00
dependencies = [
2023-03-03 16:21:38 +01:00
"cfg-if",
2021-08-16 11:49:12 +02:00
"libc",
2023-08-30 05:43:57 +02:00
"redox_syscall 0.3.5",
2021-08-16 11:49:12 +02:00
"smallvec",
2023-08-30 05:43:57 +02:00
"windows-targets 0.48.5",
2021-08-16 11:49:12 +02:00
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "percent-encoding"
2023-08-30 05:43:57 +02:00
version = "2.3.0"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
2021-09-29 12:38:02 +02:00
[[package]]
name = "phf"
2023-08-30 05:43:57 +02:00
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
dependencies = [
"phf_shared",
]
[[package]]
name = "phf_codegen"
2023-08-30 05:43:57 +02:00
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
dependencies = [
"phf_generator",
"phf_shared",
]
[[package]]
name = "phf_generator"
2023-08-30 05:43:57 +02:00
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
dependencies = [
"phf_shared",
2023-03-03 16:21:38 +01:00
"rand",
]
[[package]]
name = "phf_shared"
2023-08-30 05:43:57 +02:00
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
dependencies = [
"siphasher",
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "pin-project"
2023-08-30 05:43:57 +02:00
version = "1.1.3"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422"
2021-09-29 12:38:02 +02:00
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2023-08-30 05:43:57 +02:00
version = "1.1.3"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"
2021-09-29 12:38:02 +02:00
dependencies = [
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
2023-08-30 05:43:57 +02:00
"syn 2.0.29",
2021-09-29 12:38:02 +02:00
]
[[package]]
name = "pin-project-lite"
2023-08-30 05:43:57 +02:00
version = "0.2.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pkg-config"
2023-05-14 07:17:14 +02:00
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
[[package]]
name = "polling"
2023-05-14 07:17:14 +02:00
version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
dependencies = [
2022-09-02 11:12:47 +02:00
"autocfg",
2023-03-22 02:47:26 +01:00
"bitflags 1.3.2",
2023-03-03 16:21:38 +01:00
"cfg-if",
2023-03-18 09:32:24 +01:00
"concurrent-queue",
"libc",
"log",
2023-03-18 09:32:24 +01:00
"pin-project-lite",
2023-05-14 07:17:14 +02:00
"windows-sys 0.48.0",
]
[[package]]
name = "ppv-lite86"
2023-03-03 16:21:38 +01:00
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
[[package]]
name = "proc-macro-crate"
2023-03-03 16:21:38 +01:00
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
dependencies = [
2022-09-02 11:12:47 +02:00
"once_cell",
2023-03-03 16:21:38 +01:00
"toml_edit",
]
2019-10-27 11:29:58 +01:00
[[package]]
name = "proc-macro2"
2023-08-30 05:43:57 +02:00
version = "1.0.66"
2019-10-27 11:29:58 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9"
2019-10-27 11:29:58 +01:00
dependencies = [
"unicode-ident",
2019-10-27 11:29:58 +01:00
]
[[package]]
name = "prodash"
2023-08-30 05:43:57 +02:00
version = "25.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "1d67eb4220992a4a052a4bb03cf776e493ecb1a3a36bab551804153d63486af7"
2022-06-15 05:25:05 +02:00
[[package]]
name = "project-origins"
version = "1.2.0"
2022-06-15 05:25:05 +02:00
dependencies = [
"futures",
"miette",
"tokio",
"tokio-stream",
"tracing-subscriber",
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "prost"
2023-05-14 07:17:14 +02:00
version = "0.11.9"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd"
2021-09-29 12:38:02 +02:00
dependencies = [
"bytes",
"prost-derive",
]
[[package]]
name = "prost-derive"
2023-05-14 07:17:14 +02:00
version = "0.11.9"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4"
2021-09-29 12:38:02 +02:00
dependencies = [
"anyhow",
"itertools",
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
2023-03-22 02:47:26 +01:00
"syn 1.0.109",
2021-09-29 12:38:02 +02:00
]
[[package]]
name = "prost-types"
2023-05-14 07:17:14 +02:00
version = "0.11.9"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13"
2021-09-29 12:38:02 +02:00
dependencies = [
"prost",
]
[[package]]
2023-03-03 16:21:38 +01:00
name = "quick-xml"
version = "0.23.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "11bafc859c6815fbaffbbbf4229ecb767ac913fecb27f9ad4343662e9ef099ea"
2019-10-27 11:29:58 +01:00
dependencies = [
2023-03-03 16:21:38 +01:00
"memchr",
2019-10-27 11:29:58 +01:00
]
[[package]]
2023-03-03 16:21:38 +01:00
name = "quote"
2023-08-30 05:43:57 +02:00
version = "1.0.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
dependencies = [
2023-03-03 16:21:38 +01:00
"proc-macro2",
]
2023-05-09 00:13:04 +02:00
[[package]]
name = "radix_trie"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd"
dependencies = [
"endian-type",
"nibble_vec",
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "rand"
2022-03-14 00:58:02 +01:00
version = "0.8.5"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-14 00:58:02 +01:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2021-09-29 12:38:02 +02:00
dependencies = [
"libc",
2023-03-03 16:21:38 +01:00
"rand_chacha",
"rand_core",
2021-09-29 12:38:02 +02:00
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
2023-03-03 16:21:38 +01:00
"rand_core",
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "rand_core"
2023-03-03 16:21:38 +01:00
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
2023-03-03 16:21:38 +01:00
"getrandom",
]
[[package]]
name = "redox_syscall"
2022-09-02 11:12:47 +02:00
version = "0.2.16"
2017-01-27 19:13:08 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-02 11:12:47 +02:00
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
2021-04-10 20:09:48 +02:00
dependencies = [
2023-03-22 02:47:26 +01:00
"bitflags 1.3.2",
]
2023-05-14 07:17:14 +02:00
[[package]]
name = "redox_syscall"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
dependencies = [
"bitflags 1.3.2",
]
[[package]]
name = "redox_users"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
dependencies = [
2023-03-03 16:21:38 +01:00
"getrandom",
2023-05-14 07:17:14 +02:00
"redox_syscall 0.2.16",
2022-03-18 02:08:36 +01:00
"thiserror",
]
[[package]]
name = "regex"
2023-08-30 05:43:57 +02:00
version = "1.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "12de2eff854e5fa4b1295edd650e227e9d8fb0c9e90b12e7f36d6a6811791a29"
dependencies = [
2023-08-30 05:43:57 +02:00
"aho-corasick",
2021-09-13 09:51:07 +02:00
"memchr",
2023-08-30 05:43:57 +02:00
"regex-automata 0.3.7",
"regex-syntax 0.7.5",
]
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 = [
2023-05-14 07:17:14 +02:00
"regex-syntax 0.6.29",
2021-08-16 15:15:17 +02:00
]
2021-05-10 13:02:31 +02:00
2023-08-30 05:43:57 +02:00
[[package]]
name = "regex-automata"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49530408a136e16e5b486e883fbb6ba058e8e4e8ae6621a77b048b314336e629"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax 0.7.5",
]
[[package]]
name = "regex-syntax"
2023-03-22 02:47:26 +01:00
version = "0.6.29"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 02:47:26 +01:00
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2021-09-29 12:38:02 +02:00
2023-05-14 07:17:14 +02:00
[[package]]
name = "regex-syntax"
2023-08-30 05:43:57 +02:00
version = "0.7.5"
2023-05-14 07:17:14 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da"
2023-05-14 07:17:14 +02:00
[[package]]
name = "roff"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b833d8d034ea094b1ea68aa6d5c740e0d04bad9d16568d08ba6f76823a114316"
[[package]]
name = "rustc-demangle"
2023-05-14 07:17:14 +02:00
version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
2022-03-14 00:58:02 +01:00
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
"semver",
]
2023-05-09 00:13:04 +02:00
[[package]]
name = "rustix"
2023-08-30 05:43:57 +02:00
version = "0.37.23"
2023-05-09 00:13:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06"
2023-05-09 00:13:04 +02:00
dependencies = [
"bitflags 1.3.2",
2023-05-14 07:17:14 +02:00
"errno",
2023-05-09 00:13:04 +02:00
"io-lifetimes",
"libc",
2023-08-30 05:43:57 +02:00
"linux-raw-sys 0.3.8",
"windows-sys 0.48.0",
]
[[package]]
name = "rustix"
version = "0.38.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed6248e1caa625eb708e266e06159f135e8c26f2bb7ceb72dc4b2766d0340964"
dependencies = [
"bitflags 2.4.0",
"errno",
"libc",
"linux-raw-sys 0.4.5",
2023-05-09 00:13:04 +02:00
"windows-sys 0.48.0",
]
2023-03-03 16:21:38 +01:00
[[package]]
name = "rustversion"
2023-08-30 05:43:57 +02:00
version = "1.0.14"
2021-05-10 13:02:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
2023-03-03 16:21:38 +01:00
[[package]]
name = "ryu"
2023-08-30 05:43:57 +02:00
version = "1.0.15"
2023-03-03 16:21:38 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
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",
]
2021-08-16 11:49:12 +02:00
[[package]]
name = "scopeguard"
2023-08-30 05:43:57 +02:00
version = "1.2.0"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2021-08-16 11:49:12 +02:00
2022-03-14 00:58:02 +01:00
[[package]]
name = "semver"
2023-08-30 05:43:57 +02:00
version = "1.0.18"
2022-03-14 00:58:02 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918"
2022-03-14 00:58:02 +01:00
2021-05-10 13:02:31 +02:00
[[package]]
name = "serde"
2023-08-30 05:43:57 +02:00
version = "1.0.188"
2021-05-10 13:02:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e"
2021-05-10 13:02:31 +02:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2023-08-30 05:43:57 +02:00
version = "1.0.188"
2021-05-10 13:02:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2"
2021-05-10 13:02:31 +02:00
dependencies = [
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
2023-08-30 05:43:57 +02:00
"syn 2.0.29",
2021-05-10 13:02:31 +02:00
]
[[package]]
name = "serde_json"
2023-08-30 05:43:57 +02:00
version = "1.0.105"
2021-05-10 13:02:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360"
2021-05-10 13:02:31 +02:00
dependencies = [
2022-03-14 00:58:02 +01:00
"itoa",
2021-05-10 13:02:31 +02:00
"ryu",
"serde",
]
[[package]]
name = "serde_repr"
2023-08-30 05:43:57 +02:00
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "8725e1dfadb3a50f7e5ce0b1a540466f6ed3fe7a0fca2ac2b8b831d31316bd00"
dependencies = [
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
2023-08-30 05:43:57 +02:00
"syn 2.0.29",
]
2023-05-09 00:13:04 +02:00
[[package]]
name = "serde_spanned"
2023-08-30 05:43:57 +02:00
version = "0.6.3"
2023-05-09 00:13:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186"
2023-05-09 00:13:04 +02:00
dependencies = [
"serde",
]
2022-03-14 00:58:02 +01:00
[[package]]
name = "sha1"
2023-03-03 16:21:38 +01:00
version = "0.10.5"
2022-03-14 00:58:02 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
2022-03-14 00:58:02 +01:00
dependencies = [
2023-03-03 16:21:38 +01:00
"cfg-if",
"cpufeatures",
"digest",
2022-03-14 00:58:02 +01:00
]
[[package]]
name = "sha1_smol"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
[[package]]
name = "shadow-rs"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "157bef6b3029f72d6f4226acdfa466b84526aa62ae36a3bcf1e1801b403ecd74"
dependencies = [
"const_format",
"git2",
"is_debug",
2023-08-30 05:43:57 +02:00
"time 0.3.28",
"tzdb",
]
[[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",
]
[[package]]
name = "signal-hook"
2023-08-30 05:43:57 +02:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
dependencies = [
"libc",
"signal-hook-registry",
]
2021-08-16 11:49:12 +02:00
[[package]]
name = "signal-hook-registry"
2023-03-03 16:21:38 +01:00
version = "1.4.1"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
2021-08-16 11:49:12 +02:00
dependencies = [
"libc",
]
2023-03-18 09:32:24 +01:00
[[package]]
name = "similar"
version = "2.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf"
[[package]]
name = "siphasher"
2023-08-30 05:43:57 +02:00
version = "0.3.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
[[package]]
name = "slab"
2023-08-30 05:43:57 +02:00
version = "0.4.9"
2018-09-09 05:01:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2022-09-02 11:12:47 +02:00
dependencies = [
"autocfg",
]
2018-09-09 05:01:18 +02:00
2021-08-16 11:49:12 +02:00
[[package]]
name = "smallvec"
2023-08-30 05:43:57 +02:00
version = "1.11.0"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9"
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"
2023-03-18 09:32:24 +01:00
[[package]]
name = "snapbox"
2023-08-30 05:43:57 +02:00
version = "0.4.12"
2023-03-18 09:32:24 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "ad90eb3a2e3a8031d636d45bd4832751aefd58a291b553f7305a2bacae21aff3"
2023-03-18 09:32:24 +01:00
dependencies = [
"anstream",
"anstyle",
"normalize-line-endings",
"similar",
"snapbox-macros",
]
[[package]]
name = "snapbox-macros"
2023-08-30 05:43:57 +02:00
version = "0.3.5"
2023-03-18 09:32:24 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "95f4ffd811b87da98d0e48285134b7847954bd76e843bb794a893b47ca3ee325"
2023-03-18 09:32:24 +01:00
dependencies = [
"anstream",
]
[[package]]
name = "socket2"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
dependencies = [
"libc",
"winapi",
]
2023-08-30 05:43:57 +02:00
[[package]]
name = "socket2"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877"
dependencies = [
"libc",
"windows-sys 0.48.0",
]
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "supports-color"
2023-03-18 09:32:24 +01:00
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-18 09:32:24 +01:00
checksum = "4950e7174bffabe99455511c39707310e7e9b440364a2fcb1cc21521be57b354"
dependencies = [
2023-03-18 09:32:24 +01:00
"is-terminal",
"is_ci",
]
[[package]]
name = "supports-hyperlinks"
2023-05-14 07:17:14 +02:00
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "f84231692eb0d4d41e4cdd0cabfdd2e6cd9e255e65f80c9aa7c98dd502b4233d"
dependencies = [
2023-03-18 09:32:24 +01:00
"is-terminal",
]
[[package]]
name = "supports-unicode"
2023-03-18 09:32:24 +01:00
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-18 09:32:24 +01:00
checksum = "4b6c2cb240ab5dd21ed4906895ee23fe5a48acdbd15a3ce388e7b62a9b66baf7"
dependencies = [
2023-03-18 09:32:24 +01:00
"is-terminal",
]
[[package]]
name = "syn"
2023-03-03 16:21:38 +01:00
version = "1.0.109"
2019-10-27 11:29:58 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
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-ident",
2019-10-27 11:29:58 +01:00
]
2023-03-22 02:47:26 +01:00
[[package]]
name = "syn"
2023-08-30 05:43:57 +02:00
version = "2.0.29"
2023-03-22 02:47:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "c324c494eba9d92503e6f1ef2e6df781e78f6a7705a0202d9801b198807d518a"
2023-03-22 02:47:26 +01:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "sync_wrapper"
2023-03-03 16:21:38 +01:00
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
[[package]]
name = "tauri-winrt-notification"
2023-08-30 05:43:57 +02:00
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "4f5bff1d532fead7c43324a0fa33643b8621a47ce2944a633be4cb6c0240898f"
2023-03-03 16:21:38 +01:00
dependencies = [
"quick-xml",
"windows 0.39.0",
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "tempfile"
2023-08-30 05:43:57 +02:00
version = "3.8.0"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef"
2021-09-29 12:38:02 +02:00
dependencies = [
2023-03-03 16:21:38 +01:00
"cfg-if",
2023-08-30 05:43:57 +02:00
"fastrand 2.0.0",
2023-05-14 07:17:14 +02:00
"redox_syscall 0.3.5",
2023-08-30 05:43:57 +02:00
"rustix 0.38.10",
"windows-sys 0.48.0",
]
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
]
2023-03-03 16:21:38 +01:00
[[package]]
name = "terminal_size"
2023-05-14 07:17:14 +02:00
version = "0.2.6"
2023-03-03 16:21:38 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "8e6bf6f19e9f8ed8d4048dc22981458ebcf406d67e94cd422e5ecd73d63b3237"
2023-03-03 16:21:38 +01:00
dependencies = [
2023-08-30 05:43:57 +02:00
"rustix 0.37.23",
2023-05-14 07:17:14 +02:00
"windows-sys 0.48.0",
2023-03-03 16:21:38 +01:00
]
[[package]]
name = "terminfo"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "666cd3a6681775d22b200409aad3b089c5b99fb11ecdd8a204d9d62f8148498f"
dependencies = [
2023-03-22 02:23:00 +01:00
"dirs 4.0.0",
"fnv",
"nom",
"phf",
"phf_codegen",
]
[[package]]
name = "textwrap"
2023-03-03 16:21:38 +01:00
version = "0.15.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "b7b3e525a49ec206798b40326a44121291b530c963cfb01018f63e135bac543d"
dependencies = [
2022-06-15 05:25:05 +02:00
"smawk",
"unicode-linebreak",
"unicode-width",
]
[[package]]
name = "thiserror"
2023-08-30 05:43:57 +02:00
version = "1.0.47"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "97a802ec30afc17eee47b2855fc72e0c4cd62be9b4efe6591edde0ec5bd68d8f"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2023-08-30 05:43:57 +02:00
version = "1.0.47"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "6bb623b56e39ab7dcd4b1b98bb6c8f8d907ed255b18de254088016b27a8ee19b"
dependencies = [
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
2023-08-30 05:43:57 +02:00
"syn 2.0.29",
]
[[package]]
name = "thread_local"
2023-03-03 16:21:38 +01:00
version = "1.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
dependencies = [
2023-03-03 16:21:38 +01:00
"cfg-if",
"once_cell",
]
[[package]]
name = "time"
version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
dependencies = [
"libc",
"wasi 0.10.0+wasi-snapshot-preview1",
"winapi",
]
[[package]]
name = "time"
2023-08-30 05:43:57 +02:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "17f6bb557fd245c28e6411aa56b6403c689ad95061f50e4be16c274e70a17e48"
dependencies = [
2023-08-30 05:43:57 +02:00
"deranged",
"itoa",
"libc",
"num_threads",
"serde",
"time-core",
"time-macros",
]
[[package]]
name = "time-core"
2023-05-14 07:17:14 +02:00
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
[[package]]
name = "time-macros"
2023-08-30 05:43:57 +02:00
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "1a942f44339478ef67935ab2bbaec2fb0322496cf3cbe84b261e06ac3814c572"
dependencies = [
"time-core",
]
[[package]]
name = "tinyvec"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2021-08-16 11:49:12 +02:00
[[package]]
name = "tokio"
2023-08-30 05:43:57 +02:00
version = "1.32.0"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9"
2021-08-16 11:49:12 +02:00
dependencies = [
2023-08-30 05:43:57 +02:00
"backtrace",
2021-08-16 11:49:12 +02:00
"bytes",
"libc",
2022-03-14 00:58:02 +01:00
"mio",
2021-08-16 11:49:12 +02:00
"num_cpus",
"pin-project-lite",
"signal-hook-registry",
2023-08-30 05:43:57 +02:00
"socket2 0.5.3",
2021-08-16 11:49:12 +02:00
"tokio-macros",
2021-09-29 12:38:02 +02:00
"tracing",
2023-05-14 07:17:14 +02:00
"windows-sys 0.48.0",
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"
2023-05-14 07:17:14 +02:00
version = "2.1.0"
2021-08-16 11:49:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
2021-08-16 11:49:12 +02:00
dependencies = [
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
2023-08-30 05:43:57 +02:00
"syn 2.0.29",
2021-08-16 11:49:12 +02:00
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "tokio-stream"
2023-05-14 07:17:14 +02:00
version = "0.1.14"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
2021-09-29 12:38:02 +02:00
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
]
2022-03-14 00:58:02 +01:00
[[package]]
name = "tokio-util"
2023-05-14 07:17:14 +02:00
version = "0.7.8"
2022-03-14 00:58:02 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
2022-03-14 00:58:02 +01:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
"tracing",
2022-03-14 00:58:02 +01:00
]
[[package]]
name = "toml"
2023-08-30 05:43:57 +02:00
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542"
dependencies = [
"serde",
2023-05-09 00:13:04 +02:00
"serde_spanned",
"toml_datetime",
"toml_edit",
]
2023-03-03 16:21:38 +01:00
[[package]]
name = "toml_datetime"
2023-08-30 05:43:57 +02:00
version = "0.6.3"
2023-03-03 16:21:38 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
2023-05-09 00:13:04 +02:00
dependencies = [
"serde",
]
2023-03-03 16:21:38 +01:00
[[package]]
name = "toml_edit"
2023-08-30 05:43:57 +02:00
version = "0.19.14"
2023-03-03 16:21:38 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a"
2023-03-03 16:21:38 +01:00
dependencies = [
2023-08-30 05:43:57 +02:00
"indexmap 2.0.0",
2023-05-09 00:13:04 +02:00
"serde",
"serde_spanned",
2023-03-03 16:21:38 +01:00
"toml_datetime",
"winnow",
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "tonic"
2023-05-14 07:17:14 +02:00
version = "0.9.2"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "3082666a3a6433f7f511c7192923fa1fe07c69332d3c6a2e6bb040b569199d5a"
2021-09-29 12:38:02 +02:00
dependencies = [
"async-trait",
"axum",
2023-08-30 05:43:57 +02:00
"base64 0.21.3",
2021-09-29 12:38:02 +02:00
"bytes",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"hyper",
"hyper-timeout",
"percent-encoding",
"pin-project",
"prost",
"tokio",
"tokio-stream",
"tower",
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "tower"
version = "0.4.13"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
2021-09-29 12:38:02 +02:00
dependencies = [
"futures-core",
"futures-util",
2023-08-30 05:43:57 +02:00
"indexmap 1.9.3",
2021-09-29 12:38:02 +02:00
"pin-project",
2021-10-16 06:25:21 +02:00
"pin-project-lite",
2023-03-03 16:21:38 +01:00
"rand",
2021-09-29 12:38:02 +02:00
"slab",
"tokio",
"tokio-util",
2021-09-29 12:38:02 +02:00
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "tower-layer"
2023-03-03 16:21:38 +01:00
version = "0.3.2"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
2021-09-29 12:38:02 +02:00
[[package]]
name = "tower-service"
version = "0.3.2"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2021-09-29 12:38:02 +02:00
[[package]]
name = "tracing"
2023-03-03 16:21:38 +01:00
version = "0.1.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
dependencies = [
2023-03-03 16:21:38 +01:00
"cfg-if",
2021-09-29 12:38:02 +02:00
"log",
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-attributes"
2023-08-30 05:43:57 +02:00
version = "0.1.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab"
dependencies = [
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
2023-08-30 05:43:57 +02:00
"syn 2.0.29",
]
[[package]]
name = "tracing-core"
2023-05-14 07:17:14 +02:00
version = "0.1.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
dependencies = [
"once_cell",
2022-03-14 00:58:02 +01:00
"valuable",
]
2021-08-16 15:15:17 +02:00
[[package]]
name = "tracing-log"
2022-06-07 14:15:17 +02:00
version = "0.1.3"
2021-08-16 15:15:17 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 14:15:17 +02:00
checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
2021-08-16 15:15:17 +02:00
dependencies = [
"lazy_static",
"log",
"tracing-core",
]
[[package]]
name = "tracing-serde"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1"
dependencies = [
"serde",
"tracing-core",
]
[[package]]
name = "tracing-subscriber"
2023-05-14 07:17:14 +02:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77"
dependencies = [
2021-08-16 15:15:17 +02:00
"matchers",
2023-03-03 16:21:38 +01:00
"nu-ansi-term",
2022-09-02 11:12:47 +02:00
"once_cell",
2021-08-16 15:15:17 +02:00
"regex",
"serde",
"serde_json",
"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",
"tracing-serde",
2021-12-23 14:28:21 +01:00
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "try-lock"
2023-03-03 16:21:38 +01:00
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
[[package]]
name = "typenum"
version = "1.16.0"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
2021-09-29 12:38:02 +02:00
[[package]]
name = "tz-rs"
version = "0.6.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33851b15c848fad2cf4b105c6bb66eb9512b6f6c44a4b13f57c53c73c707e2b4"
dependencies = [
"const_fn",
]
[[package]]
name = "tzdb"
2023-05-14 07:17:14 +02:00
version = "0.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 07:17:14 +02:00
checksum = "ec758958f2fb5069cd7fae385be95cc8eceb8cdfd270c7d14de6034f0108d99e"
dependencies = [
"iana-time-zone",
"tz-rs",
]
[[package]]
name = "uds_windows"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce65604324d3cce9b966701489fbd0cf318cb1f7bd9dd07ac9a4ee6fb791930d"
dependencies = [
"tempfile",
"winapi",
]
[[package]]
name = "unicase"
2023-08-30 05:43:57 +02:00
version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
dependencies = [
"version_check",
]
[[package]]
name = "unicode-bidi"
2023-03-22 02:47:26 +01:00
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 02:47:26 +01:00
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
[[package]]
name = "unicode-bom"
2023-05-09 00:13:04 +02:00
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 00:13:04 +02:00
checksum = "98e90c70c9f0d4d1ee6d0a7d04aa06cb9bbd53d8cfbdd62a0269a7c2eb640552"
[[package]]
name = "unicode-ident"
2023-08-30 05:43:57 +02:00
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c"
[[package]]
name = "unicode-linebreak"
2023-08-30 05:43:57 +02:00
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
[[package]]
name = "unicode-normalization"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
dependencies = [
"tinyvec",
]
[[package]]
name = "unicode-width"
2023-03-03 16:21:38 +01:00
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
[[package]]
name = "unicode-xid"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
[[package]]
name = "url"
2023-08-30 05:43:57 +02:00
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5"
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
]
2023-03-18 09:32:24 +01:00
[[package]]
name = "utf8parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
2021-05-10 13:02:31 +02:00
[[package]]
2022-03-14 00:58:02 +01:00
name = "valuable"
version = "0.1.0"
2021-05-10 13:02:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-14 00:58:02 +01:00
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
2021-05-10 13:02:31 +02:00
[[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"
2023-03-03 16:21:38 +01:00
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "d3b17ae1f6c8a2b28506cd96d412eebf83b4a0ff2cbefeeb952f2f9dfa44ba18"
dependencies = [
2021-04-10 19:51:33 +02:00
"cc",
"libc",
]
[[package]]
name = "waker-fn"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
[[package]]
name = "walkdir"
2023-03-22 02:47:26 +01:00
version = "2.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 02:47:26 +01:00
checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698"
dependencies = [
2021-04-10 19:51:33 +02:00
"same-file",
"winapi-util",
]
2021-09-29 12:38:02 +02:00
[[package]]
name = "want"
2023-08-30 05:43:57 +02:00
version = "0.3.1"
2021-09-29 12:38:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2021-09-29 12:38:02 +02:00
dependencies = [
"try-lock",
]
[[package]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
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 = "wasm-bindgen"
2023-08-30 05:43:57 +02:00
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-08-30 05:43:57 +02:00
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
2023-08-30 05:43:57 +02:00
"syn 2.0.29",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
2023-08-30 05:43:57 +02:00
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-08-30 05:43:57 +02:00
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
dependencies = [
"proc-macro2",
"quote",
2023-08-30 05:43:57 +02:00
"syn 2.0.29",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-08-30 05:43:57 +02:00
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
[[package]]
name = "watchexec"
version = "2.3.0"
2021-08-16 11:49:12 +02:00
dependencies = [
"async-priority-channel",
2023-03-03 16:21:38 +01:00
"async-recursion",
"atomic-take",
2021-08-22 14:28:20 +02:00
"clearscreen",
2021-08-16 17:09:22 +02:00
"command-group",
2021-08-18 15:12:50 +02:00
"futures",
2022-06-15 05:25:05 +02:00
"ignore-files",
2021-08-16 11:49:12 +02:00
"miette",
2023-03-18 09:32:24 +01:00
"nix",
2023-01-06 14:53:49 +01:00
"normalize-path",
"notify",
"once_cell",
2022-06-15 05:25:05 +02:00
"project-origins",
2021-08-16 11:49:12 +02:00
"thiserror",
"tokio",
"tracing",
2022-01-30 12:45:47 +01:00
"tracing-subscriber",
2023-03-18 09:32:24 +01:00
"watchexec-events",
"watchexec-signals",
2021-08-16 11:49:12 +02:00
]
[[package]]
name = "watchexec-cli"
version = "1.23.0"
dependencies = [
"argfile",
"bosion",
"chrono",
"clap",
"clap_complete",
"clap_complete_nushell",
"clap_mangen",
"command-group",
2021-09-29 12:38:02 +02:00
"console-subscriber",
2023-05-14 07:17:14 +02:00
"dirs 5.0.1",
"embed-resource",
2021-12-29 06:39:31 +01:00
"futures",
"humantime",
2022-06-15 05:25:05 +02:00
"ignore-files",
"is-terminal",
"miette",
"mimalloc",
"notify-rust",
2022-06-15 05:25:05 +02:00
"project-origins",
2023-03-18 09:32:24 +01:00
"serde_json",
"shadow-rs",
2023-03-18 09:32:24 +01:00
"tempfile",
"tokio",
"tracing",
2021-12-23 14:35:26 +01:00
"tracing-subscriber",
2022-01-31 07:15:20 +01:00
"watchexec",
2023-03-18 09:32:24 +01:00
"watchexec-events",
2022-06-15 05:25:05 +02:00
"watchexec-filterer-globset",
2023-03-18 09:32:24 +01:00
"watchexec-signals",
"which",
2022-06-15 05:25:05 +02:00
]
2023-03-18 09:32:24 +01:00
[[package]]
name = "watchexec-events"
version = "1.0.0"
2023-03-18 09:32:24 +01:00
dependencies = [
"nix",
"notify",
"serde",
"serde_json",
"snapbox",
"watchexec-events",
"watchexec-signals",
]
2022-06-15 05:25:05 +02:00
[[package]]
name = "watchexec-filterer-globset"
version = "1.2.0"
2022-06-15 05:25:05 +02:00
dependencies = [
"ignore",
"ignore-files",
"project-origins",
"tokio",
"tracing",
"tracing-subscriber",
"watchexec",
"watchexec-filterer-ignore",
]
[[package]]
name = "watchexec-filterer-ignore"
version = "1.2.1"
2022-06-15 05:25:05 +02:00
dependencies = [
2023-05-09 00:13:04 +02:00
"dunce",
2022-06-15 05:25:05 +02:00
"ignore",
"ignore-files",
"project-origins",
"tokio",
"tracing",
"tracing-subscriber",
"watchexec",
2023-03-18 09:32:24 +01:00
"watchexec-signals",
2022-06-15 05:25:05 +02:00
]
[[package]]
name = "watchexec-filterer-tagged"
version = "0.3.0"
2022-06-15 05:25:05 +02:00
dependencies = [
2023-01-06 14:53:49 +01:00
"futures",
2022-06-15 05:25:05 +02:00
"globset",
"ignore",
"ignore-files",
"miette",
"nom",
2022-06-15 05:25:05 +02:00
"project-origins",
"regex",
"thiserror",
"tokio",
"tracing",
"tracing-subscriber",
"unicase",
"watchexec",
"watchexec-filterer-ignore",
2023-03-18 09:32:24 +01:00
"watchexec-signals",
]
[[package]]
2023-03-18 09:32:24 +01:00
name = "watchexec-signals"
version = "1.0.0"
dependencies = [
2023-03-18 09:32:24 +01:00
"miette",
"nix",
"serde",
"thiserror",
]
[[package]]
name = "which"
2023-03-03 16:21:38 +01:00
version = "4.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
dependencies = [
"either",
"libc",
2022-09-07 03:15:38 +02:00
"once_cell",
]
[[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"
2023-03-03 16:21:38 +01:00
version = "0.39.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "f1c4bd0a50ac6020f65184721f758dba47bb9fbc2133df715ec74a237b26794a"
dependencies = [
2023-03-03 16:21:38 +01:00
"windows_aarch64_msvc 0.39.0",
"windows_i686_gnu 0.39.0",
"windows_i686_msvc 0.39.0",
"windows_x86_64_gnu 0.39.0",
"windows_x86_64_msvc 0.39.0",
2022-03-14 00:58:02 +01:00
]
2023-03-22 02:47:26 +01:00
[[package]]
name = "windows"
2023-05-09 00:13:04 +02:00
version = "0.48.0"
2023-03-22 02:47:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 00:13:04 +02:00
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
2023-03-22 02:47:26 +01:00
dependencies = [
2023-08-30 05:43:57 +02:00
"windows-targets 0.48.5",
]
[[package]]
name = "windows-sys"
2023-03-03 16:21:38 +01:00
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
2023-05-09 00:13:04 +02:00
"windows-targets 0.42.2",
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
2023-08-30 05:43:57 +02:00
"windows-targets 0.48.5",
2023-03-03 16:21:38 +01:00
]
[[package]]
name = "windows-targets"
2023-03-18 09:32:24 +01:00
version = "0.42.2"
2023-03-03 16:21:38 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-18 09:32:24 +01:00
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
dependencies = [
2023-05-09 00:13:04 +02:00
"windows_aarch64_gnullvm 0.42.2",
2023-03-18 09:32:24 +01:00
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
2023-05-09 00:13:04 +02:00
"windows_x86_64_gnullvm 0.42.2",
2023-03-18 09:32:24 +01:00
"windows_x86_64_msvc 0.42.2",
]
2023-05-09 00:13:04 +02:00
[[package]]
name = "windows-targets"
2023-08-30 05:43:57 +02:00
version = "0.48.5"
2023-05-09 00:13:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2023-05-09 00:13:04 +02:00
dependencies = [
2023-08-30 05:43:57 +02:00
"windows_aarch64_gnullvm 0.48.5",
"windows_aarch64_msvc 0.48.5",
"windows_i686_gnu 0.48.5",
"windows_i686_msvc 0.48.5",
"windows_x86_64_gnu 0.48.5",
"windows_x86_64_gnullvm 0.48.5",
"windows_x86_64_msvc 0.48.5",
2023-05-09 00:13:04 +02:00
]
[[package]]
name = "windows_aarch64_gnullvm"
2023-03-18 09:32:24 +01:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-18 09:32:24 +01:00
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2023-05-09 00:13:04 +02:00
[[package]]
name = "windows_aarch64_gnullvm"
2023-08-30 05:43:57 +02:00
version = "0.48.5"
2023-05-09 00:13:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2023-05-09 00:13:04 +02:00
2022-03-14 00:58:02 +01:00
[[package]]
name = "windows_aarch64_msvc"
2023-03-03 16:21:38 +01:00
version = "0.39.0"
2022-03-14 00:58:02 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "ec7711666096bd4096ffa835238905bb33fb87267910e154b18b44eaabb340f2"
2022-03-14 00:58:02 +01:00
[[package]]
name = "windows_aarch64_msvc"
2023-03-18 09:32:24 +01:00
version = "0.42.2"
2021-10-16 06:25:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-18 09:32:24 +01:00
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2021-10-16 06:25:21 +02:00
2023-05-09 00:13:04 +02:00
[[package]]
name = "windows_aarch64_msvc"
2023-08-30 05:43:57 +02:00
version = "0.48.5"
2023-05-09 00:13:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2023-05-09 00:13:04 +02:00
2022-03-14 00:58:02 +01:00
[[package]]
name = "windows_i686_gnu"
2023-03-03 16:21:38 +01:00
version = "0.39.0"
2022-03-14 00:58:02 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "763fc57100a5f7042e3057e7e8d9bdd7860d330070251a73d003563a3bb49e1b"
2022-03-14 00:58:02 +01:00
[[package]]
name = "windows_i686_gnu"
2023-03-18 09:32:24 +01:00
version = "0.42.2"
2021-10-16 06:25:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-18 09:32:24 +01:00
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2021-10-16 06:25:21 +02:00
2023-05-09 00:13:04 +02:00
[[package]]
name = "windows_i686_gnu"
2023-08-30 05:43:57 +02:00
version = "0.48.5"
2023-05-09 00:13:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2023-05-09 00:13:04 +02:00
2022-03-14 00:58:02 +01:00
[[package]]
name = "windows_i686_msvc"
2023-03-03 16:21:38 +01:00
version = "0.39.0"
2022-03-14 00:58:02 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "7bc7cbfe58828921e10a9f446fcaaf649204dcfe6c1ddd712c5eebae6bda1106"
2022-03-14 00:58:02 +01:00
[[package]]
name = "windows_i686_msvc"
2023-03-18 09:32:24 +01:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-18 09:32:24 +01:00
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2023-05-09 00:13:04 +02:00
[[package]]
name = "windows_i686_msvc"
2023-08-30 05:43:57 +02:00
version = "0.48.5"
2023-05-09 00:13:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2023-05-09 00:13:04 +02:00
2021-10-16 06:25:21 +02:00
[[package]]
2021-12-23 14:35:26 +01:00
name = "windows_x86_64_gnu"
2023-03-03 16:21:38 +01:00
version = "0.39.0"
2021-10-16 06:25:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "6868c165637d653ae1e8dc4d82c25d4f97dd6605eaa8d784b5c6e0ab2a252b65"
2021-10-16 06:25:21 +02:00
2022-03-14 00:58:02 +01:00
[[package]]
name = "windows_x86_64_gnu"
2023-03-18 09:32:24 +01:00
version = "0.42.2"
2022-03-14 00:58:02 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-18 09:32:24 +01:00
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2023-05-09 00:13:04 +02:00
[[package]]
name = "windows_x86_64_gnu"
2023-08-30 05:43:57 +02:00
version = "0.48.5"
2023-05-09 00:13:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2023-05-09 00:13:04 +02:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-03-18 09:32:24 +01:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-18 09:32:24 +01:00
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2023-05-09 00:13:04 +02:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-08-30 05:43:57 +02:00
version = "0.48.5"
2023-05-09 00:13:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2023-05-09 00:13:04 +02:00
2021-10-16 06:25:21 +02:00
[[package]]
2021-12-23 14:35:26 +01:00
name = "windows_x86_64_msvc"
2023-03-03 16:21:38 +01:00
version = "0.39.0"
2021-10-16 06:25:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 16:21:38 +01:00
checksum = "5e4d40883ae9cae962787ca76ba76390ffa29214667a111db9e0a1ad8377e809"
2021-10-16 06:25:21 +02:00
2022-03-14 00:58:02 +01:00
[[package]]
name = "windows_x86_64_msvc"
2023-03-18 09:32:24 +01:00
version = "0.42.2"
2022-03-14 00:58:02 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-18 09:32:24 +01:00
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2022-03-14 00:58:02 +01:00
2023-05-09 00:13:04 +02:00
[[package]]
name = "windows_x86_64_msvc"
2023-08-30 05:43:57 +02:00
version = "0.48.5"
2023-05-09 00:13:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2023-05-09 00:13:04 +02:00
[[package]]
2023-03-03 16:21:38 +01:00
name = "winnow"
2023-08-30 05:43:57 +02:00
version = "0.5.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "7c2e3184b9c4e92ad5167ca73039d0c42476302ab603e2fec4487511f38ccefc"
2023-03-03 16:21:38 +01:00
dependencies = [
"memchr",
]
2021-10-16 06:25:21 +02:00
[[package]]
name = "winreg"
2023-08-30 05:43:57 +02:00
version = "0.51.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "937f3df7948156640f46aacef17a70db0de5917bda9c92b0f751f3a955b588fc"
dependencies = [
2023-05-09 00:13:04 +02:00
"cfg-if",
2023-08-30 05:43:57 +02:00
"windows-sys 0.48.0",
]
2023-05-14 07:17:14 +02:00
[[package]]
name = "xdg-home"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2769203cd13a0c6015d515be729c526d041e9cf2c0cc478d57faee85f40c6dcd"
dependencies = [
"nix",
"winapi",
]
[[package]]
name = "zbus"
2023-08-30 05:43:57 +02:00
version = "3.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "31de390a2d872e4cd04edd71b425e29853f786dc99317ed72d73d6fcf5ebb948"
dependencies = [
2022-03-14 00:58:02 +01:00
"async-broadcast",
"async-executor",
2023-03-18 09:32:24 +01:00
"async-fs",
"async-io",
2022-03-14 00:58:02 +01:00
"async-lock",
2023-08-30 05:43:57 +02:00
"async-process",
2023-03-03 16:21:38 +01:00
"async-recursion",
2022-03-14 00:58:02 +01:00
"async-task",
"async-trait",
2023-08-30 05:43:57 +02:00
"blocking",
"byteorder",
"derivative",
"enumflags2",
2022-03-14 00:58:02 +01:00
"event-listener",
"futures-core",
"futures-sink",
"futures-util",
"hex",
2023-03-18 09:32:24 +01:00
"nix",
"once_cell",
2022-03-14 00:58:02 +01:00
"ordered-stream",
2023-03-03 16:21:38 +01:00
"rand",
"serde",
"serde_repr",
2022-03-14 00:58:02 +01:00
"sha1",
"static_assertions",
"tracing",
"uds_windows",
2022-03-14 00:58:02 +01:00
"winapi",
2023-05-14 07:17:14 +02:00
"xdg-home",
"zbus_macros",
2022-03-14 00:58:02 +01:00
"zbus_names",
"zvariant",
]
[[package]]
name = "zbus_macros"
2023-08-30 05:43:57 +02:00
version = "3.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "41d1794a946878c0e807f55a397187c11fc7a038ba5d868e7db4f3bd7760bc9d"
dependencies = [
2022-03-14 00:58:02 +01:00
"proc-macro-crate",
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
2022-03-14 00:58:02 +01:00
"regex",
2023-03-22 02:47:26 +01:00
"syn 1.0.109",
2023-03-18 09:32:24 +01:00
"zvariant_utils",
]
2022-03-14 00:58:02 +01:00
[[package]]
name = "zbus_names"
2023-08-30 05:43:57 +02:00
version = "2.6.0"
2022-03-14 00:58:02 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "fb80bb776dbda6e23d705cf0123c3b95df99c4ebeaec6c2599d4a5419902b4a9"
2022-03-14 00:58:02 +01:00
dependencies = [
"serde",
"static_assertions",
"zvariant",
]
[[package]]
name = "zvariant"
2023-08-30 05:43:57 +02:00
version = "3.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "44b291bee0d960c53170780af148dca5fa260a63cdd24f1962fa82e03e53338c"
dependencies = [
"byteorder",
"enumflags2",
2021-10-16 06:25:21 +02:00
"libc",
"serde",
"static_assertions",
"zvariant_derive",
]
[[package]]
name = "zvariant_derive"
2023-08-30 05:43:57 +02:00
version = "3.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "934d7a7dfc310d6ee06c87ffe88ef4eca7d3e37bb251dece2ef93da8f17d8ecd"
dependencies = [
2022-03-14 00:58:02 +01:00
"proc-macro-crate",
"proc-macro2",
2021-10-16 06:25:21 +02:00
"quote",
2023-03-22 02:47:26 +01:00
"syn 1.0.109",
2023-03-18 09:32:24 +01:00
"zvariant_utils",
]
[[package]]
name = "zvariant_utils"
2023-08-30 05:43:57 +02:00
version = "1.0.1"
2023-03-18 09:32:24 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-30 05:43:57 +02:00
checksum = "7234f0d811589db492d16893e3f21e8e2fd282e6d01b0cddee310322062cc200"
2023-03-18 09:32:24 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-03-22 02:47:26 +01:00
"syn 1.0.109",
]