healthchecks-rs/Cargo.lock

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

990 lines
26 KiB
Plaintext
Raw Normal View History

# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "addr2line"
2023-08-23 06:07:34 +05:30
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-23 06:07:34 +05:30
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 = "anstream"
2024-01-19 09:00:06 +05:30
version = "0.6.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-19 09:00:06 +05:30
checksum = "6e2e1ebcb11de5c03c67de28a7df593d32191b44939c482e97702baaaa6ab6a5"
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
"utf8parse",
]
[[package]]
name = "anstyle"
2024-02-06 06:59:14 +05:30
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-06 06:59:14 +05:30
checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc"
[[package]]
name = "anstyle-parse"
2023-12-05 07:36:36 +05:30
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 07:36:36 +05:30
checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c"
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
2023-12-09 06:00:10 +05:30
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-09 06:00:10 +05:30
checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648"
dependencies = [
2023-12-05 07:36:36 +05:30
"windows-sys 0.52.0",
]
[[package]]
name = "anstyle-wincon"
2023-12-05 07:36:36 +05:30
version = "3.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 07:36:36 +05:30
checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7"
dependencies = [
"anstyle",
2023-12-05 07:36:36 +05:30
"windows-sys 0.52.0",
]
[[package]]
name = "atomic"
2023-05-18 17:51:32 +05:30
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-18 17:51:32 +05:30
checksum = "c59bdb34bc650a32731b31bd8f0829cc15d24a708ee31559e0bb34f2bc320cba"
[[package]]
name = "autocfg"
2022-05-22 15:06:46 +05:30
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-22 15:06:46 +05:30
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "backtrace"
2023-08-23 06:07:34 +05:30
version = "0.3.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-23 06:07:34 +05:30
checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
2023-06-30 05:33:45 +05:30
"miniz_oxide",
"object",
"rustc-demangle",
]
[[package]]
name = "base64"
2024-01-12 07:39:44 +05:30
version = "0.21.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-12 07:39:44 +05:30
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
[[package]]
name = "bitflags"
2021-08-21 14:59:01 +05:30
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-21 14:59:01 +05:30
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "bitflags"
2024-01-17 06:41:19 +05:30
version = "2.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-17 06:41:19 +05:30
checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf"
[[package]]
name = "cc"
2023-11-15 06:28:16 +05:30
version = "1.0.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-15 06:28:16 +05:30
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
2023-08-03 07:00:49 +05:30
dependencies = [
"libc",
]
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
version = "4.4.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e578d6ec4194633722ccf9544794b71b1385c3c027efe0c55db226fc880865c"
dependencies = [
"clap_builder",
"clap_derive",
]
[[package]]
name = "clap_builder"
version = "4.4.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4df4df40ec50c46000231c914968278b1eb05098cf8f1b3a518a95030e71d1c7"
dependencies = [
"anstream",
"anstyle",
"clap_lex",
"strsim",
]
[[package]]
name = "clap_derive"
version = "4.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442"
dependencies = [
"heck",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "clap_lex"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1"
[[package]]
name = "color-eyre"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a667583cca8c4f8436db8de46ea8233c42a7d9ae424a82d338f2e4675229204"
dependencies = [
"backtrace",
"eyre",
"indenter",
"once_cell",
"owo-colors",
]
[[package]]
name = "colorchoice"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
[[package]]
2021-11-06 20:45:30 +05:30
name = "comfy-table"
version = "7.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c64043d6c7b7a4c58e39e7efccfdea7b93d885a795d0c054a69dbbf4dd52686"
dependencies = [
2021-11-06 20:45:30 +05:30
"crossterm",
"strum",
"strum_macros",
"unicode-width",
]
2022-01-01 11:20:05 +05:30
[[package]]
name = "crc32fast"
2022-05-22 15:06:46 +05:30
version = "1.3.2"
2022-01-01 11:20:05 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-22 15:06:46 +05:30
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
2022-01-01 11:20:05 +05:30
dependencies = [
"cfg-if",
]
[[package]]
2021-11-06 20:45:30 +05:30
name = "crossterm"
version = "0.27.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df"
dependencies = [
2024-01-17 06:41:19 +05:30
"bitflags 2.4.2",
2021-11-06 20:45:30 +05:30
"crossterm_winapi",
"libc",
2021-11-06 20:45:30 +05:30
"parking_lot",
"winapi",
]
[[package]]
2021-11-06 20:45:30 +05:30
name = "crossterm_winapi"
2023-06-18 16:49:47 +05:30
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 16:49:47 +05:30
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
2021-11-06 20:45:30 +05:30
dependencies = [
"winapi",
]
[[package]]
name = "deranged"
2023-12-31 07:23:18 +05:30
version = "0.3.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 07:23:18 +05:30
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
dependencies = [
"powerfmt",
]
[[package]]
name = "eyre"
2024-02-01 00:51:59 +05:30
version = "0.6.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-01 00:51:59 +05:30
checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec"
dependencies = [
"indenter",
"once_cell",
]
[[package]]
name = "fastrand"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
2022-01-01 11:20:05 +05:30
[[package]]
name = "flate2"
2023-10-14 08:37:34 +05:30
version = "1.0.28"
2022-01-01 11:20:05 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-14 08:37:34 +05:30
checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
2022-01-01 11:20:05 +05:30
dependencies = [
"crc32fast",
2023-06-30 05:33:45 +05:30
"miniz_oxide",
2022-01-01 11:20:05 +05:30
]
[[package]]
name = "form_urlencoded"
2023-11-23 05:51:16 +05:30
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-23 05:51:16 +05:30
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
dependencies = [
"percent-encoding",
]
2023-10-25 06:05:12 +05:30
[[package]]
name = "getrandom"
2024-01-10 07:16:29 +05:30
version = "0.2.12"
2023-10-25 06:05:12 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-10 07:16:29 +05:30
checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
2023-10-25 06:05:12 +05:30
dependencies = [
"cfg-if",
"libc",
"wasi",
]
[[package]]
name = "gimli"
2023-11-25 05:48:58 +05:30
version = "0.28.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-25 05:48:58 +05:30
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
[[package]]
name = "hcctl"
version = "2.0.8"
dependencies = [
"clap",
"color-eyre",
2021-11-06 20:45:30 +05:30
"comfy-table",
"healthchecks",
"time",
"uuid",
]
[[package]]
name = "healthchecks"
version = "3.1.6"
dependencies = [
"serde",
"serde_derive",
"serde_json",
"thiserror",
"ureq",
"uuid",
]
[[package]]
name = "healthchecks-monitor"
version = "3.0.6"
dependencies = [
"clap",
"color-eyre",
"healthchecks",
"subprocess",
]
2022-01-18 16:20:43 +05:30
[[package]]
name = "heck"
2023-02-16 19:53:18 +05:30
version = "0.4.1"
2022-01-18 16:20:43 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-16 19:53:18 +05:30
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2022-01-18 16:20:43 +05:30
[[package]]
name = "hoot"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df22a4d90f1b0e65fe3e0d6ee6a4608cc4d81f4b2eb3e670f44bb6bde711e452"
dependencies = [
"httparse",
"log",
]
[[package]]
name = "hootbin"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "354e60868e49ea1a39c44b9562ad207c4259dc6eabf9863bf3b0f058c55cfdb2"
dependencies = [
"fastrand",
"hoot",
"serde",
"serde_json",
"thiserror",
]
[[package]]
name = "httparse"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
[[package]]
name = "idna"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "indenter"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
[[package]]
name = "itoa"
2023-12-09 08:43:26 +05:30
version = "1.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-09 08:43:26 +05:30
checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
[[package]]
name = "libc"
2024-02-01 00:51:59 +05:30
version = "0.2.153"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-01 00:51:59 +05:30
checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
2021-11-06 20:45:30 +05:30
[[package]]
name = "lock_api"
2023-10-18 06:08:02 +05:30
version = "0.4.11"
2021-11-06 20:45:30 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-18 06:08:02 +05:30
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
2021-11-06 20:45:30 +05:30
dependencies = [
2022-05-22 15:06:46 +05:30
"autocfg",
2021-11-06 20:45:30 +05:30
"scopeguard",
]
[[package]]
name = "log"
2023-08-13 06:08:46 +05:30
version = "0.4.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-13 06:08:46 +05:30
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
[[package]]
name = "memchr"
2023-12-29 05:36:28 +05:30
version = "2.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-29 05:36:28 +05:30
checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
2023-05-18 17:51:32 +05:30
[[package]]
name = "miniz_oxide"
2024-02-04 09:03:14 +05:30
version = "0.7.2"
2023-05-18 17:51:32 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-04 09:03:14 +05:30
checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
2023-05-18 17:51:32 +05:30
dependencies = [
"adler",
]
[[package]]
name = "num-conv"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
[[package]]
name = "object"
2023-12-24 08:50:53 +05:30
version = "0.32.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-24 08:50:53 +05:30
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
2023-12-08 06:21:04 +05:30
version = "1.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-08 06:21:04 +05:30
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
[[package]]
name = "owo-colors"
version = "3.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
[[package]]
2021-11-06 20:45:30 +05:30
name = "parking_lot"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
2021-11-06 20:45:30 +05:30
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
2021-11-06 20:45:30 +05:30
name = "parking_lot_core"
2023-10-18 06:08:02 +05:30
version = "0.9.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-18 06:08:02 +05:30
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
dependencies = [
2021-11-06 20:45:30 +05:30
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
2023-12-05 07:36:36 +05:30
"windows-targets 0.48.5",
]
2021-11-06 20:45:30 +05:30
[[package]]
name = "percent-encoding"
2023-11-23 05:51:16 +05:30
version = "2.3.1"
2021-11-06 20:45:30 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-23 05:51:16 +05:30
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2021-11-06 20:45:30 +05:30
[[package]]
name = "powerfmt"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
[[package]]
name = "proc-macro2"
2024-01-21 09:07:21 +05:30
version = "1.0.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 09:07:21 +05:30
checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae"
dependencies = [
2022-05-22 15:06:46 +05:30
"unicode-ident",
]
[[package]]
name = "quote"
version = "1.0.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
dependencies = [
"proc-macro2",
]
[[package]]
name = "redox_syscall"
2023-10-18 06:08:02 +05:30
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-18 06:08:02 +05:30
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
dependencies = [
"bitflags 1.3.2",
]
[[package]]
name = "ring"
2023-12-06 06:27:24 +05:30
version = "0.17.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-06 06:27:24 +05:30
checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74"
dependencies = [
"cc",
2023-10-25 06:05:12 +05:30
"getrandom",
"libc",
"spin",
"untrusted",
2023-12-05 07:36:36 +05:30
"windows-sys 0.48.0",
]
[[package]]
name = "rustc-demangle"
2023-05-18 17:51:32 +05:30
version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-18 17:51:32 +05:30
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
[[package]]
name = "rustls"
version = "0.22.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e87c9956bd9807afa1f77e0f7594af32566e830e088a5576d27c5b6f30f49d41"
dependencies = [
"log",
"ring",
"rustls-pki-types",
"rustls-webpki",
"subtle",
"zeroize",
]
[[package]]
name = "rustls-pki-types"
2024-02-04 09:03:14 +05:30
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-04 09:03:14 +05:30
checksum = "0a716eb65e3158e90e17cd93d855216e27bde02745ab842f2cab4a39dba1bacf"
2023-07-06 07:08:46 +05:30
[[package]]
name = "rustls-webpki"
2024-02-04 09:03:14 +05:30
version = "0.102.2"
2023-07-06 07:08:46 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-04 09:03:14 +05:30
checksum = "faaa0a62740bedb9b2ef5afa303da42764c012f743917351dc9a237ea1663610"
2023-07-06 07:08:46 +05:30
dependencies = [
"ring",
"rustls-pki-types",
2023-07-06 07:08:46 +05:30
"untrusted",
]
[[package]]
name = "rustversion"
2023-07-22 05:55:25 +05:30
version = "1.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-22 05:55:25 +05:30
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
[[package]]
name = "ryu"
2023-12-10 06:19:57 +05:30
version = "1.0.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-10 06:19:57 +05:30
checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
2021-11-06 20:45:30 +05:30
[[package]]
name = "scopeguard"
2023-07-22 05:55:25 +05:30
version = "1.2.0"
2021-11-06 20:45:30 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-22 05:55:25 +05:30
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2021-11-06 20:45:30 +05:30
[[package]]
name = "serde"
version = "1.0.196"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "870026e60fa08c69f064aa766c10f10b1d62db9ccd4d0abb206472bee0ce3b32"
2023-08-24 07:45:41 +05:30
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
version = "1.0.196"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33c85360c95e7d137454dc81d9a4ed2b8efd8fbe19cee57357b32b9771fccb67"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
version = "1.0.113"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69801b70b1c3dac963ecb03a364ba0ceda9cf60c71cfe475e99864759c8b8a79"
dependencies = [
"itoa",
"ryu",
"serde",
]
2021-11-06 20:45:30 +05:30
[[package]]
name = "smallvec"
2024-01-20 07:09:54 +05:30
version = "1.13.1"
2021-11-06 20:45:30 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-20 07:09:54 +05:30
checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7"
2021-11-06 20:45:30 +05:30
[[package]]
name = "spin"
2023-10-25 06:05:12 +05:30
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-25 06:05:12 +05:30
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2021-11-06 20:45:30 +05:30
[[package]]
name = "strum"
version = "0.25.0"
2021-11-06 20:45:30 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
2021-11-06 20:45:30 +05:30
[[package]]
name = "strum_macros"
version = "0.25.3"
2021-11-06 20:45:30 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"
2021-11-06 20:45:30 +05:30
dependencies = [
"heck",
2021-11-06 20:45:30 +05:30
"proc-macro2",
"quote",
"rustversion",
"syn",
2021-11-06 20:45:30 +05:30
]
[[package]]
name = "subprocess"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c2e86926081dda636c546d8c5e641661049d7562a68f5488be4a1f7f66f6086"
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "subtle"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
[[package]]
name = "syn"
2024-01-05 07:02:12 +05:30
version = "2.0.48"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-05 07:02:12 +05:30
checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "thiserror"
2024-01-03 07:06:51 +05:30
version = "1.0.56"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-03 07:06:51 +05:30
checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2024-01-03 07:06:51 +05:30
version = "1.0.56"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-03 07:06:51 +05:30
checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "time"
version = "0.3.34"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749"
dependencies = [
"deranged",
"num-conv",
"powerfmt",
"serde",
"time-core",
"time-macros",
]
[[package]]
name = "time-core"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
[[package]]
name = "time-macros"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774"
dependencies = [
"num-conv",
"time-core",
]
[[package]]
name = "tinyvec"
2022-05-22 15:06:46 +05:30
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-22 15:06:46 +05:30
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
2023-02-16 19:53:18 +05:30
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-16 19:53:18 +05:30
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "unicode-bidi"
2024-01-18 07:20:13 +05:30
version = "0.3.15"
2022-05-22 15:06:46 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-18 07:20:13 +05:30
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
2022-05-22 15:06:46 +05:30
[[package]]
name = "unicode-ident"
2023-09-14 09:53:50 +05:30
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-14 09:53:50 +05:30
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
[[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-09-20 06:31:16 +05:30
version = "0.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-20 06:31:16 +05:30
checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
[[package]]
name = "untrusted"
2023-10-25 06:05:12 +05:30
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-25 06:05:12 +05:30
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
[[package]]
name = "ureq"
version = "2.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "399dd89e2af196ae4f83a47bb37a1455e664fe2fed97b3ae68a1c4a3f8216e76"
dependencies = [
"base64",
2022-01-01 11:20:05 +05:30
"flate2",
"hootbin",
"log",
"once_cell",
"rustls",
"rustls-pki-types",
"rustls-webpki",
"serde",
"serde_json",
"url",
"webpki-roots",
]
[[package]]
name = "url"
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
]
[[package]]
name = "utf8parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
[[package]]
name = "uuid"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a"
dependencies = [
"atomic",
]
[[package]]
2023-10-25 06:05:12 +05:30
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-25 06:05:12 +05:30
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "webpki-roots"
2024-02-04 09:03:14 +05:30
version = "0.26.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-04 09:03:14 +05:30
checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009"
dependencies = [
"rustls-pki-types",
]
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"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"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
2023-12-05 07:36:36 +05:30
"windows-targets 0.48.5",
]
[[package]]
name = "windows-sys"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
"windows-targets 0.52.0",
]
[[package]]
name = "windows-targets"
2023-08-19 07:18:39 +05:30
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 07:18:39 +05:30
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
dependencies = [
2023-12-05 07:36:36 +05:30
"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",
]
[[package]]
name = "windows-targets"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
dependencies = [
"windows_aarch64_gnullvm 0.52.0",
"windows_aarch64_msvc 0.52.0",
"windows_i686_gnu 0.52.0",
"windows_i686_msvc 0.52.0",
"windows_x86_64_gnu 0.52.0",
"windows_x86_64_gnullvm 0.52.0",
"windows_x86_64_msvc 0.52.0",
]
[[package]]
name = "windows_aarch64_gnullvm"
2023-08-19 07:18:39 +05:30
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 07:18:39 +05:30
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2023-12-05 07:36:36 +05:30
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
[[package]]
name = "windows_aarch64_msvc"
2023-08-19 07:18:39 +05:30
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 07:18:39 +05:30
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2023-12-05 07:36:36 +05:30
[[package]]
name = "windows_aarch64_msvc"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
[[package]]
name = "windows_i686_gnu"
2023-08-19 07:18:39 +05:30
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 07:18:39 +05:30
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2023-12-05 07:36:36 +05:30
[[package]]
name = "windows_i686_gnu"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
[[package]]
name = "windows_i686_msvc"
2023-08-19 07:18:39 +05:30
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 07:18:39 +05:30
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2023-12-05 07:36:36 +05:30
[[package]]
name = "windows_i686_msvc"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
[[package]]
name = "windows_x86_64_gnu"
2023-08-19 07:18:39 +05:30
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 07:18:39 +05:30
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2023-12-05 07:36:36 +05:30
[[package]]
name = "windows_x86_64_gnu"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
[[package]]
name = "windows_x86_64_gnullvm"
2023-08-19 07:18:39 +05:30
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 07:18:39 +05:30
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2023-12-05 07:36:36 +05:30
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
[[package]]
name = "windows_x86_64_msvc"
2023-08-19 07:18:39 +05:30
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 07:18:39 +05:30
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2023-12-05 07:36:36 +05:30
[[package]]
name = "windows_x86_64_msvc"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
[[package]]
name = "zeroize"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"