adx/Cargo.lock

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

1140 lines
28 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"
2021-11-06 21:25:29 +05:30
version = "0.17.0"
2021-08-19 21:40:44 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-06 21:25:29 +05:30
checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b"
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.3.5-alpha.0"
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 = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi",
"libc",
"winapi",
]
[[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"
2022-07-10 22:33:45 +05:30
version = "0.3.66"
2021-08-19 21:40:44 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-10 22:33:45 +05:30
checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7"
2021-08-19 21:40:44 +05:30
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
[[package]]
name = "bitflags"
2021-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.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1ad822118d20d2c234f427000d5acc36eabe1e29a348c89b63dd60b13f28e5d"
[[package]]
2021-11-06 21:25:29 +05:30
name = "bytes"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
[[package]]
name = "cc"
2022-03-28 12:25:01 +05:30
version = "1.0.73"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-28 12:25:01 +05:30
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
[[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.0.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2148adefda54e14492fb9bddcc600b4344c5d1a3123bd666dcb939c6f0e0e57e"
dependencies = [
"atty",
"bitflags",
"clap_derive",
"clap_lex",
2022-06-16 11:53:45 +05:30
"once_cell",
"strsim",
"termcolor",
]
[[package]]
name = "clap_derive"
version = "4.0.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0177313f9f02afc995627906bbd8967e2be069f5261954222dac78290c2b9014"
dependencies = [
"heck",
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "clap_lex"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8"
dependencies = [
"os_str_bytes",
]
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]]
2021-11-06 21:25:29 +05:30
name = "encoding_rs"
2022-04-27 23:49:16 +05:30
version = "0.8.31"
2021-09-19 21:07:53 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-27 23:49:16 +05:30
checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
2021-09-19 21:07:53 +05:30
dependencies = [
"cfg-if",
]
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.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
dependencies = [
"percent-encoding",
]
2021-08-19 22:55:48 +05:30
[[package]]
name = "futures"
version = "0.3.25"
2021-08-19 22:55:48 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0"
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.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed"
dependencies = [
"futures-core",
2021-08-19 22:55:48 +05:30
"futures-sink",
]
[[package]]
name = "futures-core"
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac"
2021-08-19 22:55:48 +05:30
[[package]]
name = "futures-executor"
version = "0.3.25"
2021-08-19 22:55:48 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2"
2021-08-19 22:55:48 +05:30
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb"
[[package]]
name = "futures-macro"
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9"
[[package]]
name = "futures-task"
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea"
[[package]]
name = "futures-util"
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6"
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"
version = "0.26.2"
2021-08-19 21:40:44 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d"
2021-08-19 21:40:44 +05:30
[[package]]
2021-11-06 21:25:29 +05:30
name = "h2"
version = "0.3.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ca32592cf21ac7ccab1825cd87f6c9b3d9022c44d086172ed0966bec8af30be"
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"
2022-01-10 12:01:14 +05:30
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-10 12:01:14 +05:30
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
[[package]]
name = "hermit-abi"
2021-07-08 00:53:27 +05:30
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-08 00:53:27 +05:30
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
[[package]]
2021-11-06 21:25:29 +05:30
name = "http"
2022-07-10 22:33:45 +05:30
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-10 22:33:45 +05:30
checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
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"
2022-07-10 22:33:45 +05:30
version = "0.14.20"
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 = "02c929dc5c39e335a03c405292728118860721b10190d98c2a0f0efd5baafbac"
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"
2021-12-06 11:53:41 +05:30
version = "0.23.0"
2021-09-19 21:07:53 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-06 11:53:41 +05:30
checksum = "d87c48c02e0dc5e3b849a2041db3029fd066650f8f717c07bf8ed78ccb895cac"
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.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
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"
2022-07-10 22:33:45 +05:30
version = "1.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-10 22:33:45 +05:30
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
dependencies = [
"autocfg",
"hashbrown",
]
[[package]]
2021-11-06 21:25:29 +05:30
name = "ipnet"
2022-04-27 23:49:16 +05:30
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-27 23:49:16 +05:30
checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b"
2021-12-26 20:51:45 +05:30
[[package]]
name = "itoa"
version = "1.0.4"
2021-12-26 20:51:45 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
2021-12-26 20:51:45 +05:30
[[package]]
name = "js-sys"
version = "0.3.60"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
dependencies = [
"wasm-bindgen",
]
[[package]]
2021-09-19 21:07:53 +05:30
name = "libc"
version = "0.2.134"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "329c933548736bc49fd575ee68c89e8be4d260064184389a5b77517cddd99ffb"
[[package]]
name = "log"
2022-07-10 22:33:45 +05:30
version = "0.4.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-10 22:33:45 +05:30
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
dependencies = [
"cfg-if",
]
[[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"
version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
2021-08-19 21:40:44 +05:30
[[package]]
name = "miniz_oxide"
version = "0.5.4"
2021-08-19 21:40:44 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34"
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"
2022-07-10 22:33:45 +05:30
version = "0.8.4"
2021-09-19 21:07:53 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-10 22:33:45 +05:30
checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
2021-09-19 21:07:53 +05:30
dependencies = [
2021-11-06 21:25:29 +05:30
"libc",
"log",
2022-03-28 12:25:01 +05:30
"wasi",
2022-07-10 22:33:45 +05:30
"windows-sys",
2021-09-19 21:07:53 +05:30
]
[[package]]
name = "num_cpus"
2021-12-26 20:51:45 +05:30
version = "1.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-26 20:51:45 +05:30
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
dependencies = [
"hermit-abi",
"libc",
]
2021-08-19 21:40:44 +05:30
[[package]]
name = "object"
2022-07-10 22:33:45 +05:30
version = "0.29.0"
2021-08-19 21:40:44 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-10 22:33:45 +05:30
checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53"
2021-08-19 21:40:44 +05:30
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
version = "1.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1"
[[package]]
name = "os_str_bytes"
version = "6.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ff7415e9ae3fff1225851df9e0d9e4e5479f947619774677a63572e55e80eff"
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.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
[[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-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-06 21:25:29 +05:30
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
2021-11-06 21:25:29 +05:30
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn",
"version_check",
]
[[package]]
2021-11-06 21:25:29 +05:30
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-06 21:25:29 +05:30
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
2021-11-06 21:25:29 +05:30
"proc-macro2",
"quote",
"version_check",
]
[[package]]
2021-11-06 21:25:29 +05:30
name = "proc-macro2"
version = "1.0.46"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94e2ef8dbfc347b10c094890f778ee2e36ca9bb4262e86dc99cd217e35f3470b"
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.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
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.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68cc60575865c7831548863cc02356512e3f1dc2f3f82cb837d7fc4cc8f3c97c"
dependencies = [
2021-11-06 21:25:29 +05:30
"base64",
"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.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb6d47b59770b0ae88c7f270c68502832ec14d8c7ab5f7a584f204bb76dbfd8e"
dependencies = [
"xmlparser",
]
2021-08-19 21:40:44 +05:30
[[package]]
name = "rustc-demangle"
2021-09-19 21:07:53 +05:30
version = "0.1.21"
2021-08-19 21:40:44 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-19 21:07:53 +05:30
checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
2021-08-19 21:40:44 +05:30
2021-09-19 21:07:53 +05:30
[[package]]
name = "rustls"
2022-07-10 22:33:45 +05:30
version = "0.20.6"
2021-09-19 21:07:53 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-10 22:33:45 +05:30
checksum = "5aab8ee6c7097ed6057f43c187a62418d0c05a4bd5f18b3571db50ee0f9ce033"
2021-09-19 21:07:53 +05:30
dependencies = [
"log",
"ring",
"sct",
2021-12-26 20:28:06 +05:30
"webpki",
2021-12-06 11:53:41 +05:30
]
[[package]]
name = "rustls-pemfile"
version = "1.0.1"
2021-12-06 11:53:41 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55"
2021-12-06 11:53:41 +05:30
dependencies = [
"base64",
2021-09-19 21:07:53 +05:30
]
[[package]]
name = "ryu"
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
[[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.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4"
[[package]]
name = "serde"
version = "1.0.145"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "728eb6351430bccb993660dfffc5a72f91ccc1295abaa8ce19b27ebe4f75568b"
[[package]]
name = "serde_json"
version = "1.0.85"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44"
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"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
dependencies = [
"autocfg",
]
[[package]]
name = "socket2"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
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"
version = "1.0.102"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fcd952facd492f9be3ef0d0b7032a6e442ee9b361d4acc2b1d0c4aaa5f613a1"
dependencies = [
"proc-macro2",
"quote",
2022-07-10 22:33:45 +05:30
"unicode-ident",
]
[[package]]
name = "termcolor"
2022-03-28 12:25:01 +05:30
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-28 12:25:01 +05:30
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
dependencies = [
"winapi-util",
]
[[package]]
name = "thiserror"
version = "1.0.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
dependencies = [
"proc-macro2",
"quote",
"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"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "tokio"
version = "1.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d76ce4a75fb488c605c54bf610f221cea8b0dafb53333c1a67e8ee199dcd2ae3"
dependencies = [
"autocfg",
2021-11-06 21:25:29 +05:30
"bytes",
"libc",
"memchr",
"mio",
"num_cpus",
"pin-project-lite",
"socket2",
2021-11-06 21:25:29 +05:30
"tokio-macros",
"winapi",
]
[[package]]
2021-11-06 21:25:29 +05:30
name = "tokio-macros"
2022-07-10 22:33:45 +05:30
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-10 22:33:45 +05:30
checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
2021-11-06 21:25:29 +05:30
name = "tokio-rustls"
2022-07-10 22:33:45 +05:30
version = "0.23.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-10 22:33:45 +05:30
checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
dependencies = [
2021-11-06 21:25:29 +05:30
"rustls",
"tokio",
2021-12-26 20:28:06 +05:30
"webpki",
]
[[package]]
2021-11-06 21:25:29 +05:30
name = "tokio-util"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740"
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"
version = "0.1.30"
2021-11-06 21:25:29 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
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"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-06 21:25:29 +05:30
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
[[package]]
name = "unicode-bidi"
2022-04-27 23:49:16 +05:30
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-27 23:49:16 +05:30
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
2022-07-10 22:33:45 +05:30
[[package]]
name = "unicode-ident"
version = "1.0.4"
2022-07-10 22:33:45 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcc811dc4066ac62f84f11307873c4850cb653bfa9b1719cee2bd2204a4bc5dd"
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.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
]
[[package]]
name = "version_check"
2022-01-01 12:23:56 +05:30
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 12:23:56 +05:30
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
2021-11-06 21:25:29 +05:30
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-06 21:25:29 +05:30
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
"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"
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
version = "0.4.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d"
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
[[package]]
name = "web-sys"
version = "0.3.60"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f"
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"
version = "0.22.5"
2021-09-19 21:07:53 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "368bfe657969fb01238bb756d351dcade285e0f6fcbd36dcb23359a5169975be"
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-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi",
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2022-07-10 22:33:45 +05:30
[[package]]
name = "windows-sys"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
dependencies = [
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
[[package]]
name = "windows_i686_gnu"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
[[package]]
name = "windows_i686_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
[[package]]
name = "windows_x86_64_gnu"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
[[package]]
name = "windows_x86_64_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
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"