prometheus_wireguard_exporter/Cargo.lock

1071 lines
26 KiB
Text
Raw Normal View History

2019-04-23 23:06:35 +02:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2019-04-23 23:06:35 +02:00
[[package]]
name = "aho-corasick"
version = "0.7.18"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
2019-04-23 23:06:35 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"memchr",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "ansi_term"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-11 16:40:10 +02:00
checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
2019-04-23 23:06:35 +02:00
dependencies = [
"winapi",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "arrayref"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
[[package]]
name = "arrayvec"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
2019-04-23 23:06:35 +02:00
[[package]]
name = "atty"
2020-03-24 09:36:13 +01:00
version = "0.2.14"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-11 16:40:10 +02:00
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
2019-04-23 23:06:35 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"hermit-abi",
"libc",
"winapi",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "autocfg"
version = "1.0.1"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
2019-04-23 23:06:35 +02:00
[[package]]
name = "bitflags"
version = "1.3.2"
2019-12-01 19:42:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2019-12-01 19:42:47 +01:00
[[package]]
name = "blake2b_simd"
version = "0.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587"
dependencies = [
"arrayref",
"arrayvec",
"constant_time_eq",
]
2019-12-01 19:42:47 +01:00
[[package]]
name = "bumpalo"
version = "3.7.0"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c59e7af012c713f529e7a3ee57ce9b31ddd858d4b512923602f74608b009631"
2019-04-23 23:06:35 +02:00
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2019-04-23 23:06:35 +02:00
[[package]]
name = "bytes"
version = "1.1.0"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
2019-04-23 23:06:35 +02:00
[[package]]
name = "cc"
version = "1.0.70"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d26a6ce4b6a484fa3edb70f7efa6fc430fd2b87285fe8b84304fd0936faa0dc0"
2019-04-23 23:06:35 +02:00
[[package]]
name = "cfg-if"
version = "1.0.0"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2019-04-23 23:06:35 +02:00
[[package]]
name = "clap"
version = "2.33.3"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
2019-04-23 23:06:35 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"ansi_term",
"atty",
"bitflags",
"strsim",
"textwrap",
"unicode-width",
"vec_map",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "clippy"
version = "0.0.302"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d911ee15579a3f50880d8c1d59ef6e79f9533127a3bd342462f5d584f5e8c294"
dependencies = [
"term",
]
[[package]]
name = "constant_time_eq"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
2019-12-01 19:42:47 +01:00
[[package]]
name = "core-foundation"
version = "0.9.1"
2019-12-01 19:42:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a89e2ae426ea83155dccf10c0fa6b1463ef6d5fcb44cee0b224a408fa640a62"
2019-12-01 19:42:47 +01:00
dependencies = [
2020-10-11 16:40:10 +02:00
"core-foundation-sys",
"libc",
2019-12-01 19:42:47 +01:00
]
[[package]]
name = "core-foundation-sys"
2020-03-24 09:36:13 +01:00
version = "0.8.2"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea221b5284a47e40033bf9b66f35f984ec0ea2931eb03505246cd27a963f981b"
[[package]]
name = "crossbeam-utils"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db"
dependencies = [
"cfg-if",
"lazy_static",
]
2019-05-17 10:17:06 +02:00
[[package]]
2019-12-01 19:42:47 +01:00
name = "ct-logs"
version = "0.8.0"
2019-05-17 10:17:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1a816186fa68d9e426e3cb4ae4dff1fcd8e4a2c34b781bf7a822574a0d0aac8"
2019-12-01 19:42:47 +01:00
dependencies = [
2020-10-11 16:40:10 +02:00
"sct",
2019-12-01 19:42:47 +01:00
]
2019-05-17 10:17:06 +02:00
[[package]]
name = "dirs"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901"
dependencies = [
"libc",
"redox_users",
"winapi",
]
2019-12-01 19:42:47 +01:00
[[package]]
name = "env_logger"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-11 16:40:10 +02:00
checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
2019-12-01 19:42:47 +01:00
dependencies = [
2020-10-11 16:40:10 +02:00
"atty",
"humantime 1.3.0",
"log",
"regex",
"termcolor",
]
[[package]]
name = "env_logger"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3"
dependencies = [
"atty",
"humantime 2.1.0",
2020-10-11 16:40:10 +02:00
"log",
"regex",
"termcolor",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "fnv"
version = "1.0.7"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2019-04-23 23:06:35 +02:00
[[package]]
name = "futures-channel"
version = "0.3.17"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5da6ba8c3bb3c165d3c7319fc1cc8304facf1fb8db99c5de877183c08a273888"
2019-04-23 23:06:35 +02:00
dependencies = [
"futures-core",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "futures-core"
version = "0.3.17"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88d1c26957f23603395cd326b0ffe64124b818f4449552f960d815cfba83a53d"
2019-04-23 23:06:35 +02:00
2019-12-01 19:42:47 +01:00
[[package]]
name = "futures-macro"
version = "0.3.17"
2019-12-01 19:42:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "18e4a4b95cea4b4ccbcf1c5675ca7c4ee4e9e75eb79944d07defde18068f79bb"
2019-12-01 19:42:47 +01:00
dependencies = [
"autocfg",
"proc-macro-hack",
"proc-macro2",
"quote",
"syn",
2019-12-01 19:42:47 +01:00
]
[[package]]
name = "futures-task"
version = "0.3.17"
2019-12-01 19:42:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d3d00f4eddb73e498a54394f228cd55853bdf059259e8e7bc6e69d408892e99"
2019-12-01 19:42:47 +01:00
2019-04-23 23:06:35 +02:00
[[package]]
name = "futures-util"
version = "0.3.17"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "36568465210a3a6ee45e1f165136d68671471a501e632e9a98d96872222b5481"
2019-04-23 23:06:35 +02:00
dependencies = [
"autocfg",
"futures-core",
"futures-macro",
"futures-task",
"pin-project-lite",
2020-10-11 16:40:10 +02:00
"pin-utils",
"proc-macro-hack",
"proc-macro-nested",
2020-10-11 16:40:10 +02:00
"slab",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "getrandom"
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
dependencies = [
"cfg-if",
"libc",
"wasi",
]
2019-12-01 19:42:47 +01:00
[[package]]
name = "hermit-abi"
version = "0.1.19"
2019-12-01 19:42:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2019-12-01 19:42:47 +01:00
dependencies = [
2020-10-11 16:40:10 +02:00
"libc",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "http"
version = "0.2.4"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11"
2019-04-23 23:06:35 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"bytes",
"fnv",
"itoa",
2019-05-17 10:17:06 +02:00
]
[[package]]
name = "http-body"
version = "0.4.3"
2019-05-17 10:17:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "399c583b2979440c60be0821a6199eca73bc3c8dcd9d070d75ac726e2c6186e5"
2019-05-17 10:17:06 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"bytes",
"http",
"pin-project-lite",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "httparse"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acd94fdbe1d4ff688b67b04eee2e17bd50995534a61539e45adfefb45e5e5503"
[[package]]
name = "httpdate"
version = "1.0.1"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6456b8a6c8f33fee7d958fcd1b60d55b11940a79e63ae87013e6d22e26034440"
2019-04-23 23:06:35 +02:00
[[package]]
name = "humantime"
2019-12-01 19:42:47 +01:00
version = "1.3.0"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-11 16:40:10 +02:00
checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
2019-04-23 23:06:35 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"quick-error",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2019-04-23 23:06:35 +02:00
[[package]]
name = "hyper"
version = "0.14.12"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13f67199e765030fa08fe0bd581af683f0d5bc04ea09c2b1102012c5fb90e7fd"
2020-10-11 16:40:10 +02:00
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
2020-10-11 16:40:10 +02:00
"http",
"http-body",
"httparse",
"httpdate",
2020-10-11 16:40:10 +02:00
"itoa",
"pin-project-lite",
"socket2",
2020-10-11 16:40:10 +02:00
"tokio",
"tower-service",
"tracing",
2020-10-11 16:40:10 +02:00
"want",
]
[[package]]
name = "hyper-rustls"
version = "0.22.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f9f7a97316d44c0af9b0301e65010573a853a9fc97046d7331d7f6bc0fd5a64"
dependencies = [
2020-10-11 16:40:10 +02:00
"ct-logs",
"futures-util",
2020-10-11 16:40:10 +02:00
"hyper",
"log",
2020-10-11 16:40:10 +02:00
"rustls",
"rustls-native-certs",
"tokio",
2020-10-11 16:40:10 +02:00
"tokio-rustls",
"webpki",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "itoa"
version = "0.4.8"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
2019-04-23 23:06:35 +02:00
2019-12-01 19:42:47 +01:00
[[package]]
name = "js-sys"
version = "0.3.53"
2019-12-01 19:42:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4bf49d50e2961077d9c99f4b7997d770a1114f087c3c2e0069b36c13fc2979d"
2019-12-01 19:42:47 +01:00
dependencies = [
2020-10-11 16:40:10 +02:00
"wasm-bindgen",
2019-12-01 19:42:47 +01:00
]
2019-04-23 23:06:35 +02:00
[[package]]
name = "lazy_static"
2019-12-01 19:42:47 +01:00
version = "1.4.0"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-11 16:40:10 +02:00
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2019-04-23 23:06:35 +02:00
[[package]]
name = "libc"
version = "0.2.101"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3cb00336871be5ed2c8ed44b60ae9959dc5b9f08539422ed43f09e34ecaeba21"
2019-04-23 23:06:35 +02:00
[[package]]
name = "log"
version = "0.4.14"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
2019-04-23 23:06:35 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"cfg-if",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "memchr"
version = "2.4.1"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
2019-04-23 23:06:35 +02:00
[[package]]
name = "mio"
version = "0.7.13"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c2bdb6314ec10835cd3293dd268473a835c02b7b352e788be788b3c6ca6bb16"
2019-04-23 23:06:35 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"libc",
"log",
"miow",
"ntapi",
"winapi",
2019-12-01 19:42:47 +01:00
]
2019-04-23 23:06:35 +02:00
[[package]]
name = "miow"
version = "0.3.7"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
2019-04-23 23:06:35 +02:00
dependencies = [
"winapi",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "ntapi"
version = "0.3.6"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
2019-04-23 23:06:35 +02:00
dependencies = [
"winapi",
2019-04-23 23:06:35 +02:00
]
[[package]]
2019-12-01 19:42:47 +01:00
name = "num"
2020-03-24 09:36:13 +01:00
version = "0.2.1"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-11 16:40:10 +02:00
checksum = "b8536030f9fea7127f841b45bb6243b27255787fb4eb83958aa1ef9d2fdc0c36"
2019-04-23 23:06:35 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"num-bigint",
"num-complex",
"num-integer",
"num-iter",
"num-rational",
"num-traits",
2019-04-23 23:06:35 +02:00
]
[[package]]
2019-12-01 19:42:47 +01:00
name = "num-bigint"
2020-03-24 09:36:13 +01:00
version = "0.2.6"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-11 16:40:10 +02:00
checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304"
2019-12-01 19:42:47 +01:00
dependencies = [
2020-10-11 16:40:10 +02:00
"autocfg",
"num-integer",
"num-traits",
2019-12-01 19:42:47 +01:00
]
2019-04-23 23:06:35 +02:00
[[package]]
2019-12-01 19:42:47 +01:00
name = "num-complex"
2020-03-24 09:36:13 +01:00
version = "0.2.4"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-11 16:40:10 +02:00
checksum = "b6b19411a9719e753aff12e5187b74d60d3dc449ec3f4dc21e3989c3f554bc95"
2019-04-23 23:06:35 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"autocfg",
"num-traits",
2019-04-23 23:06:35 +02:00
]
[[package]]
2019-12-01 19:42:47 +01:00
name = "num-integer"
version = "0.1.44"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
2019-04-23 23:06:35 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"autocfg",
"num-traits",
2019-04-23 23:06:35 +02:00
]
[[package]]
2019-12-01 19:42:47 +01:00
name = "num-iter"
version = "0.1.42"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2021c8337a54d21aca0d59a92577a029af9431cb59b909b03252b9c164fad59"
2019-04-23 23:06:35 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"autocfg",
"num-integer",
"num-traits",
2019-04-23 23:06:35 +02:00
]
[[package]]
2019-12-01 19:42:47 +01:00
name = "num-rational"
2020-03-24 09:36:13 +01:00
version = "0.2.4"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-11 16:40:10 +02:00
checksum = "5c000134b5dbf44adc5cb772486d335293351644b801551abe8f75c84cfa4aef"
2019-04-23 23:06:35 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"autocfg",
"num-bigint",
"num-integer",
"num-traits",
2019-04-23 23:06:35 +02:00
]
2019-06-09 20:09:06 +02:00
[[package]]
2019-12-01 19:42:47 +01:00
name = "num-traits"
version = "0.2.14"
2019-06-09 20:09:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
2019-06-09 20:09:06 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"autocfg",
2019-06-09 20:09:06 +02:00
]
2019-04-23 23:06:35 +02:00
[[package]]
name = "once_cell"
version = "1.8.0"
2019-12-01 19:42:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"
2019-04-23 23:06:35 +02:00
[[package]]
2019-12-01 19:42:47 +01:00
name = "openssl-probe"
version = "0.1.4"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a"
2019-04-23 23:06:35 +02:00
[[package]]
name = "pin-project-lite"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443"
2019-04-23 23:06:35 +02:00
[[package]]
2019-12-01 19:42:47 +01:00
name = "pin-utils"
version = "0.1.0"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "proc-macro-hack"
version = "0.5.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
[[package]]
name = "proc-macro-nested"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"
2019-04-23 23:06:35 +02:00
[[package]]
2019-12-01 19:42:47 +01:00
name = "proc-macro2"
version = "1.0.29"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9f5105d4fdaab20335ca9565e106a5d9b82b6219b5ba735731124ac6711d23d"
2019-04-23 23:06:35 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"unicode-xid",
2019-04-23 23:06:35 +02:00
]
[[package]]
2019-12-01 19:42:47 +01:00
name = "prometheus_exporter_base"
version = "1.3.0"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05b214e11b8c1d9a9d659eb097b77326cb74fcde851477adb97d145222d17585"
2019-04-23 23:06:35 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"clap",
"env_logger 0.7.1",
2020-10-11 16:40:10 +02:00
"http",
"hyper",
"hyper-rustls",
"log",
"num",
"serde",
"serde_json",
"thiserror",
2019-04-23 23:06:35 +02:00
]
[[package]]
2019-12-01 19:42:47 +01:00
name = "prometheus_wireguard_exporter"
version = "3.6.0"
2019-04-23 23:06:35 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"clap",
"clippy",
"env_logger 0.9.0",
2020-10-11 16:40:10 +02:00
"http",
"hyper",
"log",
"prometheus_exporter_base",
"regex",
"serde",
"serde_json",
"thiserror",
2020-10-11 16:40:10 +02:00
"tokio",
2019-04-23 23:06:35 +02:00
]
[[package]]
2019-12-01 19:42:47 +01:00
name = "quick-error"
2020-03-24 09:36:13 +01:00
version = "1.2.3"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-11 16:40:10 +02:00
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2019-04-23 23:06:35 +02:00
[[package]]
2019-12-01 19:42:47 +01:00
name = "quote"
version = "1.0.9"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
2019-04-23 23:06:35 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"proc-macro2",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "redox_syscall"
version = "0.1.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
[[package]]
name = "redox_users"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d"
dependencies = [
"getrandom",
"redox_syscall",
"rust-argon2",
]
2019-04-23 23:06:35 +02:00
[[package]]
name = "regex"
version = "1.5.4"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
2019-04-23 23:06:35 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"aho-corasick",
"memchr",
"regex-syntax",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "regex-syntax"
version = "0.6.25"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
2019-04-23 23:06:35 +02:00
[[package]]
name = "ring"
version = "0.16.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
dependencies = [
2020-10-11 16:40:10 +02:00
"cc",
"libc",
"once_cell",
2020-10-11 16:40:10 +02:00
"spin",
"untrusted",
"web-sys",
"winapi",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "rust-argon2"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb"
dependencies = [
"base64",
"blake2b_simd",
"constant_time_eq",
"crossbeam-utils",
]
[[package]]
name = "rustls"
version = "0.19.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7"
dependencies = [
2020-10-11 16:40:10 +02:00
"base64",
"log",
"ring",
"sct",
"webpki",
2019-12-01 19:42:47 +01:00
]
[[package]]
name = "rustls-native-certs"
version = "0.5.0"
2019-12-01 19:42:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a07b7c1885bd8ed3831c289b7870b13ef46fe0e856d288c30d9cc17d75a2092"
2019-12-01 19:42:47 +01:00
dependencies = [
2020-10-11 16:40:10 +02:00
"openssl-probe",
"rustls",
"schannel",
"security-framework",
]
2019-04-23 23:06:35 +02:00
[[package]]
name = "ryu"
version = "1.0.5"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
2019-04-23 23:06:35 +02:00
2019-12-01 19:42:47 +01:00
[[package]]
name = "schannel"
version = "0.1.19"
2019-12-01 19:42:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
2019-12-01 19:42:47 +01:00
dependencies = [
2020-10-11 16:40:10 +02:00
"lazy_static",
"winapi",
2019-12-01 19:42:47 +01:00
]
[[package]]
name = "sct"
version = "0.6.1"
2019-12-01 19:42:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce"
2019-12-01 19:42:47 +01:00
dependencies = [
2020-10-11 16:40:10 +02:00
"ring",
"untrusted",
2019-12-01 19:42:47 +01:00
]
[[package]]
name = "security-framework"
version = "2.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "525bc1abfda2e1998d152c45cf13e696f76d0a4972310b22fac1658b05df7c87"
dependencies = [
"bitflags",
2020-10-11 16:40:10 +02:00
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
2019-12-01 19:42:47 +01:00
]
[[package]]
name = "security-framework-sys"
version = "2.4.2"
2019-12-01 19:42:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9dd14d83160b528b7bfd66439110573efcfbe281b17fc2ca9f39f550d619c7e"
2019-12-01 19:42:47 +01:00
dependencies = [
2020-10-11 16:40:10 +02:00
"core-foundation-sys",
"libc",
]
2019-04-23 23:06:35 +02:00
[[package]]
name = "serde"
version = "1.0.130"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913"
2019-04-23 23:06:35 +02:00
[[package]]
name = "serde_json"
version = "1.0.67"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7f9e390c27c3c0ce8bc5d725f6e4d30a29d26659494aa4b17535f7522c5c950"
2019-04-23 23:06:35 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"itoa",
"ryu",
"serde",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "slab"
version = "0.4.4"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c307a32c1c5c437f38c7fd45d753050587732ba8628319fbdf12a7e289ccc590"
2019-04-23 23:06:35 +02:00
[[package]]
name = "socket2"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "765f090f0e423d2b55843402a07915add955e7d60657db13707a159727326cad"
2019-12-01 19:42:47 +01:00
dependencies = [
"libc",
"winapi",
2019-12-01 19:42:47 +01:00
]
2019-04-23 23:06:35 +02:00
[[package]]
2019-12-01 19:42:47 +01:00
name = "spin"
version = "0.5.2"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-11 16:40:10 +02:00
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2019-04-23 23:06:35 +02:00
[[package]]
name = "strsim"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-11 16:40:10 +02:00
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
2019-04-23 23:06:35 +02:00
[[package]]
name = "syn"
version = "1.0.76"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c6f107db402c2c2055242dbf4d2af0e69197202e9faacbef9571bbe47f5a1b84"
2019-04-23 23:06:35 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"proc-macro2",
"quote",
"unicode-xid",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "term"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "edd106a334b7657c10b7c540a0106114feadeb4dc314513e97df481d5d966f42"
dependencies = [
"byteorder",
"dirs",
"winapi",
]
2019-04-23 23:06:35 +02:00
[[package]]
name = "termcolor"
version = "1.1.2"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
2019-04-23 23:06:35 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"winapi-util",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-11 16:40:10 +02:00
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
2019-04-23 23:06:35 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"unicode-width",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "thiserror"
version = "1.0.29"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "602eca064b2d83369e2b2f34b09c70b605402801927c65c11071ac911d299b88"
2019-04-23 23:06:35 +02:00
dependencies = [
"thiserror-impl",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "thiserror-impl"
version = "1.0.29"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bad553cc2c78e8de258400763a647e80e6d1b31ee237275d756f6836d204494c"
2019-04-23 23:06:35 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "tokio"
version = "1.11.0"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4efe6fc2395938c8155973d7be49fe8d03a843726e285e100a8a383cc0154ce"
2019-04-23 23:06:35 +02:00
dependencies = [
"autocfg",
"libc",
"mio",
"pin-project-lite",
2020-10-11 16:40:10 +02:00
"tokio-macros",
"winapi",
2019-12-01 19:42:47 +01:00
]
[[package]]
name = "tokio-macros"
version = "1.3.0"
2019-12-01 19:42:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54473be61f4ebe4efd09cec9bd5d16fa51d70ea0192213d754d2d500457db110"
2019-12-01 19:42:47 +01:00
dependencies = [
"proc-macro2",
2020-10-11 16:40:10 +02:00
"quote",
"syn",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "tokio-rustls"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc6844de72e57df1980054b38be3a9f4702aba4858be64dd700181a8a6d0e1b6"
dependencies = [
2020-10-11 16:40:10 +02:00
"rustls",
"tokio",
2020-10-11 16:40:10 +02:00
"webpki",
]
2019-04-23 23:06:35 +02:00
[[package]]
2019-12-01 19:42:47 +01:00
name = "tower-service"
version = "0.3.1"
2019-12-01 19:42:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
2019-12-01 19:42:47 +01:00
[[package]]
name = "tracing"
version = "0.1.26"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09adeb8c97449311ccd28a427f96fb563e7fd31aabf994189879d9da2394b89d"
2019-04-23 23:06:35 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"cfg-if",
"pin-project-lite",
2020-10-11 16:40:10 +02:00
"tracing-core",
2019-12-01 19:42:47 +01:00
]
[[package]]
name = "tracing-core"
version = "0.1.19"
2019-12-01 19:42:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ca517f43f0fb96e0c3072ed5c275fe5eece87e8cb52f4a77b69226d3b1c9df8"
2019-12-01 19:42:47 +01:00
dependencies = [
2020-10-11 16:40:10 +02:00
"lazy_static",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "try-lock"
version = "0.2.3"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
2019-04-23 23:06:35 +02:00
[[package]]
name = "unicode-width"
version = "0.1.8"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
2019-04-23 23:06:35 +02:00
[[package]]
name = "unicode-xid"
version = "0.2.2"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
2019-04-23 23:06:35 +02:00
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2019-04-23 23:06:35 +02:00
[[package]]
name = "vec_map"
version = "0.8.2"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
2019-04-23 23:06:35 +02:00
[[package]]
name = "want"
2019-12-01 19:42:47 +01:00
version = "0.3.0"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-11 16:40:10 +02:00
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
2019-04-23 23:06:35 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"log",
"try-lock",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
2019-12-01 19:42:47 +01:00
[[package]]
name = "wasm-bindgen"
version = "0.2.76"
2019-12-01 19:42:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ce9b1b516211d33767048e5d47fa2a381ed8b76fc48d2ce4aa39877f9f183e0"
2019-12-01 19:42:47 +01:00
dependencies = [
2020-10-11 16:40:10 +02:00
"cfg-if",
"wasm-bindgen-macro",
2019-12-01 19:42:47 +01:00
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.76"
2019-12-01 19:42:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cfe8dc78e2326ba5f845f4b5bf548401604fa20b1dd1d365fb73b6c1d6364041"
2019-12-01 19:42:47 +01:00
dependencies = [
2020-10-11 16:40:10 +02:00
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
2019-12-01 19:42:47 +01:00
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.76"
2019-12-01 19:42:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44468aa53335841d9d6b6c023eaab07c0cd4bddbcfdee3e2bb1e8d2cb8069fef"
2019-12-01 19:42:47 +01:00
dependencies = [
2020-10-11 16:40:10 +02:00
"quote",
"wasm-bindgen-macro-support",
2019-12-01 19:42:47 +01:00
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.76"
2019-12-01 19:42:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0195807922713af1e67dc66132c7328206ed9766af3858164fb583eedc25fbad"
2019-12-01 19:42:47 +01:00
dependencies = [
2020-10-11 16:40:10 +02:00
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
2019-12-01 19:42:47 +01:00
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.76"
2019-12-01 19:42:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acdb075a845574a1fa5f09fd77e43f7747599301ea3417a9fbffdeedfc1f4a29"
2019-12-01 19:42:47 +01:00
[[package]]
name = "web-sys"
version = "0.3.53"
2019-12-01 19:42:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "224b2f6b67919060055ef1a67807367c2066ed520c3862cc013d26cf893a783c"
2019-12-01 19:42:47 +01:00
dependencies = [
2020-10-11 16:40:10 +02:00
"js-sys",
"wasm-bindgen",
2019-12-01 19:42:47 +01:00
]
[[package]]
name = "webpki"
version = "0.21.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea"
dependencies = [
2020-10-11 16:40:10 +02:00
"ring",
"untrusted",
]
2019-04-23 23:06:35 +02:00
[[package]]
name = "winapi"
version = "0.3.9"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2019-04-23 23:06:35 +02:00
dependencies = [
2020-10-11 16:40:10 +02:00
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-11 16:40:10 +02:00
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2019-04-23 23:06:35 +02:00
[[package]]
name = "winapi-util"
version = "0.1.5"
2019-04-23 23:06:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
2019-04-23 23:06:35 +02:00
dependencies = [
"winapi",
2019-04-23 23:06:35 +02:00
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-11 16:40:10 +02:00
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"