ipblc/Cargo.lock

1814 lines
46 KiB
Plaintext
Raw Normal View History

# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2023-07-01 15:59:50 +02:00
[[package]]
name = "addr2line"
2024-10-02 17:45:26 +02:00
version = "0.24.1"
2023-07-01 15:59:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "f5fb1d8e4442bd405fdfd1dacb42792696b0cf9cb15882e5d097b742a676d375"
2023-07-01 15:59:50 +02:00
dependencies = [
"gimli",
]
[[package]]
2024-10-02 17:45:26 +02:00
name = "adler2"
version = "2.0.0"
2023-07-01 15:59:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
2023-07-01 15:59:50 +02:00
[[package]]
name = "aho-corasick"
2024-05-11 17:59:36 +02:00
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
dependencies = [
"memchr",
]
2023-06-09 13:45:19 +02:00
[[package]]
name = "android-tzdata"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
[[package]]
name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
"libc",
]
2023-04-02 01:36:36 +02:00
[[package]]
name = "anstream"
2024-10-02 17:45:26 +02:00
version = "0.6.15"
2023-04-02 01:36:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526"
2023-04-02 01:36:36 +02:00
dependencies = [
"anstyle",
"anstyle-parse",
2023-04-22 18:34:52 +02:00
"anstyle-query",
2023-04-02 01:36:36 +02:00
"anstyle-wincon",
2023-04-22 18:34:52 +02:00
"colorchoice",
2024-05-11 17:59:36 +02:00
"is_terminal_polyfill",
2023-04-02 01:36:36 +02:00
"utf8parse",
]
[[package]]
name = "anstyle"
2024-10-02 17:45:26 +02:00
version = "1.0.8"
2023-04-02 01:36:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"
2023-04-02 01:36:36 +02:00
[[package]]
name = "anstyle-parse"
2024-10-02 17:45:26 +02:00
version = "0.2.5"
2023-04-02 01:36:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb"
2023-04-02 01:36:36 +02:00
dependencies = [
"utf8parse",
]
2023-04-22 18:34:52 +02:00
[[package]]
name = "anstyle-query"
2024-10-02 17:45:26 +02:00
version = "1.1.1"
2023-04-22 18:34:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a"
2023-04-22 18:34:52 +02:00
dependencies = [
2023-12-23 13:19:14 +01:00
"windows-sys 0.52.0",
2023-04-22 18:34:52 +02:00
]
2023-04-02 01:36:36 +02:00
[[package]]
name = "anstyle-wincon"
2024-10-02 17:45:26 +02:00
version = "3.0.4"
2023-04-02 01:36:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8"
2023-04-02 01:36:36 +02:00
dependencies = [
"anstyle",
2023-12-23 13:19:14 +01:00
"windows-sys 0.52.0",
2023-04-02 01:36:36 +02:00
]
[[package]]
name = "autocfg"
2024-10-02 17:45:26 +02:00
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
2023-07-01 15:59:50 +02:00
[[package]]
name = "backtrace"
2024-10-02 17:45:26 +02:00
version = "0.3.74"
2023-07-01 15:59:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
2023-07-01 15:59:50 +02:00
dependencies = [
"addr2line",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
2024-10-02 17:45:26 +02:00
"windows-targets 0.52.6",
2023-07-01 15:59:50 +02:00
]
2023-01-14 09:37:05 +01:00
[[package]]
name = "base64"
version = "0.21.7"
2023-01-14 09:37:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2023-07-01 15:59:50 +02:00
[[package]]
name = "bitflags"
2024-10-02 17:45:26 +02:00
version = "2.6.0"
2023-07-01 15:59:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
2023-07-01 15:59:50 +02:00
2023-03-05 23:05:50 +01:00
[[package]]
name = "block-buffer"
2023-04-02 01:36:36 +02:00
version = "0.10.4"
2023-03-05 23:05:50 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-02 01:36:36 +02:00
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
2023-03-05 23:05:50 +01:00
dependencies = [
"generic-array",
]
[[package]]
name = "bumpalo"
2024-05-11 17:59:36 +02:00
version = "3.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
[[package]]
2023-03-05 23:05:50 +01:00
name = "byteorder"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
[[package]]
2023-03-05 23:05:50 +01:00
name = "bytes"
2024-10-02 17:45:26 +02:00
version = "1.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3"
2022-12-29 13:55:37 +01:00
[[package]]
2023-03-05 23:05:50 +01:00
name = "cc"
2024-10-02 17:45:26 +02:00
version = "1.1.24"
2022-12-29 13:55:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "812acba72f0a070b003d3697490d2b55b837230ae7c6c6497f05cc2ddbb8d938"
dependencies = [
"shlex",
]
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chrono"
2024-05-11 17:59:36 +02:00
version = "0.4.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
dependencies = [
2023-06-09 13:45:19 +02:00
"android-tzdata",
"iana-time-zone",
"js-sys",
"num-traits",
"serde",
"wasm-bindgen",
2024-10-02 17:45:26 +02:00
"windows-targets 0.52.6",
]
[[package]]
name = "clap"
2024-10-02 17:45:26 +02:00
version = "4.5.19"
2023-04-02 01:36:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "7be5744db7978a28d9df86a214130d106a89ce49644cbc4e3f0c22c3fba30615"
2023-04-02 01:36:36 +02:00
dependencies = [
"clap_builder",
]
[[package]]
name = "clap_builder"
2024-10-02 17:45:26 +02:00
version = "4.5.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "a5fbc17d3ef8278f55b282b2a2e75ae6f6c7d4bb70ed3d0382375104bfafdb4b"
dependencies = [
2023-04-02 01:36:36 +02:00
"anstream",
"anstyle",
"clap_lex",
"strsim",
]
[[package]]
name = "clap_lex"
2024-10-02 17:45:26 +02:00
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
2022-10-12 11:58:24 +02:00
2023-04-02 01:36:36 +02:00
[[package]]
2023-04-22 18:34:52 +02:00
name = "colorchoice"
2024-10-02 17:45:26 +02:00
version = "1.0.2"
2023-04-02 01:36:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0"
2023-04-02 01:36:36 +02:00
[[package]]
2023-03-05 23:05:50 +01:00
name = "core-foundation"
2023-12-23 13:19:14 +01:00
version = "0.9.4"
2022-12-29 13:55:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 13:19:14 +01:00
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
2022-12-29 13:55:37 +01:00
dependencies = [
2023-03-05 23:05:50 +01:00
"core-foundation-sys",
"libc",
2022-12-29 13:55:37 +01:00
]
[[package]]
2023-03-05 23:05:50 +01:00
name = "core-foundation-sys"
2024-10-02 17:45:26 +02:00
version = "0.8.7"
2022-12-29 13:55:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
2022-12-29 13:55:37 +01:00
[[package]]
2023-03-05 23:05:50 +01:00
name = "cpufeatures"
2024-10-02 17:45:26 +02:00
version = "0.2.14"
2022-12-29 13:55:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0"
2022-12-29 13:55:37 +01:00
dependencies = [
2023-03-05 23:05:50 +01:00
"libc",
2022-12-29 13:55:37 +01:00
]
[[package]]
2023-03-05 23:05:50 +01:00
name = "crypto-common"
version = "0.1.6"
2022-12-29 13:55:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-05 23:05:50 +01:00
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
2022-12-29 13:55:37 +01:00
dependencies = [
2023-03-05 23:05:50 +01:00
"generic-array",
"typenum",
2022-12-29 13:55:37 +01:00
]
2023-05-10 21:31:53 +02:00
[[package]]
name = "data-encoding"
2024-05-11 17:59:36 +02:00
version = "2.6.0"
2023-05-10 21:31:53 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2"
2023-05-10 21:31:53 +02:00
2022-12-29 13:55:37 +01:00
[[package]]
2023-03-05 23:05:50 +01:00
name = "digest"
2023-06-09 13:45:19 +02:00
version = "0.10.7"
2022-12-29 13:55:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-09 13:45:19 +02:00
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
2022-12-29 13:55:37 +01:00
dependencies = [
2023-03-05 23:05:50 +01:00
"block-buffer",
"crypto-common",
2022-12-29 13:55:37 +01:00
]
[[package]]
name = "encoding_rs"
2024-05-11 17:59:36 +02:00
version = "0.8.34"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
dependencies = [
"cfg-if",
]
2023-11-18 13:13:25 +01:00
[[package]]
name = "equivalent"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
[[package]]
name = "err-derive"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c34a887c8df3ed90498c1c437ce21f211c8e27672921a8ffa293cb8d6d4caa9e"
dependencies = [
"proc-macro-error",
"proc-macro2",
"quote",
"rustversion",
2023-04-02 01:36:36 +02:00
"syn 1.0.109",
"synstructure",
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "form_urlencoded"
2023-11-25 17:46:24 +01:00
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-25 17:46:24 +01:00
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
dependencies = [
"percent-encoding",
]
[[package]]
name = "futures-channel"
2024-01-03 21:47:13 +01:00
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-03 21:47:13 +01:00
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
dependencies = [
"futures-core",
]
[[package]]
name = "futures-core"
2024-01-03 21:47:13 +01:00
version = "0.3.30"
2023-07-23 23:21:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-03 21:47:13 +01:00
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
2023-07-23 23:21:13 +02:00
[[package]]
name = "futures-sink"
2024-01-03 21:47:13 +01:00
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-03 21:47:13 +01:00
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
[[package]]
name = "futures-task"
2024-01-03 21:47:13 +01:00
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-03 21:47:13 +01:00
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
[[package]]
name = "futures-util"
2024-01-03 21:47:13 +01:00
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-03 21:47:13 +01:00
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
dependencies = [
"futures-core",
"futures-task",
"pin-project-lite",
"pin-utils",
]
2023-03-05 23:05:50 +01:00
[[package]]
name = "generic-array"
2023-04-02 01:36:36 +02:00
version = "0.14.7"
2023-03-05 23:05:50 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-02 01:36:36 +02:00
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
2023-03-05 23:05:50 +01:00
dependencies = [
"typenum",
"version_check",
]
[[package]]
name = "getrandom"
2024-05-11 17:59:36 +02:00
version = "0.2.15"
2023-03-05 23:05:50 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
2023-03-05 23:05:50 +01:00
dependencies = [
"cfg-if",
"libc",
"wasi",
2023-03-05 23:05:50 +01:00
]
2023-07-01 15:59:50 +02:00
[[package]]
name = "gimli"
2024-10-02 17:45:26 +02:00
version = "0.31.0"
2023-07-01 15:59:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "32085ea23f3234fc7846555e85283ba4de91e21016dc0455a16286d87a292d64"
2023-07-01 15:59:50 +02:00
2022-10-12 11:58:24 +02:00
[[package]]
name = "git-version"
2023-12-23 13:19:14 +01:00
version = "0.3.9"
2022-10-12 11:58:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 13:19:14 +01:00
checksum = "1ad568aa3db0fcbc81f2f116137f263d7304f512a1209b35b85150d3ef88ad19"
2022-10-12 11:58:24 +02:00
dependencies = [
"git-version-macro",
]
[[package]]
name = "git-version-macro"
2023-12-23 13:19:14 +01:00
version = "0.3.9"
2022-10-12 11:58:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 13:19:14 +01:00
checksum = "53010ccb100b96a67bc32c0175f0ed1426b31b655d562898e57325f81c023ac0"
2022-10-12 11:58:24 +02:00
dependencies = [
"proc-macro2",
"quote",
2024-10-02 17:45:26 +02:00
"syn 2.0.79",
2022-10-12 11:58:24 +02:00
]
[[package]]
name = "h2"
2024-05-11 17:59:36 +02:00
version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
2024-05-11 17:59:36 +02:00
"http 0.2.12",
"indexmap",
"slab",
"tokio",
"tokio-util",
"tracing",
]
[[package]]
name = "hashbrown"
2024-10-02 17:45:26 +02:00
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb"
2023-03-05 23:05:50 +01:00
[[package]]
name = "hermit-abi"
2024-05-11 17:59:36 +02:00
version = "0.3.9"
2023-03-05 23:05:50 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
2023-03-05 23:05:50 +01:00
[[package]]
name = "http"
2024-05-11 17:59:36 +02:00
version = "0.2.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
dependencies = [
"bytes",
"fnv",
"itoa",
]
2023-12-23 13:19:14 +01:00
[[package]]
name = "http"
2024-05-11 17:59:36 +02:00
version = "1.1.0"
2023-12-23 13:19:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
2023-12-23 13:19:14 +01:00
dependencies = [
"bytes",
"fnv",
"itoa",
]
[[package]]
name = "http-body"
2023-12-23 13:19:14 +01:00
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 13:19:14 +01:00
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
dependencies = [
"bytes",
2024-05-11 17:59:36 +02:00
"http 0.2.12",
"pin-project-lite",
]
[[package]]
name = "httparse"
2024-10-02 17:45:26 +02:00
version = "1.9.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
[[package]]
name = "httpdate"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
[[package]]
name = "hyper"
2024-10-02 17:45:26 +02:00
version = "0.14.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "a152ddd61dfaec7273fe8419ab357f33aee0d914c5f4efbf0d96fa749eea5ec9"
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2",
2024-05-11 17:59:36 +02:00
"http 0.2.12",
"http-body",
"httparse",
"httpdate",
"itoa",
"pin-project-lite",
2023-12-23 13:19:14 +01:00
"socket2",
"tokio",
"tower-service",
"tracing",
"want",
]
[[package]]
name = "hyper-rustls"
version = "0.24.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
dependencies = [
2023-07-23 23:21:13 +02:00
"futures-util",
2024-05-11 17:59:36 +02:00
"http 0.2.12",
"hyper",
2024-05-11 17:59:36 +02:00
"rustls 0.21.12",
"tokio",
"tokio-rustls",
]
[[package]]
name = "iana-time-zone"
2024-10-02 17:45:26 +02:00
version = "0.1.61"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220"
dependencies = [
"android_system_properties",
"core-foundation-sys",
2022-10-12 11:58:24 +02:00
"iana-time-zone-haiku",
"js-sys",
"wasm-bindgen",
"windows-core",
]
2022-10-12 11:58:24 +02:00
[[package]]
name = "iana-time-zone-haiku"
2023-06-09 13:45:19 +02:00
version = "0.1.2"
2022-10-12 11:58:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-09 13:45:19 +02:00
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
2022-10-12 11:58:24 +02:00
dependencies = [
2023-06-09 13:45:19 +02:00
"cc",
2022-10-12 11:58:24 +02:00
]
[[package]]
name = "idna"
2023-11-25 17:46:24 +01:00
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-25 17:46:24 +01:00
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "indexmap"
2024-10-02 17:45:26 +02:00
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
dependencies = [
2023-11-18 13:13:25 +01:00
"equivalent",
"hashbrown",
]
[[package]]
name = "ipblc"
2024-10-06 10:28:15 +02:00
version = "1.7.0"
dependencies = [
"chrono",
"clap",
2022-10-12 11:58:24 +02:00
"git-version",
"ipnet",
"lazy_static",
"mnl",
"nftnl",
"nix",
"regex",
"reqwest",
2024-10-02 17:45:26 +02:00
"sd-notify",
"serde",
"serde_json",
"tokio",
2023-03-05 23:05:50 +01:00
"tungstenite",
]
[[package]]
name = "ipnet"
2024-10-02 17:45:26 +02:00
version = "2.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "187674a687eed5fe42285b40c6291f9a01517d415fad1c3cbc6a9f778af7fcd4"
2023-01-07 12:12:58 +01:00
2024-05-11 17:59:36 +02:00
[[package]]
name = "is_terminal_polyfill"
2024-10-02 17:45:26 +02:00
version = "1.70.1"
2024-05-11 17:59:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
2024-05-11 17:59:36 +02:00
[[package]]
name = "itoa"
2024-05-11 17:59:36 +02:00
version = "1.0.11"
2022-12-29 13:55:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
2022-12-29 13:55:37 +01:00
[[package]]
name = "js-sys"
2024-10-02 17:45:26 +02:00
version = "0.3.70"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a"
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "lazy_static"
2024-10-02 17:45:26 +02:00
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
[[package]]
name = "libc"
2024-10-02 17:45:26 +02:00
version = "0.2.159"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5"
2023-01-07 12:12:58 +01:00
[[package]]
name = "lock_api"
2024-05-11 17:59:36 +02:00
version = "0.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
dependencies = [
"autocfg",
"scopeguard",
]
[[package]]
name = "log"
2024-10-02 17:45:26 +02:00
version = "0.4.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
[[package]]
name = "memchr"
2024-10-02 17:45:26 +02:00
version = "2.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
[[package]]
name = "mime"
2023-04-02 01:36:36 +02:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-02 01:36:36 +02:00
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2023-07-01 15:59:50 +02:00
[[package]]
name = "miniz_oxide"
2024-10-02 17:45:26 +02:00
version = "0.8.0"
2023-07-01 15:59:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
2023-07-01 15:59:50 +02:00
dependencies = [
2024-10-02 17:45:26 +02:00
"adler2",
2023-07-01 15:59:50 +02:00
]
[[package]]
name = "mio"
2024-10-02 17:45:26 +02:00
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
dependencies = [
2024-10-02 17:45:26 +02:00
"hermit-abi",
"libc",
"wasi",
2024-10-02 17:45:26 +02:00
"windows-sys 0.52.0",
]
[[package]]
name = "mnl"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1a5469630da93e1813bb257964c0ccee3b26b6879dd858039ddec35cc8681ed"
dependencies = [
"libc",
"log",
"mnl-sys",
]
[[package]]
name = "mnl-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9750685b201e1ecfaaf7aa5d0387829170fa565989cc481b49080aa155f70457"
dependencies = [
"libc",
"pkg-config",
]
[[package]]
name = "nftnl"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e9201688bd0bc571dfa4c21ce0a525480c8b782776cf88e12571fa89108dd920"
dependencies = [
2023-07-01 15:59:50 +02:00
"bitflags 1.3.2",
"err-derive",
"log",
"nftnl-sys",
]
[[package]]
name = "nftnl-sys"
2024-10-02 17:45:26 +02:00
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "b193f2c2a70e6421534c3f3b75eaaed4e4b9df45281b3d94f5bc8c32fb346cbb"
dependencies = [
"cfg-if",
"libc",
"pkg-config",
]
[[package]]
name = "nix"
version = "0.27.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053"
dependencies = [
2024-10-02 17:45:26 +02:00
"bitflags 2.6.0",
"cfg-if",
"libc",
]
[[package]]
name = "num-traits"
2024-05-11 17:59:36 +02:00
version = "0.2.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
dependencies = [
"autocfg",
]
2023-07-01 15:59:50 +02:00
[[package]]
name = "object"
2024-10-02 17:45:26 +02:00
version = "0.36.4"
2023-07-01 15:59:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "084f1a5821ac4c651660a94a7153d27ac9d8a53736203f58b31945ded098070a"
2023-07-01 15:59:50 +02:00
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
2024-10-02 17:45:26 +02:00
version = "1.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "82881c4be219ab5faaf2ad5e5e5ecdff8c66bd7402ca3160975c93b24961afd1"
dependencies = [
"portable-atomic",
]
2023-03-05 23:05:50 +01:00
[[package]]
name = "openssl-probe"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "parking_lot"
2024-05-28 14:50:07 +02:00
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-28 14:50:07 +02:00
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2024-05-11 17:59:36 +02:00
version = "0.9.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
2024-10-02 17:45:26 +02:00
"windows-targets 0.52.6",
]
[[package]]
name = "percent-encoding"
2023-11-25 17:46:24 +01:00
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-25 17:46:24 +01:00
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
[[package]]
name = "pin-project-lite"
2024-05-11 17:59:36 +02:00
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pkg-config"
2024-10-02 17:45:26 +02:00
version = "0.3.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
[[package]]
name = "portable-atomic"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
2023-03-05 23:05:50 +01:00
[[package]]
name = "ppv-lite86"
2024-10-02 17:45:26 +02:00
version = "0.2.20"
2023-03-05 23:05:50 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
dependencies = [
"zerocopy",
]
2023-03-05 23:05:50 +01:00
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
2023-04-02 01:36:36 +02:00
"syn 1.0.109",
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
"version_check",
]
[[package]]
name = "proc-macro2"
2024-10-02 17:45:26 +02:00
version = "1.0.86"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
dependencies = [
"unicode-ident",
]
[[package]]
name = "quote"
2024-10-02 17:45:26 +02:00
version = "1.0.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
dependencies = [
"proc-macro2",
]
2022-12-29 13:55:37 +01:00
[[package]]
2023-03-05 23:05:50 +01:00
name = "rand"
version = "0.8.5"
2022-12-29 13:55:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-05 23:05:50 +01:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2022-12-29 13:55:37 +01:00
dependencies = [
2023-03-05 23:05:50 +01:00
"libc",
"rand_chacha",
"rand_core",
2022-12-29 13:55:37 +01:00
]
[[package]]
2023-03-05 23:05:50 +01:00
name = "rand_chacha"
version = "0.3.1"
2022-12-29 13:55:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-05 23:05:50 +01:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2022-12-29 13:55:37 +01:00
dependencies = [
2023-03-05 23:05:50 +01:00
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
"getrandom",
2022-12-29 13:55:37 +01:00
]
[[package]]
name = "redox_syscall"
2024-10-02 17:45:26 +02:00
version = "0.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f"
dependencies = [
2024-10-02 17:45:26 +02:00
"bitflags 2.6.0",
]
[[package]]
name = "regex"
2024-10-02 17:45:26 +02:00
version = "1.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8"
2023-07-23 23:21:13 +02:00
dependencies = [
"aho-corasick",
"memchr",
"regex-automata",
"regex-syntax",
]
[[package]]
name = "regex-automata"
2024-10-02 17:45:26 +02:00
version = "0.4.8"
2023-07-23 23:21:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2024-10-02 17:45:26 +02:00
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
[[package]]
name = "reqwest"
2024-05-11 17:59:36 +02:00
version = "0.11.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
dependencies = [
2024-10-02 17:45:26 +02:00
"base64",
"bytes",
"encoding_rs",
"futures-core",
"futures-util",
"h2",
2024-05-11 17:59:36 +02:00
"http 0.2.12",
"http-body",
"hyper",
"hyper-rustls",
"ipnet",
"js-sys",
"log",
"mime",
2022-10-12 11:58:24 +02:00
"once_cell",
"percent-encoding",
"pin-project-lite",
2024-05-11 17:59:36 +02:00
"rustls 0.21.12",
2023-12-23 13:19:14 +01:00
"rustls-pemfile 1.0.4",
"serde",
"serde_json",
"serde_urlencoded",
"sync_wrapper",
"system-configuration",
"tokio",
"tokio-rustls",
2022-07-01 15:51:41 +02:00
"tower-service",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"webpki-roots",
"winreg",
]
[[package]]
name = "ring"
2024-05-11 17:59:36 +02:00
version = "0.17.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
dependencies = [
"cc",
2024-05-11 17:59:36 +02:00
"cfg-if",
"getrandom",
"libc",
"spin",
"untrusted",
2024-05-11 17:59:36 +02:00
"windows-sys 0.52.0",
]
2023-07-01 15:59:50 +02:00
[[package]]
name = "rustc-demangle"
2024-05-11 17:59:36 +02:00
version = "0.1.24"
2023-07-01 15:59:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2023-07-01 15:59:50 +02:00
2023-05-10 21:31:53 +02:00
[[package]]
name = "rustls"
2024-05-11 17:59:36 +02:00
version = "0.21.12"
2023-05-10 21:31:53 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
2023-05-10 21:31:53 +02:00
dependencies = [
"log",
"ring",
2023-12-23 13:19:14 +01:00
"rustls-webpki 0.101.7",
2023-05-10 21:31:53 +02:00
"sct",
]
2023-12-23 13:19:14 +01:00
[[package]]
name = "rustls"
2024-05-11 17:59:36 +02:00
version = "0.22.4"
2023-12-23 13:19:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432"
2023-12-23 13:19:14 +01:00
dependencies = [
"log",
"ring",
"rustls-pki-types",
2024-10-02 17:45:26 +02:00
"rustls-webpki 0.102.8",
2023-12-23 13:19:14 +01:00
"subtle",
"zeroize",
]
2023-03-05 23:05:50 +01:00
[[package]]
name = "rustls-native-certs"
2024-10-02 17:45:26 +02:00
version = "0.7.3"
2023-03-05 23:05:50 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5"
2023-03-05 23:05:50 +01:00
dependencies = [
"openssl-probe",
2024-10-02 17:45:26 +02:00
"rustls-pemfile 2.2.0",
2023-12-23 13:19:14 +01:00
"rustls-pki-types",
2023-03-05 23:05:50 +01:00
"schannel",
"security-framework",
]
[[package]]
name = "rustls-pemfile"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
dependencies = [
2024-10-02 17:45:26 +02:00
"base64",
2023-05-10 21:31:53 +02:00
]
2023-12-23 13:19:14 +01:00
[[package]]
name = "rustls-pemfile"
2024-10-02 17:45:26 +02:00
version = "2.2.0"
2023-12-23 13:19:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
2023-12-23 13:19:14 +01:00
dependencies = [
"rustls-pki-types",
]
[[package]]
name = "rustls-pki-types"
2024-10-02 17:45:26 +02:00
version = "1.9.0"
2023-12-23 13:19:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "0e696e35370c65c9c541198af4543ccd580cf17fc25d8e05c5a242b202488c55"
2023-12-23 13:19:14 +01:00
2023-05-10 21:31:53 +02:00
[[package]]
name = "rustls-webpki"
version = "0.101.7"
2023-05-10 21:31:53 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
2023-05-10 21:31:53 +02:00
dependencies = [
"ring",
"untrusted",
]
2023-12-23 13:19:14 +01:00
[[package]]
name = "rustls-webpki"
2024-10-02 17:45:26 +02:00
version = "0.102.8"
2023-12-23 13:19:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
2023-12-23 13:19:14 +01:00
dependencies = [
"ring",
"rustls-pki-types",
"untrusted",
]
[[package]]
name = "rustversion"
2024-05-24 12:43:24 +02:00
version = "1.0.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 12:43:24 +02:00
checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6"
[[package]]
name = "ryu"
2024-05-11 17:59:36 +02:00
version = "1.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
2022-12-29 13:55:37 +01:00
[[package]]
2023-03-05 23:05:50 +01:00
name = "schannel"
2024-10-02 17:45:26 +02:00
version = "0.1.24"
2022-12-29 13:55:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "e9aaafd5a2b6e3d657ff009d82fbd630b6bd54dd4eb06f21693925cdf80f9b8b"
2022-12-29 13:55:37 +01:00
dependencies = [
2024-10-02 17:45:26 +02:00
"windows-sys 0.59.0",
2022-12-29 13:55:37 +01:00
]
[[package]]
name = "scopeguard"
2023-07-23 23:21:13 +02:00
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-23 23:21:13 +02:00
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
[[package]]
name = "sct"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
dependencies = [
"ring",
"untrusted",
]
2024-10-02 17:45:26 +02:00
[[package]]
name = "sd-notify"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4646d6f919800cd25c50edb49438a1381e2cd4833c027e75e8897981c50b8b5e"
2023-03-05 23:05:50 +01:00
[[package]]
name = "security-framework"
2024-10-02 17:45:26 +02:00
version = "2.11.1"
2023-03-05 23:05:50 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2023-03-05 23:05:50 +01:00
dependencies = [
2024-10-02 17:45:26 +02:00
"bitflags 2.6.0",
2023-03-05 23:05:50 +01:00
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
2024-10-02 17:45:26 +02:00
version = "2.12.0"
2023-03-05 23:05:50 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6"
2023-03-05 23:05:50 +01:00
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "serde"
2024-10-02 17:45:26 +02:00
version = "1.0.210"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2024-10-02 17:45:26 +02:00
version = "1.0.210"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f"
dependencies = [
"proc-macro2",
"quote",
2024-10-02 17:45:26 +02:00
"syn 2.0.79",
]
[[package]]
name = "serde_json"
2024-10-02 17:45:26 +02:00
version = "1.0.128"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8"
dependencies = [
"itoa",
2024-10-02 17:45:26 +02:00
"memchr",
"ryu",
"serde",
]
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
"itoa",
"ryu",
"serde",
]
2023-03-05 23:05:50 +01:00
[[package]]
name = "sha1"
version = "0.10.6"
2023-03-05 23:05:50 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2023-03-05 23:05:50 +01:00
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
]
2024-10-02 17:45:26 +02:00
[[package]]
name = "shlex"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
[[package]]
name = "signal-hook-registry"
2024-05-11 17:59:36 +02:00
version = "1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
dependencies = [
"libc",
]
[[package]]
name = "slab"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
dependencies = [
"autocfg",
]
[[package]]
name = "smallvec"
2024-05-11 17:59:36 +02:00
version = "1.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
[[package]]
name = "socket2"
2024-05-11 17:59:36 +02:00
version = "0.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
dependencies = [
"libc",
2024-05-11 17:59:36 +02:00
"windows-sys 0.52.0",
]
2022-12-29 13:55:37 +01:00
[[package]]
name = "spin"
version = "0.9.8"
2022-12-29 13:55:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2022-12-29 13:55:37 +01:00
[[package]]
name = "strsim"
2024-05-11 17:59:36 +02:00
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-11 17:59:36 +02:00
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2023-12-23 13:19:14 +01:00
[[package]]
name = "subtle"
2024-10-02 17:45:26 +02:00
version = "2.6.1"
2023-12-23 13:19:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2023-12-23 13:19:14 +01:00
[[package]]
name = "syn"
2023-03-05 23:05:50 +01:00
version = "1.0.109"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-05 23:05:50 +01:00
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2023-04-02 01:36:36 +02:00
[[package]]
name = "syn"
2024-10-02 17:45:26 +02:00
version = "2.0.79"
2023-04-02 01:36:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "89132cd0bf050864e1d38dc3bbc07a0eb8e7530af26344d3d2bbbef83499f590"
2023-04-02 01:36:36 +02:00
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 = "synstructure"
version = "0.12.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
dependencies = [
"proc-macro2",
"quote",
2023-04-02 01:36:36 +02:00
"syn 1.0.109",
"unicode-xid",
]
[[package]]
name = "system-configuration"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
dependencies = [
"bitflags 1.3.2",
"core-foundation",
"system-configuration-sys",
2023-03-05 23:05:50 +01:00
]
[[package]]
name = "system-configuration-sys"
version = "0.5.0"
2023-03-05 23:05:50 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
2023-03-05 23:05:50 +01:00
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "thiserror"
2024-10-02 17:45:26 +02:00
version = "1.0.64"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2024-10-02 17:45:26 +02:00
version = "1.0.64"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3"
dependencies = [
"proc-macro2",
"quote",
2024-10-02 17:45:26 +02:00
"syn 2.0.79",
]
[[package]]
name = "tinyvec"
2024-10-02 17:45:26 +02:00
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
2023-03-05 23:05:50 +01:00
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-05 23:05:50 +01:00
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tokio"
2024-10-02 17:45:26 +02:00
version = "1.40.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998"
dependencies = [
2023-07-01 15:59:50 +02:00
"backtrace",
"bytes",
"libc",
"mio",
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
2023-12-23 13:19:14 +01:00
"socket2",
"tokio-macros",
2024-10-02 17:45:26 +02:00
"windows-sys 0.52.0",
]
[[package]]
name = "tokio-macros"
2024-10-02 17:45:26 +02:00
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
dependencies = [
"proc-macro2",
"quote",
2024-10-02 17:45:26 +02:00
"syn 2.0.79",
]
[[package]]
name = "tokio-rustls"
2023-06-09 13:45:19 +02:00
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-09 13:45:19 +02:00
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
dependencies = [
2024-05-11 17:59:36 +02:00
"rustls 0.21.12",
"tokio",
]
[[package]]
name = "tokio-util"
2024-10-02 17:45:26 +02:00
version = "0.7.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a"
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
]
[[package]]
name = "tower-service"
2024-10-02 17:45:26 +02:00
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
[[package]]
name = "tracing"
version = "0.1.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
dependencies = [
"pin-project-lite",
"tracing-core",
]
[[package]]
name = "tracing-core"
version = "0.1.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
dependencies = [
2022-07-01 15:51:41 +02:00
"once_cell",
]
[[package]]
name = "try-lock"
2023-12-23 13:19:14 +01:00
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 13:19:14 +01:00
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2023-03-05 23:05:50 +01:00
[[package]]
name = "tungstenite"
2023-12-23 13:19:14 +01:00
version = "0.21.0"
2023-03-05 23:05:50 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 13:19:14 +01:00
checksum = "9ef1a641ea34f399a848dea702823bbecfb4c486f911735368f1f137cb8257e1"
2023-03-05 23:05:50 +01:00
dependencies = [
"byteorder",
"bytes",
2023-05-10 21:31:53 +02:00
"data-encoding",
2024-05-11 17:59:36 +02:00
"http 1.1.0",
2023-03-05 23:05:50 +01:00
"httparse",
"log",
"rand",
2024-05-11 17:59:36 +02:00
"rustls 0.22.4",
2023-03-05 23:05:50 +01:00
"rustls-native-certs",
2023-12-23 13:19:14 +01:00
"rustls-pki-types",
2023-03-05 23:05:50 +01:00
"sha1",
"thiserror",
"url",
"utf-8",
]
[[package]]
name = "typenum"
version = "1.17.0"
2023-03-05 23:05:50 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2023-03-05 23:05:50 +01:00
[[package]]
name = "unicode-bidi"
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
[[package]]
name = "unicode-ident"
2024-10-02 17:45:26 +02:00
version = "1.0.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
[[package]]
name = "unicode-normalization"
2024-10-02 17:45:26 +02:00
version = "0.1.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
dependencies = [
"tinyvec",
]
[[package]]
name = "unicode-xid"
2024-10-02 17:45:26 +02:00
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
[[package]]
name = "untrusted"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
[[package]]
name = "url"
2024-10-02 17:45:26 +02:00
version = "2.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
]
2022-12-29 13:55:37 +01:00
[[package]]
2023-03-05 23:05:50 +01:00
name = "utf-8"
version = "0.7.6"
2022-12-29 13:55:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-05 23:05:50 +01:00
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2022-12-29 13:55:37 +01:00
2023-04-02 01:36:36 +02:00
[[package]]
name = "utf8parse"
2024-10-02 17:45:26 +02:00
version = "0.2.2"
2023-04-02 01:36:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2023-04-02 01:36:36 +02:00
[[package]]
name = "version_check"
2024-10-02 17:45:26 +02:00
version = "0.9.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
[[package]]
name = "want"
2023-06-23 10:36:46 +02:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-23 10:36:46 +02:00
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
dependencies = [
"try-lock",
]
[[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-10-02 17:45:26 +02:00
version = "0.2.93"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5"
dependencies = [
"cfg-if",
2024-10-02 17:45:26 +02:00
"once_cell",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2024-10-02 17:45:26 +02:00
version = "0.2.93"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b"
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
2024-10-02 17:45:26 +02:00
"syn 2.0.79",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2024-10-02 17:45:26 +02:00
version = "0.4.43"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "61e9300f63a621e96ed275155c108eb6f843b6a26d053f122ab69724559dc8ed"
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2024-10-02 17:45:26 +02:00
version = "0.2.93"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2024-10-02 17:45:26 +02:00
version = "0.2.93"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836"
dependencies = [
"proc-macro2",
"quote",
2024-10-02 17:45:26 +02:00
"syn 2.0.79",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2024-10-02 17:45:26 +02:00
version = "0.2.93"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484"
[[package]]
name = "web-sys"
2024-10-02 17:45:26 +02:00
version = "0.3.70"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "26fdeaafd9bd129f65e7c031593c24d62186301e0c72c8978fa1678be7d532c0"
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "webpki-roots"
version = "0.25.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
2023-04-02 01:36:36 +02:00
[[package]]
name = "windows-core"
2024-01-03 21:47:13 +01:00
version = "0.52.0"
2023-04-02 01:36:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-03 21:47:13 +01:00
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
2023-04-02 01:36:36 +02:00
dependencies = [
2024-10-02 17:45:26 +02:00
"windows-targets 0.52.6",
2023-04-02 01:36:36 +02:00
]
2023-04-09 01:42:17 +02:00
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
2023-12-23 13:19:14 +01:00
"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-10-02 17:45:26 +02:00
"windows-targets 0.52.6",
]
[[package]]
name = "windows-sys"
version = "0.59.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
dependencies = [
"windows-targets 0.52.6",
2023-04-09 01:42:17 +02:00
]
[[package]]
name = "windows-targets"
version = "0.48.5"
2023-04-09 01:42:17 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2023-04-09 01:42:17 +02:00
dependencies = [
2023-12-23 13:19:14 +01:00
"windows_aarch64_gnullvm 0.48.5",
"windows_aarch64_msvc 0.48.5",
"windows_i686_gnu 0.48.5",
"windows_i686_msvc 0.48.5",
"windows_x86_64_gnu 0.48.5",
"windows_x86_64_gnullvm 0.48.5",
"windows_x86_64_msvc 0.48.5",
]
[[package]]
name = "windows-targets"
2024-10-02 17:45:26 +02:00
version = "0.52.6"
2023-12-23 13:19:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2023-12-23 13:19:14 +01:00
dependencies = [
2024-10-02 17:45:26 +02:00
"windows_aarch64_gnullvm 0.52.6",
"windows_aarch64_msvc 0.52.6",
"windows_i686_gnu 0.52.6",
2024-05-11 17:59:36 +02:00
"windows_i686_gnullvm",
2024-10-02 17:45:26 +02:00
"windows_i686_msvc 0.52.6",
"windows_x86_64_gnu 0.52.6",
"windows_x86_64_gnullvm 0.52.6",
"windows_x86_64_msvc 0.52.6",
2023-03-05 23:05:50 +01:00
]
2023-04-09 01:42:17 +02:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.5"
2023-04-09 01:42:17 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2023-04-09 01:42:17 +02:00
2023-12-23 13:19:14 +01:00
[[package]]
name = "windows_aarch64_gnullvm"
2024-10-02 17:45:26 +02:00
version = "0.52.6"
2023-12-23 13:19:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2023-12-23 13:19:14 +01:00
2023-04-09 01:42:17 +02:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.5"
2023-04-09 01:42:17 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2023-04-09 01:42:17 +02:00
2023-12-23 13:19:14 +01:00
[[package]]
name = "windows_aarch64_msvc"
2024-10-02 17:45:26 +02:00
version = "0.52.6"
2023-12-23 13:19:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2023-12-23 13:19:14 +01:00
2023-04-09 01:42:17 +02:00
[[package]]
name = "windows_i686_gnu"
version = "0.48.5"
2023-04-09 01:42:17 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2023-04-09 01:42:17 +02:00
2023-12-23 13:19:14 +01:00
[[package]]
name = "windows_i686_gnu"
2024-10-02 17:45:26 +02:00
version = "0.52.6"
2023-12-23 13:19:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2024-05-11 17:59:36 +02:00
[[package]]
name = "windows_i686_gnullvm"
2024-10-02 17:45:26 +02:00
version = "0.52.6"
2024-05-11 17:59:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2023-12-23 13:19:14 +01:00
2023-04-09 01:42:17 +02:00
[[package]]
name = "windows_i686_msvc"
version = "0.48.5"
2023-04-09 01:42:17 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2023-04-09 01:42:17 +02:00
2023-12-23 13:19:14 +01:00
[[package]]
name = "windows_i686_msvc"
2024-10-02 17:45:26 +02:00
version = "0.52.6"
2023-12-23 13:19:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2023-12-23 13:19:14 +01:00
2023-04-09 01:42:17 +02:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.5"
2023-04-09 01:42:17 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2023-04-09 01:42:17 +02:00
2023-12-23 13:19:14 +01:00
[[package]]
name = "windows_x86_64_gnu"
2024-10-02 17:45:26 +02:00
version = "0.52.6"
2023-12-23 13:19:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2023-12-23 13:19:14 +01:00
2023-04-09 01:42:17 +02:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.5"
2023-04-09 01:42:17 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2023-04-09 01:42:17 +02:00
2023-12-23 13:19:14 +01:00
[[package]]
name = "windows_x86_64_gnullvm"
2024-10-02 17:45:26 +02:00
version = "0.52.6"
2023-12-23 13:19:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2023-12-23 13:19:14 +01:00
2023-04-09 01:42:17 +02:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.5"
2023-04-09 01:42:17 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2023-04-09 01:42:17 +02:00
2023-12-23 13:19:14 +01:00
[[package]]
name = "windows_x86_64_msvc"
2024-10-02 17:45:26 +02:00
version = "0.52.6"
2023-12-23 13:19:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 17:45:26 +02:00
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2023-12-23 13:19:14 +01:00
[[package]]
name = "winreg"
version = "0.50.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
dependencies = [
"cfg-if",
2023-12-23 13:19:14 +01:00
"windows-sys 0.48.0",
]
2023-12-23 13:19:14 +01:00
2024-10-02 17:45:26 +02:00
[[package]]
name = "zerocopy"
version = "0.7.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
dependencies = [
"byteorder",
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
version = "0.7.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.79",
]
2023-12-23 13:19:14 +01:00
[[package]]
name = "zeroize"
2024-05-28 14:50:07 +02:00
version = "1.8.1"
2023-12-23 13:19:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-28 14:50:07 +02:00
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"