adx/Cargo.lock

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

1317 lines
34 KiB
Plaintext
Raw Permalink Normal View History

# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2021-08-19 21:40:44 +05:30
[[package]]
name = "addr2line"
2023-08-23 07:30:45 +05:30
version = "0.21.0"
2021-08-19 21:40:44 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-23 07:30:45 +05:30
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
2021-08-19 21:40:44 +05:30
dependencies = [
"gimli",
]
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
[[package]]
name = "adx"
version = "4.5.4"
dependencies = [
"clap",
2021-08-19 21:40:44 +05:30
"color-eyre",
2021-08-19 22:55:48 +05:30
"futures",
2024-02-28 10:14:50 +05:30
"insta-cmd",
2021-11-06 21:25:29 +05:30
"reqwest",
"roxmltree",
2021-11-06 21:25:29 +05:30
"semver",
"thiserror",
2021-11-06 21:25:29 +05:30
"tokio",
]
[[package]]
name = "anstream"
2024-05-03 06:17:25 +05:30
version = "0.6.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-03 06:17:25 +05:30
checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b"
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
2024-05-03 06:17:25 +05:30
"is_terminal_polyfill",
"utf8parse",
]
[[package]]
name = "anstyle"
2024-05-03 06:17:25 +05:30
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-03 06:17:25 +05:30
checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b"
[[package]]
name = "anstyle-parse"
2024-05-03 06:17:25 +05:30
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-03 06:17:25 +05:30
checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4"
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
2024-05-03 06:17:25 +05:30
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-03 06:17:25 +05:30
checksum = "a64c907d4e79225ac72e2a354c9ce84d50ebb4586dee56c82b3ee73004f537f5"
dependencies = [
2023-12-05 07:30:38 +05:30
"windows-sys 0.52.0",
]
[[package]]
name = "anstyle-wincon"
2024-05-03 06:17:25 +05:30
version = "3.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-03 06:17:25 +05:30
checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19"
dependencies = [
"anstyle",
2023-12-05 07:30:38 +05:30
"windows-sys 0.52.0",
]
[[package]]
name = "autocfg"
2024-05-04 05:47:04 +05:30
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-04 05:47:04 +05:30
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
2021-08-19 21:40:44 +05:30
[[package]]
name = "backtrace"
2024-03-23 06:39:57 +05:30
version = "0.3.71"
2021-08-19 21:40:44 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 06:39:57 +05:30
checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d"
2021-08-19 21:40:44 +05:30
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
[[package]]
name = "base64"
2024-05-01 07:04:50 +05:30
version = "0.22.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-01 07:04:50 +05:30
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
[[package]]
name = "bumpalo"
2024-04-09 05:36:56 +05:30
version = "3.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-09 05:36:56 +05:30
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
[[package]]
2021-11-06 21:25:29 +05:30
name = "bytes"
2024-03-23 06:39:57 +05:30
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 06:39:57 +05:30
checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
[[package]]
name = "cc"
2024-05-07 07:50:07 +05:30
version = "1.0.97"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-07 07:50:07 +05:30
checksum = "099a5357d84c4c61eb35fc8eafa9a79a902c2f76911e5747ced4e032edd8d9b4"
[[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.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0"
dependencies = [
"clap_builder",
"clap_derive",
]
[[package]]
name = "clap_builder"
version = "4.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4"
dependencies = [
"anstream",
"anstyle",
"clap_lex",
"strsim",
]
[[package]]
name = "clap_derive"
version = "4.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "528131438037fd55894f62d6e9f068b8f45ac57ffa77517819645d10aed04f64"
dependencies = [
"heck",
"proc-macro2",
"quote",
2023-05-18 17:49:13 +05:30
"syn",
]
[[package]]
name = "clap_lex"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce"
2021-08-19 21:40:44 +05:30
[[package]]
name = "color-eyre"
version = "0.6.3"
2021-08-19 21:40:44 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55146f5e46f237f7423d74111267d4597b59b0dad0ffaf7303bce9945d843ad5"
2021-08-19 21:40:44 +05:30
dependencies = [
"backtrace",
"eyre",
"indenter",
"once_cell",
"owo-colors",
]
[[package]]
name = "colorchoice"
2024-05-03 06:17:25 +05:30
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-03 06:17:25 +05:30
checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422"
2024-02-28 10:14:50 +05:30
[[package]]
name = "console"
version = "0.15.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb"
dependencies = [
"encode_unicode",
"lazy_static",
"libc",
"windows-sys 0.52.0",
]
[[package]]
name = "encode_unicode"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
2021-08-19 21:40:44 +05:30
[[package]]
name = "eyre"
2024-02-01 07:35:41 +05:30
version = "0.6.12"
2021-08-19 21:40:44 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-01 07:35:41 +05:30
checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec"
2021-08-19 21:40:44 +05:30
dependencies = [
"indenter",
"once_cell",
]
[[package]]
2021-11-06 21:25:29 +05:30
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-06 21:25:29 +05:30
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "form_urlencoded"
2023-11-23 05:50:07 +05:30
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-23 05:50:07 +05:30
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
dependencies = [
"percent-encoding",
]
2021-08-19 22:55:48 +05:30
[[package]]
name = "futures"
version = "0.3.30"
2021-08-19 22:55:48 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
2021-08-19 22:55:48 +05:30
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
dependencies = [
"futures-core",
2021-08-19 22:55:48 +05:30
"futures-sink",
]
[[package]]
name = "futures-core"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
2021-08-19 22:55:48 +05:30
[[package]]
name = "futures-executor"
version = "0.3.30"
2021-08-19 22:55:48 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
2021-08-19 22:55:48 +05:30
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
[[package]]
name = "futures-macro"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
dependencies = [
"proc-macro2",
"quote",
2023-05-18 17:49:13 +05:30
"syn",
]
[[package]]
name = "futures-sink"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
[[package]]
name = "futures-task"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
[[package]]
name = "futures-util"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
dependencies = [
2021-08-19 22:55:48 +05:30
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
2021-08-19 22:55:48 +05:30
"futures-sink",
"futures-task",
"memchr",
"pin-project-lite",
"pin-utils",
"slab",
]
2023-10-25 06:16:48 +05:30
[[package]]
name = "getrandom"
2024-05-18 06:12:54 +05:30
version = "0.2.15"
2023-10-25 06:16:48 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 06:12:54 +05:30
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
2023-10-25 06:16:48 +05:30
dependencies = [
"cfg-if",
"libc",
"wasi",
]
2021-08-19 21:40:44 +05:30
[[package]]
name = "gimli"
2023-11-25 06:46:28 +05:30
version = "0.28.1"
2021-08-19 21:40:44 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-25 06:46:28 +05:30
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
2021-08-19 21:40:44 +05:30
[[package]]
name = "heck"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
[[package]]
name = "hermit-abi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
[[package]]
2021-11-06 21:25:29 +05:30
name = "http"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
dependencies = [
2021-11-06 21:25:29 +05:30
"bytes",
"fnv",
2022-03-28 12:25:01 +05:30
"itoa",
]
[[package]]
2021-11-06 21:25:29 +05:30
name = "http-body"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643"
dependencies = [
2021-11-06 21:25:29 +05:30
"bytes",
"http",
]
[[package]]
name = "http-body-util"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d"
dependencies = [
"bytes",
"futures-core",
"http",
"http-body",
2021-11-06 21:25:29 +05:30
"pin-project-lite",
]
[[package]]
2021-11-06 21:25:29 +05:30
name = "httparse"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
2021-11-06 21:25:29 +05:30
[[package]]
name = "hyper"
2024-04-17 06:12:03 +05:30
version = "1.3.1"
2021-11-06 21:25:29 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-17 06:12:03 +05:30
checksum = "fe575dd17d0862a9a33781c8c4696a55c320909004a67a00fb286ba8b1bc496d"
dependencies = [
2021-11-06 21:25:29 +05:30
"bytes",
"futures-channel",
"futures-util",
"http",
"http-body",
"httparse",
2022-03-28 12:25:01 +05:30
"itoa",
"pin-project-lite",
"smallvec",
2021-11-06 21:25:29 +05:30
"tokio",
"want",
]
2021-09-19 21:07:53 +05:30
[[package]]
2021-11-06 21:25:29 +05:30
name = "hyper-rustls"
version = "0.26.0"
2021-09-19 21:07:53 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0bea761b46ae2b24eb4aef630d8d1c398157b6fc29e6350ecf090a0b70c952c"
2021-11-06 21:25:29 +05:30
dependencies = [
2023-07-05 06:06:34 +05:30
"futures-util",
2021-12-06 11:53:41 +05:30
"http",
2021-11-06 21:25:29 +05:30
"hyper",
"hyper-util",
2021-11-06 21:25:29 +05:30
"rustls",
"rustls-pki-types",
2021-11-06 21:25:29 +05:30
"tokio",
"tokio-rustls",
"tower-service",
]
[[package]]
name = "hyper-util"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca38ef113da30126bbff9cd1705f9273e15d45498615d138b0c20279ac7a76aa"
dependencies = [
"bytes",
"futures-channel",
"futures-util",
"http",
"http-body",
"hyper",
"pin-project-lite",
"socket2",
"tokio",
"tower",
"tower-service",
"tracing",
2021-11-06 21:25:29 +05:30
]
2021-09-19 21:07:53 +05:30
[[package]]
name = "idna"
2023-11-23 05:50:07 +05:30
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-23 05:50:07 +05:30
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2021-08-19 21:40:44 +05:30
[[package]]
name = "indenter"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
2024-02-28 10:14:50 +05:30
[[package]]
name = "insta"
2024-05-16 08:55:13 +05:30
version = "1.39.0"
2024-02-28 10:14:50 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-16 08:55:13 +05:30
checksum = "810ae6042d48e2c9e9215043563a58a80b877bc863228a74cf10c49d4620a6f5"
2024-02-28 10:14:50 +05:30
dependencies = [
"console",
"lazy_static",
"linked-hash-map",
"serde",
"similar",
]
[[package]]
name = "insta-cmd"
version = "0.6.0"
2024-02-28 10:14:50 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffeeefa927925cced49ccb01bf3e57c9d4cd132df21e576eb9415baeab2d3de6"
2024-02-28 10:14:50 +05:30
dependencies = [
"insta",
"serde",
"serde_json",
]
[[package]]
2021-11-06 21:25:29 +05:30
name = "ipnet"
2023-10-23 06:09:14 +05:30
version = "2.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-23 06:09:14 +05:30
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
2024-05-03 06:17:25 +05:30
[[package]]
name = "is_terminal_polyfill"
version = "1.70.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800"
2021-12-26 20:51:45 +05:30
[[package]]
name = "itoa"
2024-03-27 05:53:37 +05:30
version = "1.0.11"
2021-12-26 20:51:45 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-27 05:53:37 +05:30
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
2021-12-26 20:51:45 +05:30
[[package]]
name = "js-sys"
2024-03-05 06:20:04 +05:30
version = "0.3.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-05 06:20:04 +05:30
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
dependencies = [
"wasm-bindgen",
]
2024-02-28 10:14:50 +05:30
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
2021-09-19 21:07:53 +05:30
name = "libc"
2024-05-18 06:12:54 +05:30
version = "0.2.155"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 06:12:54 +05:30
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
2024-02-28 10:14:50 +05:30
[[package]]
name = "linked-hash-map"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
[[package]]
name = "log"
version = "0.4.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
[[package]]
name = "memchr"
2024-03-28 05:57:58 +05:30
version = "2.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-28 05:57:58 +05:30
checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
[[package]]
name = "mime"
2023-05-18 17:49:13 +05:30
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-18 17:49:13 +05:30
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2021-08-19 21:40:44 +05:30
[[package]]
name = "miniz_oxide"
2024-05-18 06:12:54 +05:30
version = "0.7.3"
2021-08-19 21:40:44 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 06:12:54 +05:30
checksum = "87dfd01fe195c66b572b37921ad8803d010623c0aca821bea2302239d155cdae"
2021-08-19 21:40:44 +05:30
dependencies = [
"adler",
]
2021-09-19 21:07:53 +05:30
[[package]]
2021-11-06 21:25:29 +05:30
name = "mio"
2024-03-02 05:43:29 +05:30
version = "0.8.11"
2021-09-19 21:07:53 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-02 05:43:29 +05:30
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
2021-09-19 21:07:53 +05:30
dependencies = [
2021-11-06 21:25:29 +05:30
"libc",
2022-03-28 12:25:01 +05:30
"wasi",
2023-12-05 07:30:38 +05:30
"windows-sys 0.48.0",
2021-09-19 21:07:53 +05:30
]
[[package]]
name = "num_cpus"
2023-07-02 05:33:20 +05:30
version = "1.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-02 05:33:20 +05:30
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
dependencies = [
2023-07-02 05:33:20 +05:30
"hermit-abi",
"libc",
]
2021-08-19 21:40:44 +05:30
[[package]]
name = "object"
2023-12-25 05:52:52 +05:30
version = "0.32.2"
2021-08-19 21:40:44 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-25 05:52:52 +05:30
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
2021-08-19 21:40:44 +05:30
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
2023-12-08 05:50:26 +05:30
version = "1.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-08 05:50:26 +05:30
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
2021-08-19 21:40:44 +05:30
[[package]]
name = "owo-colors"
version = "3.5.0"
2021-08-19 21:40:44 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
2021-08-19 21:40:44 +05:30
[[package]]
name = "percent-encoding"
2023-11-23 05:50:07 +05:30
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-23 05:50:07 +05:30
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
[[package]]
name = "pin-project"
version = "1.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
version = "1.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pin-project-lite"
2024-03-30 07:22:00 +05:30
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-30 07:22:00 +05:30
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
[[package]]
name = "pin-utils"
version = "0.1.0"
2021-11-06 21:25:29 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
2021-11-06 21:25:29 +05:30
name = "proc-macro2"
2024-05-08 07:26:30 +05:30
version = "1.0.82"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-08 07:26:30 +05:30
checksum = "8ad3d49ab951a01fbaafe34f2ec74122942fe18a3f9814c3268f1bb72042131b"
dependencies = [
2022-07-10 22:33:45 +05:30
"unicode-ident",
]
[[package]]
2021-11-06 21:25:29 +05:30
name = "quote"
2024-04-11 07:36:44 +05:30
version = "1.0.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-11 07:36:44 +05:30
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
dependencies = [
2021-11-06 21:25:29 +05:30
"proc-macro2",
]
[[package]]
2021-11-06 21:25:29 +05:30
name = "reqwest"
version = "0.12.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "566cafdd92868e0939d3fb961bd0dc25fcfaaed179291093b3d43e6b3150ea10"
dependencies = [
2024-04-07 06:09:40 +05:30
"base64",
2021-11-06 21:25:29 +05:30
"bytes",
"futures-core",
"futures-util",
"http",
"http-body",
"http-body-util",
2021-11-06 21:25:29 +05:30
"hyper",
"hyper-rustls",
"hyper-util",
2021-11-06 21:25:29 +05:30
"ipnet",
"js-sys",
"log",
"mime",
"once_cell",
2021-11-06 21:25:29 +05:30
"percent-encoding",
"pin-project-lite",
"rustls",
2021-12-06 11:53:41 +05:30
"rustls-pemfile",
"rustls-pki-types",
2021-11-06 21:25:29 +05:30
"serde",
"serde_json",
"serde_urlencoded",
"sync_wrapper",
2021-11-06 21:25:29 +05:30
"tokio",
"tokio-rustls",
"tower-service",
2021-11-06 21:25:29 +05:30
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"webpki-roots",
"winreg",
]
2021-09-19 21:07:53 +05:30
[[package]]
name = "ring"
version = "0.17.8"
2021-09-19 21:07:53 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
2021-09-19 21:07:53 +05:30
dependencies = [
"cc",
"cfg-if",
2023-10-25 06:16:48 +05:30
"getrandom",
2021-09-19 21:07:53 +05:30
"libc",
"spin",
"untrusted",
"windows-sys 0.52.0",
2021-09-19 21:07:53 +05:30
]
[[package]]
name = "roxmltree"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3cd14fd5e3b777a7422cca79358c57a8f6e3a703d9ac187448d0daf220c2407f"
2021-08-19 21:40:44 +05:30
[[package]]
name = "rustc-demangle"
2024-05-08 07:26:30 +05:30
version = "0.1.24"
2021-08-19 21:40:44 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-08 07:26:30 +05:30
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2021-08-19 21:40:44 +05:30
2021-09-19 21:07:53 +05:30
[[package]]
name = "rustls"
2024-04-20 06:19:49 +05:30
version = "0.22.4"
2021-09-19 21:07:53 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-20 06:19:49 +05:30
checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432"
2021-09-19 21:07:53 +05:30
dependencies = [
"log",
"ring",
"rustls-pki-types",
"rustls-webpki",
"subtle",
"zeroize",
2021-12-06 11:53:41 +05:30
]
[[package]]
name = "rustls-pemfile"
2024-04-07 06:09:40 +05:30
version = "2.1.2"
2021-12-06 11:53:41 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-07 06:09:40 +05:30
checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d"
2021-12-06 11:53:41 +05:30
dependencies = [
2024-04-07 06:09:40 +05:30
"base64",
"rustls-pki-types",
2021-09-19 21:07:53 +05:30
]
[[package]]
name = "rustls-pki-types"
2024-05-08 07:26:30 +05:30
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-08 07:26:30 +05:30
checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d"
[[package]]
name = "rustls-webpki"
2024-05-17 06:39:29 +05:30
version = "0.102.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-17 06:39:29 +05:30
checksum = "ff448f7e92e913c4b7d4c6d8e4540a1724b319b4152b8aef6d4cf8339712b33e"
dependencies = [
"ring",
"rustls-pki-types",
"untrusted",
]
[[package]]
name = "ryu"
2024-05-07 07:50:07 +05:30
version = "1.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-07 07:50:07 +05:30
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
[[package]]
name = "semver"
2024-05-07 07:50:07 +05:30
version = "1.0.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-07 07:50:07 +05:30
checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
[[package]]
name = "serde"
2024-05-16 08:55:13 +05:30
version = "1.0.202"
2023-08-24 07:51:38 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-16 08:55:13 +05:30
checksum = "226b61a0d411b2ba5ff6d7f73a476ac4f8bb900373459cd00fab8512828ba395"
2023-08-24 07:51:38 +05:30
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2024-05-16 08:55:13 +05:30
version = "1.0.202"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-16 08:55:13 +05:30
checksum = "6048858004bcff69094cd972ed40a32500f153bd3be9f716b2eed2e8217c4838"
2023-08-24 07:51:38 +05:30
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
2024-05-08 07:26:30 +05:30
version = "1.0.117"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-08 07:26:30 +05:30
checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3"
dependencies = [
2022-03-28 12:25:01 +05:30
"itoa",
"ryu",
"serde",
]
[[package]]
name = "serde_urlencoded"
2022-01-26 13:59:40 +05:30
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-26 13:59:40 +05:30
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
2022-03-28 12:25:01 +05:30
"itoa",
"ryu",
"serde",
]
2024-02-28 10:14:50 +05:30
[[package]]
name = "similar"
2024-03-29 07:31:21 +05:30
version = "2.5.0"
2024-02-28 10:14:50 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-29 07:31:21 +05:30
checksum = "fa42c91313f1d05da9b26f267f931cf178d4aba455b4c4622dd7355eb80c6640"
2024-02-28 10:14:50 +05:30
[[package]]
2021-09-19 21:07:53 +05:30
name = "slab"
2023-08-23 07:30:45 +05:30
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-23 07:30:45 +05:30
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
dependencies = [
"autocfg",
]
[[package]]
name = "smallvec"
2024-03-21 07:31:58 +05:30
version = "1.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-21 07:31:58 +05:30
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
[[package]]
name = "socket2"
2024-04-30 07:42:14 +05:30
version = "0.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-30 07:42:14 +05:30
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
dependencies = [
"libc",
2024-02-24 05:46:10 +05:30
"windows-sys 0.52.0",
]
[[package]]
2021-09-19 21:07:53 +05:30
name = "spin"
2023-10-25 06:16:48 +05:30
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-25 06:16:48 +05:30
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2021-09-19 21:07:53 +05:30
[[package]]
name = "strsim"
2024-04-04 06:18:28 +05:30
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-04 06:18:28 +05:30
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
[[package]]
name = "subtle"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
[[package]]
name = "syn"
2024-05-17 06:39:29 +05:30
version = "2.0.64"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-17 06:39:29 +05:30
checksum = "7ad3dee41f36859875573074334c200d1add8e4a87bb37113ebd31d926b7b11f"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "sync_wrapper"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
[[package]]
name = "thiserror"
version = "1.0.61"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.61"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533"
dependencies = [
"proc-macro2",
"quote",
2023-05-18 17:49:13 +05:30
"syn",
]
[[package]]
2021-11-06 21:25:29 +05:30
name = "tinyvec"
2022-04-27 23:49:16 +05:30
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-27 23:49:16 +05:30
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
dependencies = [
2021-11-06 21:25:29 +05:30
"tinyvec_macros",
]
[[package]]
2021-11-06 21:25:29 +05:30
name = "tinyvec_macros"
2023-02-16 19:53:18 +05:30
version = "0.1.1"
2021-11-06 21:25:29 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-16 19:53:18 +05:30
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2021-11-06 21:25:29 +05:30
[[package]]
name = "tokio"
version = "1.37.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787"
dependencies = [
"backtrace",
2021-11-06 21:25:29 +05:30
"bytes",
"libc",
"mio",
"num_cpus",
"pin-project-lite",
2023-12-18 21:41:11 +05:30
"socket2",
2021-11-06 21:25:29 +05:30
"tokio-macros",
2023-12-05 07:30:38 +05:30
"windows-sys 0.48.0",
]
[[package]]
2021-11-06 21:25:29 +05:30
name = "tokio-macros"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
dependencies = [
"proc-macro2",
"quote",
2023-05-18 17:49:13 +05:30
"syn",
]
[[package]]
2021-11-06 21:25:29 +05:30
name = "tokio-rustls"
version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
dependencies = [
2021-11-06 21:25:29 +05:30
"rustls",
"rustls-pki-types",
2021-11-06 21:25:29 +05:30
"tokio",
]
[[package]]
name = "tower"
version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
2021-11-06 21:25:29 +05:30
dependencies = [
"futures-core",
"futures-util",
"pin-project",
2021-11-06 21:25:29 +05:30
"pin-project-lite",
"tokio",
"tower-layer",
"tower-service",
2022-04-27 23:49:16 +05:30
"tracing",
2021-11-06 21:25:29 +05:30
]
[[package]]
name = "tower-layer"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
[[package]]
2021-11-06 21:25:29 +05:30
name = "tower-service"
2022-07-10 22:33:45 +05:30
version = "0.3.2"
2021-11-06 21:25:29 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-10 22:33:45 +05:30
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2021-11-06 21:25:29 +05:30
[[package]]
name = "tracing"
2023-10-19 09:00:21 +05:30
version = "0.1.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-19 09:00:21 +05:30
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
dependencies = [
"log",
"pin-project-lite",
2021-11-06 21:25:29 +05:30
"tracing-core",
]
[[package]]
name = "tracing-core"
2023-10-14 06:22:28 +05:30
version = "0.1.32"
2021-11-06 21:25:29 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-14 06:22:28 +05:30
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
2021-11-06 21:25:29 +05:30
dependencies = [
2022-07-10 22:33:45 +05:30
"once_cell",
]
[[package]]
2021-11-06 21:25:29 +05:30
name = "try-lock"
2023-12-08 05:50:26 +05:30
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-08 05:50:26 +05:30
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
[[package]]
name = "unicode-bidi"
2024-01-18 05:39:39 +05:30
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-18 05:39:39 +05:30
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
2022-07-10 22:33:45 +05:30
[[package]]
name = "unicode-ident"
2023-09-14 07:56:05 +05:30
version = "1.0.12"
2022-07-10 22:33:45 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-14 07:56:05 +05:30
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2022-07-10 22:33:45 +05:30
[[package]]
name = "unicode-normalization"
version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
dependencies = [
"tinyvec",
]
2021-09-19 21:07:53 +05:30
[[package]]
name = "untrusted"
2023-10-25 06:16:48 +05:30
version = "0.9.0"
2021-09-19 21:07:53 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-25 06:16:48 +05:30
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2021-09-19 21:07:53 +05:30
[[package]]
name = "url"
2023-11-23 05:50:07 +05:30
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-23 05:50:07 +05:30
checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
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]]
2021-11-06 21:25:29 +05:30
name = "want"
2023-06-18 06:10:29 +05:30
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 06:10:29 +05:30
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2021-11-06 21:25:29 +05:30
dependencies = [
"try-lock",
]
2022-03-28 12:25:01 +05:30
[[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"
2024-03-05 06:20:04 +05:30
version = "0.2.92"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-05 06:20:04 +05:30
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2024-03-05 06:20:04 +05:30
version = "0.2.92"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-05 06:20:04 +05:30
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
2023-05-18 17:49:13 +05:30
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2024-03-05 06:20:04 +05:30
version = "0.4.42"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-05 06:20:04 +05:30
checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2024-03-05 06:20:04 +05:30
version = "0.2.92"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-05 06:20:04 +05:30
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2024-03-05 06:20:04 +05:30
version = "0.2.92"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-05 06:20:04 +05:30
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
dependencies = [
"proc-macro2",
"quote",
2023-05-18 17:49:13 +05:30
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2024-03-05 06:20:04 +05:30
version = "0.2.92"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-05 06:20:04 +05:30
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
[[package]]
name = "web-sys"
2024-03-05 06:20:04 +05:30
version = "0.3.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-05 06:20:04 +05:30
checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
dependencies = [
"js-sys",
"wasm-bindgen",
]
2021-09-19 21:07:53 +05:30
[[package]]
name = "webpki-roots"
version = "0.26.1"
2021-09-19 21:07:53 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009"
dependencies = [
"rustls-pki-types",
]
2021-09-19 21:07:53 +05:30
[[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:30:38 +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 = [
2024-04-13 07:52:19 +05:30
"windows-targets 0.52.5",
]
[[package]]
name = "windows-targets"
2023-08-19 05:41:35 +05:30
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 05:41:35 +05:30
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
dependencies = [
2023-12-05 07:30:38 +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"
2024-04-13 07:52:19 +05:30
version = "0.52.5"
2023-12-05 07:30:38 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-13 07:52:19 +05:30
checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
2023-12-05 07:30:38 +05:30
dependencies = [
2024-04-13 07:52:19 +05:30
"windows_aarch64_gnullvm 0.52.5",
"windows_aarch64_msvc 0.52.5",
"windows_i686_gnu 0.52.5",
"windows_i686_gnullvm",
"windows_i686_msvc 0.52.5",
"windows_x86_64_gnu 0.52.5",
"windows_x86_64_gnullvm 0.52.5",
"windows_x86_64_msvc 0.52.5",
2023-02-16 19:53:18 +05:30
]
2022-07-10 22:33:45 +05:30
[[package]]
name = "windows_aarch64_gnullvm"
2023-08-19 05:41:35 +05:30
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 05:41:35 +05:30
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2023-12-05 07:30:38 +05:30
[[package]]
name = "windows_aarch64_gnullvm"
2024-04-13 07:52:19 +05:30
version = "0.52.5"
2023-12-05 07:30:38 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-13 07:52:19 +05:30
checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
2023-12-05 07:30:38 +05:30
[[package]]
name = "windows_aarch64_msvc"
2023-08-19 05:41:35 +05:30
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 05:41:35 +05:30
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2023-12-05 07:30:38 +05:30
[[package]]
name = "windows_aarch64_msvc"
2024-04-13 07:52:19 +05:30
version = "0.52.5"
2023-12-05 07:30:38 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-13 07:52:19 +05:30
checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
2023-12-05 07:30:38 +05:30
[[package]]
name = "windows_i686_gnu"
2023-08-19 05:41:35 +05:30
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 05:41:35 +05:30
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2023-12-05 07:30:38 +05:30
[[package]]
name = "windows_i686_gnu"
2024-04-13 07:52:19 +05:30
version = "0.52.5"
2023-12-05 07:30:38 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-13 07:52:19 +05:30
checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
[[package]]
name = "windows_i686_gnullvm"
version = "0.52.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
2023-12-05 07:30:38 +05:30
[[package]]
name = "windows_i686_msvc"
2023-08-19 05:41:35 +05:30
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 05:41:35 +05:30
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2023-12-05 07:30:38 +05:30
[[package]]
name = "windows_i686_msvc"
2024-04-13 07:52:19 +05:30
version = "0.52.5"
2023-12-05 07:30:38 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-13 07:52:19 +05:30
checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
2023-12-05 07:30:38 +05:30
[[package]]
name = "windows_x86_64_gnu"
2023-08-19 05:41:35 +05:30
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 05:41:35 +05:30
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2023-12-05 07:30:38 +05:30
[[package]]
name = "windows_x86_64_gnu"
2024-04-13 07:52:19 +05:30
version = "0.52.5"
2023-12-05 07:30:38 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-13 07:52:19 +05:30
checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
2023-12-05 07:30:38 +05:30
[[package]]
name = "windows_x86_64_gnullvm"
2023-08-19 05:41:35 +05:30
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 05:41:35 +05:30
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2023-12-05 07:30:38 +05:30
[[package]]
name = "windows_x86_64_gnullvm"
2024-04-13 07:52:19 +05:30
version = "0.52.5"
2023-12-05 07:30:38 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-13 07:52:19 +05:30
checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
2023-12-05 07:30:38 +05:30
[[package]]
name = "windows_x86_64_msvc"
2023-08-19 05:41:35 +05:30
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 05:41:35 +05:30
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2023-12-05 07:30:38 +05:30
[[package]]
name = "windows_x86_64_msvc"
2024-04-13 07:52:19 +05:30
version = "0.52.5"
2023-12-05 07:30:38 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-13 07:52:19 +05:30
checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
2023-12-05 07:30:38 +05:30
2021-11-06 21:25:29 +05:30
[[package]]
name = "winreg"
version = "0.52.0"
2021-11-06 21:25:29 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
2021-11-06 21:25:29 +05:30
dependencies = [
"cfg-if",
2023-12-05 07:30:38 +05:30
"windows-sys 0.48.0",
2021-11-06 21:25:29 +05:30
]
2024-02-28 10:14:50 +05:30
[[package]]
name = "zeroize"
2024-04-26 06:29:59 +05:30
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-26 06:29:59 +05:30
checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"