adx/Cargo.lock

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

1237 lines
31 KiB
Plaintext
Raw 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-02-16 19:53:18 +05:30
version = "0.19.0"
2021-08-19 21:40:44 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-16 19:53:18 +05:30
checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
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.4.2"
dependencies = [
"clap",
2021-08-19 21:40:44 +05:30
"color-eyre",
2021-08-19 22:55:48 +05:30
"futures",
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"
2023-05-18 17:49:13 +05:30
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-18 17:49:13 +05:30
checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163"
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
"is-terminal",
"utf8parse",
]
[[package]]
name = "anstyle"
2023-06-21 06:57:00 +05:30
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-21 06:57:00 +05:30
checksum = "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd"
[[package]]
name = "anstyle-parse"
2023-06-21 06:57:00 +05:30
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-21 06:57:00 +05:30
checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333"
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
dependencies = [
"windows-sys",
]
[[package]]
name = "anstyle-wincon"
2023-05-18 17:49:13 +05:30
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-18 17:49:13 +05:30
checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188"
dependencies = [
"anstyle",
"windows-sys",
]
[[package]]
name = "autocfg"
2022-03-28 12:25:01 +05:30
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-28 12:25:01 +05:30
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2021-08-19 21:40:44 +05:30
[[package]]
name = "backtrace"
2023-02-16 19:53:18 +05:30
version = "0.3.67"
2021-08-19 21:40:44 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-16 19:53:18 +05:30
checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
2021-08-19 21:40:44 +05:30
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
[[package]]
name = "base64"
version = "0.21.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
[[package]]
name = "bitflags"
2021-08-16 13:49:10 +05:30
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-16 13:49:10 +05:30
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "bumpalo"
version = "3.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
[[package]]
2021-11-06 21:25:29 +05:30
name = "bytes"
2023-02-16 19:53:18 +05:30
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-16 19:53:18 +05:30
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
[[package]]
name = "cc"
2023-02-16 19:53:18 +05:30
version = "1.0.79"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-16 19:53:18 +05:30
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
[[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.3.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "384e169cc618c613d5e3ca6404dda77a8685a63e08660dcc64abaf7da7cb0c7a"
dependencies = [
"clap_builder",
"clap_derive",
"once_cell",
]
[[package]]
name = "clap_builder"
version = "4.3.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef137bbe35aab78bdb468ccfba75a5f4d8321ae011d34063770780545176af2d"
dependencies = [
"anstream",
"anstyle",
"clap_lex",
"strsim",
]
[[package]]
name = "clap_derive"
version = "4.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8cd2b2a819ad6eec39e8f1d6b53001af1e5469f8c177579cdaeb313115b825f"
dependencies = [
"heck",
"proc-macro2",
"quote",
2023-05-18 17:49:13 +05:30
"syn",
]
[[package]]
name = "clap_lex"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
2021-08-19 21:40:44 +05:30
[[package]]
name = "color-eyre"
version = "0.6.2"
2021-08-19 21:40:44 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a667583cca8c4f8436db8de46ea8233c42a7d9ae424a82d338f2e4675229204"
2021-08-19 21:40:44 +05:30
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 21:25:29 +05:30
name = "encoding_rs"
2023-02-16 19:53:18 +05:30
version = "0.8.32"
2021-09-19 21:07:53 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-16 19:53:18 +05:30
checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
2021-09-19 21:07:53 +05:30
dependencies = [
"cfg-if",
]
[[package]]
name = "errno"
2023-05-18 17:49:13 +05:30
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-18 17:49:13 +05:30
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
dependencies = [
"errno-dragonfly",
"libc",
"windows-sys",
]
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
2021-08-19 21:40:44 +05:30
[[package]]
name = "eyre"
2022-04-27 23:49:16 +05:30
version = "0.6.8"
2021-08-19 21:40:44 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-27 23:49:16 +05:30
checksum = "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb"
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"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
dependencies = [
"percent-encoding",
]
2021-08-19 22:55:48 +05:30
[[package]]
name = "futures"
version = "0.3.28"
2021-08-19 22:55:48 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
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.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
dependencies = [
"futures-core",
2021-08-19 22:55:48 +05:30
"futures-sink",
]
[[package]]
name = "futures-core"
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
2021-08-19 22:55:48 +05:30
[[package]]
name = "futures-executor"
version = "0.3.28"
2021-08-19 22:55:48 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
2021-08-19 22:55:48 +05:30
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
[[package]]
name = "futures-macro"
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
dependencies = [
"proc-macro2",
"quote",
2023-05-18 17:49:13 +05:30
"syn",
]
[[package]]
name = "futures-sink"
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
[[package]]
name = "futures-task"
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
[[package]]
name = "futures-util"
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
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",
]
2021-08-19 21:40:44 +05:30
[[package]]
name = "gimli"
2023-06-18 06:10:29 +05:30
version = "0.27.3"
2021-08-19 21:40:44 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 06:10:29 +05:30
checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e"
2021-08-19 21:40:44 +05:30
[[package]]
2021-11-06 21:25:29 +05:30
name = "h2"
2023-06-27 06:09:43 +05:30
version = "0.3.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-27 06:09:43 +05:30
checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049"
dependencies = [
2021-11-06 21:25:29 +05:30
"bytes",
"fnv",
"futures-core",
2021-11-06 21:25:29 +05:30
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio",
"tokio-util",
"tracing",
]
[[package]]
name = "hashbrown"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
[[package]]
name = "heck"
2023-02-16 19:53:18 +05:30
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-16 19:53:18 +05:30
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
[[package]]
name = "hermit-abi"
2023-02-16 19:53:18 +05:30
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-16 19:53:18 +05:30
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
dependencies = [
"libc",
]
[[package]]
name = "hermit-abi"
2023-02-16 19:53:18 +05:30
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-16 19:53:18 +05:30
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
[[package]]
2021-11-06 21:25:29 +05:30
name = "http"
2023-05-18 17:49:13 +05:30
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-18 17:49:13 +05:30
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
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"
2022-07-10 22:33:45 +05:30
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-10 22:33:45 +05:30
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
dependencies = [
2021-11-06 21:25:29 +05:30
"bytes",
"http",
"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"
[[package]]
2021-11-06 21:25:29 +05:30
name = "httpdate"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2021-11-06 21:25:29 +05:30
[[package]]
name = "hyper"
2023-06-27 06:09:43 +05:30
version = "0.14.27"
2021-11-06 21:25:29 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-27 06:09:43 +05:30
checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"
dependencies = [
2021-11-06 21:25:29 +05:30
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
"httpdate",
2022-03-28 12:25:01 +05:30
"itoa",
"pin-project-lite",
2021-11-06 21:25:29 +05:30
"socket2",
"tokio",
"tower-service",
"tracing",
"want",
]
2021-09-19 21:07:53 +05:30
[[package]]
2021-11-06 21:25:29 +05:30
name = "hyper-rustls"
version = "0.24.0"
2021-09-19 21:07:53 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0646026eb1b3eea4cd9ba47912ea5ce9cc07713d105b1a14698f4e6433d348b7"
2021-11-06 21:25:29 +05:30
dependencies = [
2021-12-06 11:53:41 +05:30
"http",
2021-11-06 21:25:29 +05:30
"hyper",
"rustls",
"tokio",
"tokio-rustls",
]
2021-09-19 21:07:53 +05:30
[[package]]
name = "idna"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
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"
[[package]]
name = "indexmap"
2023-05-18 17:49:13 +05:30
version = "1.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-18 17:49:13 +05:30
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
dependencies = [
"autocfg",
"hashbrown",
]
[[package]]
name = "io-lifetimes"
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
dependencies = [
2023-05-18 17:49:13 +05:30
"hermit-abi 0.3.1",
"libc",
"windows-sys",
]
[[package]]
2021-11-06 21:25:29 +05:30
name = "ipnet"
2023-06-27 06:09:43 +05:30
version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-27 06:09:43 +05:30
checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6"
[[package]]
name = "is-terminal"
2023-05-18 17:49:13 +05:30
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-18 17:49:13 +05:30
checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f"
dependencies = [
2023-02-16 19:53:18 +05:30
"hermit-abi 0.3.1",
"io-lifetimes",
"rustix",
"windows-sys",
]
2021-12-26 20:51:45 +05:30
[[package]]
name = "itoa"
2023-05-18 17:49:13 +05:30
version = "1.0.6"
2021-12-26 20:51:45 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-18 17:49:13 +05:30
checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
2021-12-26 20:51:45 +05:30
[[package]]
name = "js-sys"
2023-06-18 06:10:29 +05:30
version = "0.3.64"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 06:10:29 +05:30
checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
dependencies = [
"wasm-bindgen",
]
[[package]]
2021-09-19 21:07:53 +05:30
name = "libc"
2023-06-26 05:54:33 +05:30
version = "0.2.147"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-26 05:54:33 +05:30
checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
[[package]]
name = "linux-raw-sys"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
[[package]]
name = "log"
2023-06-18 06:10:29 +05:30
version = "0.4.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 06:10:29 +05:30
checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
[[package]]
name = "memchr"
2022-07-10 22:33:45 +05:30
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-10 22:33:45 +05:30
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
[[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"
2023-02-16 19:53:18 +05:30
version = "0.6.2"
2021-08-19 21:40:44 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-16 19:53:18 +05:30
checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
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"
version = "0.8.8"
2021-09-19 21:07:53 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
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",
"windows-sys",
2021-09-19 21:07:53 +05:30
]
[[package]]
name = "num_cpus"
2023-02-16 19:53:18 +05:30
version = "1.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-16 19:53:18 +05:30
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
dependencies = [
2023-02-16 19:53:18 +05:30
"hermit-abi 0.2.6",
"libc",
]
2021-08-19 21:40:44 +05:30
[[package]]
name = "object"
version = "0.30.4"
2021-08-19 21:40:44 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03b4680b86d9cfafba8fc491dc9b6df26b68cf40e9e6cd73909194759a63c385"
2021-08-19 21:40:44 +05:30
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
version = "1.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
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"
version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
[[package]]
name = "pin-project-lite"
2022-04-27 23:49:16 +05:30
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-27 23:49:16 +05:30
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
[[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"
2023-06-26 05:54:33 +05:30
version = "1.0.63"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-26 05:54:33 +05:30
checksum = "7b368fba921b0dce7e60f5e04ec15e565b3303972b42bcfde1d0713b881959eb"
dependencies = [
2022-07-10 22:33:45 +05:30
"unicode-ident",
]
[[package]]
2021-11-06 21:25:29 +05:30
name = "quote"
version = "1.0.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488"
dependencies = [
2021-11-06 21:25:29 +05:30
"proc-macro2",
]
[[package]]
2021-11-06 21:25:29 +05:30
name = "reqwest"
version = "0.11.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55"
dependencies = [
2023-02-16 19:53:18 +05:30
"base64",
2021-11-06 21:25:29 +05:30
"bytes",
"encoding_rs",
"futures-core",
"futures-util",
"h2",
2021-11-06 21:25:29 +05:30
"http",
"http-body",
"hyper",
"hyper-rustls",
"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",
2021-11-06 21:25:29 +05:30
"serde",
"serde_json",
"serde_urlencoded",
"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.16.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
dependencies = [
"cc",
"libc",
"once_cell",
"spin",
"untrusted",
"web-sys",
"winapi",
]
[[package]]
name = "roxmltree"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8f595a457b6b8c6cda66a48503e92ee8d19342f905948f29c383200ec9eb1d8"
dependencies = [
"xmlparser",
]
2021-08-19 21:40:44 +05:30
[[package]]
name = "rustc-demangle"
2023-05-18 17:49:13 +05:30
version = "0.1.23"
2021-08-19 21:40:44 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-18 17:49:13 +05:30
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
2021-08-19 21:40:44 +05:30
[[package]]
name = "rustix"
2023-06-18 06:10:29 +05:30
version = "0.37.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 06:10:29 +05:30
checksum = "b96e891d04aa506a6d1f318d2771bcb1c7dfda84e126660ace067c9b474bb2c0"
dependencies = [
"bitflags",
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys",
"windows-sys",
]
2021-09-19 21:07:53 +05:30
[[package]]
name = "rustls"
2023-06-18 06:10:29 +05:30
version = "0.21.2"
2021-09-19 21:07:53 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 06:10:29 +05:30
checksum = "e32ca28af694bc1bbf399c33a516dbdf1c90090b8ab23c2bc24f834aa2247f5f"
2021-09-19 21:07:53 +05:30
dependencies = [
"log",
"ring",
"rustls-webpki",
2021-09-19 21:07:53 +05:30
"sct",
2021-12-06 11:53:41 +05:30
]
[[package]]
name = "rustls-pemfile"
2023-06-29 05:52:54 +05:30
version = "1.0.3"
2021-12-06 11:53:41 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-29 05:52:54 +05:30
checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2"
2021-12-06 11:53:41 +05:30
dependencies = [
2023-02-16 19:53:18 +05:30
"base64",
2021-09-19 21:07:53 +05:30
]
[[package]]
name = "rustls-webpki"
version = "0.100.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6207cd5ed3d8dca7816f8f3725513a34609c0c765bf652b8c3cb4cfd87db46b"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "ryu"
2023-05-18 17:49:13 +05:30
version = "1.0.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-18 17:49:13 +05:30
checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
[[package]]
2021-09-19 21:07:53 +05:30
name = "sct"
2021-12-06 11:53:41 +05:30
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-06 11:53:41 +05:30
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
dependencies = [
2021-09-19 21:07:53 +05:30
"ring",
"untrusted",
]
[[package]]
name = "semver"
version = "1.0.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
[[package]]
name = "serde"
version = "1.0.164"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e8c8cf938e98f769bc164923b06dce91cea1751522f46f8466461af04c9027d"
[[package]]
name = "serde_json"
2023-06-25 06:44:58 +05:30
version = "1.0.99"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-25 06:44:58 +05:30
checksum = "46266871c240a00b8f503b877622fe33430b3c7d963bdc0f2adc511e54a1eae3"
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",
]
[[package]]
2021-09-19 21:07:53 +05:30
name = "slab"
2023-05-18 17:49:13 +05:30
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-18 17:49:13 +05:30
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
dependencies = [
"autocfg",
]
[[package]]
name = "socket2"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
dependencies = [
"libc",
"winapi",
]
[[package]]
2021-09-19 21:07:53 +05:30
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-19 21:07:53 +05:30
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "syn"
2023-06-25 06:44:58 +05:30
version = "2.0.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-25 06:44:58 +05:30
checksum = "2efbeae7acf4eabd6bcdcbd11c92f45231ddda7539edc7806bd1a04a03b24616"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "thiserror"
version = "1.0.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
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.29.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da"
dependencies = [
"autocfg",
"backtrace",
2021-11-06 21:25:29 +05:30
"bytes",
"libc",
"mio",
"num_cpus",
"pin-project-lite",
"socket2",
2021-11-06 21:25:29 +05:30
"tokio-macros",
"windows-sys",
]
[[package]]
2021-11-06 21:25:29 +05:30
name = "tokio-macros"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
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.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
dependencies = [
2021-11-06 21:25:29 +05:30
"rustls",
"tokio",
]
[[package]]
2021-11-06 21:25:29 +05:30
name = "tokio-util"
2023-05-18 17:49:13 +05:30
version = "0.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-18 17:49:13 +05:30
checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
2021-11-06 21:25:29 +05:30
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
2022-04-27 23:49:16 +05:30
"tracing",
2021-11-06 21:25:29 +05:30
]
[[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"
version = "0.1.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
dependencies = [
2021-11-06 21:25:29 +05:30
"cfg-if",
"pin-project-lite",
2021-11-06 21:25:29 +05:30
"tracing-core",
]
[[package]]
name = "tracing-core"
2023-05-18 17:49:13 +05:30
version = "0.1.31"
2021-11-06 21:25:29 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-18 17:49:13 +05:30
checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
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-02-16 19:53:18 +05:30
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-16 19:53:18 +05:30
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
[[package]]
name = "unicode-bidi"
2023-05-18 17:49:13 +05:30
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-18 17:49:13 +05:30
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
2022-07-10 22:33:45 +05:30
[[package]]
name = "unicode-ident"
version = "1.0.9"
2022-07-10 22:33:45 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0"
2022-07-10 22:33:45 +05:30
[[package]]
name = "unicode-normalization"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
dependencies = [
"tinyvec",
]
2021-09-19 21:07:53 +05:30
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
[[package]]
name = "url"
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb"
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"
2023-06-18 06:10:29 +05:30
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 06:10:29 +05:30
checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-06-18 06:10:29 +05:30
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 06:10:29 +05:30
checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
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"
2023-06-18 06:10:29 +05:30
version = "0.4.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 06:10:29 +05:30
checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03"
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2023-06-18 06:10:29 +05:30
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 06:10:29 +05:30
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-06-18 06:10:29 +05:30
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 06:10:29 +05:30
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
dependencies = [
"proc-macro2",
"quote",
2023-05-18 17:49:13 +05:30
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-06-18 06:10:29 +05:30
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 06:10:29 +05:30
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
[[package]]
name = "web-sys"
2023-06-18 06:10:29 +05:30
version = "0.3.64"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 06:10:29 +05:30
checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
dependencies = [
"js-sys",
"wasm-bindgen",
]
2021-12-06 11:53:41 +05:30
[[package]]
name = "webpki"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
dependencies = [
"ring",
"untrusted",
]
2021-09-19 21:07:53 +05:30
[[package]]
name = "webpki-roots"
2023-02-16 19:53:18 +05:30
version = "0.22.6"
2021-09-19 21:07:53 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-16 19:53:18 +05:30
checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
2021-09-19 21:07:53 +05:30
dependencies = [
2021-12-26 20:28:06 +05:30
"webpki",
2021-09-19 21:07:53 +05:30
]
[[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 = [
"windows-targets",
]
[[package]]
name = "windows-targets"
2023-06-29 05:52:54 +05:30
version = "0.48.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-29 05:52:54 +05:30
checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
dependencies = [
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
2023-02-16 19:53:18 +05:30
]
2022-07-10 22:33:45 +05:30
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
[[package]]
name = "windows_i686_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
[[package]]
name = "windows_i686_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
2021-11-06 21:25:29 +05:30
[[package]]
name = "winreg"
version = "0.10.1"
2021-11-06 21:25:29 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
2021-11-06 21:25:29 +05:30
dependencies = [
"winapi",
]
[[package]]
name = "xmlparser"
version = "0.13.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d25c75bf9ea12c4040a97f829154768bbbce366287e2dc044af160cd79a13fd"