Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 98ca6d6b e993db62

+8314 -28
+3 -3
pkgs/applications/networking/feedreaders/feed2imap-go/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "feed2imap-go"; 5 - version = "1.6.0"; 5 + version = "1.7.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Necoro"; 9 9 repo = "feed2imap-go"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-zRp/MfRtCgzYFNKoV4IWbORfCy7vaaDgmRvNQ0cICNQ="; 11 + sha256 = "sha256-Qtpg8DvIFkba+Do8IwemBF0rt85wS4Tq7yOLsdpQFCs="; 12 12 }; 13 13 14 - vendorHash = "sha256-py0totvLLw3kahEtdZkES1t7tZsKBAUS6IMTcn847kE="; 14 + vendorHash = "sha256-WFbfSzU1N2RAOMfCM7wqiAQ6R1HRaT0EfX4KYhstHJU="; 15 15 16 16 # The print-cache tool is not an end-user tool (https://github.com/Necoro/feed2imap-go/issues/94) 17 17 postInstall = ''
+27 -2
pkgs/applications/networking/instant-messengers/telegram/kotatogram-desktop/tg_owt.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 + , fetchpatch 4 5 , pkg-config 5 6 , cmake 6 7 , ninja 7 8 , yasm 8 9 , libjpeg 9 - , openssl_1_1 10 + , openssl 10 11 , libopus 11 12 , ffmpeg_4 12 13 , protobuf ··· 44 45 , ApplicationServices 45 46 }: 46 47 48 + let 49 + libsrtp = fetchFromGitHub { 50 + owner = "cisco"; 51 + repo = "libsrtp"; 52 + 53 + # https://github.com/desktop-app/tg_owt/commit/6894e86eef8809d42b66eb85e376006f2a816a56 54 + rev = "a566a9cfcd619e8327784aa7cff4a1276dc1e895"; 55 + sha256 = "sha256-OvCw7oF1OuamP3qO2BsimeBSHq1rcXFLfK8KnbbgkMU="; 56 + }; 57 + in 58 + 47 59 stdenv.mkDerivation { 48 60 pname = "tg_owt"; 49 61 version = "unstable-2022-04-13"; ··· 58 70 59 71 patches = [ 60 72 ./tg_owt.patch 73 + 74 + (fetchpatch { 75 + url = "https://github.com/desktop-app/tg_owt/commit/0614aac699b1a53242ffe2664e3724533bf64f97.patch"; 76 + hash = "sha256-iCdX518CB/RboDFhl3opnwcAgtqpNWZzYtV75Q+WB6Y="; 77 + }) 78 + 79 + (fetchpatch { 80 + url = "https://github.com/desktop-app/tg_owt/commit/9d120195334db4f232c925529aa7601656dc59d7.patch"; 81 + hash = "sha256-k99OBCdE2eQVyXEyvreEqVtzC8Xfdolbgd1Z7lV2ceE="; 82 + }) 61 83 ]; 62 84 63 85 postPatch = lib.optionalString stdenv.isLinux '' ··· 66 88 --replace '"libGL.so.1"' '"${libGL}/lib/libGL.so.1"' \ 67 89 --replace '"libgbm.so.1"' '"${mesa}/lib/libgbm.so.1"' \ 68 90 --replace '"libdrm.so.2"' '"${libdrm}/lib/libdrm.so.2"' 91 + 92 + rm -r src/third_party/libsrtp 93 + cp -r --no-preserve=mode ${libsrtp} src/third_party/libsrtp 69 94 ''; 70 95 71 96 outputs = [ "out" "dev" ]; ··· 74 99 75 100 propagatedBuildInputs = [ 76 101 libjpeg 77 - openssl_1_1 102 + openssl 78 103 libopus 79 104 ffmpeg_4 80 105 protobuf
+2 -2
pkgs/data/misc/clash-geoip/default.nix
··· 2 2 3 3 stdenvNoCC.mkDerivation rec { 4 4 pname = "clash-geoip"; 5 - version = "20230512"; 5 + version = "20230612"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/Dreamacro/maxmind-geoip/releases/download/${version}/Country.mmdb"; 9 - sha256 = "sha256-/QIii+f7pOzXXlhDQV6XGHpyjAlCS/OONalbPSnmArE="; 9 + sha256 = "sha256-uD+UzMjpQvuNMcIxm4iHLnJwhxXstE3W+0xCuf9j/i8="; 10 10 }; 11 11 12 12 dontUnpack = true;
+2 -2
pkgs/development/python-modules/deepl/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "deepl"; 11 - version = "1.14.0"; 11 + version = "1.15.0"; 12 12 format = "pyproject"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - hash = "sha256-jUHxyx+b1OICJHAs8lh5NVtl+MExyEYM/yfs2qz6fv4="; 16 + hash = "sha256-BRFC4R5d1gxHyEJI41Fi0Az8GqmDG7mQ6Fx/o23OGcE="; 17 17 }; 18 18 19 19 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/edk2-pytool-library/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "edk2-pytool-library"; 14 - version = "0.15.2"; 14 + version = "0.15.3"; 15 15 format = "pyproject"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "tianocore"; 19 19 repo = "edk2-pytool-library"; 20 20 rev = "v${version}"; 21 - hash = "sha256-gadFpFDHfiZ0vbUIEODu4SUL5SSsukdThxqP2ik5adI="; 21 + hash = "sha256-PWjevYUts0dQMBmABpU8neuTqDlglTCCQmuvnVndfto="; 22 22 }; 23 23 24 24 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/ocrmypdf/default.nix
··· 30 30 31 31 buildPythonPackage rec { 32 32 pname = "ocrmypdf"; 33 - version = "14.2.0"; 33 + version = "14.2.1"; 34 34 35 35 disabled = pythonOlder "3.8"; 36 36 ··· 46 46 postFetch = '' 47 47 rm "$out/.git_archival.txt" 48 48 ''; 49 - hash = "sha256-vbNYCnC71l+8omttCGK7+4i3WBiAyb9C5pfApm+SsC0="; 49 + hash = "sha256-i09FPyplYhBqgHWWSXZrvI+7f31yzc5KvgAqVJ3WtWU="; 50 50 }; 51 51 52 52 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+3 -1
pkgs/development/tools/ocaml/merlin/4.x.nix
··· 15 15 }: 16 16 17 17 let 18 - merlinVersion = if lib.versionAtLeast ocaml.version "4.14" then "4.8" else "4.7"; 18 + merlinVersion = if lib.versionAtLeast ocaml.version "4.14" then "4.9" else "4.7"; 19 19 20 20 hashes = { 21 21 "4.7-412" = "sha256-0U3Ia7EblKULNy8AuXFVKACZvGN0arYJv7BWiBRgT0Y="; 22 22 "4.7-413" = "sha256-aVmGWS4bJBLuwsxDKsng/n0A6qlyJ/pnDTcYab/5gyU="; 23 23 "4.8-414" = "sha256-HMXWhcVOXW058y143rNBcfEOmjt2tZJXcXKHmKZ5i68="; 24 24 "4.8-500" = "sha256-n5NHKuo0/lZmfe7WskqnW3xm1S0PmXKSS93BDKrpjCI="; 25 + "4.9-414" = "sha256-4j/EeBNZEmn/nSfIIJiOUgpmLIndCvfqZSshUXSZy/0="; 26 + "4.9-500" = "sha256-uQfGazoxTxclHSiTfjji+tKJv8MKqRdHMPD/xfMZlSY="; 25 27 }; 26 28 27 29 ocamlVersionShorthand = lib.substring 0 3
+3 -3
pkgs/development/web/deno/default.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "deno"; 14 - version = "1.34.1"; 14 + version = "1.34.2"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "denoland"; 18 18 repo = pname; 19 19 rev = "v${version}"; 20 - hash = "sha256-LpW1cbedMPG8VeuQldfYfnxdLrOeDSSf60WfYJbDwHw="; 20 + hash = "sha256-FVSs/9TpLlPfgY/XRJJ2P8jXT9a0DIfPHAl4/400Mtk="; 21 21 }; 22 - cargoHash = "sha256-HRsEekv1vSDm2Nk7xvcRmMfHxl4M6BWwHbdPNNop4Ic="; 22 + cargoHash = "sha256-iiTAxxXi76bjkm47oazQ9AIwq8/jPDa7EsTn7ED0dO0="; 23 23 24 24 postPatch = '' 25 25 # upstream uses lld on aarch64-darwin for faster builds
+2 -2
pkgs/games/maptool/default.nix
··· 12 12 }: 13 13 let 14 14 pname = "maptool"; 15 - version = "1.13.0"; 15 + version = "1.13.1"; 16 16 repoBase = "https://github.com/RPTools/${pname}"; 17 17 src = fetchurl { 18 18 url = "${repoBase}/releases/download/${version}/MapTool-${version}.jar"; 19 - hash = "sha256-0jiUYdr2KwMNc8VBgJsEsf4dkrzYfMGwv+jT1RLhUAg="; 19 + hash = "sha256-EHisFvLaqi8VqIdygf0nxohKLL3c/yE5Y6jAcT0B2q0="; 20 20 }; 21 21 22 22 icon = fetchurl {
+4 -4
pkgs/os-specific/linux/rtl8192eu/default.nix
··· 6 6 7 7 in stdenv.mkDerivation rec { 8 8 pname = "rtl8192eu"; 9 - version = "${kernel.version}-4.4.1.20220614"; 9 + version = "${kernel.version}-4.4.1.20230613"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "Mange"; 13 13 repo = "rtl8192eu-linux-driver"; 14 - rev = "6ba1f320963376f15ea216238c0b62ff3e71fa82"; 15 - sha256 = "sha256-c5swRxSjWT1tCcR7tfFKdAdVVmAEYgMZuOwUxGYYESI="; 14 + rev = "f2fc8af7ab58d2123eed1aa4428e713cdfc27976"; 15 + sha256 = "sha256-OgsxBcXoIP8h9Z0bLsG91/s/+r89Tdn2dPOt4p3sx8k="; 16 16 }; 17 17 18 18 hardeningDisable = [ "pic" ]; ··· 38 38 homepage = "https://github.com/Mange/rtl8192eu-linux-driver"; 39 39 license = licenses.gpl2Only; 40 40 platforms = platforms.linux; 41 - broken = stdenv.hostPlatform.isAarch64 || kernel.kernelAtLeast "5.18"; 41 + broken = stdenv.hostPlatform.isAarch64; 42 42 maintainers = with maintainers; [ troydm ]; 43 43 }; 44 44 }
+8170
pkgs/servers/search/quickwit/Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 3 4 + 5 + [[package]] 6 + name = "Inflector" 7 + version = "0.11.4" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3" 10 + 11 + [[package]] 12 + name = "RustyXML" 13 + version = "0.3.0" 14 + source = "registry+https://github.com/rust-lang/crates.io-index" 15 + checksum = "8b5ace29ee3216de37c0546865ad08edef58b0f9e76838ed8959a84a990e58c5" 16 + 17 + [[package]] 18 + name = "adler" 19 + version = "1.0.2" 20 + source = "registry+https://github.com/rust-lang/crates.io-index" 21 + checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 22 + 23 + [[package]] 24 + name = "advapi32-sys" 25 + version = "0.2.0" 26 + source = "registry+https://github.com/rust-lang/crates.io-index" 27 + checksum = "e06588080cb19d0acb6739808aafa5f26bfb2ca015b2b6370028b44cf7cb8a9a" 28 + dependencies = [ 29 + "winapi 0.2.8", 30 + "winapi-build", 31 + ] 32 + 33 + [[package]] 34 + name = "aes" 35 + version = "0.8.2" 36 + source = "registry+https://github.com/rust-lang/crates.io-index" 37 + checksum = "433cfd6710c9986c576a25ca913c39d66a6474107b406f34f91d4a8923395241" 38 + dependencies = [ 39 + "cfg-if", 40 + "cipher", 41 + "cpufeatures", 42 + ] 43 + 44 + [[package]] 45 + name = "ahash" 46 + version = "0.7.6" 47 + source = "registry+https://github.com/rust-lang/crates.io-index" 48 + checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 49 + dependencies = [ 50 + "getrandom 0.2.9", 51 + "once_cell", 52 + "version_check", 53 + ] 54 + 55 + [[package]] 56 + name = "ahash" 57 + version = "0.8.3" 58 + source = "registry+https://github.com/rust-lang/crates.io-index" 59 + checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" 60 + dependencies = [ 61 + "cfg-if", 62 + "once_cell", 63 + "version_check", 64 + ] 65 + 66 + [[package]] 67 + name = "aho-corasick" 68 + version = "1.0.1" 69 + source = "registry+https://github.com/rust-lang/crates.io-index" 70 + checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04" 71 + dependencies = [ 72 + "memchr", 73 + ] 74 + 75 + [[package]] 76 + name = "aliasable" 77 + version = "0.1.3" 78 + source = "registry+https://github.com/rust-lang/crates.io-index" 79 + checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd" 80 + 81 + [[package]] 82 + name = "android-tzdata" 83 + version = "0.1.1" 84 + source = "registry+https://github.com/rust-lang/crates.io-index" 85 + checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 86 + 87 + [[package]] 88 + name = "android_system_properties" 89 + version = "0.1.5" 90 + source = "registry+https://github.com/rust-lang/crates.io-index" 91 + checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 92 + dependencies = [ 93 + "libc", 94 + ] 95 + 96 + [[package]] 97 + name = "anes" 98 + version = "0.1.6" 99 + source = "registry+https://github.com/rust-lang/crates.io-index" 100 + checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 101 + 102 + [[package]] 103 + name = "ansi-str" 104 + version = "0.3.0" 105 + source = "registry+https://github.com/rust-lang/crates.io-index" 106 + checksum = "e50acdf02a3ac61856d5c8d576a8b5fb452a6549f667ca29fefaa18c2cd05135" 107 + dependencies = [ 108 + "ansitok", 109 + ] 110 + 111 + [[package]] 112 + name = "ansi_term" 113 + version = "0.12.1" 114 + source = "registry+https://github.com/rust-lang/crates.io-index" 115 + checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 116 + dependencies = [ 117 + "winapi 0.3.9", 118 + ] 119 + 120 + [[package]] 121 + name = "ansitok" 122 + version = "0.1.0" 123 + source = "registry+https://github.com/rust-lang/crates.io-index" 124 + checksum = "c2c6eb31f539d8fc1df948eb26452d6c781be4c9883663e7acb258644b71d5b1" 125 + dependencies = [ 126 + "nom", 127 + ] 128 + 129 + [[package]] 130 + name = "anstream" 131 + version = "0.3.2" 132 + source = "registry+https://github.com/rust-lang/crates.io-index" 133 + checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163" 134 + dependencies = [ 135 + "anstyle", 136 + "anstyle-parse", 137 + "anstyle-query", 138 + "anstyle-wincon", 139 + "colorchoice", 140 + "is-terminal", 141 + "utf8parse", 142 + ] 143 + 144 + [[package]] 145 + name = "anstyle" 146 + version = "1.0.0" 147 + source = "registry+https://github.com/rust-lang/crates.io-index" 148 + checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d" 149 + 150 + [[package]] 151 + name = "anstyle-parse" 152 + version = "0.2.0" 153 + source = "registry+https://github.com/rust-lang/crates.io-index" 154 + checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee" 155 + dependencies = [ 156 + "utf8parse", 157 + ] 158 + 159 + [[package]] 160 + name = "anstyle-query" 161 + version = "1.0.0" 162 + source = "registry+https://github.com/rust-lang/crates.io-index" 163 + checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 164 + dependencies = [ 165 + "windows-sys 0.48.0", 166 + ] 167 + 168 + [[package]] 169 + name = "anstyle-wincon" 170 + version = "1.0.1" 171 + source = "registry+https://github.com/rust-lang/crates.io-index" 172 + checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188" 173 + dependencies = [ 174 + "anstyle", 175 + "windows-sys 0.48.0", 176 + ] 177 + 178 + [[package]] 179 + name = "anyhow" 180 + version = "1.0.71" 181 + source = "registry+https://github.com/rust-lang/crates.io-index" 182 + checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" 183 + 184 + [[package]] 185 + name = "anymap" 186 + version = "1.0.0-beta.2" 187 + source = "registry+https://github.com/rust-lang/crates.io-index" 188 + checksum = "8f1f8f5a6f3d50d89e3797d7593a50f96bb2aaa20ca0cc7be1fb673232c91d72" 189 + 190 + [[package]] 191 + name = "arc-swap" 192 + version = "1.6.0" 193 + source = "registry+https://github.com/rust-lang/crates.io-index" 194 + checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6" 195 + 196 + [[package]] 197 + name = "arrayvec" 198 + version = "0.5.2" 199 + source = "registry+https://github.com/rust-lang/crates.io-index" 200 + checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" 201 + 202 + [[package]] 203 + name = "arrayvec" 204 + version = "0.7.2" 205 + source = "registry+https://github.com/rust-lang/crates.io-index" 206 + checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" 207 + 208 + [[package]] 209 + name = "ascii-canvas" 210 + version = "3.0.0" 211 + source = "registry+https://github.com/rust-lang/crates.io-index" 212 + checksum = "8824ecca2e851cec16968d54a01dd372ef8f95b244fb84b84e70128be347c3c6" 213 + dependencies = [ 214 + "term", 215 + ] 216 + 217 + [[package]] 218 + name = "assert-json-diff" 219 + version = "1.1.0" 220 + source = "registry+https://github.com/rust-lang/crates.io-index" 221 + checksum = "4259cbe96513d2f1073027a259fc2ca917feb3026a5a8d984e3628e490255cc0" 222 + dependencies = [ 223 + "extend", 224 + "serde", 225 + "serde_json", 226 + ] 227 + 228 + [[package]] 229 + name = "assert-json-diff" 230 + version = "2.0.2" 231 + source = "registry+https://github.com/rust-lang/crates.io-index" 232 + checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12" 233 + dependencies = [ 234 + "serde", 235 + "serde_json", 236 + ] 237 + 238 + [[package]] 239 + name = "async-channel" 240 + version = "1.8.0" 241 + source = "registry+https://github.com/rust-lang/crates.io-index" 242 + checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833" 243 + dependencies = [ 244 + "concurrent-queue", 245 + "event-listener", 246 + "futures-core", 247 + ] 248 + 249 + [[package]] 250 + name = "async-compression" 251 + version = "0.3.15" 252 + source = "registry+https://github.com/rust-lang/crates.io-index" 253 + checksum = "942c7cd7ae39e91bde4820d74132e9862e62c2f386c3aa90ccf55949f5bad63a" 254 + dependencies = [ 255 + "flate2", 256 + "futures-core", 257 + "memchr", 258 + "pin-project-lite", 259 + "tokio", 260 + ] 261 + 262 + [[package]] 263 + name = "async-speed-limit" 264 + version = "0.4.0" 265 + source = "registry+https://github.com/rust-lang/crates.io-index" 266 + checksum = "481ce9cb6a828f4679495f7376cb6779978d925dd9790b99b48d1bbde6d0f00b" 267 + dependencies = [ 268 + "futures-core", 269 + "futures-io", 270 + "futures-timer", 271 + "pin-project-lite", 272 + ] 273 + 274 + [[package]] 275 + name = "async-stream" 276 + version = "0.3.5" 277 + source = "registry+https://github.com/rust-lang/crates.io-index" 278 + checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51" 279 + dependencies = [ 280 + "async-stream-impl", 281 + "futures-core", 282 + "pin-project-lite", 283 + ] 284 + 285 + [[package]] 286 + name = "async-stream-impl" 287 + version = "0.3.5" 288 + source = "registry+https://github.com/rust-lang/crates.io-index" 289 + checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193" 290 + dependencies = [ 291 + "proc-macro2", 292 + "quote", 293 + "syn 2.0.18", 294 + ] 295 + 296 + [[package]] 297 + name = "async-trait" 298 + version = "0.1.68" 299 + source = "registry+https://github.com/rust-lang/crates.io-index" 300 + checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" 301 + dependencies = [ 302 + "proc-macro2", 303 + "quote", 304 + "syn 2.0.18", 305 + ] 306 + 307 + [[package]] 308 + name = "atoi" 309 + version = "1.0.0" 310 + source = "registry+https://github.com/rust-lang/crates.io-index" 311 + checksum = "d7c57d12312ff59c811c0643f4d80830505833c9ffaebd193d819392b265be8e" 312 + dependencies = [ 313 + "num-traits", 314 + ] 315 + 316 + [[package]] 317 + name = "atty" 318 + version = "0.2.14" 319 + source = "registry+https://github.com/rust-lang/crates.io-index" 320 + checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 321 + dependencies = [ 322 + "hermit-abi 0.1.19", 323 + "libc", 324 + "winapi 0.3.9", 325 + ] 326 + 327 + [[package]] 328 + name = "autocfg" 329 + version = "1.1.0" 330 + source = "registry+https://github.com/rust-lang/crates.io-index" 331 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 332 + 333 + [[package]] 334 + name = "aws-config" 335 + version = "0.55.3" 336 + source = "registry+https://github.com/rust-lang/crates.io-index" 337 + checksum = "bcdcf0d683fe9c23d32cf5b53c9918ea0a500375a9fb20109802552658e576c9" 338 + dependencies = [ 339 + "aws-credential-types", 340 + "aws-http", 341 + "aws-sdk-sso", 342 + "aws-sdk-sts", 343 + "aws-smithy-async", 344 + "aws-smithy-client", 345 + "aws-smithy-http", 346 + "aws-smithy-http-tower", 347 + "aws-smithy-json", 348 + "aws-smithy-types", 349 + "aws-types", 350 + "bytes", 351 + "fastrand", 352 + "hex", 353 + "http", 354 + "hyper", 355 + "ring", 356 + "time 0.3.21", 357 + "tokio", 358 + "tower", 359 + "tracing", 360 + "zeroize", 361 + ] 362 + 363 + [[package]] 364 + name = "aws-credential-types" 365 + version = "0.55.3" 366 + source = "registry+https://github.com/rust-lang/crates.io-index" 367 + checksum = "1fcdb2f7acbc076ff5ad05e7864bdb191ca70a6fd07668dc3a1a8bcd051de5ae" 368 + dependencies = [ 369 + "aws-smithy-async", 370 + "aws-smithy-types", 371 + "fastrand", 372 + "tokio", 373 + "tracing", 374 + "zeroize", 375 + ] 376 + 377 + [[package]] 378 + name = "aws-endpoint" 379 + version = "0.55.3" 380 + source = "registry+https://github.com/rust-lang/crates.io-index" 381 + checksum = "8cce1c41a6cfaa726adee9ebb9a56fcd2bbfd8be49fd8a04c5e20fd968330b04" 382 + dependencies = [ 383 + "aws-smithy-http", 384 + "aws-smithy-types", 385 + "aws-types", 386 + "http", 387 + "regex", 388 + "tracing", 389 + ] 390 + 391 + [[package]] 392 + name = "aws-http" 393 + version = "0.55.3" 394 + source = "registry+https://github.com/rust-lang/crates.io-index" 395 + checksum = "aadbc44e7a8f3e71c8b374e03ecd972869eb91dd2bc89ed018954a52ba84bc44" 396 + dependencies = [ 397 + "aws-credential-types", 398 + "aws-smithy-http", 399 + "aws-smithy-types", 400 + "aws-types", 401 + "bytes", 402 + "http", 403 + "http-body", 404 + "lazy_static", 405 + "percent-encoding", 406 + "pin-project-lite", 407 + "tracing", 408 + ] 409 + 410 + [[package]] 411 + name = "aws-sdk-kinesis" 412 + version = "0.27.0" 413 + source = "registry+https://github.com/rust-lang/crates.io-index" 414 + checksum = "fda5450344773e1c2a5e5ff42d3364a38f4a7303c202c4d81da56887cf08d485" 415 + dependencies = [ 416 + "aws-credential-types", 417 + "aws-endpoint", 418 + "aws-http", 419 + "aws-sig-auth", 420 + "aws-smithy-async", 421 + "aws-smithy-client", 422 + "aws-smithy-http", 423 + "aws-smithy-http-tower", 424 + "aws-smithy-json", 425 + "aws-smithy-types", 426 + "aws-types", 427 + "bytes", 428 + "http", 429 + "regex", 430 + "tokio-stream", 431 + "tower", 432 + "tracing", 433 + ] 434 + 435 + [[package]] 436 + name = "aws-sdk-s3" 437 + version = "0.27.0" 438 + source = "registry+https://github.com/rust-lang/crates.io-index" 439 + checksum = "37c77060408d653d3efa6ea7b66c1389bc35a0342352984c8bf8bcb814a8fc27" 440 + dependencies = [ 441 + "aws-credential-types", 442 + "aws-endpoint", 443 + "aws-http", 444 + "aws-sig-auth", 445 + "aws-sigv4", 446 + "aws-smithy-async", 447 + "aws-smithy-checksums", 448 + "aws-smithy-client", 449 + "aws-smithy-eventstream", 450 + "aws-smithy-http", 451 + "aws-smithy-http-tower", 452 + "aws-smithy-json", 453 + "aws-smithy-types", 454 + "aws-smithy-xml", 455 + "aws-types", 456 + "bytes", 457 + "http", 458 + "http-body", 459 + "once_cell", 460 + "percent-encoding", 461 + "regex", 462 + "tokio-stream", 463 + "tower", 464 + "tracing", 465 + "url", 466 + ] 467 + 468 + [[package]] 469 + name = "aws-sdk-sso" 470 + version = "0.28.0" 471 + source = "registry+https://github.com/rust-lang/crates.io-index" 472 + checksum = "c8b812340d86d4a766b2ca73f740dfd47a97c2dff0c06c8517a16d88241957e4" 473 + dependencies = [ 474 + "aws-credential-types", 475 + "aws-endpoint", 476 + "aws-http", 477 + "aws-sig-auth", 478 + "aws-smithy-async", 479 + "aws-smithy-client", 480 + "aws-smithy-http", 481 + "aws-smithy-http-tower", 482 + "aws-smithy-json", 483 + "aws-smithy-types", 484 + "aws-types", 485 + "bytes", 486 + "http", 487 + "regex", 488 + "tokio-stream", 489 + "tower", 490 + "tracing", 491 + ] 492 + 493 + [[package]] 494 + name = "aws-sdk-sts" 495 + version = "0.28.0" 496 + source = "registry+https://github.com/rust-lang/crates.io-index" 497 + checksum = "265fac131fbfc188e5c3d96652ea90ecc676a934e3174eaaee523c6cec040b3b" 498 + dependencies = [ 499 + "aws-credential-types", 500 + "aws-endpoint", 501 + "aws-http", 502 + "aws-sig-auth", 503 + "aws-smithy-async", 504 + "aws-smithy-client", 505 + "aws-smithy-http", 506 + "aws-smithy-http-tower", 507 + "aws-smithy-json", 508 + "aws-smithy-query", 509 + "aws-smithy-types", 510 + "aws-smithy-xml", 511 + "aws-types", 512 + "bytes", 513 + "http", 514 + "regex", 515 + "tower", 516 + "tracing", 517 + ] 518 + 519 + [[package]] 520 + name = "aws-sig-auth" 521 + version = "0.55.3" 522 + source = "registry+https://github.com/rust-lang/crates.io-index" 523 + checksum = "3b94acb10af0c879ecd5c7bdf51cda6679a0a4f4643ce630905a77673bfa3c61" 524 + dependencies = [ 525 + "aws-credential-types", 526 + "aws-sigv4", 527 + "aws-smithy-eventstream", 528 + "aws-smithy-http", 529 + "aws-types", 530 + "http", 531 + "tracing", 532 + ] 533 + 534 + [[package]] 535 + name = "aws-sigv4" 536 + version = "0.55.3" 537 + source = "registry+https://github.com/rust-lang/crates.io-index" 538 + checksum = "9d2ce6f507be68e968a33485ced670111d1cbad161ddbbab1e313c03d37d8f4c" 539 + dependencies = [ 540 + "aws-smithy-eventstream", 541 + "aws-smithy-http", 542 + "bytes", 543 + "form_urlencoded", 544 + "hex", 545 + "hmac", 546 + "http", 547 + "once_cell", 548 + "percent-encoding", 549 + "regex", 550 + "sha2", 551 + "time 0.3.21", 552 + "tracing", 553 + ] 554 + 555 + [[package]] 556 + name = "aws-smithy-async" 557 + version = "0.55.3" 558 + source = "registry+https://github.com/rust-lang/crates.io-index" 559 + checksum = "13bda3996044c202d75b91afeb11a9afae9db9a721c6a7a427410018e286b880" 560 + dependencies = [ 561 + "futures-util", 562 + "pin-project-lite", 563 + "tokio", 564 + "tokio-stream", 565 + ] 566 + 567 + [[package]] 568 + name = "aws-smithy-checksums" 569 + version = "0.55.3" 570 + source = "registry+https://github.com/rust-lang/crates.io-index" 571 + checksum = "07ed8b96d95402f3f6b8b57eb4e0e45ee365f78b1a924faf20ff6e97abf1eae6" 572 + dependencies = [ 573 + "aws-smithy-http", 574 + "aws-smithy-types", 575 + "bytes", 576 + "crc32c", 577 + "crc32fast", 578 + "hex", 579 + "http", 580 + "http-body", 581 + "md-5", 582 + "pin-project-lite", 583 + "sha1", 584 + "sha2", 585 + "tracing", 586 + ] 587 + 588 + [[package]] 589 + name = "aws-smithy-client" 590 + version = "0.55.3" 591 + source = "registry+https://github.com/rust-lang/crates.io-index" 592 + checksum = "0a86aa6e21e86c4252ad6a0e3e74da9617295d8d6e374d552be7d3059c41cedd" 593 + dependencies = [ 594 + "aws-smithy-async", 595 + "aws-smithy-http", 596 + "aws-smithy-http-tower", 597 + "aws-smithy-protocol-test", 598 + "aws-smithy-types", 599 + "bytes", 600 + "fastrand", 601 + "http", 602 + "http-body", 603 + "hyper", 604 + "hyper-rustls 0.23.2", 605 + "lazy_static", 606 + "pin-project-lite", 607 + "rustls 0.20.8", 608 + "serde", 609 + "serde_json", 610 + "tokio", 611 + "tower", 612 + "tracing", 613 + ] 614 + 615 + [[package]] 616 + name = "aws-smithy-eventstream" 617 + version = "0.55.3" 618 + source = "registry+https://github.com/rust-lang/crates.io-index" 619 + checksum = "460c8da5110835e3d9a717c61f5556b20d03c32a1dec57f8fc559b360f733bb8" 620 + dependencies = [ 621 + "aws-smithy-types", 622 + "bytes", 623 + "crc32fast", 624 + ] 625 + 626 + [[package]] 627 + name = "aws-smithy-http" 628 + version = "0.55.3" 629 + source = "registry+https://github.com/rust-lang/crates.io-index" 630 + checksum = "2b3b693869133551f135e1f2c77cb0b8277d9e3e17feaf2213f735857c4f0d28" 631 + dependencies = [ 632 + "aws-smithy-eventstream", 633 + "aws-smithy-types", 634 + "bytes", 635 + "bytes-utils", 636 + "futures-core", 637 + "http", 638 + "http-body", 639 + "hyper", 640 + "once_cell", 641 + "percent-encoding", 642 + "pin-project-lite", 643 + "pin-utils", 644 + "tokio", 645 + "tokio-util", 646 + "tracing", 647 + ] 648 + 649 + [[package]] 650 + name = "aws-smithy-http-tower" 651 + version = "0.55.3" 652 + source = "registry+https://github.com/rust-lang/crates.io-index" 653 + checksum = "3ae4f6c5798a247fac98a867698197d9ac22643596dc3777f0c76b91917616b9" 654 + dependencies = [ 655 + "aws-smithy-http", 656 + "aws-smithy-types", 657 + "bytes", 658 + "http", 659 + "http-body", 660 + "pin-project-lite", 661 + "tower", 662 + "tracing", 663 + ] 664 + 665 + [[package]] 666 + name = "aws-smithy-json" 667 + version = "0.55.3" 668 + source = "registry+https://github.com/rust-lang/crates.io-index" 669 + checksum = "23f9f42fbfa96d095194a632fbac19f60077748eba536eb0b9fecc28659807f8" 670 + dependencies = [ 671 + "aws-smithy-types", 672 + ] 673 + 674 + [[package]] 675 + name = "aws-smithy-protocol-test" 676 + version = "0.55.3" 677 + source = "registry+https://github.com/rust-lang/crates.io-index" 678 + checksum = "aabbf8d2bfefa4870ba497c1ae3b40e5e26be18af1cb8c871856b0a393a15ffa" 679 + dependencies = [ 680 + "assert-json-diff 1.1.0", 681 + "http", 682 + "pretty_assertions", 683 + "regex", 684 + "roxmltree 0.14.1", 685 + "serde_json", 686 + "thiserror", 687 + ] 688 + 689 + [[package]] 690 + name = "aws-smithy-query" 691 + version = "0.55.3" 692 + source = "registry+https://github.com/rust-lang/crates.io-index" 693 + checksum = "98819eb0b04020a1c791903533b638534ae6c12e2aceda3e6e6fba015608d51d" 694 + dependencies = [ 695 + "aws-smithy-types", 696 + "urlencoding", 697 + ] 698 + 699 + [[package]] 700 + name = "aws-smithy-types" 701 + version = "0.55.3" 702 + source = "registry+https://github.com/rust-lang/crates.io-index" 703 + checksum = "16a3d0bf4f324f4ef9793b86a1701d9700fbcdbd12a846da45eed104c634c6e8" 704 + dependencies = [ 705 + "base64-simd", 706 + "itoa", 707 + "num-integer", 708 + "ryu", 709 + "time 0.3.21", 710 + ] 711 + 712 + [[package]] 713 + name = "aws-smithy-xml" 714 + version = "0.55.3" 715 + source = "registry+https://github.com/rust-lang/crates.io-index" 716 + checksum = "b1b9d12875731bd07e767be7baad95700c3137b56730ec9ddeedb52a5e5ca63b" 717 + dependencies = [ 718 + "xmlparser", 719 + ] 720 + 721 + [[package]] 722 + name = "aws-types" 723 + version = "0.55.3" 724 + source = "registry+https://github.com/rust-lang/crates.io-index" 725 + checksum = "6dd209616cc8d7bfb82f87811a5c655dc97537f592689b18743bddf5dc5c4829" 726 + dependencies = [ 727 + "aws-credential-types", 728 + "aws-smithy-async", 729 + "aws-smithy-client", 730 + "aws-smithy-http", 731 + "aws-smithy-types", 732 + "http", 733 + "rustc_version", 734 + "tracing", 735 + ] 736 + 737 + [[package]] 738 + name = "axum" 739 + version = "0.6.18" 740 + source = "registry+https://github.com/rust-lang/crates.io-index" 741 + checksum = "f8175979259124331c1d7bf6586ee7e0da434155e4b2d48ec2c8386281d8df39" 742 + dependencies = [ 743 + "async-trait", 744 + "axum-core", 745 + "bitflags", 746 + "bytes", 747 + "futures-util", 748 + "http", 749 + "http-body", 750 + "hyper", 751 + "itoa", 752 + "matchit", 753 + "memchr", 754 + "mime", 755 + "percent-encoding", 756 + "pin-project-lite", 757 + "rustversion", 758 + "serde", 759 + "sync_wrapper", 760 + "tower", 761 + "tower-layer", 762 + "tower-service", 763 + ] 764 + 765 + [[package]] 766 + name = "axum-core" 767 + version = "0.3.4" 768 + source = "registry+https://github.com/rust-lang/crates.io-index" 769 + checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c" 770 + dependencies = [ 771 + "async-trait", 772 + "bytes", 773 + "futures-util", 774 + "http", 775 + "http-body", 776 + "mime", 777 + "rustversion", 778 + "tower-layer", 779 + "tower-service", 780 + ] 781 + 782 + [[package]] 783 + name = "azure_core" 784 + version = "0.5.0" 785 + source = "registry+https://github.com/rust-lang/crates.io-index" 786 + checksum = "a6424becb946de1b1eff7bf5fbc86fabf7457637c88b63dd967b219a712c322c" 787 + dependencies = [ 788 + "async-trait", 789 + "base64 0.13.1", 790 + "bytes", 791 + "dyn-clone", 792 + "futures", 793 + "getrandom 0.2.9", 794 + "http-types", 795 + "log", 796 + "paste", 797 + "pin-project", 798 + "rand 0.8.5", 799 + "reqwest", 800 + "rustc_version", 801 + "serde", 802 + "serde-xml-rs", 803 + "serde_json", 804 + "time 0.3.21", 805 + "url", 806 + "uuid", 807 + ] 808 + 809 + [[package]] 810 + name = "azure_storage" 811 + version = "0.6.0" 812 + source = "registry+https://github.com/rust-lang/crates.io-index" 813 + checksum = "28d0de4ed66067ca1afa0a07d787a6fe001288a162409b8308c45909044552ca" 814 + dependencies = [ 815 + "RustyXML", 816 + "async-trait", 817 + "azure_core", 818 + "base64 0.13.1", 819 + "bytes", 820 + "futures", 821 + "hmac", 822 + "log", 823 + "once_cell", 824 + "serde", 825 + "serde-xml-rs", 826 + "serde_derive", 827 + "serde_json", 828 + "sha2", 829 + "time 0.3.21", 830 + "url", 831 + "uuid", 832 + ] 833 + 834 + [[package]] 835 + name = "azure_storage_blobs" 836 + version = "0.6.0" 837 + source = "registry+https://github.com/rust-lang/crates.io-index" 838 + checksum = "a69ea7177f0b3c64196766fcd442ac9664658a194070d082ae8876406800040b" 839 + dependencies = [ 840 + "RustyXML", 841 + "azure_core", 842 + "azure_storage", 843 + "base64 0.13.1", 844 + "bytes", 845 + "futures", 846 + "log", 847 + "md5", 848 + "serde", 849 + "serde-xml-rs", 850 + "serde_derive", 851 + "serde_json", 852 + "time 0.3.21", 853 + "url", 854 + "uuid", 855 + ] 856 + 857 + [[package]] 858 + name = "backoff" 859 + version = "0.4.0" 860 + source = "registry+https://github.com/rust-lang/crates.io-index" 861 + checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1" 862 + dependencies = [ 863 + "futures-core", 864 + "getrandom 0.2.9", 865 + "instant", 866 + "pin-project-lite", 867 + "rand 0.8.5", 868 + "tokio", 869 + ] 870 + 871 + [[package]] 872 + name = "base16" 873 + version = "0.2.1" 874 + source = "registry+https://github.com/rust-lang/crates.io-index" 875 + checksum = "d27c3610c36aee21ce8ac510e6224498de4228ad772a171ed65643a24693a5a8" 876 + 877 + [[package]] 878 + name = "base64" 879 + version = "0.13.1" 880 + source = "registry+https://github.com/rust-lang/crates.io-index" 881 + checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 882 + 883 + [[package]] 884 + name = "base64" 885 + version = "0.21.2" 886 + source = "registry+https://github.com/rust-lang/crates.io-index" 887 + checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" 888 + 889 + [[package]] 890 + name = "base64-simd" 891 + version = "0.8.0" 892 + source = "registry+https://github.com/rust-lang/crates.io-index" 893 + checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195" 894 + dependencies = [ 895 + "outref", 896 + "vsimd", 897 + ] 898 + 899 + [[package]] 900 + name = "bit-set" 901 + version = "0.5.3" 902 + source = "registry+https://github.com/rust-lang/crates.io-index" 903 + checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" 904 + dependencies = [ 905 + "bit-vec", 906 + ] 907 + 908 + [[package]] 909 + name = "bit-vec" 910 + version = "0.6.3" 911 + source = "registry+https://github.com/rust-lang/crates.io-index" 912 + checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 913 + 914 + [[package]] 915 + name = "bitflags" 916 + version = "1.3.2" 917 + source = "registry+https://github.com/rust-lang/crates.io-index" 918 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 919 + 920 + [[package]] 921 + name = "bitpacking" 922 + version = "0.8.4" 923 + source = "registry+https://github.com/rust-lang/crates.io-index" 924 + checksum = "a8c7d2ac73c167c06af4a5f37e6e59d84148d57ccbe4480b76f0273eefea82d7" 925 + dependencies = [ 926 + "crunchy", 927 + ] 928 + 929 + [[package]] 930 + name = "bitvec" 931 + version = "1.0.1" 932 + source = "registry+https://github.com/rust-lang/crates.io-index" 933 + checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 934 + dependencies = [ 935 + "funty", 936 + "radium", 937 + "tap", 938 + "wyz", 939 + ] 940 + 941 + [[package]] 942 + name = "block-buffer" 943 + version = "0.10.4" 944 + source = "registry+https://github.com/rust-lang/crates.io-index" 945 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 946 + dependencies = [ 947 + "generic-array", 948 + ] 949 + 950 + [[package]] 951 + name = "block-padding" 952 + version = "0.3.3" 953 + source = "registry+https://github.com/rust-lang/crates.io-index" 954 + checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93" 955 + dependencies = [ 956 + "generic-array", 957 + ] 958 + 959 + [[package]] 960 + name = "borsh" 961 + version = "0.10.3" 962 + source = "registry+https://github.com/rust-lang/crates.io-index" 963 + checksum = "4114279215a005bc675e386011e594e1d9b800918cea18fcadadcce864a2046b" 964 + dependencies = [ 965 + "borsh-derive", 966 + "hashbrown 0.13.2", 967 + ] 968 + 969 + [[package]] 970 + name = "borsh-derive" 971 + version = "0.10.3" 972 + source = "registry+https://github.com/rust-lang/crates.io-index" 973 + checksum = "0754613691538d51f329cce9af41d7b7ca150bc973056f1156611489475f54f7" 974 + dependencies = [ 975 + "borsh-derive-internal", 976 + "borsh-schema-derive-internal", 977 + "proc-macro-crate 0.1.5", 978 + "proc-macro2", 979 + "syn 1.0.109", 980 + ] 981 + 982 + [[package]] 983 + name = "borsh-derive-internal" 984 + version = "0.10.3" 985 + source = "registry+https://github.com/rust-lang/crates.io-index" 986 + checksum = "afb438156919598d2c7bad7e1c0adf3d26ed3840dbc010db1a882a65583ca2fb" 987 + dependencies = [ 988 + "proc-macro2", 989 + "quote", 990 + "syn 1.0.109", 991 + ] 992 + 993 + [[package]] 994 + name = "borsh-schema-derive-internal" 995 + version = "0.10.3" 996 + source = "registry+https://github.com/rust-lang/crates.io-index" 997 + checksum = "634205cc43f74a1b9046ef87c4540ebda95696ec0f315024860cad7c5b0f5ccd" 998 + dependencies = [ 999 + "proc-macro2", 1000 + "quote", 1001 + "syn 1.0.109", 1002 + ] 1003 + 1004 + [[package]] 1005 + name = "bumpalo" 1006 + version = "3.13.0" 1007 + source = "registry+https://github.com/rust-lang/crates.io-index" 1008 + checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 1009 + 1010 + [[package]] 1011 + name = "byte-unit" 1012 + version = "4.0.19" 1013 + source = "registry+https://github.com/rust-lang/crates.io-index" 1014 + checksum = "da78b32057b8fdfc352504708feeba7216dcd65a2c9ab02978cbd288d1279b6c" 1015 + dependencies = [ 1016 + "serde", 1017 + "utf8-width", 1018 + ] 1019 + 1020 + [[package]] 1021 + name = "bytecheck" 1022 + version = "0.6.11" 1023 + source = "registry+https://github.com/rust-lang/crates.io-index" 1024 + checksum = "8b6372023ac861f6e6dc89c8344a8f398fb42aaba2b5dbc649ca0c0e9dbcb627" 1025 + dependencies = [ 1026 + "bytecheck_derive", 1027 + "ptr_meta", 1028 + "simdutf8", 1029 + ] 1030 + 1031 + [[package]] 1032 + name = "bytecheck_derive" 1033 + version = "0.6.11" 1034 + source = "registry+https://github.com/rust-lang/crates.io-index" 1035 + checksum = "a7ec4c6f261935ad534c0c22dbef2201b45918860eb1c574b972bd213a76af61" 1036 + dependencies = [ 1037 + "proc-macro2", 1038 + "quote", 1039 + "syn 1.0.109", 1040 + ] 1041 + 1042 + [[package]] 1043 + name = "bytecount" 1044 + version = "0.6.3" 1045 + source = "registry+https://github.com/rust-lang/crates.io-index" 1046 + checksum = "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c" 1047 + 1048 + [[package]] 1049 + name = "byteorder" 1050 + version = "1.4.3" 1051 + source = "registry+https://github.com/rust-lang/crates.io-index" 1052 + checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 1053 + 1054 + [[package]] 1055 + name = "bytes" 1056 + version = "1.4.0" 1057 + source = "registry+https://github.com/rust-lang/crates.io-index" 1058 + checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 1059 + dependencies = [ 1060 + "serde", 1061 + ] 1062 + 1063 + [[package]] 1064 + name = "bytes-utils" 1065 + version = "0.1.3" 1066 + source = "registry+https://github.com/rust-lang/crates.io-index" 1067 + checksum = "e47d3a8076e283f3acd27400535992edb3ba4b5bb72f8891ad8fbe7932a7d4b9" 1068 + dependencies = [ 1069 + "bytes", 1070 + "either", 1071 + ] 1072 + 1073 + [[package]] 1074 + name = "cast" 1075 + version = "0.3.0" 1076 + source = "registry+https://github.com/rust-lang/crates.io-index" 1077 + checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 1078 + 1079 + [[package]] 1080 + name = "cbc" 1081 + version = "0.1.2" 1082 + source = "registry+https://github.com/rust-lang/crates.io-index" 1083 + checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6" 1084 + dependencies = [ 1085 + "cipher", 1086 + ] 1087 + 1088 + [[package]] 1089 + name = "cc" 1090 + version = "1.0.79" 1091 + source = "registry+https://github.com/rust-lang/crates.io-index" 1092 + checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 1093 + dependencies = [ 1094 + "jobserver", 1095 + ] 1096 + 1097 + [[package]] 1098 + name = "census" 1099 + version = "0.4.1" 1100 + source = "registry+https://github.com/rust-lang/crates.io-index" 1101 + checksum = "0fafee10a5dd1cffcb5cc560e0d0df8803d7355a2b12272e3557dee57314cb6e" 1102 + 1103 + [[package]] 1104 + name = "cfb-mode" 1105 + version = "0.8.2" 1106 + source = "registry+https://github.com/rust-lang/crates.io-index" 1107 + checksum = "738b8d467867f80a71351933f70461f5b56f24d5c93e0cf216e59229c968d330" 1108 + dependencies = [ 1109 + "cipher", 1110 + ] 1111 + 1112 + [[package]] 1113 + name = "cfg-if" 1114 + version = "1.0.0" 1115 + source = "registry+https://github.com/rust-lang/crates.io-index" 1116 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 1117 + 1118 + [[package]] 1119 + name = "charset" 1120 + version = "0.1.3" 1121 + source = "registry+https://github.com/rust-lang/crates.io-index" 1122 + checksum = "18e9079d1a12a2cc2bffb5db039c43661836ead4082120d5844f02555aca2d46" 1123 + dependencies = [ 1124 + "base64 0.13.1", 1125 + "encoding_rs", 1126 + ] 1127 + 1128 + [[package]] 1129 + name = "chitchat" 1130 + version = "0.5.0" 1131 + source = "git+https://github.com/quickwit-oss/chitchat?rev=bc29598#bc295980ac2e00f389dfa7e87cf6dc7995061206" 1132 + dependencies = [ 1133 + "anyhow", 1134 + "async-trait", 1135 + "bytes", 1136 + "itertools", 1137 + "rand 0.8.5", 1138 + "serde", 1139 + "tokio", 1140 + "tokio-stream", 1141 + "tracing", 1142 + ] 1143 + 1144 + [[package]] 1145 + name = "chrono" 1146 + version = "0.4.26" 1147 + source = "registry+https://github.com/rust-lang/crates.io-index" 1148 + checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5" 1149 + dependencies = [ 1150 + "android-tzdata", 1151 + "iana-time-zone", 1152 + "js-sys", 1153 + "num-traits", 1154 + "serde", 1155 + "time 0.1.45", 1156 + "wasm-bindgen", 1157 + "winapi 0.3.9", 1158 + ] 1159 + 1160 + [[package]] 1161 + name = "chrono-tz" 1162 + version = "0.8.2" 1163 + source = "registry+https://github.com/rust-lang/crates.io-index" 1164 + checksum = "cf9cc2b23599e6d7479755f3594285efb3f74a1bdca7a7374948bc831e23a552" 1165 + dependencies = [ 1166 + "chrono", 1167 + "chrono-tz-build", 1168 + "phf", 1169 + ] 1170 + 1171 + [[package]] 1172 + name = "chrono-tz-build" 1173 + version = "0.1.0" 1174 + source = "registry+https://github.com/rust-lang/crates.io-index" 1175 + checksum = "d9998fb9f7e9b2111641485bf8beb32f92945f97f92a3d061f744cfef335f751" 1176 + dependencies = [ 1177 + "parse-zoneinfo", 1178 + "phf", 1179 + "phf_codegen", 1180 + ] 1181 + 1182 + [[package]] 1183 + name = "ciborium" 1184 + version = "0.2.1" 1185 + source = "registry+https://github.com/rust-lang/crates.io-index" 1186 + checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" 1187 + dependencies = [ 1188 + "ciborium-io", 1189 + "ciborium-ll", 1190 + "serde", 1191 + ] 1192 + 1193 + [[package]] 1194 + name = "ciborium-io" 1195 + version = "0.2.1" 1196 + source = "registry+https://github.com/rust-lang/crates.io-index" 1197 + checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" 1198 + 1199 + [[package]] 1200 + name = "ciborium-ll" 1201 + version = "0.2.1" 1202 + source = "registry+https://github.com/rust-lang/crates.io-index" 1203 + checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" 1204 + dependencies = [ 1205 + "ciborium-io", 1206 + "half", 1207 + ] 1208 + 1209 + [[package]] 1210 + name = "cidr-utils" 1211 + version = "0.5.10" 1212 + source = "registry+https://github.com/rust-lang/crates.io-index" 1213 + checksum = "fdfa36f04861d39453affe1cf084ce2d6554021a84eb6f31ebdeafb6fb92a01c" 1214 + dependencies = [ 1215 + "debug-helper", 1216 + "num-bigint", 1217 + "num-traits", 1218 + "once_cell", 1219 + "regex", 1220 + ] 1221 + 1222 + [[package]] 1223 + name = "cipher" 1224 + version = "0.4.4" 1225 + source = "registry+https://github.com/rust-lang/crates.io-index" 1226 + checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 1227 + dependencies = [ 1228 + "crypto-common", 1229 + "inout", 1230 + ] 1231 + 1232 + [[package]] 1233 + name = "clap" 1234 + version = "2.34.0" 1235 + source = "registry+https://github.com/rust-lang/crates.io-index" 1236 + checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" 1237 + dependencies = [ 1238 + "ansi_term", 1239 + "atty", 1240 + "bitflags", 1241 + "strsim 0.8.0", 1242 + "textwrap", 1243 + "unicode-width", 1244 + "vec_map", 1245 + ] 1246 + 1247 + [[package]] 1248 + name = "clap" 1249 + version = "4.3.0" 1250 + source = "registry+https://github.com/rust-lang/crates.io-index" 1251 + checksum = "93aae7a4192245f70fe75dd9157fc7b4a5bf53e88d30bd4396f7d8f9284d5acc" 1252 + dependencies = [ 1253 + "clap_builder", 1254 + ] 1255 + 1256 + [[package]] 1257 + name = "clap_builder" 1258 + version = "4.3.0" 1259 + source = "registry+https://github.com/rust-lang/crates.io-index" 1260 + checksum = "4f423e341edefb78c9caba2d9c7f7687d0e72e89df3ce3394554754393ac3990" 1261 + dependencies = [ 1262 + "anstream", 1263 + "anstyle", 1264 + "bitflags", 1265 + "clap_lex", 1266 + "strsim 0.10.0", 1267 + ] 1268 + 1269 + [[package]] 1270 + name = "clap_lex" 1271 + version = "0.5.0" 1272 + source = "registry+https://github.com/rust-lang/crates.io-index" 1273 + checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" 1274 + 1275 + [[package]] 1276 + name = "cmake" 1277 + version = "0.1.50" 1278 + source = "registry+https://github.com/rust-lang/crates.io-index" 1279 + checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130" 1280 + dependencies = [ 1281 + "cc", 1282 + ] 1283 + 1284 + [[package]] 1285 + name = "cobs" 1286 + version = "0.2.3" 1287 + source = "registry+https://github.com/rust-lang/crates.io-index" 1288 + checksum = "67ba02a97a2bd10f4b59b25c7973101c79642302776489e030cd13cdab09ed15" 1289 + 1290 + [[package]] 1291 + name = "codespan-reporting" 1292 + version = "0.11.1" 1293 + source = "registry+https://github.com/rust-lang/crates.io-index" 1294 + checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 1295 + dependencies = [ 1296 + "termcolor", 1297 + "unicode-width", 1298 + ] 1299 + 1300 + [[package]] 1301 + name = "colorchoice" 1302 + version = "1.0.0" 1303 + source = "registry+https://github.com/rust-lang/crates.io-index" 1304 + checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 1305 + 1306 + [[package]] 1307 + name = "colored" 1308 + version = "2.0.0" 1309 + source = "registry+https://github.com/rust-lang/crates.io-index" 1310 + checksum = "b3616f750b84d8f0de8a58bda93e08e2a81ad3f523089b05f1dffecab48c6cbd" 1311 + dependencies = [ 1312 + "atty", 1313 + "lazy_static", 1314 + "winapi 0.3.9", 1315 + ] 1316 + 1317 + [[package]] 1318 + name = "combine" 1319 + version = "4.6.6" 1320 + source = "registry+https://github.com/rust-lang/crates.io-index" 1321 + checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" 1322 + dependencies = [ 1323 + "memchr", 1324 + ] 1325 + 1326 + [[package]] 1327 + name = "concurrent-queue" 1328 + version = "2.2.0" 1329 + source = "registry+https://github.com/rust-lang/crates.io-index" 1330 + checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c" 1331 + dependencies = [ 1332 + "crossbeam-utils", 1333 + ] 1334 + 1335 + [[package]] 1336 + name = "console" 1337 + version = "0.15.7" 1338 + source = "registry+https://github.com/rust-lang/crates.io-index" 1339 + checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" 1340 + dependencies = [ 1341 + "encode_unicode", 1342 + "lazy_static", 1343 + "libc", 1344 + "unicode-width", 1345 + "windows-sys 0.45.0", 1346 + ] 1347 + 1348 + [[package]] 1349 + name = "console-api" 1350 + version = "0.5.0" 1351 + source = "registry+https://github.com/rust-lang/crates.io-index" 1352 + checksum = "c2895653b4d9f1538a83970077cb01dfc77a4810524e51a110944688e916b18e" 1353 + dependencies = [ 1354 + "prost", 1355 + "prost-types", 1356 + "tonic 0.9.2", 1357 + "tracing-core", 1358 + ] 1359 + 1360 + [[package]] 1361 + name = "console-subscriber" 1362 + version = "0.1.9" 1363 + source = "registry+https://github.com/rust-lang/crates.io-index" 1364 + checksum = "57ab2224a0311582eb03adba4caaf18644f7b1f10a760803a803b9b605187fc7" 1365 + dependencies = [ 1366 + "console-api", 1367 + "crossbeam-channel", 1368 + "crossbeam-utils", 1369 + "futures", 1370 + "hdrhistogram", 1371 + "humantime", 1372 + "prost-types", 1373 + "serde", 1374 + "serde_json", 1375 + "thread_local", 1376 + "tokio", 1377 + "tokio-stream", 1378 + "tonic 0.9.2", 1379 + "tracing", 1380 + "tracing-core", 1381 + "tracing-subscriber", 1382 + ] 1383 + 1384 + [[package]] 1385 + name = "convert_case" 1386 + version = "0.4.0" 1387 + source = "registry+https://github.com/rust-lang/crates.io-index" 1388 + checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 1389 + 1390 + [[package]] 1391 + name = "core-foundation" 1392 + version = "0.9.3" 1393 + source = "registry+https://github.com/rust-lang/crates.io-index" 1394 + checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 1395 + dependencies = [ 1396 + "core-foundation-sys", 1397 + "libc", 1398 + ] 1399 + 1400 + [[package]] 1401 + name = "core-foundation-sys" 1402 + version = "0.8.4" 1403 + source = "registry+https://github.com/rust-lang/crates.io-index" 1404 + checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 1405 + 1406 + [[package]] 1407 + name = "cpufeatures" 1408 + version = "0.2.7" 1409 + source = "registry+https://github.com/rust-lang/crates.io-index" 1410 + checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58" 1411 + dependencies = [ 1412 + "libc", 1413 + ] 1414 + 1415 + [[package]] 1416 + name = "crc" 1417 + version = "3.0.1" 1418 + source = "registry+https://github.com/rust-lang/crates.io-index" 1419 + checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe" 1420 + dependencies = [ 1421 + "crc-catalog", 1422 + ] 1423 + 1424 + [[package]] 1425 + name = "crc-catalog" 1426 + version = "2.2.0" 1427 + source = "registry+https://github.com/rust-lang/crates.io-index" 1428 + checksum = "9cace84e55f07e7301bae1c519df89cdad8cc3cd868413d3fdbdeca9ff3db484" 1429 + 1430 + [[package]] 1431 + name = "crc32c" 1432 + version = "0.6.3" 1433 + source = "registry+https://github.com/rust-lang/crates.io-index" 1434 + checksum = "3dfea2db42e9927a3845fb268a10a72faed6d416065f77873f05e411457c363e" 1435 + dependencies = [ 1436 + "rustc_version", 1437 + ] 1438 + 1439 + [[package]] 1440 + name = "crc32fast" 1441 + version = "1.3.2" 1442 + source = "registry+https://github.com/rust-lang/crates.io-index" 1443 + checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 1444 + dependencies = [ 1445 + "cfg-if", 1446 + ] 1447 + 1448 + [[package]] 1449 + name = "criterion" 1450 + version = "0.5.1" 1451 + source = "registry+https://github.com/rust-lang/crates.io-index" 1452 + checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f" 1453 + dependencies = [ 1454 + "anes", 1455 + "cast", 1456 + "ciborium", 1457 + "clap 4.3.0", 1458 + "criterion-plot", 1459 + "futures", 1460 + "is-terminal", 1461 + "itertools", 1462 + "num-traits", 1463 + "once_cell", 1464 + "oorandom", 1465 + "plotters", 1466 + "rayon", 1467 + "regex", 1468 + "serde", 1469 + "serde_derive", 1470 + "serde_json", 1471 + "tinytemplate", 1472 + "tokio", 1473 + "walkdir", 1474 + ] 1475 + 1476 + [[package]] 1477 + name = "criterion-plot" 1478 + version = "0.5.0" 1479 + source = "registry+https://github.com/rust-lang/crates.io-index" 1480 + checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 1481 + dependencies = [ 1482 + "cast", 1483 + "itertools", 1484 + ] 1485 + 1486 + [[package]] 1487 + name = "cron" 1488 + version = "0.11.0" 1489 + source = "registry+https://github.com/rust-lang/crates.io-index" 1490 + checksum = "d76219e9243e100d5a37676005f08379297f8addfebc247613299600625c734d" 1491 + dependencies = [ 1492 + "chrono", 1493 + "nom", 1494 + "once_cell", 1495 + ] 1496 + 1497 + [[package]] 1498 + name = "crossbeam-channel" 1499 + version = "0.5.8" 1500 + source = "registry+https://github.com/rust-lang/crates.io-index" 1501 + checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 1502 + dependencies = [ 1503 + "cfg-if", 1504 + "crossbeam-utils", 1505 + ] 1506 + 1507 + [[package]] 1508 + name = "crossbeam-deque" 1509 + version = "0.8.3" 1510 + source = "registry+https://github.com/rust-lang/crates.io-index" 1511 + checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 1512 + dependencies = [ 1513 + "cfg-if", 1514 + "crossbeam-epoch", 1515 + "crossbeam-utils", 1516 + ] 1517 + 1518 + [[package]] 1519 + name = "crossbeam-epoch" 1520 + version = "0.9.14" 1521 + source = "registry+https://github.com/rust-lang/crates.io-index" 1522 + checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695" 1523 + dependencies = [ 1524 + "autocfg", 1525 + "cfg-if", 1526 + "crossbeam-utils", 1527 + "memoffset", 1528 + "scopeguard", 1529 + ] 1530 + 1531 + [[package]] 1532 + name = "crossbeam-queue" 1533 + version = "0.3.8" 1534 + source = "registry+https://github.com/rust-lang/crates.io-index" 1535 + checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add" 1536 + dependencies = [ 1537 + "cfg-if", 1538 + "crossbeam-utils", 1539 + ] 1540 + 1541 + [[package]] 1542 + name = "crossbeam-utils" 1543 + version = "0.8.15" 1544 + source = "registry+https://github.com/rust-lang/crates.io-index" 1545 + checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" 1546 + dependencies = [ 1547 + "cfg-if", 1548 + ] 1549 + 1550 + [[package]] 1551 + name = "crunchy" 1552 + version = "0.2.2" 1553 + source = "registry+https://github.com/rust-lang/crates.io-index" 1554 + checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 1555 + 1556 + [[package]] 1557 + name = "crypto-common" 1558 + version = "0.1.6" 1559 + source = "registry+https://github.com/rust-lang/crates.io-index" 1560 + checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 1561 + dependencies = [ 1562 + "generic-array", 1563 + "typenum", 1564 + ] 1565 + 1566 + [[package]] 1567 + name = "csv" 1568 + version = "1.2.2" 1569 + source = "registry+https://github.com/rust-lang/crates.io-index" 1570 + checksum = "626ae34994d3d8d668f4269922248239db4ae42d538b14c398b74a52208e8086" 1571 + dependencies = [ 1572 + "csv-core", 1573 + "itoa", 1574 + "ryu", 1575 + "serde", 1576 + ] 1577 + 1578 + [[package]] 1579 + name = "csv-core" 1580 + version = "0.1.10" 1581 + source = "registry+https://github.com/rust-lang/crates.io-index" 1582 + checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90" 1583 + dependencies = [ 1584 + "memchr", 1585 + ] 1586 + 1587 + [[package]] 1588 + name = "ctor" 1589 + version = "0.1.26" 1590 + source = "registry+https://github.com/rust-lang/crates.io-index" 1591 + checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" 1592 + dependencies = [ 1593 + "quote", 1594 + "syn 1.0.109", 1595 + ] 1596 + 1597 + [[package]] 1598 + name = "ctr" 1599 + version = "0.9.2" 1600 + source = "registry+https://github.com/rust-lang/crates.io-index" 1601 + checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" 1602 + dependencies = [ 1603 + "cipher", 1604 + ] 1605 + 1606 + [[package]] 1607 + name = "darling" 1608 + version = "0.13.4" 1609 + source = "registry+https://github.com/rust-lang/crates.io-index" 1610 + checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c" 1611 + dependencies = [ 1612 + "darling_core 0.13.4", 1613 + "darling_macro 0.13.4", 1614 + ] 1615 + 1616 + [[package]] 1617 + name = "darling" 1618 + version = "0.20.1" 1619 + source = "registry+https://github.com/rust-lang/crates.io-index" 1620 + checksum = "0558d22a7b463ed0241e993f76f09f30b126687447751a8638587b864e4b3944" 1621 + dependencies = [ 1622 + "darling_core 0.20.1", 1623 + "darling_macro 0.20.1", 1624 + ] 1625 + 1626 + [[package]] 1627 + name = "darling_core" 1628 + version = "0.13.4" 1629 + source = "registry+https://github.com/rust-lang/crates.io-index" 1630 + checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610" 1631 + dependencies = [ 1632 + "fnv", 1633 + "ident_case", 1634 + "proc-macro2", 1635 + "quote", 1636 + "strsim 0.10.0", 1637 + "syn 1.0.109", 1638 + ] 1639 + 1640 + [[package]] 1641 + name = "darling_core" 1642 + version = "0.20.1" 1643 + source = "registry+https://github.com/rust-lang/crates.io-index" 1644 + checksum = "ab8bfa2e259f8ee1ce5e97824a3c55ec4404a0d772ca7fa96bf19f0752a046eb" 1645 + dependencies = [ 1646 + "fnv", 1647 + "ident_case", 1648 + "proc-macro2", 1649 + "quote", 1650 + "strsim 0.10.0", 1651 + "syn 2.0.18", 1652 + ] 1653 + 1654 + [[package]] 1655 + name = "darling_macro" 1656 + version = "0.13.4" 1657 + source = "registry+https://github.com/rust-lang/crates.io-index" 1658 + checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835" 1659 + dependencies = [ 1660 + "darling_core 0.13.4", 1661 + "quote", 1662 + "syn 1.0.109", 1663 + ] 1664 + 1665 + [[package]] 1666 + name = "darling_macro" 1667 + version = "0.20.1" 1668 + source = "registry+https://github.com/rust-lang/crates.io-index" 1669 + checksum = "29a358ff9f12ec09c3e61fef9b5a9902623a695a46a917b07f269bff1445611a" 1670 + dependencies = [ 1671 + "darling_core 0.20.1", 1672 + "quote", 1673 + "syn 2.0.18", 1674 + ] 1675 + 1676 + [[package]] 1677 + name = "dashmap" 1678 + version = "5.4.0" 1679 + source = "registry+https://github.com/rust-lang/crates.io-index" 1680 + checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc" 1681 + dependencies = [ 1682 + "cfg-if", 1683 + "hashbrown 0.12.3", 1684 + "lock_api", 1685 + "once_cell", 1686 + "parking_lot_core 0.9.7", 1687 + ] 1688 + 1689 + [[package]] 1690 + name = "data-encoding" 1691 + version = "2.4.0" 1692 + source = "registry+https://github.com/rust-lang/crates.io-index" 1693 + checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" 1694 + 1695 + [[package]] 1696 + name = "data-url" 1697 + version = "0.2.0" 1698 + source = "registry+https://github.com/rust-lang/crates.io-index" 1699 + checksum = "8d7439c3735f405729d52c3fbbe4de140eaf938a1fe47d227c27f8254d4302a5" 1700 + 1701 + [[package]] 1702 + name = "deadpool" 1703 + version = "0.9.5" 1704 + source = "registry+https://github.com/rust-lang/crates.io-index" 1705 + checksum = "421fe0f90f2ab22016f32a9881be5134fdd71c65298917084b0c7477cbc3856e" 1706 + dependencies = [ 1707 + "async-trait", 1708 + "deadpool-runtime", 1709 + "num_cpus", 1710 + "retain_mut", 1711 + "tokio", 1712 + ] 1713 + 1714 + [[package]] 1715 + name = "deadpool-runtime" 1716 + version = "0.1.2" 1717 + source = "registry+https://github.com/rust-lang/crates.io-index" 1718 + checksum = "eaa37046cc0f6c3cc6090fbdbf73ef0b8ef4cfcc37f6befc0020f63e8cf121e1" 1719 + 1720 + [[package]] 1721 + name = "debug-helper" 1722 + version = "0.3.13" 1723 + source = "registry+https://github.com/rust-lang/crates.io-index" 1724 + checksum = "f578e8e2c440e7297e008bb5486a3a8a194775224bbc23729b0dbdfaeebf162e" 1725 + 1726 + [[package]] 1727 + name = "derivative" 1728 + version = "2.2.0" 1729 + source = "registry+https://github.com/rust-lang/crates.io-index" 1730 + checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" 1731 + dependencies = [ 1732 + "proc-macro2", 1733 + "quote", 1734 + "syn 1.0.109", 1735 + ] 1736 + 1737 + [[package]] 1738 + name = "derive_more" 1739 + version = "0.99.17" 1740 + source = "registry+https://github.com/rust-lang/crates.io-index" 1741 + checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 1742 + dependencies = [ 1743 + "convert_case", 1744 + "proc-macro2", 1745 + "quote", 1746 + "rustc_version", 1747 + "syn 1.0.109", 1748 + ] 1749 + 1750 + [[package]] 1751 + name = "dialoguer" 1752 + version = "0.10.4" 1753 + source = "registry+https://github.com/rust-lang/crates.io-index" 1754 + checksum = "59c6f2989294b9a498d3ad5491a79c6deb604617378e1cdc4bfc1c1361fe2f87" 1755 + dependencies = [ 1756 + "console", 1757 + "shell-words", 1758 + "tempfile", 1759 + "zeroize", 1760 + ] 1761 + 1762 + [[package]] 1763 + name = "diff" 1764 + version = "0.1.13" 1765 + source = "registry+https://github.com/rust-lang/crates.io-index" 1766 + checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" 1767 + 1768 + [[package]] 1769 + name = "difflib" 1770 + version = "0.4.0" 1771 + source = "registry+https://github.com/rust-lang/crates.io-index" 1772 + checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" 1773 + 1774 + [[package]] 1775 + name = "digest" 1776 + version = "0.10.7" 1777 + source = "registry+https://github.com/rust-lang/crates.io-index" 1778 + checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 1779 + dependencies = [ 1780 + "block-buffer", 1781 + "crypto-common", 1782 + "subtle", 1783 + ] 1784 + 1785 + [[package]] 1786 + name = "dirs" 1787 + version = "4.0.0" 1788 + source = "registry+https://github.com/rust-lang/crates.io-index" 1789 + checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 1790 + dependencies = [ 1791 + "dirs-sys", 1792 + ] 1793 + 1794 + [[package]] 1795 + name = "dirs-next" 1796 + version = "2.0.0" 1797 + source = "registry+https://github.com/rust-lang/crates.io-index" 1798 + checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 1799 + dependencies = [ 1800 + "cfg-if", 1801 + "dirs-sys-next", 1802 + ] 1803 + 1804 + [[package]] 1805 + name = "dirs-sys" 1806 + version = "0.3.7" 1807 + source = "registry+https://github.com/rust-lang/crates.io-index" 1808 + checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" 1809 + dependencies = [ 1810 + "libc", 1811 + "redox_users", 1812 + "winapi 0.3.9", 1813 + ] 1814 + 1815 + [[package]] 1816 + name = "dirs-sys-next" 1817 + version = "0.1.2" 1818 + source = "registry+https://github.com/rust-lang/crates.io-index" 1819 + checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 1820 + dependencies = [ 1821 + "libc", 1822 + "redox_users", 1823 + "winapi 0.3.9", 1824 + ] 1825 + 1826 + [[package]] 1827 + name = "dns-lookup" 1828 + version = "1.0.8" 1829 + source = "registry+https://github.com/rust-lang/crates.io-index" 1830 + checksum = "53ecafc952c4528d9b51a458d1a8904b81783feff9fde08ab6ed2545ff396872" 1831 + dependencies = [ 1832 + "cfg-if", 1833 + "libc", 1834 + "socket2", 1835 + "winapi 0.3.9", 1836 + ] 1837 + 1838 + [[package]] 1839 + name = "doc-comment" 1840 + version = "0.3.3" 1841 + source = "registry+https://github.com/rust-lang/crates.io-index" 1842 + checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" 1843 + 1844 + [[package]] 1845 + name = "dotenv" 1846 + version = "0.15.0" 1847 + source = "registry+https://github.com/rust-lang/crates.io-index" 1848 + checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f" 1849 + 1850 + [[package]] 1851 + name = "dotenvy" 1852 + version = "0.15.7" 1853 + source = "registry+https://github.com/rust-lang/crates.io-index" 1854 + checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" 1855 + 1856 + [[package]] 1857 + name = "downcast" 1858 + version = "0.11.0" 1859 + source = "registry+https://github.com/rust-lang/crates.io-index" 1860 + checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1" 1861 + 1862 + [[package]] 1863 + name = "downcast-rs" 1864 + version = "1.2.0" 1865 + source = "registry+https://github.com/rust-lang/crates.io-index" 1866 + checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" 1867 + 1868 + [[package]] 1869 + name = "duct" 1870 + version = "0.13.6" 1871 + source = "registry+https://github.com/rust-lang/crates.io-index" 1872 + checksum = "37ae3fc31835f74c2a7ceda3aeede378b0ae2e74c8f1c36559fcc9ae2a4e7d3e" 1873 + dependencies = [ 1874 + "libc", 1875 + "once_cell", 1876 + "os_pipe", 1877 + "shared_child", 1878 + ] 1879 + 1880 + [[package]] 1881 + name = "dyn-clone" 1882 + version = "1.0.11" 1883 + source = "registry+https://github.com/rust-lang/crates.io-index" 1884 + checksum = "68b0cf012f1230e43cd00ebb729c6bb58707ecfa8ad08b52ef3a4ccd2697fc30" 1885 + 1886 + [[package]] 1887 + name = "either" 1888 + version = "1.8.1" 1889 + source = "registry+https://github.com/rust-lang/crates.io-index" 1890 + checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 1891 + 1892 + [[package]] 1893 + name = "elasticsearch-dsl" 1894 + version = "0.4.11" 1895 + source = "registry+https://github.com/rust-lang/crates.io-index" 1896 + checksum = "1c820db919f52bf9427bd3720625641c4b7de60834eb47a9fe9a98b9b179db9b" 1897 + dependencies = [ 1898 + "chrono", 1899 + "num-traits", 1900 + "serde", 1901 + "serde_json", 1902 + ] 1903 + 1904 + [[package]] 1905 + name = "ena" 1906 + version = "0.14.2" 1907 + source = "registry+https://github.com/rust-lang/crates.io-index" 1908 + checksum = "c533630cf40e9caa44bd91aadc88a75d75a4c3a12b4cfde353cbed41daa1e1f1" 1909 + dependencies = [ 1910 + "log", 1911 + ] 1912 + 1913 + [[package]] 1914 + name = "encode_unicode" 1915 + version = "0.3.6" 1916 + source = "registry+https://github.com/rust-lang/crates.io-index" 1917 + checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 1918 + 1919 + [[package]] 1920 + name = "encoding_rs" 1921 + version = "0.8.29" 1922 + source = "registry+https://github.com/rust-lang/crates.io-index" 1923 + checksum = "a74ea89a0a1b98f6332de42c95baff457ada66d1cb4030f9ff151b2041a1c746" 1924 + dependencies = [ 1925 + "cfg-if", 1926 + ] 1927 + 1928 + [[package]] 1929 + name = "enum-iterator" 1930 + version = "1.4.1" 1931 + source = "registry+https://github.com/rust-lang/crates.io-index" 1932 + checksum = "7add3873b5dd076766ee79c8e406ad1a472c385476b9e38849f8eec24f1be689" 1933 + dependencies = [ 1934 + "enum-iterator-derive", 1935 + ] 1936 + 1937 + [[package]] 1938 + name = "enum-iterator-derive" 1939 + version = "1.2.1" 1940 + source = "registry+https://github.com/rust-lang/crates.io-index" 1941 + checksum = "eecf8589574ce9b895052fa12d69af7a233f99e6107f5cb8dd1044f2a17bfdcb" 1942 + dependencies = [ 1943 + "proc-macro2", 1944 + "quote", 1945 + "syn 2.0.18", 1946 + ] 1947 + 1948 + [[package]] 1949 + name = "env_logger" 1950 + version = "0.9.3" 1951 + source = "registry+https://github.com/rust-lang/crates.io-index" 1952 + checksum = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7" 1953 + dependencies = [ 1954 + "atty", 1955 + "humantime", 1956 + "log", 1957 + "regex", 1958 + "termcolor", 1959 + ] 1960 + 1961 + [[package]] 1962 + name = "erased-serde" 1963 + version = "0.3.25" 1964 + source = "registry+https://github.com/rust-lang/crates.io-index" 1965 + checksum = "4f2b0c2380453a92ea8b6c8e5f64ecaafccddde8ceab55ff7a8ac1029f894569" 1966 + dependencies = [ 1967 + "serde", 1968 + ] 1969 + 1970 + [[package]] 1971 + name = "errno" 1972 + version = "0.3.1" 1973 + source = "registry+https://github.com/rust-lang/crates.io-index" 1974 + checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 1975 + dependencies = [ 1976 + "errno-dragonfly", 1977 + "libc", 1978 + "windows-sys 0.48.0", 1979 + ] 1980 + 1981 + [[package]] 1982 + name = "errno-dragonfly" 1983 + version = "0.1.2" 1984 + source = "registry+https://github.com/rust-lang/crates.io-index" 1985 + checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 1986 + dependencies = [ 1987 + "cc", 1988 + "libc", 1989 + ] 1990 + 1991 + [[package]] 1992 + name = "event-listener" 1993 + version = "2.5.3" 1994 + source = "registry+https://github.com/rust-lang/crates.io-index" 1995 + checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1996 + 1997 + [[package]] 1998 + name = "extend" 1999 + version = "0.1.2" 2000 + source = "registry+https://github.com/rust-lang/crates.io-index" 2001 + checksum = "f47da3a72ec598d9c8937a7ebca8962a5c7a1f28444e38c2b33c771ba3f55f05" 2002 + dependencies = [ 2003 + "proc-macro-error", 2004 + "proc-macro2", 2005 + "quote", 2006 + "syn 1.0.109", 2007 + ] 2008 + 2009 + [[package]] 2010 + name = "fail" 2011 + version = "0.5.1" 2012 + source = "registry+https://github.com/rust-lang/crates.io-index" 2013 + checksum = "fe5e43d0f78a42ad591453aedb1d7ae631ce7ee445c7643691055a9ed8d3b01c" 2014 + dependencies = [ 2015 + "log", 2016 + "once_cell", 2017 + "rand 0.8.5", 2018 + ] 2019 + 2020 + [[package]] 2021 + name = "fastdivide" 2022 + version = "0.4.0" 2023 + source = "registry+https://github.com/rust-lang/crates.io-index" 2024 + checksum = "25c7df09945d65ea8d70b3321547ed414bbc540aad5bac6883d021b970f35b04" 2025 + 2026 + [[package]] 2027 + name = "fastrand" 2028 + version = "1.9.0" 2029 + source = "registry+https://github.com/rust-lang/crates.io-index" 2030 + checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 2031 + dependencies = [ 2032 + "instant", 2033 + ] 2034 + 2035 + [[package]] 2036 + name = "fixedbitset" 2037 + version = "0.4.2" 2038 + source = "registry+https://github.com/rust-lang/crates.io-index" 2039 + checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" 2040 + 2041 + [[package]] 2042 + name = "flate2" 2043 + version = "1.0.26" 2044 + source = "registry+https://github.com/rust-lang/crates.io-index" 2045 + checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743" 2046 + dependencies = [ 2047 + "crc32fast", 2048 + "miniz_oxide", 2049 + ] 2050 + 2051 + [[package]] 2052 + name = "float-cmp" 2053 + version = "0.9.0" 2054 + source = "registry+https://github.com/rust-lang/crates.io-index" 2055 + checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" 2056 + dependencies = [ 2057 + "num-traits", 2058 + ] 2059 + 2060 + [[package]] 2061 + name = "flume" 2062 + version = "0.10.14" 2063 + source = "registry+https://github.com/rust-lang/crates.io-index" 2064 + checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577" 2065 + dependencies = [ 2066 + "futures-core", 2067 + "futures-sink", 2068 + "nanorand", 2069 + "pin-project", 2070 + "spin 0.9.8", 2071 + ] 2072 + 2073 + [[package]] 2074 + name = "fnv" 2075 + version = "1.0.7" 2076 + source = "registry+https://github.com/rust-lang/crates.io-index" 2077 + checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 2078 + 2079 + [[package]] 2080 + name = "foreign-types" 2081 + version = "0.3.2" 2082 + source = "registry+https://github.com/rust-lang/crates.io-index" 2083 + checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 2084 + dependencies = [ 2085 + "foreign-types-shared", 2086 + ] 2087 + 2088 + [[package]] 2089 + name = "foreign-types-shared" 2090 + version = "0.1.1" 2091 + source = "registry+https://github.com/rust-lang/crates.io-index" 2092 + checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 2093 + 2094 + [[package]] 2095 + name = "form_urlencoded" 2096 + version = "1.1.0" 2097 + source = "registry+https://github.com/rust-lang/crates.io-index" 2098 + checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 2099 + dependencies = [ 2100 + "percent-encoding", 2101 + ] 2102 + 2103 + [[package]] 2104 + name = "fragile" 2105 + version = "2.0.0" 2106 + source = "registry+https://github.com/rust-lang/crates.io-index" 2107 + checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" 2108 + 2109 + [[package]] 2110 + name = "fs4" 2111 + version = "0.6.5" 2112 + source = "registry+https://github.com/rust-lang/crates.io-index" 2113 + checksum = "7672706608ecb74ab2e055c68327ffc25ae4cac1e12349204fd5fb0f3487cce2" 2114 + dependencies = [ 2115 + "rustix 0.37.19", 2116 + "windows-sys 0.48.0", 2117 + ] 2118 + 2119 + [[package]] 2120 + name = "funty" 2121 + version = "2.0.0" 2122 + source = "registry+https://github.com/rust-lang/crates.io-index" 2123 + checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 2124 + 2125 + [[package]] 2126 + name = "futures" 2127 + version = "0.3.28" 2128 + source = "registry+https://github.com/rust-lang/crates.io-index" 2129 + checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 2130 + dependencies = [ 2131 + "futures-channel", 2132 + "futures-core", 2133 + "futures-executor", 2134 + "futures-io", 2135 + "futures-sink", 2136 + "futures-task", 2137 + "futures-util", 2138 + ] 2139 + 2140 + [[package]] 2141 + name = "futures-channel" 2142 + version = "0.3.28" 2143 + source = "registry+https://github.com/rust-lang/crates.io-index" 2144 + checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 2145 + dependencies = [ 2146 + "futures-core", 2147 + "futures-sink", 2148 + ] 2149 + 2150 + [[package]] 2151 + name = "futures-core" 2152 + version = "0.3.28" 2153 + source = "registry+https://github.com/rust-lang/crates.io-index" 2154 + checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 2155 + 2156 + [[package]] 2157 + name = "futures-executor" 2158 + version = "0.3.28" 2159 + source = "registry+https://github.com/rust-lang/crates.io-index" 2160 + checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 2161 + dependencies = [ 2162 + "futures-core", 2163 + "futures-task", 2164 + "futures-util", 2165 + ] 2166 + 2167 + [[package]] 2168 + name = "futures-intrusive" 2169 + version = "0.4.2" 2170 + source = "registry+https://github.com/rust-lang/crates.io-index" 2171 + checksum = "a604f7a68fbf8103337523b1fadc8ade7361ee3f112f7c680ad179651616aed5" 2172 + dependencies = [ 2173 + "futures-core", 2174 + "lock_api", 2175 + "parking_lot 0.11.2", 2176 + ] 2177 + 2178 + [[package]] 2179 + name = "futures-io" 2180 + version = "0.3.28" 2181 + source = "registry+https://github.com/rust-lang/crates.io-index" 2182 + checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 2183 + 2184 + [[package]] 2185 + name = "futures-lite" 2186 + version = "1.13.0" 2187 + source = "registry+https://github.com/rust-lang/crates.io-index" 2188 + checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 2189 + dependencies = [ 2190 + "fastrand", 2191 + "futures-core", 2192 + "futures-io", 2193 + "memchr", 2194 + "parking", 2195 + "pin-project-lite", 2196 + "waker-fn", 2197 + ] 2198 + 2199 + [[package]] 2200 + name = "futures-macro" 2201 + version = "0.3.28" 2202 + source = "registry+https://github.com/rust-lang/crates.io-index" 2203 + checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 2204 + dependencies = [ 2205 + "proc-macro2", 2206 + "quote", 2207 + "syn 2.0.18", 2208 + ] 2209 + 2210 + [[package]] 2211 + name = "futures-sink" 2212 + version = "0.3.28" 2213 + source = "registry+https://github.com/rust-lang/crates.io-index" 2214 + checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 2215 + 2216 + [[package]] 2217 + name = "futures-task" 2218 + version = "0.3.28" 2219 + source = "registry+https://github.com/rust-lang/crates.io-index" 2220 + checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 2221 + 2222 + [[package]] 2223 + name = "futures-timer" 2224 + version = "3.0.2" 2225 + source = "registry+https://github.com/rust-lang/crates.io-index" 2226 + checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c" 2227 + 2228 + [[package]] 2229 + name = "futures-util" 2230 + version = "0.3.28" 2231 + source = "registry+https://github.com/rust-lang/crates.io-index" 2232 + checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 2233 + dependencies = [ 2234 + "futures-channel", 2235 + "futures-core", 2236 + "futures-io", 2237 + "futures-macro", 2238 + "futures-sink", 2239 + "futures-task", 2240 + "memchr", 2241 + "pin-project-lite", 2242 + "pin-utils", 2243 + "slab", 2244 + ] 2245 + 2246 + [[package]] 2247 + name = "generator" 2248 + version = "0.7.4" 2249 + source = "registry+https://github.com/rust-lang/crates.io-index" 2250 + checksum = "f3e123d9ae7c02966b4d892e550bdc32164f05853cd40ab570650ad600596a8a" 2251 + dependencies = [ 2252 + "cc", 2253 + "libc", 2254 + "log", 2255 + "rustversion", 2256 + "windows", 2257 + ] 2258 + 2259 + [[package]] 2260 + name = "generic-array" 2261 + version = "0.14.7" 2262 + source = "registry+https://github.com/rust-lang/crates.io-index" 2263 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 2264 + dependencies = [ 2265 + "typenum", 2266 + "version_check", 2267 + ] 2268 + 2269 + [[package]] 2270 + name = "getrandom" 2271 + version = "0.1.16" 2272 + source = "registry+https://github.com/rust-lang/crates.io-index" 2273 + checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 2274 + dependencies = [ 2275 + "cfg-if", 2276 + "libc", 2277 + "wasi 0.9.0+wasi-snapshot-preview1", 2278 + ] 2279 + 2280 + [[package]] 2281 + name = "getrandom" 2282 + version = "0.2.9" 2283 + source = "registry+https://github.com/rust-lang/crates.io-index" 2284 + checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" 2285 + dependencies = [ 2286 + "cfg-if", 2287 + "js-sys", 2288 + "libc", 2289 + "wasi 0.11.0+wasi-snapshot-preview1", 2290 + "wasm-bindgen", 2291 + ] 2292 + 2293 + [[package]] 2294 + name = "ghost" 2295 + version = "0.1.9" 2296 + source = "registry+https://github.com/rust-lang/crates.io-index" 2297 + checksum = "e77ac7b51b8e6313251737fcef4b1c01a2ea102bde68415b62c0ee9268fec357" 2298 + dependencies = [ 2299 + "proc-macro2", 2300 + "quote", 2301 + "syn 2.0.18", 2302 + ] 2303 + 2304 + [[package]] 2305 + name = "glob" 2306 + version = "0.3.1" 2307 + source = "registry+https://github.com/rust-lang/crates.io-index" 2308 + checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 2309 + 2310 + [[package]] 2311 + name = "h2" 2312 + version = "0.3.19" 2313 + source = "registry+https://github.com/rust-lang/crates.io-index" 2314 + checksum = "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782" 2315 + dependencies = [ 2316 + "bytes", 2317 + "fnv", 2318 + "futures-core", 2319 + "futures-sink", 2320 + "futures-util", 2321 + "http", 2322 + "indexmap", 2323 + "slab", 2324 + "tokio", 2325 + "tokio-util", 2326 + "tracing", 2327 + ] 2328 + 2329 + [[package]] 2330 + name = "half" 2331 + version = "1.8.2" 2332 + source = "registry+https://github.com/rust-lang/crates.io-index" 2333 + checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" 2334 + 2335 + [[package]] 2336 + name = "hashbrown" 2337 + version = "0.12.3" 2338 + source = "registry+https://github.com/rust-lang/crates.io-index" 2339 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 2340 + dependencies = [ 2341 + "ahash 0.7.6", 2342 + ] 2343 + 2344 + [[package]] 2345 + name = "hashbrown" 2346 + version = "0.13.2" 2347 + source = "registry+https://github.com/rust-lang/crates.io-index" 2348 + checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 2349 + dependencies = [ 2350 + "ahash 0.8.3", 2351 + ] 2352 + 2353 + [[package]] 2354 + name = "hashlink" 2355 + version = "0.8.2" 2356 + source = "registry+https://github.com/rust-lang/crates.io-index" 2357 + checksum = "0761a1b9491c4f2e3d66aa0f62d0fba0af9a0e2852e4d48ea506632a4b56e6aa" 2358 + dependencies = [ 2359 + "hashbrown 0.13.2", 2360 + ] 2361 + 2362 + [[package]] 2363 + name = "hdrhistogram" 2364 + version = "7.5.2" 2365 + source = "registry+https://github.com/rust-lang/crates.io-index" 2366 + checksum = "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8" 2367 + dependencies = [ 2368 + "base64 0.13.1", 2369 + "byteorder", 2370 + "flate2", 2371 + "nom", 2372 + "num-traits", 2373 + ] 2374 + 2375 + [[package]] 2376 + name = "headers" 2377 + version = "0.3.8" 2378 + source = "registry+https://github.com/rust-lang/crates.io-index" 2379 + checksum = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584" 2380 + dependencies = [ 2381 + "base64 0.13.1", 2382 + "bitflags", 2383 + "bytes", 2384 + "headers-core", 2385 + "http", 2386 + "httpdate", 2387 + "mime", 2388 + "sha1", 2389 + ] 2390 + 2391 + [[package]] 2392 + name = "headers-core" 2393 + version = "0.2.0" 2394 + source = "registry+https://github.com/rust-lang/crates.io-index" 2395 + checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" 2396 + dependencies = [ 2397 + "http", 2398 + ] 2399 + 2400 + [[package]] 2401 + name = "heck" 2402 + version = "0.3.3" 2403 + source = "registry+https://github.com/rust-lang/crates.io-index" 2404 + checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" 2405 + dependencies = [ 2406 + "unicode-segmentation", 2407 + ] 2408 + 2409 + [[package]] 2410 + name = "heck" 2411 + version = "0.4.1" 2412 + source = "registry+https://github.com/rust-lang/crates.io-index" 2413 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 2414 + dependencies = [ 2415 + "unicode-segmentation", 2416 + ] 2417 + 2418 + [[package]] 2419 + name = "hermit-abi" 2420 + version = "0.1.19" 2421 + source = "registry+https://github.com/rust-lang/crates.io-index" 2422 + checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 2423 + dependencies = [ 2424 + "libc", 2425 + ] 2426 + 2427 + [[package]] 2428 + name = "hermit-abi" 2429 + version = "0.2.6" 2430 + source = "registry+https://github.com/rust-lang/crates.io-index" 2431 + checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 2432 + dependencies = [ 2433 + "libc", 2434 + ] 2435 + 2436 + [[package]] 2437 + name = "hermit-abi" 2438 + version = "0.3.1" 2439 + source = "registry+https://github.com/rust-lang/crates.io-index" 2440 + checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 2441 + 2442 + [[package]] 2443 + name = "hex" 2444 + version = "0.4.3" 2445 + source = "registry+https://github.com/rust-lang/crates.io-index" 2446 + checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 2447 + 2448 + [[package]] 2449 + name = "hkdf" 2450 + version = "0.12.3" 2451 + source = "registry+https://github.com/rust-lang/crates.io-index" 2452 + checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437" 2453 + dependencies = [ 2454 + "hmac", 2455 + ] 2456 + 2457 + [[package]] 2458 + name = "hmac" 2459 + version = "0.12.1" 2460 + source = "registry+https://github.com/rust-lang/crates.io-index" 2461 + checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 2462 + dependencies = [ 2463 + "digest", 2464 + ] 2465 + 2466 + [[package]] 2467 + name = "home" 2468 + version = "0.5.5" 2469 + source = "registry+https://github.com/rust-lang/crates.io-index" 2470 + checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" 2471 + dependencies = [ 2472 + "windows-sys 0.48.0", 2473 + ] 2474 + 2475 + [[package]] 2476 + name = "hostname" 2477 + version = "0.3.1" 2478 + source = "registry+https://github.com/rust-lang/crates.io-index" 2479 + checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" 2480 + dependencies = [ 2481 + "libc", 2482 + "match_cfg", 2483 + "winapi 0.3.9", 2484 + ] 2485 + 2486 + [[package]] 2487 + name = "htmlescape" 2488 + version = "0.3.1" 2489 + source = "registry+https://github.com/rust-lang/crates.io-index" 2490 + checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163" 2491 + 2492 + [[package]] 2493 + name = "http" 2494 + version = "0.2.9" 2495 + source = "registry+https://github.com/rust-lang/crates.io-index" 2496 + checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 2497 + dependencies = [ 2498 + "bytes", 2499 + "fnv", 2500 + "itoa", 2501 + ] 2502 + 2503 + [[package]] 2504 + name = "http-body" 2505 + version = "0.4.5" 2506 + source = "registry+https://github.com/rust-lang/crates.io-index" 2507 + checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 2508 + dependencies = [ 2509 + "bytes", 2510 + "http", 2511 + "pin-project-lite", 2512 + ] 2513 + 2514 + [[package]] 2515 + name = "http-range-header" 2516 + version = "0.3.0" 2517 + source = "registry+https://github.com/rust-lang/crates.io-index" 2518 + checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29" 2519 + 2520 + [[package]] 2521 + name = "http-serde" 2522 + version = "1.1.2" 2523 + source = "registry+https://github.com/rust-lang/crates.io-index" 2524 + checksum = "0e272971f774ba29341db2f686255ff8a979365a26fb9e4277f6b6d9ec0cdd5e" 2525 + dependencies = [ 2526 + "http", 2527 + "serde", 2528 + ] 2529 + 2530 + [[package]] 2531 + name = "http-types" 2532 + version = "2.12.0" 2533 + source = "registry+https://github.com/rust-lang/crates.io-index" 2534 + checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad" 2535 + dependencies = [ 2536 + "anyhow", 2537 + "async-channel", 2538 + "base64 0.13.1", 2539 + "futures-lite", 2540 + "http", 2541 + "infer", 2542 + "pin-project-lite", 2543 + "rand 0.7.3", 2544 + "serde", 2545 + "serde_json", 2546 + "serde_qs 0.8.5", 2547 + "serde_urlencoded", 2548 + "url", 2549 + ] 2550 + 2551 + [[package]] 2552 + name = "httparse" 2553 + version = "1.8.0" 2554 + source = "registry+https://github.com/rust-lang/crates.io-index" 2555 + checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 2556 + 2557 + [[package]] 2558 + name = "httpdate" 2559 + version = "1.0.2" 2560 + source = "registry+https://github.com/rust-lang/crates.io-index" 2561 + checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 2562 + 2563 + [[package]] 2564 + name = "humantime" 2565 + version = "2.1.0" 2566 + source = "registry+https://github.com/rust-lang/crates.io-index" 2567 + checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 2568 + 2569 + [[package]] 2570 + name = "hyper" 2571 + version = "0.14.26" 2572 + source = "registry+https://github.com/rust-lang/crates.io-index" 2573 + checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4" 2574 + dependencies = [ 2575 + "bytes", 2576 + "futures-channel", 2577 + "futures-core", 2578 + "futures-util", 2579 + "h2", 2580 + "http", 2581 + "http-body", 2582 + "httparse", 2583 + "httpdate", 2584 + "itoa", 2585 + "pin-project-lite", 2586 + "socket2", 2587 + "tokio", 2588 + "tower-service", 2589 + "tracing", 2590 + "want", 2591 + ] 2592 + 2593 + [[package]] 2594 + name = "hyper-rustls" 2595 + version = "0.23.2" 2596 + source = "registry+https://github.com/rust-lang/crates.io-index" 2597 + checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c" 2598 + dependencies = [ 2599 + "http", 2600 + "hyper", 2601 + "log", 2602 + "rustls 0.20.8", 2603 + "rustls-native-certs", 2604 + "tokio", 2605 + "tokio-rustls 0.23.4", 2606 + ] 2607 + 2608 + [[package]] 2609 + name = "hyper-rustls" 2610 + version = "0.24.0" 2611 + source = "registry+https://github.com/rust-lang/crates.io-index" 2612 + checksum = "0646026eb1b3eea4cd9ba47912ea5ce9cc07713d105b1a14698f4e6433d348b7" 2613 + dependencies = [ 2614 + "http", 2615 + "hyper", 2616 + "log", 2617 + "rustls 0.21.1", 2618 + "rustls-native-certs", 2619 + "tokio", 2620 + "tokio-rustls 0.24.0", 2621 + ] 2622 + 2623 + [[package]] 2624 + name = "hyper-timeout" 2625 + version = "0.4.1" 2626 + source = "registry+https://github.com/rust-lang/crates.io-index" 2627 + checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1" 2628 + dependencies = [ 2629 + "hyper", 2630 + "pin-project-lite", 2631 + "tokio", 2632 + "tokio-io-timeout", 2633 + ] 2634 + 2635 + [[package]] 2636 + name = "iana-time-zone" 2637 + version = "0.1.56" 2638 + source = "registry+https://github.com/rust-lang/crates.io-index" 2639 + checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c" 2640 + dependencies = [ 2641 + "android_system_properties", 2642 + "core-foundation-sys", 2643 + "iana-time-zone-haiku", 2644 + "js-sys", 2645 + "wasm-bindgen", 2646 + "windows", 2647 + ] 2648 + 2649 + [[package]] 2650 + name = "iana-time-zone-haiku" 2651 + version = "0.1.2" 2652 + source = "registry+https://github.com/rust-lang/crates.io-index" 2653 + checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 2654 + dependencies = [ 2655 + "cc", 2656 + ] 2657 + 2658 + [[package]] 2659 + name = "ident_case" 2660 + version = "1.0.1" 2661 + source = "registry+https://github.com/rust-lang/crates.io-index" 2662 + checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 2663 + 2664 + [[package]] 2665 + name = "idna" 2666 + version = "0.3.0" 2667 + source = "registry+https://github.com/rust-lang/crates.io-index" 2668 + checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 2669 + dependencies = [ 2670 + "unicode-bidi", 2671 + "unicode-normalization", 2672 + ] 2673 + 2674 + [[package]] 2675 + name = "indexmap" 2676 + version = "1.9.3" 2677 + source = "registry+https://github.com/rust-lang/crates.io-index" 2678 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 2679 + dependencies = [ 2680 + "autocfg", 2681 + "hashbrown 0.12.3", 2682 + "serde", 2683 + ] 2684 + 2685 + [[package]] 2686 + name = "indicatif" 2687 + version = "0.17.4" 2688 + source = "registry+https://github.com/rust-lang/crates.io-index" 2689 + checksum = "db45317f37ef454e6519b6c3ed7d377e5f23346f0823f86e65ca36912d1d0ef8" 2690 + dependencies = [ 2691 + "console", 2692 + "instant", 2693 + "number_prefix", 2694 + "portable-atomic", 2695 + "unicode-width", 2696 + ] 2697 + 2698 + [[package]] 2699 + name = "indoc" 2700 + version = "2.0.1" 2701 + source = "registry+https://github.com/rust-lang/crates.io-index" 2702 + checksum = "9f2cb48b81b1dc9f39676bf99f5499babfec7cd8fe14307f7b3d747208fb5690" 2703 + 2704 + [[package]] 2705 + name = "infer" 2706 + version = "0.2.3" 2707 + source = "registry+https://github.com/rust-lang/crates.io-index" 2708 + checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac" 2709 + 2710 + [[package]] 2711 + name = "inout" 2712 + version = "0.1.3" 2713 + source = "registry+https://github.com/rust-lang/crates.io-index" 2714 + checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 2715 + dependencies = [ 2716 + "block-padding", 2717 + "generic-array", 2718 + ] 2719 + 2720 + [[package]] 2721 + name = "instant" 2722 + version = "0.1.12" 2723 + source = "registry+https://github.com/rust-lang/crates.io-index" 2724 + checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 2725 + dependencies = [ 2726 + "cfg-if", 2727 + "js-sys", 2728 + "wasm-bindgen", 2729 + "web-sys", 2730 + ] 2731 + 2732 + [[package]] 2733 + name = "integer-encoding" 2734 + version = "3.0.4" 2735 + source = "registry+https://github.com/rust-lang/crates.io-index" 2736 + checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02" 2737 + 2738 + [[package]] 2739 + name = "inventory" 2740 + version = "0.3.6" 2741 + source = "registry+https://github.com/rust-lang/crates.io-index" 2742 + checksum = "e0539b5de9241582ce6bd6b0ba7399313560151e58c9aaf8b74b711b1bdce644" 2743 + dependencies = [ 2744 + "ghost", 2745 + ] 2746 + 2747 + [[package]] 2748 + name = "io-lifetimes" 2749 + version = "1.0.11" 2750 + source = "registry+https://github.com/rust-lang/crates.io-index" 2751 + checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 2752 + dependencies = [ 2753 + "hermit-abi 0.3.1", 2754 + "libc", 2755 + "windows-sys 0.48.0", 2756 + ] 2757 + 2758 + [[package]] 2759 + name = "ipnet" 2760 + version = "2.7.2" 2761 + source = "registry+https://github.com/rust-lang/crates.io-index" 2762 + checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f" 2763 + 2764 + [[package]] 2765 + name = "ipnetwork" 2766 + version = "0.19.0" 2767 + source = "registry+https://github.com/rust-lang/crates.io-index" 2768 + checksum = "1f84f1612606f3753f205a4e9a2efd6fe5b4c573a6269b2cc6c3003d44a0d127" 2769 + dependencies = [ 2770 + "serde", 2771 + ] 2772 + 2773 + [[package]] 2774 + name = "is-terminal" 2775 + version = "0.4.7" 2776 + source = "registry+https://github.com/rust-lang/crates.io-index" 2777 + checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f" 2778 + dependencies = [ 2779 + "hermit-abi 0.3.1", 2780 + "io-lifetimes", 2781 + "rustix 0.37.19", 2782 + "windows-sys 0.48.0", 2783 + ] 2784 + 2785 + [[package]] 2786 + name = "itertools" 2787 + version = "0.10.5" 2788 + source = "registry+https://github.com/rust-lang/crates.io-index" 2789 + checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 2790 + dependencies = [ 2791 + "either", 2792 + ] 2793 + 2794 + [[package]] 2795 + name = "itoa" 2796 + version = "1.0.6" 2797 + source = "registry+https://github.com/rust-lang/crates.io-index" 2798 + checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 2799 + 2800 + [[package]] 2801 + name = "jobserver" 2802 + version = "0.1.26" 2803 + source = "registry+https://github.com/rust-lang/crates.io-index" 2804 + checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" 2805 + dependencies = [ 2806 + "libc", 2807 + ] 2808 + 2809 + [[package]] 2810 + name = "js-sys" 2811 + version = "0.3.63" 2812 + source = "registry+https://github.com/rust-lang/crates.io-index" 2813 + checksum = "2f37a4a5928311ac501dee68b3c7613a1037d0edb30c8e5427bd832d55d1b790" 2814 + dependencies = [ 2815 + "wasm-bindgen", 2816 + ] 2817 + 2818 + [[package]] 2819 + name = "json_comments" 2820 + version = "0.2.1" 2821 + source = "registry+https://github.com/rust-lang/crates.io-index" 2822 + checksum = "41ee439ee368ba4a77ac70d04f14015415af8600d6c894dc1f11bd79758c57d5" 2823 + 2824 + [[package]] 2825 + name = "keccak" 2826 + version = "0.1.4" 2827 + source = "registry+https://github.com/rust-lang/crates.io-index" 2828 + checksum = "8f6d5ed8676d904364de097082f4e7d240b571b67989ced0240f08b7f966f940" 2829 + dependencies = [ 2830 + "cpufeatures", 2831 + ] 2832 + 2833 + [[package]] 2834 + name = "krb5-src" 2835 + version = "0.3.2+1.19.2" 2836 + source = "registry+https://github.com/rust-lang/crates.io-index" 2837 + checksum = "44cd3b7e7735d48bc3793837041294f2eb747bd0f63bbc081e89972abb9e48fb" 2838 + dependencies = [ 2839 + "duct", 2840 + ] 2841 + 2842 + [[package]] 2843 + name = "lalrpop" 2844 + version = "0.19.12" 2845 + source = "registry+https://github.com/rust-lang/crates.io-index" 2846 + checksum = "0a1cbf952127589f2851ab2046af368fd20645491bb4b376f04b7f94d7a9837b" 2847 + dependencies = [ 2848 + "ascii-canvas", 2849 + "bit-set", 2850 + "diff", 2851 + "ena", 2852 + "is-terminal", 2853 + "itertools", 2854 + "lalrpop-util", 2855 + "petgraph", 2856 + "regex", 2857 + "regex-syntax 0.6.29", 2858 + "string_cache", 2859 + "term", 2860 + "tiny-keccak", 2861 + "unicode-xid", 2862 + ] 2863 + 2864 + [[package]] 2865 + name = "lalrpop-util" 2866 + version = "0.19.12" 2867 + source = "registry+https://github.com/rust-lang/crates.io-index" 2868 + checksum = "d3c48237b9604c5a4702de6b824e02006c3214327564636aef27c1028a8fa0ed" 2869 + 2870 + [[package]] 2871 + name = "lazy_static" 2872 + version = "1.4.0" 2873 + source = "registry+https://github.com/rust-lang/crates.io-index" 2874 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 2875 + 2876 + [[package]] 2877 + name = "levenshtein_automata" 2878 + version = "0.2.1" 2879 + source = "registry+https://github.com/rust-lang/crates.io-index" 2880 + checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25" 2881 + 2882 + [[package]] 2883 + name = "libc" 2884 + version = "0.2.144" 2885 + source = "registry+https://github.com/rust-lang/crates.io-index" 2886 + checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1" 2887 + 2888 + [[package]] 2889 + name = "libm" 2890 + version = "0.2.7" 2891 + source = "registry+https://github.com/rust-lang/crates.io-index" 2892 + checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4" 2893 + 2894 + [[package]] 2895 + name = "libz-sys" 2896 + version = "1.1.9" 2897 + source = "registry+https://github.com/rust-lang/crates.io-index" 2898 + checksum = "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db" 2899 + dependencies = [ 2900 + "cc", 2901 + "libc", 2902 + "pkg-config", 2903 + "vcpkg", 2904 + ] 2905 + 2906 + [[package]] 2907 + name = "linked-hash-map" 2908 + version = "0.5.6" 2909 + source = "registry+https://github.com/rust-lang/crates.io-index" 2910 + checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 2911 + 2912 + [[package]] 2913 + name = "linux-raw-sys" 2914 + version = "0.1.4" 2915 + source = "registry+https://github.com/rust-lang/crates.io-index" 2916 + checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" 2917 + 2918 + [[package]] 2919 + name = "linux-raw-sys" 2920 + version = "0.3.8" 2921 + source = "registry+https://github.com/rust-lang/crates.io-index" 2922 + checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 2923 + 2924 + [[package]] 2925 + name = "lock_api" 2926 + version = "0.4.9" 2927 + source = "registry+https://github.com/rust-lang/crates.io-index" 2928 + checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 2929 + dependencies = [ 2930 + "autocfg", 2931 + "scopeguard", 2932 + ] 2933 + 2934 + [[package]] 2935 + name = "log" 2936 + version = "0.4.18" 2937 + source = "registry+https://github.com/rust-lang/crates.io-index" 2938 + checksum = "518ef76f2f87365916b142844c16d8fefd85039bc5699050210a7778ee1cd1de" 2939 + 2940 + [[package]] 2941 + name = "loom" 2942 + version = "0.5.6" 2943 + source = "registry+https://github.com/rust-lang/crates.io-index" 2944 + checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5" 2945 + dependencies = [ 2946 + "cfg-if", 2947 + "generator", 2948 + "pin-utils", 2949 + "scoped-tls", 2950 + "tracing", 2951 + "tracing-subscriber", 2952 + ] 2953 + 2954 + [[package]] 2955 + name = "lru" 2956 + version = "0.10.0" 2957 + source = "registry+https://github.com/rust-lang/crates.io-index" 2958 + checksum = "03f1160296536f10c833a82dca22267d5486734230d47bf00bf435885814ba1e" 2959 + dependencies = [ 2960 + "hashbrown 0.13.2", 2961 + ] 2962 + 2963 + [[package]] 2964 + name = "lz4" 2965 + version = "1.24.0" 2966 + source = "registry+https://github.com/rust-lang/crates.io-index" 2967 + checksum = "7e9e2dd86df36ce760a60f6ff6ad526f7ba1f14ba0356f8254fb6905e6494df1" 2968 + dependencies = [ 2969 + "libc", 2970 + "lz4-sys", 2971 + ] 2972 + 2973 + [[package]] 2974 + name = "lz4-sys" 2975 + version = "1.9.4" 2976 + source = "registry+https://github.com/rust-lang/crates.io-index" 2977 + checksum = "57d27b317e207b10f69f5e75494119e391a96f48861ae870d1da6edac98ca900" 2978 + dependencies = [ 2979 + "cc", 2980 + "libc", 2981 + ] 2982 + 2983 + [[package]] 2984 + name = "lz4_flex" 2985 + version = "0.10.0" 2986 + source = "registry+https://github.com/rust-lang/crates.io-index" 2987 + checksum = "8b8c72594ac26bfd34f2d99dfced2edfaddfe8a476e3ff2ca0eb293d925c4f83" 2988 + 2989 + [[package]] 2990 + name = "match_cfg" 2991 + version = "0.1.0" 2992 + source = "registry+https://github.com/rust-lang/crates.io-index" 2993 + checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" 2994 + 2995 + [[package]] 2996 + name = "matchers" 2997 + version = "0.1.0" 2998 + source = "registry+https://github.com/rust-lang/crates.io-index" 2999 + checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 3000 + dependencies = [ 3001 + "regex-automata", 3002 + ] 3003 + 3004 + [[package]] 3005 + name = "matches" 3006 + version = "0.1.10" 3007 + source = "registry+https://github.com/rust-lang/crates.io-index" 3008 + checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 3009 + 3010 + [[package]] 3011 + name = "matchit" 3012 + version = "0.7.0" 3013 + source = "registry+https://github.com/rust-lang/crates.io-index" 3014 + checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40" 3015 + 3016 + [[package]] 3017 + name = "md-5" 3018 + version = "0.10.5" 3019 + source = "registry+https://github.com/rust-lang/crates.io-index" 3020 + checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca" 3021 + dependencies = [ 3022 + "digest", 3023 + ] 3024 + 3025 + [[package]] 3026 + name = "md5" 3027 + version = "0.7.0" 3028 + source = "registry+https://github.com/rust-lang/crates.io-index" 3029 + checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771" 3030 + 3031 + [[package]] 3032 + name = "measure_time" 3033 + version = "0.8.2" 3034 + source = "registry+https://github.com/rust-lang/crates.io-index" 3035 + checksum = "56220900f1a0923789ecd6bf25fbae8af3b2f1ff3e9e297fc9b6b8674dd4d852" 3036 + dependencies = [ 3037 + "instant", 3038 + "log", 3039 + ] 3040 + 3041 + [[package]] 3042 + name = "memchr" 3043 + version = "2.5.0" 3044 + source = "registry+https://github.com/rust-lang/crates.io-index" 3045 + checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 3046 + 3047 + [[package]] 3048 + name = "memmap2" 3049 + version = "0.6.2" 3050 + source = "registry+https://github.com/rust-lang/crates.io-index" 3051 + checksum = "6d28bba84adfe6646737845bc5ebbfa2c08424eb1c37e94a1fd2a82adb56a872" 3052 + dependencies = [ 3053 + "libc", 3054 + ] 3055 + 3056 + [[package]] 3057 + name = "memoffset" 3058 + version = "0.8.0" 3059 + source = "registry+https://github.com/rust-lang/crates.io-index" 3060 + checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 3061 + dependencies = [ 3062 + "autocfg", 3063 + ] 3064 + 3065 + [[package]] 3066 + name = "mime" 3067 + version = "0.3.17" 3068 + source = "registry+https://github.com/rust-lang/crates.io-index" 3069 + checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 3070 + 3071 + [[package]] 3072 + name = "mime_guess" 3073 + version = "2.0.4" 3074 + source = "registry+https://github.com/rust-lang/crates.io-index" 3075 + checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" 3076 + dependencies = [ 3077 + "mime", 3078 + "unicase", 3079 + ] 3080 + 3081 + [[package]] 3082 + name = "minimal-lexical" 3083 + version = "0.2.1" 3084 + source = "registry+https://github.com/rust-lang/crates.io-index" 3085 + checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 3086 + 3087 + [[package]] 3088 + name = "miniz_oxide" 3089 + version = "0.7.1" 3090 + source = "registry+https://github.com/rust-lang/crates.io-index" 3091 + checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 3092 + dependencies = [ 3093 + "adler", 3094 + ] 3095 + 3096 + [[package]] 3097 + name = "mio" 3098 + version = "0.8.8" 3099 + source = "registry+https://github.com/rust-lang/crates.io-index" 3100 + checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 3101 + dependencies = [ 3102 + "libc", 3103 + "wasi 0.11.0+wasi-snapshot-preview1", 3104 + "windows-sys 0.48.0", 3105 + ] 3106 + 3107 + [[package]] 3108 + name = "mockall" 3109 + version = "0.11.4" 3110 + source = "registry+https://github.com/rust-lang/crates.io-index" 3111 + checksum = "4c84490118f2ee2d74570d114f3d0493cbf02790df303d2707606c3e14e07c96" 3112 + dependencies = [ 3113 + "cfg-if", 3114 + "downcast", 3115 + "fragile", 3116 + "lazy_static", 3117 + "mockall_derive", 3118 + "predicates", 3119 + "predicates-tree", 3120 + ] 3121 + 3122 + [[package]] 3123 + name = "mockall_derive" 3124 + version = "0.11.4" 3125 + source = "registry+https://github.com/rust-lang/crates.io-index" 3126 + checksum = "22ce75669015c4f47b289fd4d4f56e894e4c96003ffdf3ac51313126f94c6cbb" 3127 + dependencies = [ 3128 + "cfg-if", 3129 + "proc-macro2", 3130 + "quote", 3131 + "syn 1.0.109", 3132 + ] 3133 + 3134 + [[package]] 3135 + name = "mrecordlog" 3136 + version = "0.3.0" 3137 + source = "registry+https://github.com/rust-lang/crates.io-index" 3138 + checksum = "37147ad590e077179550cb783db8610443bc6b885d2aba258c4eb75938000fbd" 3139 + dependencies = [ 3140 + "async-trait", 3141 + "bytes", 3142 + "crc32fast", 3143 + "serde", 3144 + "serde_json", 3145 + "thiserror", 3146 + "tokio", 3147 + ] 3148 + 3149 + [[package]] 3150 + name = "multer" 3151 + version = "2.1.0" 3152 + source = "registry+https://github.com/rust-lang/crates.io-index" 3153 + checksum = "01acbdc23469fd8fe07ab135923371d5f5a422fbf9c522158677c8eb15bc51c2" 3154 + dependencies = [ 3155 + "bytes", 3156 + "encoding_rs", 3157 + "futures-util", 3158 + "http", 3159 + "httparse", 3160 + "log", 3161 + "memchr", 3162 + "mime", 3163 + "spin 0.9.8", 3164 + "version_check", 3165 + ] 3166 + 3167 + [[package]] 3168 + name = "multimap" 3169 + version = "0.8.3" 3170 + source = "registry+https://github.com/rust-lang/crates.io-index" 3171 + checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" 3172 + 3173 + [[package]] 3174 + name = "murmurhash32" 3175 + version = "0.3.0" 3176 + source = "registry+https://github.com/rust-lang/crates.io-index" 3177 + checksum = "d9380db4c04d219ac5c51d14996bbf2c2e9a15229771b53f8671eb6c83cf44df" 3178 + 3179 + [[package]] 3180 + name = "nanorand" 3181 + version = "0.7.0" 3182 + source = "registry+https://github.com/rust-lang/crates.io-index" 3183 + checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" 3184 + dependencies = [ 3185 + "getrandom 0.2.9", 3186 + ] 3187 + 3188 + [[package]] 3189 + name = "native-tls" 3190 + version = "0.2.11" 3191 + source = "registry+https://github.com/rust-lang/crates.io-index" 3192 + checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 3193 + dependencies = [ 3194 + "lazy_static", 3195 + "libc", 3196 + "log", 3197 + "openssl", 3198 + "openssl-probe", 3199 + "openssl-sys", 3200 + "schannel", 3201 + "security-framework", 3202 + "security-framework-sys", 3203 + "tempfile", 3204 + ] 3205 + 3206 + [[package]] 3207 + name = "new_debug_unreachable" 3208 + version = "1.0.4" 3209 + source = "registry+https://github.com/rust-lang/crates.io-index" 3210 + checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 3211 + 3212 + [[package]] 3213 + name = "new_string_template" 3214 + version = "1.4.0" 3215 + source = "registry+https://github.com/rust-lang/crates.io-index" 3216 + checksum = "d7359c5bee6fe9218ccd4988120a23dc79d291e95486756969112d45efdc97d1" 3217 + dependencies = [ 3218 + "lazy_static", 3219 + "regex", 3220 + ] 3221 + 3222 + [[package]] 3223 + name = "no-std-net" 3224 + version = "0.6.0" 3225 + source = "registry+https://github.com/rust-lang/crates.io-index" 3226 + checksum = "43794a0ace135be66a25d3ae77d41b91615fb68ae937f904090203e81f755b65" 3227 + 3228 + [[package]] 3229 + name = "nom" 3230 + version = "7.1.3" 3231 + source = "registry+https://github.com/rust-lang/crates.io-index" 3232 + checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 3233 + dependencies = [ 3234 + "memchr", 3235 + "minimal-lexical", 3236 + ] 3237 + 3238 + [[package]] 3239 + name = "nom8" 3240 + version = "0.2.0" 3241 + source = "registry+https://github.com/rust-lang/crates.io-index" 3242 + checksum = "ae01545c9c7fc4486ab7debaf2aad7003ac19431791868fb2e8066df97fad2f8" 3243 + dependencies = [ 3244 + "memchr", 3245 + ] 3246 + 3247 + [[package]] 3248 + name = "normalize-line-endings" 3249 + version = "0.3.0" 3250 + source = "registry+https://github.com/rust-lang/crates.io-index" 3251 + checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be" 3252 + 3253 + [[package]] 3254 + name = "nu-ansi-term" 3255 + version = "0.46.0" 3256 + source = "registry+https://github.com/rust-lang/crates.io-index" 3257 + checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 3258 + dependencies = [ 3259 + "overload", 3260 + "winapi 0.3.9", 3261 + ] 3262 + 3263 + [[package]] 3264 + name = "num-bigint" 3265 + version = "0.4.3" 3266 + source = "registry+https://github.com/rust-lang/crates.io-index" 3267 + checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" 3268 + dependencies = [ 3269 + "autocfg", 3270 + "num-integer", 3271 + "num-traits", 3272 + ] 3273 + 3274 + [[package]] 3275 + name = "num-integer" 3276 + version = "0.1.45" 3277 + source = "registry+https://github.com/rust-lang/crates.io-index" 3278 + checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 3279 + dependencies = [ 3280 + "autocfg", 3281 + "num-traits", 3282 + ] 3283 + 3284 + [[package]] 3285 + name = "num-traits" 3286 + version = "0.2.15" 3287 + source = "registry+https://github.com/rust-lang/crates.io-index" 3288 + checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 3289 + dependencies = [ 3290 + "autocfg", 3291 + "libm", 3292 + ] 3293 + 3294 + [[package]] 3295 + name = "num_cpus" 3296 + version = "1.15.0" 3297 + source = "registry+https://github.com/rust-lang/crates.io-index" 3298 + checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 3299 + dependencies = [ 3300 + "hermit-abi 0.2.6", 3301 + "libc", 3302 + ] 3303 + 3304 + [[package]] 3305 + name = "num_enum" 3306 + version = "0.5.11" 3307 + source = "registry+https://github.com/rust-lang/crates.io-index" 3308 + checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" 3309 + dependencies = [ 3310 + "num_enum_derive", 3311 + ] 3312 + 3313 + [[package]] 3314 + name = "num_enum_derive" 3315 + version = "0.5.11" 3316 + source = "registry+https://github.com/rust-lang/crates.io-index" 3317 + checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" 3318 + dependencies = [ 3319 + "proc-macro-crate 1.3.1", 3320 + "proc-macro2", 3321 + "quote", 3322 + "syn 1.0.109", 3323 + ] 3324 + 3325 + [[package]] 3326 + name = "num_threads" 3327 + version = "0.1.6" 3328 + source = "registry+https://github.com/rust-lang/crates.io-index" 3329 + checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" 3330 + dependencies = [ 3331 + "libc", 3332 + ] 3333 + 3334 + [[package]] 3335 + name = "number_prefix" 3336 + version = "0.4.0" 3337 + source = "registry+https://github.com/rust-lang/crates.io-index" 3338 + checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" 3339 + 3340 + [[package]] 3341 + name = "oauth2" 3342 + version = "4.4.0" 3343 + source = "registry+https://github.com/rust-lang/crates.io-index" 3344 + checksum = "50df55a3cc0374df91ef8da8741542d9e0b9e6581481ed1cffe84f64d2f5fc3d" 3345 + dependencies = [ 3346 + "base64 0.13.1", 3347 + "chrono", 3348 + "getrandom 0.2.9", 3349 + "http", 3350 + "rand 0.8.5", 3351 + "reqwest", 3352 + "serde", 3353 + "serde_json", 3354 + "serde_path_to_error", 3355 + "sha2", 3356 + "thiserror", 3357 + "url", 3358 + ] 3359 + 3360 + [[package]] 3361 + name = "ofb" 3362 + version = "0.6.1" 3363 + source = "registry+https://github.com/rust-lang/crates.io-index" 3364 + checksum = "2cc40678e045ff4eb1666ea6c0f994b133c31f673c09aed292261b6d5b6963a0" 3365 + dependencies = [ 3366 + "cipher", 3367 + ] 3368 + 3369 + [[package]] 3370 + name = "once_cell" 3371 + version = "1.18.0" 3372 + source = "registry+https://github.com/rust-lang/crates.io-index" 3373 + checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 3374 + 3375 + [[package]] 3376 + name = "oneshot" 3377 + version = "0.1.5" 3378 + source = "registry+https://github.com/rust-lang/crates.io-index" 3379 + checksum = "fc22d22931513428ea6cc089e942d38600e3d00976eef8c86de6b8a3aadec6eb" 3380 + dependencies = [ 3381 + "loom", 3382 + ] 3383 + 3384 + [[package]] 3385 + name = "oorandom" 3386 + version = "11.1.3" 3387 + source = "registry+https://github.com/rust-lang/crates.io-index" 3388 + checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 3389 + 3390 + [[package]] 3391 + name = "openidconnect" 3392 + version = "2.5.1" 3393 + source = "registry+https://github.com/rust-lang/crates.io-index" 3394 + checksum = "98dd5b7049bac4fdd2233b8c9767d42c05da8006fdb79cc903258556d2b18009" 3395 + dependencies = [ 3396 + "base64 0.13.1", 3397 + "chrono", 3398 + "http", 3399 + "itertools", 3400 + "log", 3401 + "num-bigint", 3402 + "oauth2", 3403 + "rand 0.8.5", 3404 + "ring", 3405 + "serde", 3406 + "serde-value", 3407 + "serde_derive", 3408 + "serde_json", 3409 + "serde_path_to_error", 3410 + "serde_plain", 3411 + "serde_with 1.14.0", 3412 + "subtle", 3413 + "thiserror", 3414 + "url", 3415 + ] 3416 + 3417 + [[package]] 3418 + name = "openssl" 3419 + version = "0.10.54" 3420 + source = "registry+https://github.com/rust-lang/crates.io-index" 3421 + checksum = "69b3f656a17a6cbc115b5c7a40c616947d213ba182135b014d6051b73ab6f019" 3422 + dependencies = [ 3423 + "bitflags", 3424 + "cfg-if", 3425 + "foreign-types", 3426 + "libc", 3427 + "once_cell", 3428 + "openssl-macros", 3429 + "openssl-sys", 3430 + ] 3431 + 3432 + [[package]] 3433 + name = "openssl-macros" 3434 + version = "0.1.1" 3435 + source = "registry+https://github.com/rust-lang/crates.io-index" 3436 + checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 3437 + dependencies = [ 3438 + "proc-macro2", 3439 + "quote", 3440 + "syn 2.0.18", 3441 + ] 3442 + 3443 + [[package]] 3444 + name = "openssl-probe" 3445 + version = "0.1.5" 3446 + source = "registry+https://github.com/rust-lang/crates.io-index" 3447 + checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 3448 + 3449 + [[package]] 3450 + name = "openssl-src" 3451 + version = "111.26.0+1.1.1u" 3452 + source = "registry+https://github.com/rust-lang/crates.io-index" 3453 + checksum = "efc62c9f12b22b8f5208c23a7200a442b2e5999f8bdf80233852122b5a4f6f37" 3454 + dependencies = [ 3455 + "cc", 3456 + ] 3457 + 3458 + [[package]] 3459 + name = "openssl-sys" 3460 + version = "0.9.88" 3461 + source = "registry+https://github.com/rust-lang/crates.io-index" 3462 + checksum = "c2ce0f250f34a308dcfdbb351f511359857d4ed2134ba715a4eadd46e1ffd617" 3463 + dependencies = [ 3464 + "cc", 3465 + "libc", 3466 + "openssl-src", 3467 + "pkg-config", 3468 + "vcpkg", 3469 + ] 3470 + 3471 + [[package]] 3472 + name = "opentelemetry" 3473 + version = "0.19.0" 3474 + source = "registry+https://github.com/rust-lang/crates.io-index" 3475 + checksum = "5f4b8347cc26099d3aeee044065ecc3ae11469796b4d65d065a23a584ed92a6f" 3476 + dependencies = [ 3477 + "opentelemetry_api", 3478 + "opentelemetry_sdk", 3479 + ] 3480 + 3481 + [[package]] 3482 + name = "opentelemetry-jaeger" 3483 + version = "0.18.0" 3484 + source = "registry+https://github.com/rust-lang/crates.io-index" 3485 + checksum = "08e028dc9f4f304e9320ce38c80e7cf74067415b1ad5a8750a38bae54a4d450d" 3486 + dependencies = [ 3487 + "async-trait", 3488 + "futures", 3489 + "futures-executor", 3490 + "once_cell", 3491 + "opentelemetry", 3492 + "opentelemetry-semantic-conventions", 3493 + "thiserror", 3494 + "thrift", 3495 + "tokio", 3496 + ] 3497 + 3498 + [[package]] 3499 + name = "opentelemetry-otlp" 3500 + version = "0.12.0" 3501 + source = "registry+https://github.com/rust-lang/crates.io-index" 3502 + checksum = "8af72d59a4484654ea8eb183fea5ae4eb6a41d7ac3e3bae5f4d2a282a3a7d3ca" 3503 + dependencies = [ 3504 + "async-trait", 3505 + "futures", 3506 + "futures-util", 3507 + "http", 3508 + "opentelemetry", 3509 + "opentelemetry-proto", 3510 + "prost", 3511 + "thiserror", 3512 + "tokio", 3513 + "tonic 0.8.3", 3514 + ] 3515 + 3516 + [[package]] 3517 + name = "opentelemetry-proto" 3518 + version = "0.2.0" 3519 + source = "registry+https://github.com/rust-lang/crates.io-index" 3520 + checksum = "045f8eea8c0fa19f7d48e7bc3128a39c2e5c533d5c61298c548dfefc1064474c" 3521 + dependencies = [ 3522 + "futures", 3523 + "futures-util", 3524 + "opentelemetry", 3525 + "prost", 3526 + "tonic 0.8.3", 3527 + ] 3528 + 3529 + [[package]] 3530 + name = "opentelemetry-semantic-conventions" 3531 + version = "0.11.0" 3532 + source = "registry+https://github.com/rust-lang/crates.io-index" 3533 + checksum = "24e33428e6bf08c6f7fcea4ddb8e358fab0fe48ab877a87c70c6ebe20f673ce5" 3534 + dependencies = [ 3535 + "opentelemetry", 3536 + ] 3537 + 3538 + [[package]] 3539 + name = "opentelemetry_api" 3540 + version = "0.19.0" 3541 + source = "registry+https://github.com/rust-lang/crates.io-index" 3542 + checksum = "ed41783a5bf567688eb38372f2b7a8530f5a607a4b49d38dd7573236c23ca7e2" 3543 + dependencies = [ 3544 + "fnv", 3545 + "futures-channel", 3546 + "futures-util", 3547 + "indexmap", 3548 + "once_cell", 3549 + "pin-project-lite", 3550 + "thiserror", 3551 + "urlencoding", 3552 + ] 3553 + 3554 + [[package]] 3555 + name = "opentelemetry_sdk" 3556 + version = "0.19.0" 3557 + source = "registry+https://github.com/rust-lang/crates.io-index" 3558 + checksum = "8b3a2a91fdbfdd4d212c0dcc2ab540de2c2bcbbd90be17de7a7daf8822d010c1" 3559 + dependencies = [ 3560 + "async-trait", 3561 + "crossbeam-channel", 3562 + "dashmap", 3563 + "fnv", 3564 + "futures-channel", 3565 + "futures-executor", 3566 + "futures-util", 3567 + "once_cell", 3568 + "opentelemetry_api", 3569 + "percent-encoding", 3570 + "rand 0.8.5", 3571 + "thiserror", 3572 + "tokio", 3573 + "tokio-stream", 3574 + ] 3575 + 3576 + [[package]] 3577 + name = "ordered-float" 3578 + version = "2.10.0" 3579 + source = "registry+https://github.com/rust-lang/crates.io-index" 3580 + checksum = "7940cf2ca942593318d07fcf2596cdca60a85c9e7fab408a5e21a4f9dcd40d87" 3581 + dependencies = [ 3582 + "num-traits", 3583 + ] 3584 + 3585 + [[package]] 3586 + name = "ordered-float" 3587 + version = "3.7.0" 3588 + source = "registry+https://github.com/rust-lang/crates.io-index" 3589 + checksum = "2fc2dbde8f8a79f2102cc474ceb0ad68e3b80b85289ea62389b60e66777e4213" 3590 + dependencies = [ 3591 + "num-traits", 3592 + ] 3593 + 3594 + [[package]] 3595 + name = "os_pipe" 3596 + version = "1.1.4" 3597 + source = "registry+https://github.com/rust-lang/crates.io-index" 3598 + checksum = "0ae859aa07428ca9a929b936690f8b12dc5f11dd8c6992a18ca93919f28bc177" 3599 + dependencies = [ 3600 + "libc", 3601 + "windows-sys 0.48.0", 3602 + ] 3603 + 3604 + [[package]] 3605 + name = "ouroboros" 3606 + version = "0.15.6" 3607 + source = "registry+https://github.com/rust-lang/crates.io-index" 3608 + checksum = "e1358bd1558bd2a083fed428ffeda486fbfb323e698cdda7794259d592ca72db" 3609 + dependencies = [ 3610 + "aliasable", 3611 + "ouroboros_macro", 3612 + ] 3613 + 3614 + [[package]] 3615 + name = "ouroboros_macro" 3616 + version = "0.15.6" 3617 + source = "registry+https://github.com/rust-lang/crates.io-index" 3618 + checksum = "5f7d21ccd03305a674437ee1248f3ab5d4b1db095cf1caf49f1713ddf61956b7" 3619 + dependencies = [ 3620 + "Inflector", 3621 + "proc-macro-error", 3622 + "proc-macro2", 3623 + "quote", 3624 + "syn 1.0.109", 3625 + ] 3626 + 3627 + [[package]] 3628 + name = "output_vt100" 3629 + version = "0.1.3" 3630 + source = "registry+https://github.com/rust-lang/crates.io-index" 3631 + checksum = "628223faebab4e3e40667ee0b2336d34a5b960ff60ea743ddfdbcf7770bcfb66" 3632 + dependencies = [ 3633 + "winapi 0.3.9", 3634 + ] 3635 + 3636 + [[package]] 3637 + name = "outref" 3638 + version = "0.5.1" 3639 + source = "registry+https://github.com/rust-lang/crates.io-index" 3640 + checksum = "4030760ffd992bef45b0ae3f10ce1aba99e33464c90d14dd7c039884963ddc7a" 3641 + 3642 + [[package]] 3643 + name = "overload" 3644 + version = "0.1.1" 3645 + source = "registry+https://github.com/rust-lang/crates.io-index" 3646 + checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 3647 + 3648 + [[package]] 3649 + name = "ownedbytes" 3650 + version = "0.5.0" 3651 + source = "git+https://github.com/quickwit-oss/tantivy/?rev=924fc70#924fc70cb58f56dcd1a0547f2528c9ea86452763" 3652 + dependencies = [ 3653 + "stable_deref_trait", 3654 + ] 3655 + 3656 + [[package]] 3657 + name = "papergrid" 3658 + version = "0.5.1" 3659 + source = "registry+https://github.com/rust-lang/crates.io-index" 3660 + checksum = "453cf71f2a37af495a1a124bf30d4d7469cfbea58e9f2479be9d222396a518a2" 3661 + dependencies = [ 3662 + "ansi-str", 3663 + "bytecount", 3664 + "fnv", 3665 + "strip-ansi-escapes", 3666 + "unicode-width", 3667 + ] 3668 + 3669 + [[package]] 3670 + name = "parking" 3671 + version = "2.1.0" 3672 + source = "registry+https://github.com/rust-lang/crates.io-index" 3673 + checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e" 3674 + 3675 + [[package]] 3676 + name = "parking_lot" 3677 + version = "0.11.2" 3678 + source = "registry+https://github.com/rust-lang/crates.io-index" 3679 + checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" 3680 + dependencies = [ 3681 + "instant", 3682 + "lock_api", 3683 + "parking_lot_core 0.8.6", 3684 + ] 3685 + 3686 + [[package]] 3687 + name = "parking_lot" 3688 + version = "0.12.1" 3689 + source = "registry+https://github.com/rust-lang/crates.io-index" 3690 + checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 3691 + dependencies = [ 3692 + "lock_api", 3693 + "parking_lot_core 0.9.7", 3694 + ] 3695 + 3696 + [[package]] 3697 + name = "parking_lot_core" 3698 + version = "0.8.6" 3699 + source = "registry+https://github.com/rust-lang/crates.io-index" 3700 + checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" 3701 + dependencies = [ 3702 + "cfg-if", 3703 + "instant", 3704 + "libc", 3705 + "redox_syscall 0.2.16", 3706 + "smallvec", 3707 + "winapi 0.3.9", 3708 + ] 3709 + 3710 + [[package]] 3711 + name = "parking_lot_core" 3712 + version = "0.9.7" 3713 + source = "registry+https://github.com/rust-lang/crates.io-index" 3714 + checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" 3715 + dependencies = [ 3716 + "cfg-if", 3717 + "libc", 3718 + "redox_syscall 0.2.16", 3719 + "smallvec", 3720 + "windows-sys 0.45.0", 3721 + ] 3722 + 3723 + [[package]] 3724 + name = "parse-zoneinfo" 3725 + version = "0.3.0" 3726 + source = "registry+https://github.com/rust-lang/crates.io-index" 3727 + checksum = "c705f256449c60da65e11ff6626e0c16a0a0b96aaa348de61376b249bc340f41" 3728 + dependencies = [ 3729 + "regex", 3730 + ] 3731 + 3732 + [[package]] 3733 + name = "paste" 3734 + version = "1.0.12" 3735 + source = "registry+https://github.com/rust-lang/crates.io-index" 3736 + checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79" 3737 + 3738 + [[package]] 3739 + name = "path" 3740 + version = "0.1.0" 3741 + source = "git+https://github.com/vectordotdev/vrl?rev=v0.3.0#113005bcee6cd7b5ea0a53a7db2fc45ba4bc4125" 3742 + dependencies = [ 3743 + "once_cell", 3744 + "regex", 3745 + "serde", 3746 + "snafu", 3747 + ] 3748 + 3749 + [[package]] 3750 + name = "pem" 3751 + version = "1.1.1" 3752 + source = "registry+https://github.com/rust-lang/crates.io-index" 3753 + checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8" 3754 + dependencies = [ 3755 + "base64 0.13.1", 3756 + ] 3757 + 3758 + [[package]] 3759 + name = "percent-encoding" 3760 + version = "2.2.0" 3761 + source = "registry+https://github.com/rust-lang/crates.io-index" 3762 + checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 3763 + 3764 + [[package]] 3765 + name = "petgraph" 3766 + version = "0.6.3" 3767 + source = "registry+https://github.com/rust-lang/crates.io-index" 3768 + checksum = "4dd7d28ee937e54fe3080c91faa1c3a46c06de6252988a7f4592ba2310ef22a4" 3769 + dependencies = [ 3770 + "fixedbitset", 3771 + "indexmap", 3772 + ] 3773 + 3774 + [[package]] 3775 + name = "phf" 3776 + version = "0.11.1" 3777 + source = "registry+https://github.com/rust-lang/crates.io-index" 3778 + checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c" 3779 + dependencies = [ 3780 + "phf_shared 0.11.1", 3781 + ] 3782 + 3783 + [[package]] 3784 + name = "phf_codegen" 3785 + version = "0.11.1" 3786 + source = "registry+https://github.com/rust-lang/crates.io-index" 3787 + checksum = "a56ac890c5e3ca598bbdeaa99964edb5b0258a583a9eb6ef4e89fc85d9224770" 3788 + dependencies = [ 3789 + "phf_generator", 3790 + "phf_shared 0.11.1", 3791 + ] 3792 + 3793 + [[package]] 3794 + name = "phf_generator" 3795 + version = "0.11.1" 3796 + source = "registry+https://github.com/rust-lang/crates.io-index" 3797 + checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf" 3798 + dependencies = [ 3799 + "phf_shared 0.11.1", 3800 + "rand 0.8.5", 3801 + ] 3802 + 3803 + [[package]] 3804 + name = "phf_shared" 3805 + version = "0.10.0" 3806 + source = "registry+https://github.com/rust-lang/crates.io-index" 3807 + checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 3808 + dependencies = [ 3809 + "siphasher", 3810 + ] 3811 + 3812 + [[package]] 3813 + name = "phf_shared" 3814 + version = "0.11.1" 3815 + source = "registry+https://github.com/rust-lang/crates.io-index" 3816 + checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676" 3817 + dependencies = [ 3818 + "siphasher", 3819 + ] 3820 + 3821 + [[package]] 3822 + name = "pin-project" 3823 + version = "1.1.0" 3824 + source = "registry+https://github.com/rust-lang/crates.io-index" 3825 + checksum = "c95a7476719eab1e366eaf73d0260af3021184f18177925b07f54b30089ceead" 3826 + dependencies = [ 3827 + "pin-project-internal", 3828 + ] 3829 + 3830 + [[package]] 3831 + name = "pin-project-internal" 3832 + version = "1.1.0" 3833 + source = "registry+https://github.com/rust-lang/crates.io-index" 3834 + checksum = "39407670928234ebc5e6e580247dd567ad73a3578460c5990f9503df207e8f07" 3835 + dependencies = [ 3836 + "proc-macro2", 3837 + "quote", 3838 + "syn 2.0.18", 3839 + ] 3840 + 3841 + [[package]] 3842 + name = "pin-project-lite" 3843 + version = "0.2.9" 3844 + source = "registry+https://github.com/rust-lang/crates.io-index" 3845 + checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 3846 + 3847 + [[package]] 3848 + name = "pin-utils" 3849 + version = "0.1.0" 3850 + source = "registry+https://github.com/rust-lang/crates.io-index" 3851 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 3852 + 3853 + [[package]] 3854 + name = "pkg-config" 3855 + version = "0.3.27" 3856 + source = "registry+https://github.com/rust-lang/crates.io-index" 3857 + checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 3858 + 3859 + [[package]] 3860 + name = "plotters" 3861 + version = "0.3.4" 3862 + source = "registry+https://github.com/rust-lang/crates.io-index" 3863 + checksum = "2538b639e642295546c50fcd545198c9d64ee2a38620a628724a3b266d5fbf97" 3864 + dependencies = [ 3865 + "num-traits", 3866 + "plotters-backend", 3867 + "plotters-svg", 3868 + "wasm-bindgen", 3869 + "web-sys", 3870 + ] 3871 + 3872 + [[package]] 3873 + name = "plotters-backend" 3874 + version = "0.3.4" 3875 + source = "registry+https://github.com/rust-lang/crates.io-index" 3876 + checksum = "193228616381fecdc1224c62e96946dfbc73ff4384fba576e052ff8c1bea8142" 3877 + 3878 + [[package]] 3879 + name = "plotters-svg" 3880 + version = "0.3.3" 3881 + source = "registry+https://github.com/rust-lang/crates.io-index" 3882 + checksum = "f9a81d2759aae1dae668f783c308bc5c8ebd191ff4184aaa1b37f65a6ae5a56f" 3883 + dependencies = [ 3884 + "plotters-backend", 3885 + ] 3886 + 3887 + [[package]] 3888 + name = "pnet" 3889 + version = "0.31.0" 3890 + source = "registry+https://github.com/rust-lang/crates.io-index" 3891 + checksum = "0caaf5b11fd907ff15cf14a4477bfabca4b37ab9e447a4f8dead969a59cdafad" 3892 + dependencies = [ 3893 + "ipnetwork", 3894 + "pnet_base", 3895 + "pnet_datalink", 3896 + "pnet_packet", 3897 + "pnet_sys", 3898 + "pnet_transport", 3899 + ] 3900 + 3901 + [[package]] 3902 + name = "pnet_base" 3903 + version = "0.31.0" 3904 + source = "registry+https://github.com/rust-lang/crates.io-index" 3905 + checksum = "f9d3a993d49e5fd5d4d854d6999d4addca1f72d86c65adf224a36757161c02b6" 3906 + dependencies = [ 3907 + "no-std-net", 3908 + ] 3909 + 3910 + [[package]] 3911 + name = "pnet_datalink" 3912 + version = "0.31.0" 3913 + source = "registry+https://github.com/rust-lang/crates.io-index" 3914 + checksum = "e466faf03a98ad27f6e15cd27a2b7cc89e73e640a43527742977bc503c37f8aa" 3915 + dependencies = [ 3916 + "ipnetwork", 3917 + "libc", 3918 + "pnet_base", 3919 + "pnet_sys", 3920 + "winapi 0.3.9", 3921 + ] 3922 + 3923 + [[package]] 3924 + name = "pnet_macros" 3925 + version = "0.31.0" 3926 + source = "registry+https://github.com/rust-lang/crates.io-index" 3927 + checksum = "48dd52a5211fac27e7acb14cfc9f30ae16ae0e956b7b779c8214c74559cef4c3" 3928 + dependencies = [ 3929 + "proc-macro2", 3930 + "quote", 3931 + "regex", 3932 + "syn 1.0.109", 3933 + ] 3934 + 3935 + [[package]] 3936 + name = "pnet_macros_support" 3937 + version = "0.31.0" 3938 + source = "registry+https://github.com/rust-lang/crates.io-index" 3939 + checksum = "89de095dc7739349559913aed1ef6a11e73ceade4897dadc77c5e09de6740750" 3940 + dependencies = [ 3941 + "pnet_base", 3942 + ] 3943 + 3944 + [[package]] 3945 + name = "pnet_packet" 3946 + version = "0.31.0" 3947 + source = "registry+https://github.com/rust-lang/crates.io-index" 3948 + checksum = "bc3b5111e697c39c8b9795b9fdccbc301ab696699e88b9ea5a4e4628978f495f" 3949 + dependencies = [ 3950 + "glob", 3951 + "pnet_base", 3952 + "pnet_macros", 3953 + "pnet_macros_support", 3954 + ] 3955 + 3956 + [[package]] 3957 + name = "pnet_sys" 3958 + version = "0.31.0" 3959 + source = "registry+https://github.com/rust-lang/crates.io-index" 3960 + checksum = "328e231f0add6d247d82421bf3790b4b33b39c8930637f428eef24c4c6a90805" 3961 + dependencies = [ 3962 + "libc", 3963 + "winapi 0.3.9", 3964 + ] 3965 + 3966 + [[package]] 3967 + name = "pnet_transport" 3968 + version = "0.31.0" 3969 + source = "registry+https://github.com/rust-lang/crates.io-index" 3970 + checksum = "ff597185e6f1f5671b3122e4dba892a1c73e17c17e723d7669bd9299cbe7f124" 3971 + dependencies = [ 3972 + "libc", 3973 + "pnet_base", 3974 + "pnet_packet", 3975 + "pnet_sys", 3976 + ] 3977 + 3978 + [[package]] 3979 + name = "portable-atomic" 3980 + version = "1.3.3" 3981 + source = "registry+https://github.com/rust-lang/crates.io-index" 3982 + checksum = "767eb9f07d4a5ebcb39bbf2d452058a93c011373abf6832e24194a1c3f004794" 3983 + 3984 + [[package]] 3985 + name = "postcard" 3986 + version = "1.0.4" 3987 + source = "registry+https://github.com/rust-lang/crates.io-index" 3988 + checksum = "cfa512cd0d087cc9f99ad30a1bf64795b67871edbead083ffc3a4dfafa59aa00" 3989 + dependencies = [ 3990 + "cobs", 3991 + "serde", 3992 + ] 3993 + 3994 + [[package]] 3995 + name = "ppv-lite86" 3996 + version = "0.2.17" 3997 + source = "registry+https://github.com/rust-lang/crates.io-index" 3998 + checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 3999 + 4000 + [[package]] 4001 + name = "precomputed-hash" 4002 + version = "0.1.1" 4003 + source = "registry+https://github.com/rust-lang/crates.io-index" 4004 + checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 4005 + 4006 + [[package]] 4007 + name = "predicates" 4008 + version = "2.1.5" 4009 + source = "registry+https://github.com/rust-lang/crates.io-index" 4010 + checksum = "59230a63c37f3e18569bdb90e4a89cbf5bf8b06fea0b84e65ea10cc4df47addd" 4011 + dependencies = [ 4012 + "difflib", 4013 + "float-cmp", 4014 + "itertools", 4015 + "normalize-line-endings", 4016 + "predicates-core", 4017 + "regex", 4018 + ] 4019 + 4020 + [[package]] 4021 + name = "predicates-core" 4022 + version = "1.0.6" 4023 + source = "registry+https://github.com/rust-lang/crates.io-index" 4024 + checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" 4025 + 4026 + [[package]] 4027 + name = "predicates-tree" 4028 + version = "1.0.9" 4029 + source = "registry+https://github.com/rust-lang/crates.io-index" 4030 + checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf" 4031 + dependencies = [ 4032 + "predicates-core", 4033 + "termtree", 4034 + ] 4035 + 4036 + [[package]] 4037 + name = "pretty_assertions" 4038 + version = "1.3.0" 4039 + source = "registry+https://github.com/rust-lang/crates.io-index" 4040 + checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755" 4041 + dependencies = [ 4042 + "ctor", 4043 + "diff", 4044 + "output_vt100", 4045 + "yansi", 4046 + ] 4047 + 4048 + [[package]] 4049 + name = "prettyplease" 4050 + version = "0.1.25" 4051 + source = "registry+https://github.com/rust-lang/crates.io-index" 4052 + checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86" 4053 + dependencies = [ 4054 + "proc-macro2", 4055 + "syn 1.0.109", 4056 + ] 4057 + 4058 + [[package]] 4059 + name = "prettyplease" 4060 + version = "0.2.6" 4061 + source = "registry+https://github.com/rust-lang/crates.io-index" 4062 + checksum = "3b69d39aab54d069e7f2fe8cb970493e7834601ca2d8c65fd7bbd183578080d1" 4063 + dependencies = [ 4064 + "proc-macro2", 4065 + "syn 2.0.18", 4066 + ] 4067 + 4068 + [[package]] 4069 + name = "proc-macro-crate" 4070 + version = "0.1.5" 4071 + source = "registry+https://github.com/rust-lang/crates.io-index" 4072 + checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785" 4073 + dependencies = [ 4074 + "toml 0.5.11", 4075 + ] 4076 + 4077 + [[package]] 4078 + name = "proc-macro-crate" 4079 + version = "1.3.1" 4080 + source = "registry+https://github.com/rust-lang/crates.io-index" 4081 + checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 4082 + dependencies = [ 4083 + "once_cell", 4084 + "toml_edit 0.19.10", 4085 + ] 4086 + 4087 + [[package]] 4088 + name = "proc-macro-error" 4089 + version = "1.0.4" 4090 + source = "registry+https://github.com/rust-lang/crates.io-index" 4091 + checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 4092 + dependencies = [ 4093 + "proc-macro-error-attr", 4094 + "proc-macro2", 4095 + "quote", 4096 + "syn 1.0.109", 4097 + "version_check", 4098 + ] 4099 + 4100 + [[package]] 4101 + name = "proc-macro-error-attr" 4102 + version = "1.0.4" 4103 + source = "registry+https://github.com/rust-lang/crates.io-index" 4104 + checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 4105 + dependencies = [ 4106 + "proc-macro2", 4107 + "quote", 4108 + "version_check", 4109 + ] 4110 + 4111 + [[package]] 4112 + name = "proc-macro2" 4113 + version = "1.0.59" 4114 + source = "registry+https://github.com/rust-lang/crates.io-index" 4115 + checksum = "6aeca18b86b413c660b781aa319e4e2648a3e6f9eadc9b47e9038e6fe9f3451b" 4116 + dependencies = [ 4117 + "unicode-ident", 4118 + ] 4119 + 4120 + [[package]] 4121 + name = "procfs" 4122 + version = "0.14.2" 4123 + source = "registry+https://github.com/rust-lang/crates.io-index" 4124 + checksum = "b1de8dacb0873f77e6aefc6d71e044761fcc68060290f5b1089fcdf84626bb69" 4125 + dependencies = [ 4126 + "bitflags", 4127 + "byteorder", 4128 + "hex", 4129 + "lazy_static", 4130 + "rustix 0.36.14", 4131 + ] 4132 + 4133 + [[package]] 4134 + name = "prometheus" 4135 + version = "0.13.3" 4136 + source = "registry+https://github.com/rust-lang/crates.io-index" 4137 + checksum = "449811d15fbdf5ceb5c1144416066429cf82316e2ec8ce0c1f6f8a02e7bbcf8c" 4138 + dependencies = [ 4139 + "cfg-if", 4140 + "fnv", 4141 + "lazy_static", 4142 + "libc", 4143 + "memchr", 4144 + "parking_lot 0.12.1", 4145 + "procfs", 4146 + "protobuf", 4147 + "thiserror", 4148 + ] 4149 + 4150 + [[package]] 4151 + name = "proptest" 4152 + version = "1.2.0" 4153 + source = "registry+https://github.com/rust-lang/crates.io-index" 4154 + checksum = "4e35c06b98bf36aba164cc17cb25f7e232f5c4aeea73baa14b8a9f0d92dbfa65" 4155 + dependencies = [ 4156 + "bit-set", 4157 + "bitflags", 4158 + "byteorder", 4159 + "lazy_static", 4160 + "num-traits", 4161 + "rand 0.8.5", 4162 + "rand_chacha 0.3.1", 4163 + "rand_xorshift", 4164 + "regex-syntax 0.6.29", 4165 + "rusty-fork", 4166 + "tempfile", 4167 + "unarray", 4168 + ] 4169 + 4170 + [[package]] 4171 + name = "prost" 4172 + version = "0.11.9" 4173 + source = "registry+https://github.com/rust-lang/crates.io-index" 4174 + checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd" 4175 + dependencies = [ 4176 + "bytes", 4177 + "prost-derive", 4178 + ] 4179 + 4180 + [[package]] 4181 + name = "prost-build" 4182 + version = "0.11.9" 4183 + source = "registry+https://github.com/rust-lang/crates.io-index" 4184 + checksum = "119533552c9a7ffacc21e099c24a0ac8bb19c2a2a3f363de84cd9b844feab270" 4185 + dependencies = [ 4186 + "bytes", 4187 + "heck 0.4.1", 4188 + "itertools", 4189 + "lazy_static", 4190 + "log", 4191 + "multimap", 4192 + "petgraph", 4193 + "prettyplease 0.1.25", 4194 + "prost", 4195 + "prost-types", 4196 + "regex", 4197 + "syn 1.0.109", 4198 + "tempfile", 4199 + "which", 4200 + ] 4201 + 4202 + [[package]] 4203 + name = "prost-derive" 4204 + version = "0.11.9" 4205 + source = "registry+https://github.com/rust-lang/crates.io-index" 4206 + checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4" 4207 + dependencies = [ 4208 + "anyhow", 4209 + "itertools", 4210 + "proc-macro2", 4211 + "quote", 4212 + "syn 1.0.109", 4213 + ] 4214 + 4215 + [[package]] 4216 + name = "prost-types" 4217 + version = "0.11.9" 4218 + source = "registry+https://github.com/rust-lang/crates.io-index" 4219 + checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13" 4220 + dependencies = [ 4221 + "prost", 4222 + ] 4223 + 4224 + [[package]] 4225 + name = "protobuf" 4226 + version = "2.28.0" 4227 + source = "registry+https://github.com/rust-lang/crates.io-index" 4228 + checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94" 4229 + 4230 + [[package]] 4231 + name = "ptr_meta" 4232 + version = "0.1.4" 4233 + source = "registry+https://github.com/rust-lang/crates.io-index" 4234 + checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1" 4235 + dependencies = [ 4236 + "ptr_meta_derive", 4237 + ] 4238 + 4239 + [[package]] 4240 + name = "ptr_meta_derive" 4241 + version = "0.1.4" 4242 + source = "registry+https://github.com/rust-lang/crates.io-index" 4243 + checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac" 4244 + dependencies = [ 4245 + "proc-macro2", 4246 + "quote", 4247 + "syn 1.0.109", 4248 + ] 4249 + 4250 + [[package]] 4251 + name = "pulsar" 4252 + version = "5.0.2" 4253 + source = "git+https://github.com/quickwit-oss/pulsar-rs.git?rev=f9eff04#f9eff04caf184906c6466fdde8b5bb0fd3c92659" 4254 + dependencies = [ 4255 + "async-trait", 4256 + "bit-vec", 4257 + "bytes", 4258 + "chrono", 4259 + "crc", 4260 + "data-url", 4261 + "flate2", 4262 + "futures", 4263 + "futures-io", 4264 + "futures-timer", 4265 + "log", 4266 + "lz4", 4267 + "native-tls", 4268 + "nom", 4269 + "oauth2", 4270 + "openidconnect", 4271 + "pem", 4272 + "prost", 4273 + "prost-build", 4274 + "prost-derive", 4275 + "rand 0.8.5", 4276 + "regex", 4277 + "serde", 4278 + "serde_json", 4279 + "snap", 4280 + "tokio", 4281 + "tokio-native-tls", 4282 + "tokio-util", 4283 + "url", 4284 + "uuid", 4285 + "zstd 0.11.2+zstd.1.5.2", 4286 + ] 4287 + 4288 + [[package]] 4289 + name = "quick-error" 4290 + version = "1.2.3" 4291 + source = "registry+https://github.com/rust-lang/crates.io-index" 4292 + checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" 4293 + 4294 + [[package]] 4295 + name = "quickwit-actors" 4296 + version = "0.6.0" 4297 + dependencies = [ 4298 + "anyhow", 4299 + "async-trait", 4300 + "criterion", 4301 + "flume", 4302 + "futures", 4303 + "once_cell", 4304 + "quickwit-common", 4305 + "quickwit-proto", 4306 + "rand 0.8.5", 4307 + "serde", 4308 + "serde_json", 4309 + "thiserror", 4310 + "tokio", 4311 + "tracing", 4312 + ] 4313 + 4314 + [[package]] 4315 + name = "quickwit-aws" 4316 + version = "0.6.0" 4317 + dependencies = [ 4318 + "anyhow", 4319 + "async-trait", 4320 + "aws-config", 4321 + "aws-sdk-kinesis", 4322 + "aws-sdk-s3", 4323 + "aws-smithy-async", 4324 + "aws-smithy-client", 4325 + "aws-types", 4326 + "futures", 4327 + "hyper", 4328 + "hyper-rustls 0.24.0", 4329 + "once_cell", 4330 + "quickwit-actors", 4331 + "rand 0.8.5", 4332 + "thiserror", 4333 + "tokio", 4334 + "tower", 4335 + "tracing", 4336 + ] 4337 + 4338 + [[package]] 4339 + name = "quickwit-cli" 4340 + version = "0.6.0" 4341 + dependencies = [ 4342 + "anyhow", 4343 + "async-trait", 4344 + "atty", 4345 + "byte-unit", 4346 + "bytes", 4347 + "chitchat", 4348 + "clap 4.3.0", 4349 + "colored", 4350 + "console-subscriber", 4351 + "dialoguer", 4352 + "futures", 4353 + "humantime", 4354 + "indicatif", 4355 + "itertools", 4356 + "once_cell", 4357 + "openssl-probe", 4358 + "opentelemetry", 4359 + "opentelemetry-jaeger", 4360 + "opentelemetry-otlp", 4361 + "predicates", 4362 + "quickwit-actors", 4363 + "quickwit-cluster", 4364 + "quickwit-common", 4365 + "quickwit-config", 4366 + "quickwit-core", 4367 + "quickwit-directories", 4368 + "quickwit-doc-mapper", 4369 + "quickwit-indexing", 4370 + "quickwit-metastore", 4371 + "quickwit-proto", 4372 + "quickwit-rest-client", 4373 + "quickwit-search", 4374 + "quickwit-serve", 4375 + "quickwit-storage", 4376 + "quickwit-telemetry", 4377 + "regex", 4378 + "reqwest", 4379 + "serde_json", 4380 + "tabled", 4381 + "tempfile", 4382 + "thousands", 4383 + "tikv-jemalloc-ctl", 4384 + "tikv-jemallocator", 4385 + "time 0.3.21", 4386 + "tokio", 4387 + "tokio-util", 4388 + "toml 0.6.0", 4389 + "tonic 0.9.2", 4390 + "tracing", 4391 + "tracing-opentelemetry", 4392 + "tracing-subscriber", 4393 + ] 4394 + 4395 + [[package]] 4396 + name = "quickwit-cluster" 4397 + version = "0.6.0" 4398 + dependencies = [ 4399 + "anyhow", 4400 + "async-trait", 4401 + "chitchat", 4402 + "futures", 4403 + "itertools", 4404 + "quickwit-common", 4405 + "quickwit-config", 4406 + "quickwit-proto", 4407 + "rand 0.8.5", 4408 + "serde", 4409 + "serde_json", 4410 + "tempfile", 4411 + "thiserror", 4412 + "time 0.3.21", 4413 + "tokio", 4414 + "tokio-stream", 4415 + "tonic 0.9.2", 4416 + "tracing", 4417 + "ulid", 4418 + "utoipa", 4419 + ] 4420 + 4421 + [[package]] 4422 + name = "quickwit-codegen" 4423 + version = "0.6.0" 4424 + dependencies = [ 4425 + "anyhow", 4426 + "heck 0.4.1", 4427 + "prettyplease 0.2.6", 4428 + "proc-macro2", 4429 + "prost", 4430 + "prost-build", 4431 + "quote", 4432 + "serde", 4433 + "syn 2.0.18", 4434 + "tonic-build", 4435 + ] 4436 + 4437 + [[package]] 4438 + name = "quickwit-codegen-example" 4439 + version = "0.6.0" 4440 + dependencies = [ 4441 + "async-trait", 4442 + "dyn-clone", 4443 + "http", 4444 + "hyper", 4445 + "mockall", 4446 + "prost", 4447 + "quickwit-actors", 4448 + "quickwit-codegen", 4449 + "quickwit-common", 4450 + "serde", 4451 + "thiserror", 4452 + "tokio", 4453 + "tokio-stream", 4454 + "tonic 0.9.2", 4455 + "tower", 4456 + "utoipa", 4457 + ] 4458 + 4459 + [[package]] 4460 + name = "quickwit-common" 4461 + version = "0.6.0" 4462 + dependencies = [ 4463 + "anyhow", 4464 + "async-speed-limit", 4465 + "async-trait", 4466 + "byte-unit", 4467 + "colored", 4468 + "dyn-clone", 4469 + "env_logger", 4470 + "futures", 4471 + "home", 4472 + "hostname", 4473 + "http", 4474 + "hyper", 4475 + "itertools", 4476 + "num_cpus", 4477 + "once_cell", 4478 + "pin-project", 4479 + "pnet", 4480 + "prometheus", 4481 + "quickwit-macros", 4482 + "rand 0.8.5", 4483 + "regex", 4484 + "serde", 4485 + "serde_json", 4486 + "tempfile", 4487 + "thiserror", 4488 + "tokio", 4489 + "tokio-stream", 4490 + "tonic 0.9.2", 4491 + "tower", 4492 + "tracing", 4493 + "utoipa", 4494 + "warp", 4495 + ] 4496 + 4497 + [[package]] 4498 + name = "quickwit-config" 4499 + version = "0.6.0" 4500 + dependencies = [ 4501 + "anyhow", 4502 + "byte-unit", 4503 + "bytes", 4504 + "chrono", 4505 + "cron", 4506 + "enum-iterator", 4507 + "humantime", 4508 + "itertools", 4509 + "json_comments", 4510 + "new_string_template", 4511 + "once_cell", 4512 + "quickwit-common", 4513 + "quickwit-doc-mapper", 4514 + "regex", 4515 + "serde", 4516 + "serde_json", 4517 + "serde_with 2.3.3", 4518 + "serde_yaml 0.9.21", 4519 + "tokio", 4520 + "toml 0.6.0", 4521 + "tracing", 4522 + "utoipa", 4523 + "vrl", 4524 + "vrl-stdlib", 4525 + ] 4526 + 4527 + [[package]] 4528 + name = "quickwit-control-plane" 4529 + version = "0.6.0" 4530 + dependencies = [ 4531 + "anyhow", 4532 + "async-trait", 4533 + "chitchat", 4534 + "dyn-clone", 4535 + "http", 4536 + "hyper", 4537 + "itertools", 4538 + "mockall", 4539 + "proptest", 4540 + "prost", 4541 + "quickwit-actors", 4542 + "quickwit-cluster", 4543 + "quickwit-codegen", 4544 + "quickwit-common", 4545 + "quickwit-config", 4546 + "quickwit-grpc-clients", 4547 + "quickwit-indexing", 4548 + "quickwit-metastore", 4549 + "quickwit-proto", 4550 + "quickwit-storage", 4551 + "rand 0.8.5", 4552 + "serde", 4553 + "serde_json", 4554 + "thiserror", 4555 + "time 0.3.21", 4556 + "tokio", 4557 + "tokio-stream", 4558 + "tonic 0.9.2", 4559 + "tower", 4560 + "tracing", 4561 + "utoipa", 4562 + ] 4563 + 4564 + [[package]] 4565 + name = "quickwit-core" 4566 + version = "0.6.0" 4567 + dependencies = [ 4568 + "anyhow", 4569 + "async-trait", 4570 + "byte-unit", 4571 + "futures", 4572 + "futures-util", 4573 + "mockall", 4574 + "quickwit-common", 4575 + "quickwit-config", 4576 + "quickwit-directories", 4577 + "quickwit-doc-mapper", 4578 + "quickwit-indexing", 4579 + "quickwit-janitor", 4580 + "quickwit-metastore", 4581 + "quickwit-proto", 4582 + "quickwit-storage", 4583 + "rand 0.8.5", 4584 + "serde", 4585 + "serde_json", 4586 + "serde_yaml 0.9.21", 4587 + "tantivy", 4588 + "tempfile", 4589 + "thiserror", 4590 + "tokio", 4591 + "tokio-stream", 4592 + "tokio-util", 4593 + "tracing", 4594 + ] 4595 + 4596 + [[package]] 4597 + name = "quickwit-datetime" 4598 + version = "0.6.0" 4599 + dependencies = [ 4600 + "itertools", 4601 + "ouroboros", 4602 + "serde", 4603 + "serde_json", 4604 + "tantivy", 4605 + "time 0.3.21", 4606 + "time-fmt", 4607 + ] 4608 + 4609 + [[package]] 4610 + name = "quickwit-directories" 4611 + version = "0.6.0" 4612 + dependencies = [ 4613 + "anyhow", 4614 + "async-trait", 4615 + "futures", 4616 + "once_cell", 4617 + "postcard", 4618 + "quickwit-common", 4619 + "quickwit-storage", 4620 + "serde", 4621 + "serde_json", 4622 + "tantivy", 4623 + "tempfile", 4624 + "thiserror", 4625 + "time 0.3.21", 4626 + "tokio", 4627 + "tracing", 4628 + ] 4629 + 4630 + [[package]] 4631 + name = "quickwit-doc-mapper" 4632 + version = "0.6.0" 4633 + dependencies = [ 4634 + "anyhow", 4635 + "base64 0.21.2", 4636 + "criterion", 4637 + "dyn-clone", 4638 + "fnv", 4639 + "hex", 4640 + "indexmap", 4641 + "itertools", 4642 + "matches", 4643 + "mockall", 4644 + "nom", 4645 + "once_cell", 4646 + "proptest", 4647 + "quickwit-datetime", 4648 + "quickwit-proto", 4649 + "quickwit-query", 4650 + "regex", 4651 + "serde", 4652 + "serde_json", 4653 + "serde_yaml 0.9.21", 4654 + "siphasher", 4655 + "tantivy", 4656 + "thiserror", 4657 + "time 0.3.21", 4658 + "tracing", 4659 + "typetag", 4660 + "utoipa", 4661 + ] 4662 + 4663 + [[package]] 4664 + name = "quickwit-grpc-clients" 4665 + version = "0.6.0" 4666 + dependencies = [ 4667 + "anyhow", 4668 + "async-trait", 4669 + "futures", 4670 + "itertools", 4671 + "quickwit-cluster", 4672 + "quickwit-common", 4673 + "quickwit-config", 4674 + "quickwit-proto", 4675 + "tokio", 4676 + "tokio-stream", 4677 + "tonic 0.9.2", 4678 + "tower", 4679 + "tracing", 4680 + ] 4681 + 4682 + [[package]] 4683 + name = "quickwit-indexing" 4684 + version = "0.6.0" 4685 + dependencies = [ 4686 + "anyhow", 4687 + "arc-swap", 4688 + "async-trait", 4689 + "aws-config", 4690 + "aws-sdk-kinesis", 4691 + "aws-smithy-client", 4692 + "backoff", 4693 + "byte-unit", 4694 + "bytes", 4695 + "chitchat", 4696 + "criterion", 4697 + "fail", 4698 + "flume", 4699 + "fnv", 4700 + "futures", 4701 + "itertools", 4702 + "libz-sys", 4703 + "mockall", 4704 + "once_cell", 4705 + "oneshot", 4706 + "openssl", 4707 + "proptest", 4708 + "pulsar", 4709 + "quickwit-actors", 4710 + "quickwit-aws", 4711 + "quickwit-cluster", 4712 + "quickwit-common", 4713 + "quickwit-config", 4714 + "quickwit-directories", 4715 + "quickwit-doc-mapper", 4716 + "quickwit-grpc-clients", 4717 + "quickwit-ingest", 4718 + "quickwit-metastore", 4719 + "quickwit-proto", 4720 + "quickwit-query", 4721 + "quickwit-storage", 4722 + "rand 0.8.5", 4723 + "rdkafka", 4724 + "reqwest", 4725 + "serde", 4726 + "serde_json", 4727 + "tantivy", 4728 + "tempfile", 4729 + "thiserror", 4730 + "time 0.3.21", 4731 + "tokio", 4732 + "tokio-stream", 4733 + "tracing", 4734 + "ulid", 4735 + "utoipa", 4736 + "vrl", 4737 + "vrl-stdlib", 4738 + ] 4739 + 4740 + [[package]] 4741 + name = "quickwit-ingest" 4742 + version = "0.6.0" 4743 + dependencies = [ 4744 + "anyhow", 4745 + "async-trait", 4746 + "byte-unit", 4747 + "bytes", 4748 + "dyn-clone", 4749 + "flume", 4750 + "futures", 4751 + "http", 4752 + "hyper", 4753 + "mockall", 4754 + "mrecordlog", 4755 + "once_cell", 4756 + "prost", 4757 + "quickwit-actors", 4758 + "quickwit-codegen", 4759 + "quickwit-common", 4760 + "quickwit-config", 4761 + "quickwit-proto", 4762 + "rand 0.8.5", 4763 + "rand_distr", 4764 + "serde", 4765 + "serde_json", 4766 + "tempfile", 4767 + "thiserror", 4768 + "tokio", 4769 + "tonic 0.9.2", 4770 + "tower", 4771 + "tracing", 4772 + "ulid", 4773 + "utoipa", 4774 + ] 4775 + 4776 + [[package]] 4777 + name = "quickwit-integration-tests" 4778 + version = "0.6.0" 4779 + dependencies = [ 4780 + "anyhow", 4781 + "bytes", 4782 + "chitchat", 4783 + "futures-util", 4784 + "hyper", 4785 + "itertools", 4786 + "quickwit-actors", 4787 + "quickwit-cluster", 4788 + "quickwit-common", 4789 + "quickwit-config", 4790 + "quickwit-indexing", 4791 + "quickwit-janitor", 4792 + "quickwit-metastore", 4793 + "quickwit-proto", 4794 + "quickwit-rest-client", 4795 + "quickwit-search", 4796 + "quickwit-serve", 4797 + "quickwit-storage", 4798 + "rand 0.8.5", 4799 + "reqwest", 4800 + "serde", 4801 + "serde_json", 4802 + "tempfile", 4803 + "tokio", 4804 + "tokio-stream", 4805 + "tracing", 4806 + ] 4807 + 4808 + [[package]] 4809 + name = "quickwit-jaeger" 4810 + version = "0.6.0" 4811 + dependencies = [ 4812 + "anyhow", 4813 + "async-trait", 4814 + "base64 0.21.2", 4815 + "itertools", 4816 + "once_cell", 4817 + "prost", 4818 + "prost-types", 4819 + "quickwit-actors", 4820 + "quickwit-cluster", 4821 + "quickwit-common", 4822 + "quickwit-config", 4823 + "quickwit-grpc-clients", 4824 + "quickwit-indexing", 4825 + "quickwit-ingest", 4826 + "quickwit-metastore", 4827 + "quickwit-opentelemetry", 4828 + "quickwit-proto", 4829 + "quickwit-query", 4830 + "quickwit-search", 4831 + "quickwit-storage", 4832 + "serde", 4833 + "serde_json", 4834 + "tantivy", 4835 + "tempfile", 4836 + "time 0.3.21", 4837 + "tokio", 4838 + "tokio-stream", 4839 + "tonic 0.9.2", 4840 + "tracing", 4841 + ] 4842 + 4843 + [[package]] 4844 + name = "quickwit-janitor" 4845 + version = "0.6.0" 4846 + dependencies = [ 4847 + "anyhow", 4848 + "async-trait", 4849 + "chrono", 4850 + "futures", 4851 + "itertools", 4852 + "mockall", 4853 + "once_cell", 4854 + "quickwit-actors", 4855 + "quickwit-cluster", 4856 + "quickwit-common", 4857 + "quickwit-config", 4858 + "quickwit-directories", 4859 + "quickwit-doc-mapper", 4860 + "quickwit-grpc-clients", 4861 + "quickwit-indexing", 4862 + "quickwit-metastore", 4863 + "quickwit-proto", 4864 + "quickwit-query", 4865 + "quickwit-search", 4866 + "quickwit-storage", 4867 + "serde", 4868 + "serde_json", 4869 + "tantivy", 4870 + "tempfile", 4871 + "thiserror", 4872 + "time 0.3.21", 4873 + "tokio", 4874 + "tokio-stream", 4875 + "tracing", 4876 + "ulid", 4877 + "utoipa", 4878 + ] 4879 + 4880 + [[package]] 4881 + name = "quickwit-macros" 4882 + version = "0.6.0" 4883 + dependencies = [ 4884 + "proc-macro2", 4885 + "quickwit-macros-impl", 4886 + ] 4887 + 4888 + [[package]] 4889 + name = "quickwit-macros-impl" 4890 + version = "0.6.0" 4891 + dependencies = [ 4892 + "heck 0.4.1", 4893 + "proc-macro2", 4894 + "quote", 4895 + "syn 2.0.18", 4896 + ] 4897 + 4898 + [[package]] 4899 + name = "quickwit-metastore" 4900 + version = "0.6.0" 4901 + dependencies = [ 4902 + "anyhow", 4903 + "async-trait", 4904 + "byte-unit", 4905 + "dotenv", 4906 + "futures", 4907 + "http", 4908 + "itertools", 4909 + "md5", 4910 + "mockall", 4911 + "once_cell", 4912 + "quickwit-common", 4913 + "quickwit-config", 4914 + "quickwit-doc-mapper", 4915 + "quickwit-proto", 4916 + "quickwit-storage", 4917 + "rand 0.8.5", 4918 + "regex", 4919 + "serde", 4920 + "serde_json", 4921 + "sqlx", 4922 + "tempfile", 4923 + "thiserror", 4924 + "time 0.3.21", 4925 + "tokio", 4926 + "tokio-stream", 4927 + "tower", 4928 + "tracing", 4929 + "tracing-subscriber", 4930 + "ulid", 4931 + "utoipa", 4932 + ] 4933 + 4934 + [[package]] 4935 + name = "quickwit-metastore-utils" 4936 + version = "0.1.0" 4937 + dependencies = [ 4938 + "anyhow", 4939 + "async-trait", 4940 + "quickwit-proto", 4941 + "serde", 4942 + "serde_json", 4943 + "structopt", 4944 + "tokio", 4945 + ] 4946 + 4947 + [[package]] 4948 + name = "quickwit-opentelemetry" 4949 + version = "0.6.0" 4950 + dependencies = [ 4951 + "anyhow", 4952 + "async-trait", 4953 + "base64 0.21.2", 4954 + "once_cell", 4955 + "prost", 4956 + "quickwit-actors", 4957 + "quickwit-common", 4958 + "quickwit-config", 4959 + "quickwit-ingest", 4960 + "quickwit-metastore", 4961 + "quickwit-proto", 4962 + "serde", 4963 + "serde_json", 4964 + "thiserror", 4965 + "tokio", 4966 + "tonic 0.9.2", 4967 + "tracing", 4968 + ] 4969 + 4970 + [[package]] 4971 + name = "quickwit-proto" 4972 + version = "0.6.0" 4973 + dependencies = [ 4974 + "anyhow", 4975 + "glob", 4976 + "opentelemetry", 4977 + "prost", 4978 + "prost-build", 4979 + "prost-types", 4980 + "quickwit-query", 4981 + "serde", 4982 + "serde_json", 4983 + "tonic 0.9.2", 4984 + "tonic-build", 4985 + "tracing", 4986 + "tracing-opentelemetry", 4987 + "ulid", 4988 + "utoipa", 4989 + ] 4990 + 4991 + [[package]] 4992 + name = "quickwit-query" 4993 + version = "0.6.0" 4994 + dependencies = [ 4995 + "anyhow", 4996 + "base64 0.21.2", 4997 + "hex", 4998 + "once_cell", 4999 + "proptest", 5000 + "quickwit-datetime", 5001 + "serde", 5002 + "serde_json", 5003 + "serde_with 2.3.3", 5004 + "tantivy", 5005 + "thiserror", 5006 + "time 0.3.21", 5007 + ] 5008 + 5009 + [[package]] 5010 + name = "quickwit-rest-client" 5011 + version = "0.6.0" 5012 + dependencies = [ 5013 + "anyhow", 5014 + "bytes", 5015 + "quickwit-actors", 5016 + "quickwit-cluster", 5017 + "quickwit-common", 5018 + "quickwit-config", 5019 + "quickwit-indexing", 5020 + "quickwit-ingest", 5021 + "quickwit-metastore", 5022 + "quickwit-search", 5023 + "quickwit-serve", 5024 + "reqwest", 5025 + "serde", 5026 + "serde_json", 5027 + "thiserror", 5028 + "tokio", 5029 + "tracing", 5030 + "wiremock", 5031 + ] 5032 + 5033 + [[package]] 5034 + name = "quickwit-search" 5035 + version = "0.6.0" 5036 + dependencies = [ 5037 + "anyhow", 5038 + "assert-json-diff 2.0.2", 5039 + "async-trait", 5040 + "bytes", 5041 + "chitchat", 5042 + "fnv", 5043 + "futures", 5044 + "http", 5045 + "hyper", 5046 + "itertools", 5047 + "lru", 5048 + "mockall", 5049 + "once_cell", 5050 + "opentelemetry", 5051 + "postcard", 5052 + "proptest", 5053 + "prost", 5054 + "quickwit-cluster", 5055 + "quickwit-common", 5056 + "quickwit-config", 5057 + "quickwit-directories", 5058 + "quickwit-doc-mapper", 5059 + "quickwit-grpc-clients", 5060 + "quickwit-indexing", 5061 + "quickwit-metastore", 5062 + "quickwit-opentelemetry", 5063 + "quickwit-proto", 5064 + "quickwit-query", 5065 + "quickwit-storage", 5066 + "rayon", 5067 + "serde", 5068 + "serde_json", 5069 + "serde_with 2.3.3", 5070 + "tantivy", 5071 + "tempfile", 5072 + "thiserror", 5073 + "tokio", 5074 + "tokio-stream", 5075 + "tokio-util", 5076 + "tower", 5077 + "tracing", 5078 + "tracing-opentelemetry", 5079 + "utoipa", 5080 + ] 5081 + 5082 + [[package]] 5083 + name = "quickwit-serve" 5084 + version = "0.6.0" 5085 + dependencies = [ 5086 + "anyhow", 5087 + "assert-json-diff 2.0.2", 5088 + "async-trait", 5089 + "byte-unit", 5090 + "bytes", 5091 + "chitchat", 5092 + "elasticsearch-dsl", 5093 + "futures", 5094 + "futures-util", 5095 + "http-serde", 5096 + "hyper", 5097 + "itertools", 5098 + "mime_guess", 5099 + "mockall", 5100 + "num_cpus", 5101 + "once_cell", 5102 + "opentelemetry", 5103 + "quickwit-actors", 5104 + "quickwit-cluster", 5105 + "quickwit-common", 5106 + "quickwit-config", 5107 + "quickwit-control-plane", 5108 + "quickwit-core", 5109 + "quickwit-directories", 5110 + "quickwit-doc-mapper", 5111 + "quickwit-grpc-clients", 5112 + "quickwit-indexing", 5113 + "quickwit-ingest", 5114 + "quickwit-jaeger", 5115 + "quickwit-janitor", 5116 + "quickwit-metastore", 5117 + "quickwit-opentelemetry", 5118 + "quickwit-proto", 5119 + "quickwit-query", 5120 + "quickwit-search", 5121 + "quickwit-storage", 5122 + "quickwit-telemetry", 5123 + "rand 0.8.5", 5124 + "regex", 5125 + "rust-embed", 5126 + "serde", 5127 + "serde_json", 5128 + "serde_qs 0.10.1", 5129 + "serde_with 2.3.3", 5130 + "tempfile", 5131 + "termcolor", 5132 + "thiserror", 5133 + "time 0.3.21", 5134 + "tokio", 5135 + "tokio-stream", 5136 + "tower", 5137 + "tower-http", 5138 + "tracing", 5139 + "tracing-opentelemetry", 5140 + "utoipa", 5141 + "warp", 5142 + ] 5143 + 5144 + [[package]] 5145 + name = "quickwit-storage" 5146 + version = "0.6.0" 5147 + dependencies = [ 5148 + "anyhow", 5149 + "async-trait", 5150 + "aws-config", 5151 + "aws-sdk-s3", 5152 + "aws-smithy-client", 5153 + "aws-smithy-http", 5154 + "aws-smithy-types", 5155 + "azure_core", 5156 + "azure_storage", 5157 + "azure_storage_blobs", 5158 + "base64 0.21.2", 5159 + "bytes", 5160 + "fnv", 5161 + "futures", 5162 + "hyper", 5163 + "lru", 5164 + "md5", 5165 + "mockall", 5166 + "once_cell", 5167 + "proptest", 5168 + "quickwit-aws", 5169 + "quickwit-common", 5170 + "quickwit-config", 5171 + "rand 0.8.5", 5172 + "regex", 5173 + "serde", 5174 + "serde_json", 5175 + "tantivy", 5176 + "tempfile", 5177 + "thiserror", 5178 + "tokio", 5179 + "tokio-stream", 5180 + "tokio-util", 5181 + "tracing", 5182 + "tracing-subscriber", 5183 + ] 5184 + 5185 + [[package]] 5186 + name = "quickwit-telemetry" 5187 + version = "0.6.0" 5188 + dependencies = [ 5189 + "async-trait", 5190 + "encoding_rs", 5191 + "hostname", 5192 + "md5", 5193 + "once_cell", 5194 + "reqwest", 5195 + "serde", 5196 + "serde_json", 5197 + "tokio", 5198 + "tracing", 5199 + "username", 5200 + "uuid", 5201 + ] 5202 + 5203 + [[package]] 5204 + name = "quote" 5205 + version = "1.0.28" 5206 + source = "registry+https://github.com/rust-lang/crates.io-index" 5207 + checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488" 5208 + dependencies = [ 5209 + "proc-macro2", 5210 + ] 5211 + 5212 + [[package]] 5213 + name = "quoted_printable" 5214 + version = "0.4.8" 5215 + source = "registry+https://github.com/rust-lang/crates.io-index" 5216 + checksum = "5a3866219251662ec3b26fc217e3e05bf9c4f84325234dfb96bf0bf840889e49" 5217 + 5218 + [[package]] 5219 + name = "radium" 5220 + version = "0.7.0" 5221 + source = "registry+https://github.com/rust-lang/crates.io-index" 5222 + checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 5223 + 5224 + [[package]] 5225 + name = "rand" 5226 + version = "0.7.3" 5227 + source = "registry+https://github.com/rust-lang/crates.io-index" 5228 + checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 5229 + dependencies = [ 5230 + "getrandom 0.1.16", 5231 + "libc", 5232 + "rand_chacha 0.2.2", 5233 + "rand_core 0.5.1", 5234 + "rand_hc", 5235 + ] 5236 + 5237 + [[package]] 5238 + name = "rand" 5239 + version = "0.8.5" 5240 + source = "registry+https://github.com/rust-lang/crates.io-index" 5241 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 5242 + dependencies = [ 5243 + "libc", 5244 + "rand_chacha 0.3.1", 5245 + "rand_core 0.6.4", 5246 + ] 5247 + 5248 + [[package]] 5249 + name = "rand_chacha" 5250 + version = "0.2.2" 5251 + source = "registry+https://github.com/rust-lang/crates.io-index" 5252 + checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 5253 + dependencies = [ 5254 + "ppv-lite86", 5255 + "rand_core 0.5.1", 5256 + ] 5257 + 5258 + [[package]] 5259 + name = "rand_chacha" 5260 + version = "0.3.1" 5261 + source = "registry+https://github.com/rust-lang/crates.io-index" 5262 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 5263 + dependencies = [ 5264 + "ppv-lite86", 5265 + "rand_core 0.6.4", 5266 + ] 5267 + 5268 + [[package]] 5269 + name = "rand_core" 5270 + version = "0.5.1" 5271 + source = "registry+https://github.com/rust-lang/crates.io-index" 5272 + checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 5273 + dependencies = [ 5274 + "getrandom 0.1.16", 5275 + ] 5276 + 5277 + [[package]] 5278 + name = "rand_core" 5279 + version = "0.6.4" 5280 + source = "registry+https://github.com/rust-lang/crates.io-index" 5281 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 5282 + dependencies = [ 5283 + "getrandom 0.2.9", 5284 + ] 5285 + 5286 + [[package]] 5287 + name = "rand_distr" 5288 + version = "0.4.3" 5289 + source = "registry+https://github.com/rust-lang/crates.io-index" 5290 + checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31" 5291 + dependencies = [ 5292 + "num-traits", 5293 + "rand 0.8.5", 5294 + ] 5295 + 5296 + [[package]] 5297 + name = "rand_hc" 5298 + version = "0.2.0" 5299 + source = "registry+https://github.com/rust-lang/crates.io-index" 5300 + checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 5301 + dependencies = [ 5302 + "rand_core 0.5.1", 5303 + ] 5304 + 5305 + [[package]] 5306 + name = "rand_xorshift" 5307 + version = "0.3.0" 5308 + source = "registry+https://github.com/rust-lang/crates.io-index" 5309 + checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" 5310 + dependencies = [ 5311 + "rand_core 0.6.4", 5312 + ] 5313 + 5314 + [[package]] 5315 + name = "rayon" 5316 + version = "1.7.0" 5317 + source = "registry+https://github.com/rust-lang/crates.io-index" 5318 + checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 5319 + dependencies = [ 5320 + "either", 5321 + "rayon-core", 5322 + ] 5323 + 5324 + [[package]] 5325 + name = "rayon-core" 5326 + version = "1.11.0" 5327 + source = "registry+https://github.com/rust-lang/crates.io-index" 5328 + checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 5329 + dependencies = [ 5330 + "crossbeam-channel", 5331 + "crossbeam-deque", 5332 + "crossbeam-utils", 5333 + "num_cpus", 5334 + ] 5335 + 5336 + [[package]] 5337 + name = "rdkafka" 5338 + version = "0.28.0" 5339 + source = "registry+https://github.com/rust-lang/crates.io-index" 5340 + checksum = "1de127f294f2dba488ed46760b129d5ecbeabbd337ccbf3739cb29d50db2161c" 5341 + dependencies = [ 5342 + "futures", 5343 + "libc", 5344 + "log", 5345 + "rdkafka-sys", 5346 + "serde", 5347 + "serde_derive", 5348 + "serde_json", 5349 + "slab", 5350 + "tokio", 5351 + ] 5352 + 5353 + [[package]] 5354 + name = "rdkafka-sys" 5355 + version = "4.4.0+1.9.2" 5356 + source = "registry+https://github.com/rust-lang/crates.io-index" 5357 + checksum = "87ac9d87c3aba1748e3112318459f2ac8bff80bfff7359e338e0463549590249" 5358 + dependencies = [ 5359 + "cmake", 5360 + "libc", 5361 + "libz-sys", 5362 + "num_enum", 5363 + "openssl-sys", 5364 + "pkg-config", 5365 + "sasl2-sys", 5366 + ] 5367 + 5368 + [[package]] 5369 + name = "redox_syscall" 5370 + version = "0.2.16" 5371 + source = "registry+https://github.com/rust-lang/crates.io-index" 5372 + checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 5373 + dependencies = [ 5374 + "bitflags", 5375 + ] 5376 + 5377 + [[package]] 5378 + name = "redox_syscall" 5379 + version = "0.3.5" 5380 + source = "registry+https://github.com/rust-lang/crates.io-index" 5381 + checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 5382 + dependencies = [ 5383 + "bitflags", 5384 + ] 5385 + 5386 + [[package]] 5387 + name = "redox_users" 5388 + version = "0.4.3" 5389 + source = "registry+https://github.com/rust-lang/crates.io-index" 5390 + checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 5391 + dependencies = [ 5392 + "getrandom 0.2.9", 5393 + "redox_syscall 0.2.16", 5394 + "thiserror", 5395 + ] 5396 + 5397 + [[package]] 5398 + name = "regex" 5399 + version = "1.8.3" 5400 + source = "registry+https://github.com/rust-lang/crates.io-index" 5401 + checksum = "81ca098a9821bd52d6b24fd8b10bd081f47d39c22778cafaa75a2857a62c6390" 5402 + dependencies = [ 5403 + "aho-corasick", 5404 + "memchr", 5405 + "regex-syntax 0.7.2", 5406 + ] 5407 + 5408 + [[package]] 5409 + name = "regex-automata" 5410 + version = "0.1.10" 5411 + source = "registry+https://github.com/rust-lang/crates.io-index" 5412 + checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 5413 + dependencies = [ 5414 + "regex-syntax 0.6.29", 5415 + ] 5416 + 5417 + [[package]] 5418 + name = "regex-syntax" 5419 + version = "0.6.29" 5420 + source = "registry+https://github.com/rust-lang/crates.io-index" 5421 + checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 5422 + 5423 + [[package]] 5424 + name = "regex-syntax" 5425 + version = "0.7.2" 5426 + source = "registry+https://github.com/rust-lang/crates.io-index" 5427 + checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78" 5428 + 5429 + [[package]] 5430 + name = "rend" 5431 + version = "0.4.0" 5432 + source = "registry+https://github.com/rust-lang/crates.io-index" 5433 + checksum = "581008d2099240d37fb08d77ad713bcaec2c4d89d50b5b21a8bb1996bbab68ab" 5434 + dependencies = [ 5435 + "bytecheck", 5436 + ] 5437 + 5438 + [[package]] 5439 + name = "reqwest" 5440 + version = "0.11.18" 5441 + source = "registry+https://github.com/rust-lang/crates.io-index" 5442 + checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" 5443 + dependencies = [ 5444 + "base64 0.21.2", 5445 + "bytes", 5446 + "encoding_rs", 5447 + "futures-core", 5448 + "futures-util", 5449 + "h2", 5450 + "http", 5451 + "http-body", 5452 + "hyper", 5453 + "hyper-rustls 0.24.0", 5454 + "ipnet", 5455 + "js-sys", 5456 + "log", 5457 + "mime", 5458 + "once_cell", 5459 + "percent-encoding", 5460 + "pin-project-lite", 5461 + "rustls 0.21.1", 5462 + "rustls-pemfile", 5463 + "serde", 5464 + "serde_json", 5465 + "serde_urlencoded", 5466 + "tokio", 5467 + "tokio-rustls 0.24.0", 5468 + "tokio-util", 5469 + "tower-service", 5470 + "url", 5471 + "wasm-bindgen", 5472 + "wasm-bindgen-futures", 5473 + "wasm-streams", 5474 + "web-sys", 5475 + "webpki-roots", 5476 + "winreg", 5477 + ] 5478 + 5479 + [[package]] 5480 + name = "retain_mut" 5481 + version = "0.1.9" 5482 + source = "registry+https://github.com/rust-lang/crates.io-index" 5483 + checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0" 5484 + 5485 + [[package]] 5486 + name = "ring" 5487 + version = "0.16.20" 5488 + source = "registry+https://github.com/rust-lang/crates.io-index" 5489 + checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 5490 + dependencies = [ 5491 + "cc", 5492 + "libc", 5493 + "once_cell", 5494 + "spin 0.5.2", 5495 + "untrusted", 5496 + "web-sys", 5497 + "winapi 0.3.9", 5498 + ] 5499 + 5500 + [[package]] 5501 + name = "rkyv" 5502 + version = "0.7.42" 5503 + source = "registry+https://github.com/rust-lang/crates.io-index" 5504 + checksum = "0200c8230b013893c0b2d6213d6ec64ed2b9be2e0e016682b7224ff82cff5c58" 5505 + dependencies = [ 5506 + "bitvec", 5507 + "bytecheck", 5508 + "hashbrown 0.12.3", 5509 + "ptr_meta", 5510 + "rend", 5511 + "rkyv_derive", 5512 + "seahash", 5513 + "tinyvec", 5514 + "uuid", 5515 + ] 5516 + 5517 + [[package]] 5518 + name = "rkyv_derive" 5519 + version = "0.7.42" 5520 + source = "registry+https://github.com/rust-lang/crates.io-index" 5521 + checksum = "b2e06b915b5c230a17d7a736d1e2e63ee753c256a8614ef3f5147b13a4f5541d" 5522 + dependencies = [ 5523 + "proc-macro2", 5524 + "quote", 5525 + "syn 1.0.109", 5526 + ] 5527 + 5528 + [[package]] 5529 + name = "roxmltree" 5530 + version = "0.14.1" 5531 + source = "registry+https://github.com/rust-lang/crates.io-index" 5532 + checksum = "921904a62e410e37e215c40381b7117f830d9d89ba60ab5236170541dd25646b" 5533 + dependencies = [ 5534 + "xmlparser", 5535 + ] 5536 + 5537 + [[package]] 5538 + name = "roxmltree" 5539 + version = "0.18.0" 5540 + source = "registry+https://github.com/rust-lang/crates.io-index" 5541 + checksum = "d8f595a457b6b8c6cda66a48503e92ee8d19342f905948f29c383200ec9eb1d8" 5542 + dependencies = [ 5543 + "xmlparser", 5544 + ] 5545 + 5546 + [[package]] 5547 + name = "rust-embed" 5548 + version = "6.7.0" 5549 + source = "registry+https://github.com/rust-lang/crates.io-index" 5550 + checksum = "b73e721f488c353141288f223b599b4ae9303ecf3e62923f40a492f0634a4dc3" 5551 + dependencies = [ 5552 + "rust-embed-impl", 5553 + "rust-embed-utils", 5554 + "walkdir", 5555 + ] 5556 + 5557 + [[package]] 5558 + name = "rust-embed-impl" 5559 + version = "6.6.0" 5560 + source = "registry+https://github.com/rust-lang/crates.io-index" 5561 + checksum = "e22ce362f5561923889196595504317a4372b84210e6e335da529a65ea5452b5" 5562 + dependencies = [ 5563 + "proc-macro2", 5564 + "quote", 5565 + "rust-embed-utils", 5566 + "syn 2.0.18", 5567 + "walkdir", 5568 + ] 5569 + 5570 + [[package]] 5571 + name = "rust-embed-utils" 5572 + version = "7.5.0" 5573 + source = "registry+https://github.com/rust-lang/crates.io-index" 5574 + checksum = "512b0ab6853f7e14e3c8754acb43d6f748bb9ced66aa5915a6553ac8213f7731" 5575 + dependencies = [ 5576 + "sha2", 5577 + "walkdir", 5578 + ] 5579 + 5580 + [[package]] 5581 + name = "rust-stemmers" 5582 + version = "1.2.0" 5583 + source = "registry+https://github.com/rust-lang/crates.io-index" 5584 + checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54" 5585 + dependencies = [ 5586 + "serde", 5587 + "serde_derive", 5588 + ] 5589 + 5590 + [[package]] 5591 + name = "rust_decimal" 5592 + version = "1.29.1" 5593 + source = "registry+https://github.com/rust-lang/crates.io-index" 5594 + checksum = "26bd36b60561ee1fb5ec2817f198b6fd09fa571c897a5e86d1487cfc2b096dfc" 5595 + dependencies = [ 5596 + "arrayvec 0.7.2", 5597 + "borsh", 5598 + "bytecheck", 5599 + "byteorder", 5600 + "bytes", 5601 + "num-traits", 5602 + "rand 0.8.5", 5603 + "rkyv", 5604 + "serde", 5605 + "serde_json", 5606 + ] 5607 + 5608 + [[package]] 5609 + name = "rustc-hash" 5610 + version = "1.1.0" 5611 + source = "registry+https://github.com/rust-lang/crates.io-index" 5612 + checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 5613 + 5614 + [[package]] 5615 + name = "rustc_version" 5616 + version = "0.4.0" 5617 + source = "registry+https://github.com/rust-lang/crates.io-index" 5618 + checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 5619 + dependencies = [ 5620 + "semver", 5621 + ] 5622 + 5623 + [[package]] 5624 + name = "rustix" 5625 + version = "0.36.14" 5626 + source = "registry+https://github.com/rust-lang/crates.io-index" 5627 + checksum = "14e4d67015953998ad0eb82887a0eb0129e18a7e2f3b7b0f6c422fddcd503d62" 5628 + dependencies = [ 5629 + "bitflags", 5630 + "errno", 5631 + "io-lifetimes", 5632 + "libc", 5633 + "linux-raw-sys 0.1.4", 5634 + "windows-sys 0.45.0", 5635 + ] 5636 + 5637 + [[package]] 5638 + name = "rustix" 5639 + version = "0.37.19" 5640 + source = "registry+https://github.com/rust-lang/crates.io-index" 5641 + checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d" 5642 + dependencies = [ 5643 + "bitflags", 5644 + "errno", 5645 + "io-lifetimes", 5646 + "libc", 5647 + "linux-raw-sys 0.3.8", 5648 + "windows-sys 0.48.0", 5649 + ] 5650 + 5651 + [[package]] 5652 + name = "rustls" 5653 + version = "0.20.8" 5654 + source = "registry+https://github.com/rust-lang/crates.io-index" 5655 + checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" 5656 + dependencies = [ 5657 + "log", 5658 + "ring", 5659 + "sct", 5660 + "webpki", 5661 + ] 5662 + 5663 + [[package]] 5664 + name = "rustls" 5665 + version = "0.21.1" 5666 + source = "registry+https://github.com/rust-lang/crates.io-index" 5667 + checksum = "c911ba11bc8433e811ce56fde130ccf32f5127cab0e0194e9c68c5a5b671791e" 5668 + dependencies = [ 5669 + "log", 5670 + "ring", 5671 + "rustls-webpki", 5672 + "sct", 5673 + ] 5674 + 5675 + [[package]] 5676 + name = "rustls-native-certs" 5677 + version = "0.6.2" 5678 + source = "registry+https://github.com/rust-lang/crates.io-index" 5679 + checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50" 5680 + dependencies = [ 5681 + "openssl-probe", 5682 + "rustls-pemfile", 5683 + "schannel", 5684 + "security-framework", 5685 + ] 5686 + 5687 + [[package]] 5688 + name = "rustls-pemfile" 5689 + version = "1.0.2" 5690 + source = "registry+https://github.com/rust-lang/crates.io-index" 5691 + checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b" 5692 + dependencies = [ 5693 + "base64 0.21.2", 5694 + ] 5695 + 5696 + [[package]] 5697 + name = "rustls-webpki" 5698 + version = "0.100.1" 5699 + source = "registry+https://github.com/rust-lang/crates.io-index" 5700 + checksum = "d6207cd5ed3d8dca7816f8f3725513a34609c0c765bf652b8c3cb4cfd87db46b" 5701 + dependencies = [ 5702 + "ring", 5703 + "untrusted", 5704 + ] 5705 + 5706 + [[package]] 5707 + name = "rustversion" 5708 + version = "1.0.12" 5709 + source = "registry+https://github.com/rust-lang/crates.io-index" 5710 + checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06" 5711 + 5712 + [[package]] 5713 + name = "rusty-fork" 5714 + version = "0.3.0" 5715 + source = "registry+https://github.com/rust-lang/crates.io-index" 5716 + checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f" 5717 + dependencies = [ 5718 + "fnv", 5719 + "quick-error", 5720 + "tempfile", 5721 + "wait-timeout", 5722 + ] 5723 + 5724 + [[package]] 5725 + name = "ryu" 5726 + version = "1.0.13" 5727 + source = "registry+https://github.com/rust-lang/crates.io-index" 5728 + checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 5729 + 5730 + [[package]] 5731 + name = "same-file" 5732 + version = "1.0.6" 5733 + source = "registry+https://github.com/rust-lang/crates.io-index" 5734 + checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 5735 + dependencies = [ 5736 + "winapi-util", 5737 + ] 5738 + 5739 + [[package]] 5740 + name = "sasl2-sys" 5741 + version = "0.1.20+2.1.28" 5742 + source = "git+https://github.com/quickwit-oss/rust-sasl/?rev=daca921#daca9216beca2f2d8c9ce5d803906918a316021a" 5743 + dependencies = [ 5744 + "cc", 5745 + "duct", 5746 + "krb5-src", 5747 + "libc", 5748 + "pkg-config", 5749 + ] 5750 + 5751 + [[package]] 5752 + name = "schannel" 5753 + version = "0.1.21" 5754 + source = "registry+https://github.com/rust-lang/crates.io-index" 5755 + checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" 5756 + dependencies = [ 5757 + "windows-sys 0.42.0", 5758 + ] 5759 + 5760 + [[package]] 5761 + name = "scoped-tls" 5762 + version = "1.0.1" 5763 + source = "registry+https://github.com/rust-lang/crates.io-index" 5764 + checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 5765 + 5766 + [[package]] 5767 + name = "scopeguard" 5768 + version = "1.1.0" 5769 + source = "registry+https://github.com/rust-lang/crates.io-index" 5770 + checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 5771 + 5772 + [[package]] 5773 + name = "sct" 5774 + version = "0.7.0" 5775 + source = "registry+https://github.com/rust-lang/crates.io-index" 5776 + checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 5777 + dependencies = [ 5778 + "ring", 5779 + "untrusted", 5780 + ] 5781 + 5782 + [[package]] 5783 + name = "seahash" 5784 + version = "4.1.0" 5785 + source = "registry+https://github.com/rust-lang/crates.io-index" 5786 + checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" 5787 + 5788 + [[package]] 5789 + name = "security-framework" 5790 + version = "2.9.1" 5791 + source = "registry+https://github.com/rust-lang/crates.io-index" 5792 + checksum = "1fc758eb7bffce5b308734e9b0c1468893cae9ff70ebf13e7090be8dcbcc83a8" 5793 + dependencies = [ 5794 + "bitflags", 5795 + "core-foundation", 5796 + "core-foundation-sys", 5797 + "libc", 5798 + "security-framework-sys", 5799 + ] 5800 + 5801 + [[package]] 5802 + name = "security-framework-sys" 5803 + version = "2.9.0" 5804 + source = "registry+https://github.com/rust-lang/crates.io-index" 5805 + checksum = "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7" 5806 + dependencies = [ 5807 + "core-foundation-sys", 5808 + "libc", 5809 + ] 5810 + 5811 + [[package]] 5812 + name = "semver" 5813 + version = "1.0.17" 5814 + source = "registry+https://github.com/rust-lang/crates.io-index" 5815 + checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" 5816 + 5817 + [[package]] 5818 + name = "serde" 5819 + version = "1.0.163" 5820 + source = "registry+https://github.com/rust-lang/crates.io-index" 5821 + checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2" 5822 + dependencies = [ 5823 + "serde_derive", 5824 + ] 5825 + 5826 + [[package]] 5827 + name = "serde-value" 5828 + version = "0.7.0" 5829 + source = "registry+https://github.com/rust-lang/crates.io-index" 5830 + checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c" 5831 + dependencies = [ 5832 + "ordered-float 2.10.0", 5833 + "serde", 5834 + ] 5835 + 5836 + [[package]] 5837 + name = "serde-xml-rs" 5838 + version = "0.6.0" 5839 + source = "registry+https://github.com/rust-lang/crates.io-index" 5840 + checksum = "fb3aa78ecda1ebc9ec9847d5d3aba7d618823446a049ba2491940506da6e2782" 5841 + dependencies = [ 5842 + "log", 5843 + "serde", 5844 + "thiserror", 5845 + "xml-rs", 5846 + ] 5847 + 5848 + [[package]] 5849 + name = "serde_derive" 5850 + version = "1.0.163" 5851 + source = "registry+https://github.com/rust-lang/crates.io-index" 5852 + checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e" 5853 + dependencies = [ 5854 + "proc-macro2", 5855 + "quote", 5856 + "syn 2.0.18", 5857 + ] 5858 + 5859 + [[package]] 5860 + name = "serde_json" 5861 + version = "1.0.96" 5862 + source = "registry+https://github.com/rust-lang/crates.io-index" 5863 + checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" 5864 + dependencies = [ 5865 + "itoa", 5866 + "ryu", 5867 + "serde", 5868 + ] 5869 + 5870 + [[package]] 5871 + name = "serde_path_to_error" 5872 + version = "0.1.11" 5873 + source = "registry+https://github.com/rust-lang/crates.io-index" 5874 + checksum = "f7f05c1d5476066defcdfacce1f52fc3cae3af1d3089727100c02ae92e5abbe0" 5875 + dependencies = [ 5876 + "serde", 5877 + ] 5878 + 5879 + [[package]] 5880 + name = "serde_plain" 5881 + version = "1.0.1" 5882 + source = "registry+https://github.com/rust-lang/crates.io-index" 5883 + checksum = "d6018081315db179d0ce57b1fe4b62a12a0028c9cf9bbef868c9cf477b3c34ae" 5884 + dependencies = [ 5885 + "serde", 5886 + ] 5887 + 5888 + [[package]] 5889 + name = "serde_qs" 5890 + version = "0.8.5" 5891 + source = "registry+https://github.com/rust-lang/crates.io-index" 5892 + checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6" 5893 + dependencies = [ 5894 + "percent-encoding", 5895 + "serde", 5896 + "thiserror", 5897 + ] 5898 + 5899 + [[package]] 5900 + name = "serde_qs" 5901 + version = "0.10.1" 5902 + source = "registry+https://github.com/rust-lang/crates.io-index" 5903 + checksum = "8cac3f1e2ca2fe333923a1ae72caca910b98ed0630bb35ef6f8c8517d6e81afa" 5904 + dependencies = [ 5905 + "futures", 5906 + "percent-encoding", 5907 + "serde", 5908 + "thiserror", 5909 + "tracing", 5910 + "warp", 5911 + ] 5912 + 5913 + [[package]] 5914 + name = "serde_spanned" 5915 + version = "0.6.2" 5916 + source = "registry+https://github.com/rust-lang/crates.io-index" 5917 + checksum = "93107647184f6027e3b7dcb2e11034cf95ffa1e3a682c67951963ac69c1c007d" 5918 + dependencies = [ 5919 + "serde", 5920 + ] 5921 + 5922 + [[package]] 5923 + name = "serde_urlencoded" 5924 + version = "0.7.1" 5925 + source = "registry+https://github.com/rust-lang/crates.io-index" 5926 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 5927 + dependencies = [ 5928 + "form_urlencoded", 5929 + "itoa", 5930 + "ryu", 5931 + "serde", 5932 + ] 5933 + 5934 + [[package]] 5935 + name = "serde_with" 5936 + version = "1.14.0" 5937 + source = "registry+https://github.com/rust-lang/crates.io-index" 5938 + checksum = "678b5a069e50bf00ecd22d0cd8ddf7c236f68581b03db652061ed5eb13a312ff" 5939 + dependencies = [ 5940 + "serde", 5941 + "serde_with_macros 1.5.2", 5942 + ] 5943 + 5944 + [[package]] 5945 + name = "serde_with" 5946 + version = "2.3.3" 5947 + source = "registry+https://github.com/rust-lang/crates.io-index" 5948 + checksum = "07ff71d2c147a7b57362cead5e22f772cd52f6ab31cfcd9edcd7f6aeb2a0afbe" 5949 + dependencies = [ 5950 + "base64 0.13.1", 5951 + "chrono", 5952 + "hex", 5953 + "indexmap", 5954 + "serde", 5955 + "serde_json", 5956 + "serde_with_macros 2.3.3", 5957 + "time 0.3.21", 5958 + ] 5959 + 5960 + [[package]] 5961 + name = "serde_with_macros" 5962 + version = "1.5.2" 5963 + source = "registry+https://github.com/rust-lang/crates.io-index" 5964 + checksum = "e182d6ec6f05393cc0e5ed1bf81ad6db3a8feedf8ee515ecdd369809bcce8082" 5965 + dependencies = [ 5966 + "darling 0.13.4", 5967 + "proc-macro2", 5968 + "quote", 5969 + "syn 1.0.109", 5970 + ] 5971 + 5972 + [[package]] 5973 + name = "serde_with_macros" 5974 + version = "2.3.3" 5975 + source = "registry+https://github.com/rust-lang/crates.io-index" 5976 + checksum = "881b6f881b17d13214e5d494c939ebab463d01264ce1811e9d4ac3a882e7695f" 5977 + dependencies = [ 5978 + "darling 0.20.1", 5979 + "proc-macro2", 5980 + "quote", 5981 + "syn 2.0.18", 5982 + ] 5983 + 5984 + [[package]] 5985 + name = "serde_yaml" 5986 + version = "0.8.26" 5987 + source = "registry+https://github.com/rust-lang/crates.io-index" 5988 + checksum = "578a7433b776b56a35785ed5ce9a7e777ac0598aac5a6dd1b4b18a307c7fc71b" 5989 + dependencies = [ 5990 + "indexmap", 5991 + "ryu", 5992 + "serde", 5993 + "yaml-rust", 5994 + ] 5995 + 5996 + [[package]] 5997 + name = "serde_yaml" 5998 + version = "0.9.21" 5999 + source = "registry+https://github.com/rust-lang/crates.io-index" 6000 + checksum = "d9d684e3ec7de3bf5466b32bd75303ac16f0736426e5a4e0d6e489559ce1249c" 6001 + dependencies = [ 6002 + "indexmap", 6003 + "itoa", 6004 + "ryu", 6005 + "serde", 6006 + "unsafe-libyaml", 6007 + ] 6008 + 6009 + [[package]] 6010 + name = "sha-1" 6011 + version = "0.10.1" 6012 + source = "registry+https://github.com/rust-lang/crates.io-index" 6013 + checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c" 6014 + dependencies = [ 6015 + "cfg-if", 6016 + "cpufeatures", 6017 + "digest", 6018 + ] 6019 + 6020 + [[package]] 6021 + name = "sha1" 6022 + version = "0.10.5" 6023 + source = "registry+https://github.com/rust-lang/crates.io-index" 6024 + checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" 6025 + dependencies = [ 6026 + "cfg-if", 6027 + "cpufeatures", 6028 + "digest", 6029 + ] 6030 + 6031 + [[package]] 6032 + name = "sha2" 6033 + version = "0.10.6" 6034 + source = "registry+https://github.com/rust-lang/crates.io-index" 6035 + checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 6036 + dependencies = [ 6037 + "cfg-if", 6038 + "cpufeatures", 6039 + "digest", 6040 + ] 6041 + 6042 + [[package]] 6043 + name = "sha3" 6044 + version = "0.10.8" 6045 + source = "registry+https://github.com/rust-lang/crates.io-index" 6046 + checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60" 6047 + dependencies = [ 6048 + "digest", 6049 + "keccak", 6050 + ] 6051 + 6052 + [[package]] 6053 + name = "sharded-slab" 6054 + version = "0.1.4" 6055 + source = "registry+https://github.com/rust-lang/crates.io-index" 6056 + checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 6057 + dependencies = [ 6058 + "lazy_static", 6059 + ] 6060 + 6061 + [[package]] 6062 + name = "shared_child" 6063 + version = "1.0.0" 6064 + source = "registry+https://github.com/rust-lang/crates.io-index" 6065 + checksum = "b0d94659ad3c2137fef23ae75b03d5241d633f8acded53d672decfa0e6e0caef" 6066 + dependencies = [ 6067 + "libc", 6068 + "winapi 0.3.9", 6069 + ] 6070 + 6071 + [[package]] 6072 + name = "shell-words" 6073 + version = "1.1.0" 6074 + source = "registry+https://github.com/rust-lang/crates.io-index" 6075 + checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde" 6076 + 6077 + [[package]] 6078 + name = "signal-hook-registry" 6079 + version = "1.4.1" 6080 + source = "registry+https://github.com/rust-lang/crates.io-index" 6081 + checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 6082 + dependencies = [ 6083 + "libc", 6084 + ] 6085 + 6086 + [[package]] 6087 + name = "simdutf8" 6088 + version = "0.1.4" 6089 + source = "registry+https://github.com/rust-lang/crates.io-index" 6090 + checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a" 6091 + 6092 + [[package]] 6093 + name = "siphasher" 6094 + version = "0.3.10" 6095 + source = "registry+https://github.com/rust-lang/crates.io-index" 6096 + checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 6097 + 6098 + [[package]] 6099 + name = "sketches-ddsketch" 6100 + version = "0.2.1" 6101 + source = "registry+https://github.com/rust-lang/crates.io-index" 6102 + checksum = "68a406c1882ed7f29cd5e248c9848a80e7cb6ae0fea82346d2746f2f941c07e1" 6103 + dependencies = [ 6104 + "serde", 6105 + ] 6106 + 6107 + [[package]] 6108 + name = "slab" 6109 + version = "0.4.8" 6110 + source = "registry+https://github.com/rust-lang/crates.io-index" 6111 + checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 6112 + dependencies = [ 6113 + "autocfg", 6114 + ] 6115 + 6116 + [[package]] 6117 + name = "smallvec" 6118 + version = "1.10.0" 6119 + source = "registry+https://github.com/rust-lang/crates.io-index" 6120 + checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 6121 + 6122 + [[package]] 6123 + name = "snafu" 6124 + version = "0.7.4" 6125 + source = "registry+https://github.com/rust-lang/crates.io-index" 6126 + checksum = "cb0656e7e3ffb70f6c39b3c2a86332bb74aa3c679da781642590f3c1118c5045" 6127 + dependencies = [ 6128 + "doc-comment", 6129 + "snafu-derive", 6130 + ] 6131 + 6132 + [[package]] 6133 + name = "snafu-derive" 6134 + version = "0.7.4" 6135 + source = "registry+https://github.com/rust-lang/crates.io-index" 6136 + checksum = "475b3bbe5245c26f2d8a6f62d67c1f30eb9fffeccee721c45d162c3ebbdf81b2" 6137 + dependencies = [ 6138 + "heck 0.4.1", 6139 + "proc-macro2", 6140 + "quote", 6141 + "syn 1.0.109", 6142 + ] 6143 + 6144 + [[package]] 6145 + name = "snap" 6146 + version = "1.1.0" 6147 + source = "registry+https://github.com/rust-lang/crates.io-index" 6148 + checksum = "5e9f0ab6ef7eb7353d9119c170a436d1bf248eea575ac42d19d12f4e34130831" 6149 + 6150 + [[package]] 6151 + name = "socket2" 6152 + version = "0.4.9" 6153 + source = "registry+https://github.com/rust-lang/crates.io-index" 6154 + checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 6155 + dependencies = [ 6156 + "libc", 6157 + "winapi 0.3.9", 6158 + ] 6159 + 6160 + [[package]] 6161 + name = "spin" 6162 + version = "0.5.2" 6163 + source = "registry+https://github.com/rust-lang/crates.io-index" 6164 + checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 6165 + 6166 + [[package]] 6167 + name = "spin" 6168 + version = "0.9.8" 6169 + source = "registry+https://github.com/rust-lang/crates.io-index" 6170 + checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 6171 + dependencies = [ 6172 + "lock_api", 6173 + ] 6174 + 6175 + [[package]] 6176 + name = "sqlformat" 6177 + version = "0.2.1" 6178 + source = "registry+https://github.com/rust-lang/crates.io-index" 6179 + checksum = "0c12bc9199d1db8234678b7051747c07f517cdcf019262d1847b94ec8b1aee3e" 6180 + dependencies = [ 6181 + "itertools", 6182 + "nom", 6183 + "unicode_categories", 6184 + ] 6185 + 6186 + [[package]] 6187 + name = "sqlx" 6188 + version = "0.6.3" 6189 + source = "registry+https://github.com/rust-lang/crates.io-index" 6190 + checksum = "f8de3b03a925878ed54a954f621e64bf55a3c1bd29652d0d1a17830405350188" 6191 + dependencies = [ 6192 + "sqlx-core", 6193 + "sqlx-macros", 6194 + ] 6195 + 6196 + [[package]] 6197 + name = "sqlx-core" 6198 + version = "0.6.3" 6199 + source = "registry+https://github.com/rust-lang/crates.io-index" 6200 + checksum = "fa8241483a83a3f33aa5fff7e7d9def398ff9990b2752b6c6112b83c6d246029" 6201 + dependencies = [ 6202 + "ahash 0.7.6", 6203 + "atoi", 6204 + "base64 0.13.1", 6205 + "bitflags", 6206 + "byteorder", 6207 + "bytes", 6208 + "crc", 6209 + "crossbeam-queue", 6210 + "dirs", 6211 + "dotenvy", 6212 + "either", 6213 + "event-listener", 6214 + "futures-channel", 6215 + "futures-core", 6216 + "futures-intrusive", 6217 + "futures-util", 6218 + "hashlink", 6219 + "hex", 6220 + "hkdf", 6221 + "hmac", 6222 + "indexmap", 6223 + "itoa", 6224 + "libc", 6225 + "log", 6226 + "md-5", 6227 + "memchr", 6228 + "once_cell", 6229 + "paste", 6230 + "percent-encoding", 6231 + "rand 0.8.5", 6232 + "rustls 0.20.8", 6233 + "rustls-pemfile", 6234 + "serde", 6235 + "serde_json", 6236 + "sha1", 6237 + "sha2", 6238 + "smallvec", 6239 + "sqlformat", 6240 + "sqlx-rt", 6241 + "stringprep", 6242 + "thiserror", 6243 + "time 0.3.21", 6244 + "tokio-stream", 6245 + "url", 6246 + "webpki-roots", 6247 + "whoami", 6248 + ] 6249 + 6250 + [[package]] 6251 + name = "sqlx-macros" 6252 + version = "0.6.3" 6253 + source = "registry+https://github.com/rust-lang/crates.io-index" 6254 + checksum = "9966e64ae989e7e575b19d7265cb79d7fc3cbbdf179835cb0d716f294c2049c9" 6255 + dependencies = [ 6256 + "dotenvy", 6257 + "either", 6258 + "heck 0.4.1", 6259 + "once_cell", 6260 + "proc-macro2", 6261 + "quote", 6262 + "sha2", 6263 + "sqlx-core", 6264 + "sqlx-rt", 6265 + "syn 1.0.109", 6266 + "url", 6267 + ] 6268 + 6269 + [[package]] 6270 + name = "sqlx-rt" 6271 + version = "0.6.3" 6272 + source = "registry+https://github.com/rust-lang/crates.io-index" 6273 + checksum = "804d3f245f894e61b1e6263c84b23ca675d96753b5abfd5cc8597d86806e8024" 6274 + dependencies = [ 6275 + "once_cell", 6276 + "tokio", 6277 + "tokio-rustls 0.23.4", 6278 + ] 6279 + 6280 + [[package]] 6281 + name = "stable_deref_trait" 6282 + version = "1.2.0" 6283 + source = "registry+https://github.com/rust-lang/crates.io-index" 6284 + checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 6285 + 6286 + [[package]] 6287 + name = "string_cache" 6288 + version = "0.8.7" 6289 + source = "registry+https://github.com/rust-lang/crates.io-index" 6290 + checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b" 6291 + dependencies = [ 6292 + "new_debug_unreachable", 6293 + "once_cell", 6294 + "parking_lot 0.12.1", 6295 + "phf_shared 0.10.0", 6296 + "precomputed-hash", 6297 + ] 6298 + 6299 + [[package]] 6300 + name = "stringprep" 6301 + version = "0.1.2" 6302 + source = "registry+https://github.com/rust-lang/crates.io-index" 6303 + checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1" 6304 + dependencies = [ 6305 + "unicode-bidi", 6306 + "unicode-normalization", 6307 + ] 6308 + 6309 + [[package]] 6310 + name = "strip-ansi-escapes" 6311 + version = "0.1.1" 6312 + source = "registry+https://github.com/rust-lang/crates.io-index" 6313 + checksum = "011cbb39cf7c1f62871aea3cc46e5817b0937b49e9447370c93cacbe93a766d8" 6314 + dependencies = [ 6315 + "vte", 6316 + ] 6317 + 6318 + [[package]] 6319 + name = "strsim" 6320 + version = "0.8.0" 6321 + source = "registry+https://github.com/rust-lang/crates.io-index" 6322 + checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 6323 + 6324 + [[package]] 6325 + name = "strsim" 6326 + version = "0.10.0" 6327 + source = "registry+https://github.com/rust-lang/crates.io-index" 6328 + checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 6329 + 6330 + [[package]] 6331 + name = "structopt" 6332 + version = "0.3.26" 6333 + source = "registry+https://github.com/rust-lang/crates.io-index" 6334 + checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10" 6335 + dependencies = [ 6336 + "clap 2.34.0", 6337 + "lazy_static", 6338 + "structopt-derive", 6339 + ] 6340 + 6341 + [[package]] 6342 + name = "structopt-derive" 6343 + version = "0.4.18" 6344 + source = "registry+https://github.com/rust-lang/crates.io-index" 6345 + checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0" 6346 + dependencies = [ 6347 + "heck 0.3.3", 6348 + "proc-macro-error", 6349 + "proc-macro2", 6350 + "quote", 6351 + "syn 1.0.109", 6352 + ] 6353 + 6354 + [[package]] 6355 + name = "subtle" 6356 + version = "2.5.0" 6357 + source = "registry+https://github.com/rust-lang/crates.io-index" 6358 + checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 6359 + 6360 + [[package]] 6361 + name = "syn" 6362 + version = "1.0.109" 6363 + source = "registry+https://github.com/rust-lang/crates.io-index" 6364 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 6365 + dependencies = [ 6366 + "proc-macro2", 6367 + "quote", 6368 + "unicode-ident", 6369 + ] 6370 + 6371 + [[package]] 6372 + name = "syn" 6373 + version = "2.0.18" 6374 + source = "registry+https://github.com/rust-lang/crates.io-index" 6375 + checksum = "32d41677bcbe24c20c52e7c70b0d8db04134c5d1066bf98662e2871ad200ea3e" 6376 + dependencies = [ 6377 + "proc-macro2", 6378 + "quote", 6379 + "unicode-ident", 6380 + ] 6381 + 6382 + [[package]] 6383 + name = "sync_wrapper" 6384 + version = "0.1.2" 6385 + source = "registry+https://github.com/rust-lang/crates.io-index" 6386 + checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 6387 + 6388 + [[package]] 6389 + name = "syslog_loose" 6390 + version = "0.18.0" 6391 + source = "registry+https://github.com/rust-lang/crates.io-index" 6392 + checksum = "97fb75f176928530867b2a659e470f9c9ff71904695bab6556f7ad30f9039efd" 6393 + dependencies = [ 6394 + "chrono", 6395 + "nom", 6396 + ] 6397 + 6398 + [[package]] 6399 + name = "tabled" 6400 + version = "0.8.0" 6401 + source = "registry+https://github.com/rust-lang/crates.io-index" 6402 + checksum = "e5b2f8c37d26d87d2252187b0a45ea3cbf42baca10377c7e7eaaa2800fa9bf97" 6403 + dependencies = [ 6404 + "ansi-str", 6405 + "papergrid", 6406 + "tabled_derive", 6407 + "unicode-width", 6408 + ] 6409 + 6410 + [[package]] 6411 + name = "tabled_derive" 6412 + version = "0.4.0" 6413 + source = "registry+https://github.com/rust-lang/crates.io-index" 6414 + checksum = "f9ee618502f497abf593e1c5c9577f34775b111480009ffccd7ad70d23fcaba8" 6415 + dependencies = [ 6416 + "heck 0.4.1", 6417 + "proc-macro-error", 6418 + "proc-macro2", 6419 + "quote", 6420 + "syn 1.0.109", 6421 + ] 6422 + 6423 + [[package]] 6424 + name = "tantivy" 6425 + version = "0.20.0" 6426 + source = "git+https://github.com/quickwit-oss/tantivy/?rev=924fc70#924fc70cb58f56dcd1a0547f2528c9ea86452763" 6427 + dependencies = [ 6428 + "aho-corasick", 6429 + "arc-swap", 6430 + "async-trait", 6431 + "base64 0.21.2", 6432 + "bitpacking", 6433 + "byteorder", 6434 + "census", 6435 + "crc32fast", 6436 + "crossbeam-channel", 6437 + "downcast-rs", 6438 + "fail", 6439 + "fastdivide", 6440 + "fs4", 6441 + "futures-util", 6442 + "htmlescape", 6443 + "itertools", 6444 + "levenshtein_automata", 6445 + "log", 6446 + "lru", 6447 + "lz4_flex", 6448 + "measure_time", 6449 + "memmap2", 6450 + "murmurhash32", 6451 + "num_cpus", 6452 + "once_cell", 6453 + "oneshot", 6454 + "rayon", 6455 + "regex", 6456 + "rust-stemmers", 6457 + "rustc-hash", 6458 + "serde", 6459 + "serde_json", 6460 + "sketches-ddsketch", 6461 + "smallvec", 6462 + "tantivy-bitpacker", 6463 + "tantivy-columnar", 6464 + "tantivy-common", 6465 + "tantivy-fst", 6466 + "tantivy-query-grammar", 6467 + "tantivy-sstable", 6468 + "tantivy-stacker", 6469 + "tantivy-tokenizer-api", 6470 + "tempfile", 6471 + "thiserror", 6472 + "time 0.3.21", 6473 + "uuid", 6474 + "winapi 0.3.9", 6475 + "zstd 0.12.3+zstd.1.5.2", 6476 + ] 6477 + 6478 + [[package]] 6479 + name = "tantivy-bitpacker" 6480 + version = "0.4.0" 6481 + source = "git+https://github.com/quickwit-oss/tantivy/?rev=924fc70#924fc70cb58f56dcd1a0547f2528c9ea86452763" 6482 + dependencies = [ 6483 + "bitpacking", 6484 + ] 6485 + 6486 + [[package]] 6487 + name = "tantivy-columnar" 6488 + version = "0.1.0" 6489 + source = "git+https://github.com/quickwit-oss/tantivy/?rev=924fc70#924fc70cb58f56dcd1a0547f2528c9ea86452763" 6490 + dependencies = [ 6491 + "fastdivide", 6492 + "fnv", 6493 + "itertools", 6494 + "serde", 6495 + "tantivy-bitpacker", 6496 + "tantivy-common", 6497 + "tantivy-sstable", 6498 + "tantivy-stacker", 6499 + ] 6500 + 6501 + [[package]] 6502 + name = "tantivy-common" 6503 + version = "0.5.0" 6504 + source = "git+https://github.com/quickwit-oss/tantivy/?rev=924fc70#924fc70cb58f56dcd1a0547f2528c9ea86452763" 6505 + dependencies = [ 6506 + "async-trait", 6507 + "byteorder", 6508 + "ownedbytes", 6509 + "serde", 6510 + "time 0.3.21", 6511 + ] 6512 + 6513 + [[package]] 6514 + name = "tantivy-fst" 6515 + version = "0.4.0" 6516 + source = "registry+https://github.com/rust-lang/crates.io-index" 6517 + checksum = "fc3c506b1a8443a3a65352df6382a1fb6a7afe1a02e871cee0d25e2c3d5f3944" 6518 + dependencies = [ 6519 + "byteorder", 6520 + "regex-syntax 0.6.29", 6521 + "utf8-ranges", 6522 + ] 6523 + 6524 + [[package]] 6525 + name = "tantivy-query-grammar" 6526 + version = "0.20.0" 6527 + source = "git+https://github.com/quickwit-oss/tantivy/?rev=924fc70#924fc70cb58f56dcd1a0547f2528c9ea86452763" 6528 + dependencies = [ 6529 + "combine", 6530 + "once_cell", 6531 + "regex", 6532 + ] 6533 + 6534 + [[package]] 6535 + name = "tantivy-sstable" 6536 + version = "0.1.0" 6537 + source = "git+https://github.com/quickwit-oss/tantivy/?rev=924fc70#924fc70cb58f56dcd1a0547f2528c9ea86452763" 6538 + dependencies = [ 6539 + "tantivy-common", 6540 + "tantivy-fst", 6541 + "zstd 0.12.3+zstd.1.5.2", 6542 + ] 6543 + 6544 + [[package]] 6545 + name = "tantivy-stacker" 6546 + version = "0.1.0" 6547 + source = "git+https://github.com/quickwit-oss/tantivy/?rev=924fc70#924fc70cb58f56dcd1a0547f2528c9ea86452763" 6548 + dependencies = [ 6549 + "murmurhash32", 6550 + "tantivy-common", 6551 + ] 6552 + 6553 + [[package]] 6554 + name = "tantivy-tokenizer-api" 6555 + version = "0.1.0" 6556 + source = "git+https://github.com/quickwit-oss/tantivy/?rev=924fc70#924fc70cb58f56dcd1a0547f2528c9ea86452763" 6557 + dependencies = [ 6558 + "serde", 6559 + ] 6560 + 6561 + [[package]] 6562 + name = "tap" 6563 + version = "1.0.1" 6564 + source = "registry+https://github.com/rust-lang/crates.io-index" 6565 + checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 6566 + 6567 + [[package]] 6568 + name = "tempfile" 6569 + version = "3.6.0" 6570 + source = "registry+https://github.com/rust-lang/crates.io-index" 6571 + checksum = "31c0432476357e58790aaa47a8efb0c5138f137343f3b5f23bd36a27e3b0a6d6" 6572 + dependencies = [ 6573 + "autocfg", 6574 + "cfg-if", 6575 + "fastrand", 6576 + "redox_syscall 0.3.5", 6577 + "rustix 0.37.19", 6578 + "windows-sys 0.48.0", 6579 + ] 6580 + 6581 + [[package]] 6582 + name = "term" 6583 + version = "0.7.0" 6584 + source = "registry+https://github.com/rust-lang/crates.io-index" 6585 + checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f" 6586 + dependencies = [ 6587 + "dirs-next", 6588 + "rustversion", 6589 + "winapi 0.3.9", 6590 + ] 6591 + 6592 + [[package]] 6593 + name = "termcolor" 6594 + version = "1.2.0" 6595 + source = "registry+https://github.com/rust-lang/crates.io-index" 6596 + checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 6597 + dependencies = [ 6598 + "winapi-util", 6599 + ] 6600 + 6601 + [[package]] 6602 + name = "termtree" 6603 + version = "0.4.1" 6604 + source = "registry+https://github.com/rust-lang/crates.io-index" 6605 + checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" 6606 + 6607 + [[package]] 6608 + name = "textwrap" 6609 + version = "0.11.0" 6610 + source = "registry+https://github.com/rust-lang/crates.io-index" 6611 + checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 6612 + dependencies = [ 6613 + "unicode-width", 6614 + ] 6615 + 6616 + [[package]] 6617 + name = "thiserror" 6618 + version = "1.0.40" 6619 + source = "registry+https://github.com/rust-lang/crates.io-index" 6620 + checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 6621 + dependencies = [ 6622 + "thiserror-impl", 6623 + ] 6624 + 6625 + [[package]] 6626 + name = "thiserror-impl" 6627 + version = "1.0.40" 6628 + source = "registry+https://github.com/rust-lang/crates.io-index" 6629 + checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 6630 + dependencies = [ 6631 + "proc-macro2", 6632 + "quote", 6633 + "syn 2.0.18", 6634 + ] 6635 + 6636 + [[package]] 6637 + name = "thousands" 6638 + version = "0.2.0" 6639 + source = "registry+https://github.com/rust-lang/crates.io-index" 6640 + checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820" 6641 + 6642 + [[package]] 6643 + name = "thread_local" 6644 + version = "1.1.7" 6645 + source = "registry+https://github.com/rust-lang/crates.io-index" 6646 + checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 6647 + dependencies = [ 6648 + "cfg-if", 6649 + "once_cell", 6650 + ] 6651 + 6652 + [[package]] 6653 + name = "threadpool" 6654 + version = "1.8.1" 6655 + source = "registry+https://github.com/rust-lang/crates.io-index" 6656 + checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa" 6657 + dependencies = [ 6658 + "num_cpus", 6659 + ] 6660 + 6661 + [[package]] 6662 + name = "thrift" 6663 + version = "0.17.0" 6664 + source = "registry+https://github.com/rust-lang/crates.io-index" 6665 + checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09" 6666 + dependencies = [ 6667 + "byteorder", 6668 + "integer-encoding", 6669 + "log", 6670 + "ordered-float 2.10.0", 6671 + "threadpool", 6672 + ] 6673 + 6674 + [[package]] 6675 + name = "tikv-jemalloc-ctl" 6676 + version = "0.5.0" 6677 + source = "registry+https://github.com/rust-lang/crates.io-index" 6678 + checksum = "e37706572f4b151dff7a0146e040804e9c26fe3a3118591112f05cf12a4216c1" 6679 + dependencies = [ 6680 + "libc", 6681 + "paste", 6682 + "tikv-jemalloc-sys", 6683 + ] 6684 + 6685 + [[package]] 6686 + name = "tikv-jemalloc-sys" 6687 + version = "0.5.3+5.3.0-patched" 6688 + source = "registry+https://github.com/rust-lang/crates.io-index" 6689 + checksum = "a678df20055b43e57ef8cddde41cdfda9a3c1a060b67f4c5836dfb1d78543ba8" 6690 + dependencies = [ 6691 + "cc", 6692 + "libc", 6693 + ] 6694 + 6695 + [[package]] 6696 + name = "tikv-jemallocator" 6697 + version = "0.5.0" 6698 + source = "registry+https://github.com/rust-lang/crates.io-index" 6699 + checksum = "20612db8a13a6c06d57ec83953694185a367e16945f66565e8028d2c0bd76979" 6700 + dependencies = [ 6701 + "libc", 6702 + "tikv-jemalloc-sys", 6703 + ] 6704 + 6705 + [[package]] 6706 + name = "time" 6707 + version = "0.1.45" 6708 + source = "registry+https://github.com/rust-lang/crates.io-index" 6709 + checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" 6710 + dependencies = [ 6711 + "libc", 6712 + "wasi 0.10.0+wasi-snapshot-preview1", 6713 + "winapi 0.3.9", 6714 + ] 6715 + 6716 + [[package]] 6717 + name = "time" 6718 + version = "0.3.21" 6719 + source = "registry+https://github.com/rust-lang/crates.io-index" 6720 + checksum = "8f3403384eaacbca9923fa06940178ac13e4edb725486d70e8e15881d0c836cc" 6721 + dependencies = [ 6722 + "itoa", 6723 + "libc", 6724 + "num_threads", 6725 + "serde", 6726 + "time-core", 6727 + "time-macros", 6728 + ] 6729 + 6730 + [[package]] 6731 + name = "time-core" 6732 + version = "0.1.1" 6733 + source = "registry+https://github.com/rust-lang/crates.io-index" 6734 + checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" 6735 + 6736 + [[package]] 6737 + name = "time-fmt" 6738 + version = "0.3.8" 6739 + source = "registry+https://github.com/rust-lang/crates.io-index" 6740 + checksum = "78bfd61bca99323ce96911bd2c443259115460615e44f1d449cee8cb3831a1dd" 6741 + dependencies = [ 6742 + "thiserror", 6743 + "time 0.3.21", 6744 + ] 6745 + 6746 + [[package]] 6747 + name = "time-macros" 6748 + version = "0.2.9" 6749 + source = "registry+https://github.com/rust-lang/crates.io-index" 6750 + checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b" 6751 + dependencies = [ 6752 + "time-core", 6753 + ] 6754 + 6755 + [[package]] 6756 + name = "tiny-keccak" 6757 + version = "2.0.2" 6758 + source = "registry+https://github.com/rust-lang/crates.io-index" 6759 + checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" 6760 + dependencies = [ 6761 + "crunchy", 6762 + ] 6763 + 6764 + [[package]] 6765 + name = "tinytemplate" 6766 + version = "1.2.1" 6767 + source = "registry+https://github.com/rust-lang/crates.io-index" 6768 + checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 6769 + dependencies = [ 6770 + "serde", 6771 + "serde_json", 6772 + ] 6773 + 6774 + [[package]] 6775 + name = "tinyvec" 6776 + version = "1.6.0" 6777 + source = "registry+https://github.com/rust-lang/crates.io-index" 6778 + checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 6779 + dependencies = [ 6780 + "tinyvec_macros", 6781 + ] 6782 + 6783 + [[package]] 6784 + name = "tinyvec_macros" 6785 + version = "0.1.1" 6786 + source = "registry+https://github.com/rust-lang/crates.io-index" 6787 + checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 6788 + 6789 + [[package]] 6790 + name = "tokio" 6791 + version = "1.28.2" 6792 + source = "registry+https://github.com/rust-lang/crates.io-index" 6793 + checksum = "94d7b1cfd2aa4011f2de74c2c4c63665e27a71006b0a192dcd2710272e73dfa2" 6794 + dependencies = [ 6795 + "autocfg", 6796 + "bytes", 6797 + "libc", 6798 + "mio", 6799 + "num_cpus", 6800 + "parking_lot 0.12.1", 6801 + "pin-project-lite", 6802 + "signal-hook-registry", 6803 + "socket2", 6804 + "tokio-macros", 6805 + "tracing", 6806 + "windows-sys 0.48.0", 6807 + ] 6808 + 6809 + [[package]] 6810 + name = "tokio-io-timeout" 6811 + version = "1.2.0" 6812 + source = "registry+https://github.com/rust-lang/crates.io-index" 6813 + checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf" 6814 + dependencies = [ 6815 + "pin-project-lite", 6816 + "tokio", 6817 + ] 6818 + 6819 + [[package]] 6820 + name = "tokio-macros" 6821 + version = "2.1.0" 6822 + source = "registry+https://github.com/rust-lang/crates.io-index" 6823 + checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 6824 + dependencies = [ 6825 + "proc-macro2", 6826 + "quote", 6827 + "syn 2.0.18", 6828 + ] 6829 + 6830 + [[package]] 6831 + name = "tokio-native-tls" 6832 + version = "0.3.1" 6833 + source = "registry+https://github.com/rust-lang/crates.io-index" 6834 + checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 6835 + dependencies = [ 6836 + "native-tls", 6837 + "tokio", 6838 + ] 6839 + 6840 + [[package]] 6841 + name = "tokio-rustls" 6842 + version = "0.23.4" 6843 + source = "registry+https://github.com/rust-lang/crates.io-index" 6844 + checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" 6845 + dependencies = [ 6846 + "rustls 0.20.8", 6847 + "tokio", 6848 + "webpki", 6849 + ] 6850 + 6851 + [[package]] 6852 + name = "tokio-rustls" 6853 + version = "0.24.0" 6854 + source = "registry+https://github.com/rust-lang/crates.io-index" 6855 + checksum = "e0d409377ff5b1e3ca6437aa86c1eb7d40c134bfec254e44c830defa92669db5" 6856 + dependencies = [ 6857 + "rustls 0.21.1", 6858 + "tokio", 6859 + ] 6860 + 6861 + [[package]] 6862 + name = "tokio-stream" 6863 + version = "0.1.14" 6864 + source = "registry+https://github.com/rust-lang/crates.io-index" 6865 + checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" 6866 + dependencies = [ 6867 + "futures-core", 6868 + "pin-project-lite", 6869 + "tokio", 6870 + "tokio-util", 6871 + ] 6872 + 6873 + [[package]] 6874 + name = "tokio-tungstenite" 6875 + version = "0.18.0" 6876 + source = "registry+https://github.com/rust-lang/crates.io-index" 6877 + checksum = "54319c93411147bced34cb5609a80e0a8e44c5999c93903a81cd866630ec0bfd" 6878 + dependencies = [ 6879 + "futures-util", 6880 + "log", 6881 + "tokio", 6882 + "tungstenite", 6883 + ] 6884 + 6885 + [[package]] 6886 + name = "tokio-util" 6887 + version = "0.7.8" 6888 + source = "registry+https://github.com/rust-lang/crates.io-index" 6889 + checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" 6890 + dependencies = [ 6891 + "bytes", 6892 + "futures-core", 6893 + "futures-io", 6894 + "futures-sink", 6895 + "futures-util", 6896 + "hashbrown 0.12.3", 6897 + "pin-project-lite", 6898 + "slab", 6899 + "tokio", 6900 + "tracing", 6901 + ] 6902 + 6903 + [[package]] 6904 + name = "toml" 6905 + version = "0.5.11" 6906 + source = "registry+https://github.com/rust-lang/crates.io-index" 6907 + checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 6908 + dependencies = [ 6909 + "serde", 6910 + ] 6911 + 6912 + [[package]] 6913 + name = "toml" 6914 + version = "0.6.0" 6915 + source = "registry+https://github.com/rust-lang/crates.io-index" 6916 + checksum = "4fb9d890e4dc9298b70f740f615f2e05b9db37dce531f6b24fb77ac993f9f217" 6917 + dependencies = [ 6918 + "serde", 6919 + "serde_spanned", 6920 + "toml_datetime 0.5.1", 6921 + "toml_edit 0.18.1", 6922 + ] 6923 + 6924 + [[package]] 6925 + name = "toml_datetime" 6926 + version = "0.5.1" 6927 + source = "registry+https://github.com/rust-lang/crates.io-index" 6928 + checksum = "4553f467ac8e3d374bc9a177a26801e5d0f9b211aa1673fb137a403afd1c9cf5" 6929 + dependencies = [ 6930 + "serde", 6931 + ] 6932 + 6933 + [[package]] 6934 + name = "toml_datetime" 6935 + version = "0.6.2" 6936 + source = "registry+https://github.com/rust-lang/crates.io-index" 6937 + checksum = "5a76a9312f5ba4c2dec6b9161fdf25d87ad8a09256ccea5a556fef03c706a10f" 6938 + 6939 + [[package]] 6940 + name = "toml_edit" 6941 + version = "0.18.1" 6942 + source = "registry+https://github.com/rust-lang/crates.io-index" 6943 + checksum = "56c59d8dd7d0dcbc6428bf7aa2f0e823e26e43b3c9aca15bbc9475d23e5fa12b" 6944 + dependencies = [ 6945 + "indexmap", 6946 + "nom8", 6947 + "serde", 6948 + "serde_spanned", 6949 + "toml_datetime 0.5.1", 6950 + ] 6951 + 6952 + [[package]] 6953 + name = "toml_edit" 6954 + version = "0.19.10" 6955 + source = "registry+https://github.com/rust-lang/crates.io-index" 6956 + checksum = "2380d56e8670370eee6566b0bfd4265f65b3f432e8c6d85623f728d4fa31f739" 6957 + dependencies = [ 6958 + "indexmap", 6959 + "toml_datetime 0.6.2", 6960 + "winnow", 6961 + ] 6962 + 6963 + [[package]] 6964 + name = "tonic" 6965 + version = "0.8.3" 6966 + source = "registry+https://github.com/rust-lang/crates.io-index" 6967 + checksum = "8f219fad3b929bef19b1f86fbc0358d35daed8f2cac972037ac0dc10bbb8d5fb" 6968 + dependencies = [ 6969 + "async-stream", 6970 + "async-trait", 6971 + "axum", 6972 + "base64 0.13.1", 6973 + "bytes", 6974 + "futures-core", 6975 + "futures-util", 6976 + "h2", 6977 + "http", 6978 + "http-body", 6979 + "hyper", 6980 + "hyper-timeout", 6981 + "percent-encoding", 6982 + "pin-project", 6983 + "prost", 6984 + "prost-derive", 6985 + "tokio", 6986 + "tokio-stream", 6987 + "tokio-util", 6988 + "tower", 6989 + "tower-layer", 6990 + "tower-service", 6991 + "tracing", 6992 + "tracing-futures", 6993 + ] 6994 + 6995 + [[package]] 6996 + name = "tonic" 6997 + version = "0.9.2" 6998 + source = "registry+https://github.com/rust-lang/crates.io-index" 6999 + checksum = "3082666a3a6433f7f511c7192923fa1fe07c69332d3c6a2e6bb040b569199d5a" 7000 + dependencies = [ 7001 + "async-trait", 7002 + "axum", 7003 + "base64 0.21.2", 7004 + "bytes", 7005 + "flate2", 7006 + "futures-core", 7007 + "futures-util", 7008 + "h2", 7009 + "http", 7010 + "http-body", 7011 + "hyper", 7012 + "hyper-timeout", 7013 + "percent-encoding", 7014 + "pin-project", 7015 + "prost", 7016 + "tokio", 7017 + "tokio-stream", 7018 + "tower", 7019 + "tower-layer", 7020 + "tower-service", 7021 + "tracing", 7022 + ] 7023 + 7024 + [[package]] 7025 + name = "tonic-build" 7026 + version = "0.9.2" 7027 + source = "registry+https://github.com/rust-lang/crates.io-index" 7028 + checksum = "a6fdaae4c2c638bb70fe42803a26fbd6fc6ac8c72f5c59f67ecc2a2dcabf4b07" 7029 + dependencies = [ 7030 + "prettyplease 0.1.25", 7031 + "proc-macro2", 7032 + "prost-build", 7033 + "quote", 7034 + "syn 1.0.109", 7035 + ] 7036 + 7037 + [[package]] 7038 + name = "tower" 7039 + version = "0.4.13" 7040 + source = "registry+https://github.com/rust-lang/crates.io-index" 7041 + checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 7042 + dependencies = [ 7043 + "futures-core", 7044 + "futures-util", 7045 + "indexmap", 7046 + "pin-project", 7047 + "pin-project-lite", 7048 + "rand 0.8.5", 7049 + "slab", 7050 + "tokio", 7051 + "tokio-util", 7052 + "tower-layer", 7053 + "tower-service", 7054 + "tracing", 7055 + ] 7056 + 7057 + [[package]] 7058 + name = "tower-http" 7059 + version = "0.4.0" 7060 + source = "registry+https://github.com/rust-lang/crates.io-index" 7061 + checksum = "5d1d42a9b3f3ec46ba828e8d376aec14592ea199f70a06a548587ecd1c4ab658" 7062 + dependencies = [ 7063 + "async-compression", 7064 + "bitflags", 7065 + "bytes", 7066 + "futures-core", 7067 + "futures-util", 7068 + "http", 7069 + "http-body", 7070 + "http-range-header", 7071 + "pin-project-lite", 7072 + "tokio", 7073 + "tokio-util", 7074 + "tower-layer", 7075 + "tower-service", 7076 + ] 7077 + 7078 + [[package]] 7079 + name = "tower-layer" 7080 + version = "0.3.2" 7081 + source = "registry+https://github.com/rust-lang/crates.io-index" 7082 + checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" 7083 + 7084 + [[package]] 7085 + name = "tower-service" 7086 + version = "0.3.2" 7087 + source = "registry+https://github.com/rust-lang/crates.io-index" 7088 + checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 7089 + 7090 + [[package]] 7091 + name = "tracing" 7092 + version = "0.1.37" 7093 + source = "registry+https://github.com/rust-lang/crates.io-index" 7094 + checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 7095 + dependencies = [ 7096 + "cfg-if", 7097 + "log", 7098 + "pin-project-lite", 7099 + "tracing-attributes", 7100 + "tracing-core", 7101 + ] 7102 + 7103 + [[package]] 7104 + name = "tracing-attributes" 7105 + version = "0.1.24" 7106 + source = "registry+https://github.com/rust-lang/crates.io-index" 7107 + checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74" 7108 + dependencies = [ 7109 + "proc-macro2", 7110 + "quote", 7111 + "syn 2.0.18", 7112 + ] 7113 + 7114 + [[package]] 7115 + name = "tracing-core" 7116 + version = "0.1.31" 7117 + source = "registry+https://github.com/rust-lang/crates.io-index" 7118 + checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 7119 + dependencies = [ 7120 + "once_cell", 7121 + "valuable", 7122 + ] 7123 + 7124 + [[package]] 7125 + name = "tracing-futures" 7126 + version = "0.2.5" 7127 + source = "registry+https://github.com/rust-lang/crates.io-index" 7128 + checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2" 7129 + dependencies = [ 7130 + "pin-project", 7131 + "tracing", 7132 + ] 7133 + 7134 + [[package]] 7135 + name = "tracing-log" 7136 + version = "0.1.3" 7137 + source = "registry+https://github.com/rust-lang/crates.io-index" 7138 + checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 7139 + dependencies = [ 7140 + "lazy_static", 7141 + "log", 7142 + "tracing-core", 7143 + ] 7144 + 7145 + [[package]] 7146 + name = "tracing-opentelemetry" 7147 + version = "0.19.0" 7148 + source = "registry+https://github.com/rust-lang/crates.io-index" 7149 + checksum = "00a39dcf9bfc1742fa4d6215253b33a6e474be78275884c216fc2a06267b3600" 7150 + dependencies = [ 7151 + "once_cell", 7152 + "opentelemetry", 7153 + "tracing", 7154 + "tracing-core", 7155 + "tracing-log", 7156 + "tracing-subscriber", 7157 + ] 7158 + 7159 + [[package]] 7160 + name = "tracing-subscriber" 7161 + version = "0.3.17" 7162 + source = "registry+https://github.com/rust-lang/crates.io-index" 7163 + checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77" 7164 + dependencies = [ 7165 + "matchers", 7166 + "nu-ansi-term", 7167 + "once_cell", 7168 + "regex", 7169 + "sharded-slab", 7170 + "smallvec", 7171 + "thread_local", 7172 + "time 0.3.21", 7173 + "tracing", 7174 + "tracing-core", 7175 + "tracing-log", 7176 + ] 7177 + 7178 + [[package]] 7179 + name = "try-lock" 7180 + version = "0.2.4" 7181 + source = "registry+https://github.com/rust-lang/crates.io-index" 7182 + checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 7183 + 7184 + [[package]] 7185 + name = "tungstenite" 7186 + version = "0.18.0" 7187 + source = "registry+https://github.com/rust-lang/crates.io-index" 7188 + checksum = "30ee6ab729cd4cf0fd55218530c4522ed30b7b6081752839b68fcec8d0960788" 7189 + dependencies = [ 7190 + "base64 0.13.1", 7191 + "byteorder", 7192 + "bytes", 7193 + "http", 7194 + "httparse", 7195 + "log", 7196 + "rand 0.8.5", 7197 + "sha1", 7198 + "thiserror", 7199 + "url", 7200 + "utf-8", 7201 + ] 7202 + 7203 + [[package]] 7204 + name = "typenum" 7205 + version = "1.16.0" 7206 + source = "registry+https://github.com/rust-lang/crates.io-index" 7207 + checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 7208 + 7209 + [[package]] 7210 + name = "typetag" 7211 + version = "0.2.8" 7212 + source = "registry+https://github.com/rust-lang/crates.io-index" 7213 + checksum = "6a6898cc6f6a32698cc3e14d5632a14d2b23ed9f7b11e6b8e05ce685990acc22" 7214 + dependencies = [ 7215 + "erased-serde", 7216 + "inventory", 7217 + "once_cell", 7218 + "serde", 7219 + "typetag-impl", 7220 + ] 7221 + 7222 + [[package]] 7223 + name = "typetag-impl" 7224 + version = "0.2.8" 7225 + source = "registry+https://github.com/rust-lang/crates.io-index" 7226 + checksum = "2c3e1c30cedd24fc597f7d37a721efdbdc2b1acae012c1ef1218f4c7c2c0f3e7" 7227 + dependencies = [ 7228 + "proc-macro2", 7229 + "quote", 7230 + "syn 2.0.18", 7231 + ] 7232 + 7233 + [[package]] 7234 + name = "uaparser" 7235 + version = "0.6.0" 7236 + source = "registry+https://github.com/rust-lang/crates.io-index" 7237 + checksum = "c3d705ae455d32248d299de9af5316a79ce9dc502c0b533aaeaf5f1c2fc02cc5" 7238 + dependencies = [ 7239 + "derive_more", 7240 + "lazy_static", 7241 + "regex", 7242 + "serde", 7243 + "serde_derive", 7244 + "serde_yaml 0.8.26", 7245 + ] 7246 + 7247 + [[package]] 7248 + name = "ulid" 7249 + version = "1.0.0" 7250 + source = "registry+https://github.com/rust-lang/crates.io-index" 7251 + checksum = "13a3aaa69b04e5b66cc27309710a569ea23593612387d67daaf102e73aa974fd" 7252 + dependencies = [ 7253 + "rand 0.8.5", 7254 + "serde", 7255 + ] 7256 + 7257 + [[package]] 7258 + name = "unarray" 7259 + version = "0.1.4" 7260 + source = "registry+https://github.com/rust-lang/crates.io-index" 7261 + checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" 7262 + 7263 + [[package]] 7264 + name = "unicase" 7265 + version = "2.6.0" 7266 + source = "registry+https://github.com/rust-lang/crates.io-index" 7267 + checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" 7268 + dependencies = [ 7269 + "version_check", 7270 + ] 7271 + 7272 + [[package]] 7273 + name = "unicode-bidi" 7274 + version = "0.3.13" 7275 + source = "registry+https://github.com/rust-lang/crates.io-index" 7276 + checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 7277 + 7278 + [[package]] 7279 + name = "unicode-ident" 7280 + version = "1.0.9" 7281 + source = "registry+https://github.com/rust-lang/crates.io-index" 7282 + checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0" 7283 + 7284 + [[package]] 7285 + name = "unicode-normalization" 7286 + version = "0.1.22" 7287 + source = "registry+https://github.com/rust-lang/crates.io-index" 7288 + checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 7289 + dependencies = [ 7290 + "tinyvec", 7291 + ] 7292 + 7293 + [[package]] 7294 + name = "unicode-segmentation" 7295 + version = "1.10.1" 7296 + source = "registry+https://github.com/rust-lang/crates.io-index" 7297 + checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 7298 + 7299 + [[package]] 7300 + name = "unicode-width" 7301 + version = "0.1.10" 7302 + source = "registry+https://github.com/rust-lang/crates.io-index" 7303 + checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 7304 + 7305 + [[package]] 7306 + name = "unicode-xid" 7307 + version = "0.2.4" 7308 + source = "registry+https://github.com/rust-lang/crates.io-index" 7309 + checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 7310 + 7311 + [[package]] 7312 + name = "unicode_categories" 7313 + version = "0.1.1" 7314 + source = "registry+https://github.com/rust-lang/crates.io-index" 7315 + checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" 7316 + 7317 + [[package]] 7318 + name = "unsafe-libyaml" 7319 + version = "0.2.8" 7320 + source = "registry+https://github.com/rust-lang/crates.io-index" 7321 + checksum = "1865806a559042e51ab5414598446a5871b561d21b6764f2eabb0dd481d880a6" 7322 + 7323 + [[package]] 7324 + name = "untrusted" 7325 + version = "0.7.1" 7326 + source = "registry+https://github.com/rust-lang/crates.io-index" 7327 + checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 7328 + 7329 + [[package]] 7330 + name = "url" 7331 + version = "2.3.1" 7332 + source = "registry+https://github.com/rust-lang/crates.io-index" 7333 + checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 7334 + dependencies = [ 7335 + "form_urlencoded", 7336 + "idna", 7337 + "percent-encoding", 7338 + "serde", 7339 + ] 7340 + 7341 + [[package]] 7342 + name = "urlencoding" 7343 + version = "2.1.2" 7344 + source = "registry+https://github.com/rust-lang/crates.io-index" 7345 + checksum = "e8db7427f936968176eaa7cdf81b7f98b980b18495ec28f1b5791ac3bfe3eea9" 7346 + 7347 + [[package]] 7348 + name = "username" 7349 + version = "0.2.0" 7350 + source = "registry+https://github.com/rust-lang/crates.io-index" 7351 + checksum = "92e425df6527f7bc1adc7eb3b829ecaec746fbbc0b05e42133ff84afef3b1a09" 7352 + dependencies = [ 7353 + "advapi32-sys", 7354 + "winapi 0.2.8", 7355 + ] 7356 + 7357 + [[package]] 7358 + name = "utf-8" 7359 + version = "0.7.6" 7360 + source = "registry+https://github.com/rust-lang/crates.io-index" 7361 + checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 7362 + 7363 + [[package]] 7364 + name = "utf8-ranges" 7365 + version = "1.0.5" 7366 + source = "registry+https://github.com/rust-lang/crates.io-index" 7367 + checksum = "7fcfc827f90e53a02eaef5e535ee14266c1d569214c6aa70133a624d8a3164ba" 7368 + 7369 + [[package]] 7370 + name = "utf8-width" 7371 + version = "0.1.6" 7372 + source = "registry+https://github.com/rust-lang/crates.io-index" 7373 + checksum = "5190c9442dcdaf0ddd50f37420417d219ae5261bbf5db120d0f9bab996c9cba1" 7374 + 7375 + [[package]] 7376 + name = "utf8parse" 7377 + version = "0.2.1" 7378 + source = "registry+https://github.com/rust-lang/crates.io-index" 7379 + checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 7380 + 7381 + [[package]] 7382 + name = "utoipa" 7383 + version = "3.3.0" 7384 + source = "registry+https://github.com/rust-lang/crates.io-index" 7385 + checksum = "68ae74ef183fae36d650f063ae7bde1cacbe1cd7e72b617cbe1e985551878b98" 7386 + dependencies = [ 7387 + "indexmap", 7388 + "serde", 7389 + "serde_json", 7390 + "utoipa-gen", 7391 + ] 7392 + 7393 + [[package]] 7394 + name = "utoipa-gen" 7395 + version = "3.3.0" 7396 + source = "registry+https://github.com/rust-lang/crates.io-index" 7397 + checksum = "7ea8ac818da7e746a63285594cce8a96f5e00ee31994e655bd827569cb8b137b" 7398 + dependencies = [ 7399 + "proc-macro-error", 7400 + "proc-macro2", 7401 + "quote", 7402 + "syn 2.0.18", 7403 + ] 7404 + 7405 + [[package]] 7406 + name = "uuid" 7407 + version = "1.3.3" 7408 + source = "registry+https://github.com/rust-lang/crates.io-index" 7409 + checksum = "345444e32442451b267fc254ae85a209c64be56d2890e601a0c37ff0c3c5ecd2" 7410 + dependencies = [ 7411 + "getrandom 0.2.9", 7412 + "rand 0.8.5", 7413 + "serde", 7414 + ] 7415 + 7416 + [[package]] 7417 + name = "valuable" 7418 + version = "0.1.0" 7419 + source = "registry+https://github.com/rust-lang/crates.io-index" 7420 + checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 7421 + 7422 + [[package]] 7423 + name = "value" 7424 + version = "0.1.0" 7425 + source = "git+https://github.com/vectordotdev/vrl?rev=v0.3.0#113005bcee6cd7b5ea0a53a7db2fc45ba4bc4125" 7426 + dependencies = [ 7427 + "bytes", 7428 + "chrono", 7429 + "once_cell", 7430 + "ordered-float 3.7.0", 7431 + "path", 7432 + "regex", 7433 + "serde", 7434 + "serde_json", 7435 + "snafu", 7436 + "tracing", 7437 + ] 7438 + 7439 + [[package]] 7440 + name = "vcpkg" 7441 + version = "0.2.15" 7442 + source = "registry+https://github.com/rust-lang/crates.io-index" 7443 + checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 7444 + 7445 + [[package]] 7446 + name = "vec_map" 7447 + version = "0.8.2" 7448 + source = "registry+https://github.com/rust-lang/crates.io-index" 7449 + checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 7450 + 7451 + [[package]] 7452 + name = "version_check" 7453 + version = "0.9.4" 7454 + source = "registry+https://github.com/rust-lang/crates.io-index" 7455 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 7456 + 7457 + [[package]] 7458 + name = "vrl" 7459 + version = "0.1.0" 7460 + source = "git+https://github.com/vectordotdev/vrl?rev=v0.3.0#113005bcee6cd7b5ea0a53a7db2fc45ba4bc4125" 7461 + dependencies = [ 7462 + "value", 7463 + "vrl-compiler", 7464 + "vrl-diagnostic", 7465 + ] 7466 + 7467 + [[package]] 7468 + name = "vrl-compiler" 7469 + version = "0.1.0" 7470 + source = "git+https://github.com/vectordotdev/vrl?rev=v0.3.0#113005bcee6cd7b5ea0a53a7db2fc45ba4bc4125" 7471 + dependencies = [ 7472 + "anymap", 7473 + "bytes", 7474 + "chrono", 7475 + "chrono-tz", 7476 + "dyn-clone", 7477 + "getrandom 0.2.9", 7478 + "indoc", 7479 + "lalrpop-util", 7480 + "ordered-float 3.7.0", 7481 + "paste", 7482 + "path", 7483 + "regex", 7484 + "serde", 7485 + "snafu", 7486 + "thiserror", 7487 + "tracing", 7488 + "value", 7489 + "vrl-diagnostic", 7490 + "vrl-parser", 7491 + ] 7492 + 7493 + [[package]] 7494 + name = "vrl-core" 7495 + version = "0.1.0" 7496 + source = "git+https://github.com/vectordotdev/vrl?rev=v0.3.0#113005bcee6cd7b5ea0a53a7db2fc45ba4bc4125" 7497 + dependencies = [ 7498 + "bytes", 7499 + "chrono", 7500 + "chrono-tz", 7501 + "derivative", 7502 + "nom", 7503 + "ordered-float 3.7.0", 7504 + "path", 7505 + "serde", 7506 + "serde_json", 7507 + "snafu", 7508 + "value", 7509 + "vrl-diagnostic", 7510 + ] 7511 + 7512 + [[package]] 7513 + name = "vrl-diagnostic" 7514 + version = "0.1.0" 7515 + source = "git+https://github.com/vectordotdev/vrl?rev=v0.3.0#113005bcee6cd7b5ea0a53a7db2fc45ba4bc4125" 7516 + dependencies = [ 7517 + "codespan-reporting", 7518 + "termcolor", 7519 + ] 7520 + 7521 + [[package]] 7522 + name = "vrl-parser" 7523 + version = "0.1.0" 7524 + source = "git+https://github.com/vectordotdev/vrl?rev=v0.3.0#113005bcee6cd7b5ea0a53a7db2fc45ba4bc4125" 7525 + dependencies = [ 7526 + "lalrpop", 7527 + "lalrpop-util", 7528 + "ordered-float 3.7.0", 7529 + "paste", 7530 + "path", 7531 + "thiserror", 7532 + "vrl-diagnostic", 7533 + ] 7534 + 7535 + [[package]] 7536 + name = "vrl-stdlib" 7537 + version = "0.1.0" 7538 + source = "git+https://github.com/vectordotdev/vrl?rev=v0.3.0#113005bcee6cd7b5ea0a53a7db2fc45ba4bc4125" 7539 + dependencies = [ 7540 + "aes", 7541 + "base16", 7542 + "base64 0.21.2", 7543 + "bytes", 7544 + "cbc", 7545 + "cfb-mode", 7546 + "charset", 7547 + "chrono", 7548 + "cidr-utils", 7549 + "csv", 7550 + "ctr", 7551 + "data-encoding", 7552 + "dns-lookup", 7553 + "flate2", 7554 + "hex", 7555 + "hmac", 7556 + "hostname", 7557 + "indexmap", 7558 + "indoc", 7559 + "md-5", 7560 + "nom", 7561 + "ofb", 7562 + "once_cell", 7563 + "ordered-float 3.7.0", 7564 + "path", 7565 + "percent-encoding", 7566 + "quoted_printable", 7567 + "rand 0.8.5", 7568 + "regex", 7569 + "roxmltree 0.18.0", 7570 + "rust_decimal", 7571 + "seahash", 7572 + "serde", 7573 + "serde_json", 7574 + "sha-1", 7575 + "sha2", 7576 + "sha3", 7577 + "strip-ansi-escapes", 7578 + "syslog_loose", 7579 + "tracing", 7580 + "uaparser", 7581 + "url", 7582 + "utf8-width", 7583 + "uuid", 7584 + "value", 7585 + "vrl-compiler", 7586 + "vrl-core", 7587 + "vrl-diagnostic", 7588 + "woothee", 7589 + "zstd 0.12.3+zstd.1.5.2", 7590 + ] 7591 + 7592 + [[package]] 7593 + name = "vsimd" 7594 + version = "0.8.0" 7595 + source = "registry+https://github.com/rust-lang/crates.io-index" 7596 + checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64" 7597 + 7598 + [[package]] 7599 + name = "vte" 7600 + version = "0.10.1" 7601 + source = "registry+https://github.com/rust-lang/crates.io-index" 7602 + checksum = "6cbce692ab4ca2f1f3047fcf732430249c0e971bfdd2b234cf2c47ad93af5983" 7603 + dependencies = [ 7604 + "arrayvec 0.5.2", 7605 + "utf8parse", 7606 + "vte_generate_state_changes", 7607 + ] 7608 + 7609 + [[package]] 7610 + name = "vte_generate_state_changes" 7611 + version = "0.1.1" 7612 + source = "registry+https://github.com/rust-lang/crates.io-index" 7613 + checksum = "d257817081c7dffcdbab24b9e62d2def62e2ff7d00b1c20062551e6cccc145ff" 7614 + dependencies = [ 7615 + "proc-macro2", 7616 + "quote", 7617 + ] 7618 + 7619 + [[package]] 7620 + name = "wait-timeout" 7621 + version = "0.2.0" 7622 + source = "registry+https://github.com/rust-lang/crates.io-index" 7623 + checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6" 7624 + dependencies = [ 7625 + "libc", 7626 + ] 7627 + 7628 + [[package]] 7629 + name = "waker-fn" 7630 + version = "1.1.0" 7631 + source = "registry+https://github.com/rust-lang/crates.io-index" 7632 + checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 7633 + 7634 + [[package]] 7635 + name = "walkdir" 7636 + version = "2.3.3" 7637 + source = "registry+https://github.com/rust-lang/crates.io-index" 7638 + checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" 7639 + dependencies = [ 7640 + "same-file", 7641 + "winapi-util", 7642 + ] 7643 + 7644 + [[package]] 7645 + name = "want" 7646 + version = "0.3.0" 7647 + source = "registry+https://github.com/rust-lang/crates.io-index" 7648 + checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 7649 + dependencies = [ 7650 + "log", 7651 + "try-lock", 7652 + ] 7653 + 7654 + [[package]] 7655 + name = "warp" 7656 + version = "0.3.5" 7657 + source = "registry+https://github.com/rust-lang/crates.io-index" 7658 + checksum = "ba431ef570df1287f7f8b07e376491ad54f84d26ac473489427231e1718e1f69" 7659 + dependencies = [ 7660 + "bytes", 7661 + "futures-channel", 7662 + "futures-util", 7663 + "headers", 7664 + "http", 7665 + "hyper", 7666 + "log", 7667 + "mime", 7668 + "mime_guess", 7669 + "multer", 7670 + "percent-encoding", 7671 + "pin-project", 7672 + "rustls-pemfile", 7673 + "scoped-tls", 7674 + "serde", 7675 + "serde_json", 7676 + "serde_urlencoded", 7677 + "tokio", 7678 + "tokio-stream", 7679 + "tokio-tungstenite", 7680 + "tokio-util", 7681 + "tower-service", 7682 + "tracing", 7683 + ] 7684 + 7685 + [[package]] 7686 + name = "wasi" 7687 + version = "0.9.0+wasi-snapshot-preview1" 7688 + source = "registry+https://github.com/rust-lang/crates.io-index" 7689 + checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 7690 + 7691 + [[package]] 7692 + name = "wasi" 7693 + version = "0.10.0+wasi-snapshot-preview1" 7694 + source = "registry+https://github.com/rust-lang/crates.io-index" 7695 + checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 7696 + 7697 + [[package]] 7698 + name = "wasi" 7699 + version = "0.11.0+wasi-snapshot-preview1" 7700 + source = "registry+https://github.com/rust-lang/crates.io-index" 7701 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 7702 + 7703 + [[package]] 7704 + name = "wasm-bindgen" 7705 + version = "0.2.86" 7706 + source = "registry+https://github.com/rust-lang/crates.io-index" 7707 + checksum = "5bba0e8cb82ba49ff4e229459ff22a191bbe9a1cb3a341610c9c33efc27ddf73" 7708 + dependencies = [ 7709 + "cfg-if", 7710 + "wasm-bindgen-macro", 7711 + ] 7712 + 7713 + [[package]] 7714 + name = "wasm-bindgen-backend" 7715 + version = "0.2.86" 7716 + source = "registry+https://github.com/rust-lang/crates.io-index" 7717 + checksum = "19b04bc93f9d6bdee709f6bd2118f57dd6679cf1176a1af464fca3ab0d66d8fb" 7718 + dependencies = [ 7719 + "bumpalo", 7720 + "log", 7721 + "once_cell", 7722 + "proc-macro2", 7723 + "quote", 7724 + "syn 2.0.18", 7725 + "wasm-bindgen-shared", 7726 + ] 7727 + 7728 + [[package]] 7729 + name = "wasm-bindgen-futures" 7730 + version = "0.4.36" 7731 + source = "registry+https://github.com/rust-lang/crates.io-index" 7732 + checksum = "2d1985d03709c53167ce907ff394f5316aa22cb4e12761295c5dc57dacb6297e" 7733 + dependencies = [ 7734 + "cfg-if", 7735 + "js-sys", 7736 + "wasm-bindgen", 7737 + "web-sys", 7738 + ] 7739 + 7740 + [[package]] 7741 + name = "wasm-bindgen-macro" 7742 + version = "0.2.86" 7743 + source = "registry+https://github.com/rust-lang/crates.io-index" 7744 + checksum = "14d6b024f1a526bb0234f52840389927257beb670610081360e5a03c5df9c258" 7745 + dependencies = [ 7746 + "quote", 7747 + "wasm-bindgen-macro-support", 7748 + ] 7749 + 7750 + [[package]] 7751 + name = "wasm-bindgen-macro-support" 7752 + version = "0.2.86" 7753 + source = "registry+https://github.com/rust-lang/crates.io-index" 7754 + checksum = "e128beba882dd1eb6200e1dc92ae6c5dbaa4311aa7bb211ca035779e5efc39f8" 7755 + dependencies = [ 7756 + "proc-macro2", 7757 + "quote", 7758 + "syn 2.0.18", 7759 + "wasm-bindgen-backend", 7760 + "wasm-bindgen-shared", 7761 + ] 7762 + 7763 + [[package]] 7764 + name = "wasm-bindgen-shared" 7765 + version = "0.2.86" 7766 + source = "registry+https://github.com/rust-lang/crates.io-index" 7767 + checksum = "ed9d5b4305409d1fc9482fee2d7f9bcbf24b3972bf59817ef757e23982242a93" 7768 + 7769 + [[package]] 7770 + name = "wasm-streams" 7771 + version = "0.2.3" 7772 + source = "registry+https://github.com/rust-lang/crates.io-index" 7773 + checksum = "6bbae3363c08332cadccd13b67db371814cd214c2524020932f0804b8cf7c078" 7774 + dependencies = [ 7775 + "futures-util", 7776 + "js-sys", 7777 + "wasm-bindgen", 7778 + "wasm-bindgen-futures", 7779 + "web-sys", 7780 + ] 7781 + 7782 + [[package]] 7783 + name = "web-sys" 7784 + version = "0.3.63" 7785 + source = "registry+https://github.com/rust-lang/crates.io-index" 7786 + checksum = "3bdd9ef4e984da1187bf8110c5cf5b845fbc87a23602cdf912386a76fcd3a7c2" 7787 + dependencies = [ 7788 + "js-sys", 7789 + "wasm-bindgen", 7790 + ] 7791 + 7792 + [[package]] 7793 + name = "webpki" 7794 + version = "0.22.0" 7795 + source = "registry+https://github.com/rust-lang/crates.io-index" 7796 + checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" 7797 + dependencies = [ 7798 + "ring", 7799 + "untrusted", 7800 + ] 7801 + 7802 + [[package]] 7803 + name = "webpki-roots" 7804 + version = "0.22.6" 7805 + source = "registry+https://github.com/rust-lang/crates.io-index" 7806 + checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" 7807 + dependencies = [ 7808 + "webpki", 7809 + ] 7810 + 7811 + [[package]] 7812 + name = "which" 7813 + version = "4.4.0" 7814 + source = "registry+https://github.com/rust-lang/crates.io-index" 7815 + checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269" 7816 + dependencies = [ 7817 + "either", 7818 + "libc", 7819 + "once_cell", 7820 + ] 7821 + 7822 + [[package]] 7823 + name = "whoami" 7824 + version = "1.4.0" 7825 + source = "registry+https://github.com/rust-lang/crates.io-index" 7826 + checksum = "2c70234412ca409cc04e864e89523cb0fc37f5e1344ebed5a3ebf4192b6b9f68" 7827 + dependencies = [ 7828 + "wasm-bindgen", 7829 + "web-sys", 7830 + ] 7831 + 7832 + [[package]] 7833 + name = "winapi" 7834 + version = "0.2.8" 7835 + source = "registry+https://github.com/rust-lang/crates.io-index" 7836 + checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" 7837 + 7838 + [[package]] 7839 + name = "winapi" 7840 + version = "0.3.9" 7841 + source = "registry+https://github.com/rust-lang/crates.io-index" 7842 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 7843 + dependencies = [ 7844 + "winapi-i686-pc-windows-gnu", 7845 + "winapi-x86_64-pc-windows-gnu", 7846 + ] 7847 + 7848 + [[package]] 7849 + name = "winapi-build" 7850 + version = "0.1.1" 7851 + source = "registry+https://github.com/rust-lang/crates.io-index" 7852 + checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" 7853 + 7854 + [[package]] 7855 + name = "winapi-i686-pc-windows-gnu" 7856 + version = "0.4.0" 7857 + source = "registry+https://github.com/rust-lang/crates.io-index" 7858 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 7859 + 7860 + [[package]] 7861 + name = "winapi-util" 7862 + version = "0.1.5" 7863 + source = "registry+https://github.com/rust-lang/crates.io-index" 7864 + checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 7865 + dependencies = [ 7866 + "winapi 0.3.9", 7867 + ] 7868 + 7869 + [[package]] 7870 + name = "winapi-x86_64-pc-windows-gnu" 7871 + version = "0.4.0" 7872 + source = "registry+https://github.com/rust-lang/crates.io-index" 7873 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 7874 + 7875 + [[package]] 7876 + name = "windows" 7877 + version = "0.48.0" 7878 + source = "registry+https://github.com/rust-lang/crates.io-index" 7879 + checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 7880 + dependencies = [ 7881 + "windows-targets 0.48.0", 7882 + ] 7883 + 7884 + [[package]] 7885 + name = "windows-sys" 7886 + version = "0.42.0" 7887 + source = "registry+https://github.com/rust-lang/crates.io-index" 7888 + checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 7889 + dependencies = [ 7890 + "windows_aarch64_gnullvm 0.42.2", 7891 + "windows_aarch64_msvc 0.42.2", 7892 + "windows_i686_gnu 0.42.2", 7893 + "windows_i686_msvc 0.42.2", 7894 + "windows_x86_64_gnu 0.42.2", 7895 + "windows_x86_64_gnullvm 0.42.2", 7896 + "windows_x86_64_msvc 0.42.2", 7897 + ] 7898 + 7899 + [[package]] 7900 + name = "windows-sys" 7901 + version = "0.45.0" 7902 + source = "registry+https://github.com/rust-lang/crates.io-index" 7903 + checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 7904 + dependencies = [ 7905 + "windows-targets 0.42.2", 7906 + ] 7907 + 7908 + [[package]] 7909 + name = "windows-sys" 7910 + version = "0.48.0" 7911 + source = "registry+https://github.com/rust-lang/crates.io-index" 7912 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 7913 + dependencies = [ 7914 + "windows-targets 0.48.0", 7915 + ] 7916 + 7917 + [[package]] 7918 + name = "windows-targets" 7919 + version = "0.42.2" 7920 + source = "registry+https://github.com/rust-lang/crates.io-index" 7921 + checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 7922 + dependencies = [ 7923 + "windows_aarch64_gnullvm 0.42.2", 7924 + "windows_aarch64_msvc 0.42.2", 7925 + "windows_i686_gnu 0.42.2", 7926 + "windows_i686_msvc 0.42.2", 7927 + "windows_x86_64_gnu 0.42.2", 7928 + "windows_x86_64_gnullvm 0.42.2", 7929 + "windows_x86_64_msvc 0.42.2", 7930 + ] 7931 + 7932 + [[package]] 7933 + name = "windows-targets" 7934 + version = "0.48.0" 7935 + source = "registry+https://github.com/rust-lang/crates.io-index" 7936 + checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 7937 + dependencies = [ 7938 + "windows_aarch64_gnullvm 0.48.0", 7939 + "windows_aarch64_msvc 0.48.0", 7940 + "windows_i686_gnu 0.48.0", 7941 + "windows_i686_msvc 0.48.0", 7942 + "windows_x86_64_gnu 0.48.0", 7943 + "windows_x86_64_gnullvm 0.48.0", 7944 + "windows_x86_64_msvc 0.48.0", 7945 + ] 7946 + 7947 + [[package]] 7948 + name = "windows_aarch64_gnullvm" 7949 + version = "0.42.2" 7950 + source = "registry+https://github.com/rust-lang/crates.io-index" 7951 + checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 7952 + 7953 + [[package]] 7954 + name = "windows_aarch64_gnullvm" 7955 + version = "0.48.0" 7956 + source = "registry+https://github.com/rust-lang/crates.io-index" 7957 + checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 7958 + 7959 + [[package]] 7960 + name = "windows_aarch64_msvc" 7961 + version = "0.42.2" 7962 + source = "registry+https://github.com/rust-lang/crates.io-index" 7963 + checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 7964 + 7965 + [[package]] 7966 + name = "windows_aarch64_msvc" 7967 + version = "0.48.0" 7968 + source = "registry+https://github.com/rust-lang/crates.io-index" 7969 + checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 7970 + 7971 + [[package]] 7972 + name = "windows_i686_gnu" 7973 + version = "0.42.2" 7974 + source = "registry+https://github.com/rust-lang/crates.io-index" 7975 + checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 7976 + 7977 + [[package]] 7978 + name = "windows_i686_gnu" 7979 + version = "0.48.0" 7980 + source = "registry+https://github.com/rust-lang/crates.io-index" 7981 + checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 7982 + 7983 + [[package]] 7984 + name = "windows_i686_msvc" 7985 + version = "0.42.2" 7986 + source = "registry+https://github.com/rust-lang/crates.io-index" 7987 + checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 7988 + 7989 + [[package]] 7990 + name = "windows_i686_msvc" 7991 + version = "0.48.0" 7992 + source = "registry+https://github.com/rust-lang/crates.io-index" 7993 + checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 7994 + 7995 + [[package]] 7996 + name = "windows_x86_64_gnu" 7997 + version = "0.42.2" 7998 + source = "registry+https://github.com/rust-lang/crates.io-index" 7999 + checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 8000 + 8001 + [[package]] 8002 + name = "windows_x86_64_gnu" 8003 + version = "0.48.0" 8004 + source = "registry+https://github.com/rust-lang/crates.io-index" 8005 + checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 8006 + 8007 + [[package]] 8008 + name = "windows_x86_64_gnullvm" 8009 + version = "0.42.2" 8010 + source = "registry+https://github.com/rust-lang/crates.io-index" 8011 + checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 8012 + 8013 + [[package]] 8014 + name = "windows_x86_64_gnullvm" 8015 + version = "0.48.0" 8016 + source = "registry+https://github.com/rust-lang/crates.io-index" 8017 + checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 8018 + 8019 + [[package]] 8020 + name = "windows_x86_64_msvc" 8021 + version = "0.42.2" 8022 + source = "registry+https://github.com/rust-lang/crates.io-index" 8023 + checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 8024 + 8025 + [[package]] 8026 + name = "windows_x86_64_msvc" 8027 + version = "0.48.0" 8028 + source = "registry+https://github.com/rust-lang/crates.io-index" 8029 + checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 8030 + 8031 + [[package]] 8032 + name = "winnow" 8033 + version = "0.4.6" 8034 + source = "registry+https://github.com/rust-lang/crates.io-index" 8035 + checksum = "61de7bac303dc551fe038e2b3cef0f571087a47571ea6e79a87692ac99b99699" 8036 + dependencies = [ 8037 + "memchr", 8038 + ] 8039 + 8040 + [[package]] 8041 + name = "winreg" 8042 + version = "0.10.1" 8043 + source = "registry+https://github.com/rust-lang/crates.io-index" 8044 + checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 8045 + dependencies = [ 8046 + "winapi 0.3.9", 8047 + ] 8048 + 8049 + [[package]] 8050 + name = "wiremock" 8051 + version = "0.5.18" 8052 + source = "registry+https://github.com/rust-lang/crates.io-index" 8053 + checksum = "bd7b0b5b253ebc0240d6aac6dd671c495c467420577bf634d3064ae7e6fa2b4c" 8054 + dependencies = [ 8055 + "assert-json-diff 2.0.2", 8056 + "async-trait", 8057 + "base64 0.21.2", 8058 + "deadpool", 8059 + "futures", 8060 + "futures-timer", 8061 + "http-types", 8062 + "hyper", 8063 + "log", 8064 + "once_cell", 8065 + "regex", 8066 + "serde", 8067 + "serde_json", 8068 + "tokio", 8069 + ] 8070 + 8071 + [[package]] 8072 + name = "woothee" 8073 + version = "0.13.0" 8074 + source = "registry+https://github.com/rust-lang/crates.io-index" 8075 + checksum = "896174c6a4779d4d7d4523dd27aef7d46609eda2497e370f6c998325c6bf6971" 8076 + dependencies = [ 8077 + "lazy_static", 8078 + "regex", 8079 + ] 8080 + 8081 + [[package]] 8082 + name = "wyz" 8083 + version = "0.5.1" 8084 + source = "registry+https://github.com/rust-lang/crates.io-index" 8085 + checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 8086 + dependencies = [ 8087 + "tap", 8088 + ] 8089 + 8090 + [[package]] 8091 + name = "xml-rs" 8092 + version = "0.8.14" 8093 + source = "registry+https://github.com/rust-lang/crates.io-index" 8094 + checksum = "52839dc911083a8ef63efa4d039d1f58b5e409f923e44c80828f206f66e5541c" 8095 + 8096 + [[package]] 8097 + name = "xmlparser" 8098 + version = "0.13.5" 8099 + source = "registry+https://github.com/rust-lang/crates.io-index" 8100 + checksum = "4d25c75bf9ea12c4040a97f829154768bbbce366287e2dc044af160cd79a13fd" 8101 + 8102 + [[package]] 8103 + name = "yaml-rust" 8104 + version = "0.4.5" 8105 + source = "registry+https://github.com/rust-lang/crates.io-index" 8106 + checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 8107 + dependencies = [ 8108 + "linked-hash-map", 8109 + ] 8110 + 8111 + [[package]] 8112 + name = "yansi" 8113 + version = "0.5.1" 8114 + source = "registry+https://github.com/rust-lang/crates.io-index" 8115 + checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" 8116 + 8117 + [[package]] 8118 + name = "zeroize" 8119 + version = "1.6.0" 8120 + source = "registry+https://github.com/rust-lang/crates.io-index" 8121 + checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9" 8122 + 8123 + [[package]] 8124 + name = "zstd" 8125 + version = "0.11.2+zstd.1.5.2" 8126 + source = "registry+https://github.com/rust-lang/crates.io-index" 8127 + checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" 8128 + dependencies = [ 8129 + "zstd-safe 5.0.2+zstd.1.5.2", 8130 + ] 8131 + 8132 + [[package]] 8133 + name = "zstd" 8134 + version = "0.12.3+zstd.1.5.2" 8135 + source = "registry+https://github.com/rust-lang/crates.io-index" 8136 + checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806" 8137 + dependencies = [ 8138 + "zstd-safe 6.0.5+zstd.1.5.4", 8139 + ] 8140 + 8141 + [[package]] 8142 + name = "zstd-safe" 8143 + version = "5.0.2+zstd.1.5.2" 8144 + source = "registry+https://github.com/rust-lang/crates.io-index" 8145 + checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" 8146 + dependencies = [ 8147 + "libc", 8148 + "zstd-sys", 8149 + ] 8150 + 8151 + [[package]] 8152 + name = "zstd-safe" 8153 + version = "6.0.5+zstd.1.5.4" 8154 + source = "registry+https://github.com/rust-lang/crates.io-index" 8155 + checksum = "d56d9e60b4b1758206c238a10165fbcae3ca37b01744e394c463463f6529d23b" 8156 + dependencies = [ 8157 + "libc", 8158 + "zstd-sys", 8159 + ] 8160 + 8161 + [[package]] 8162 + name = "zstd-sys" 8163 + version = "2.0.8+zstd.1.5.5" 8164 + source = "registry+https://github.com/rust-lang/crates.io-index" 8165 + checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c" 8166 + dependencies = [ 8167 + "cc", 8168 + "libc", 8169 + "pkg-config", 8170 + ]
+85
pkgs/servers/search/quickwit/default.nix
··· 1 + { stdenv 2 + , lib 3 + , fetchFromGitHub 4 + , rustPlatform 5 + , nix-update-script 6 + , protobuf 7 + , Security 8 + }: 9 + 10 + let 11 + pname = "quickwit"; 12 + version = "0.6.1"; 13 + in 14 + rustPlatform.buildRustPackage { 15 + inherit pname version; 16 + 17 + src = fetchFromGitHub { 18 + owner = "quickwit-oss"; 19 + repo = pname; 20 + rev = "v${version}"; 21 + hash = "sha256-MzPFS1f7AdqfFKSBJHoL0h1nbzRlMJt35msoQ6Ual/Q="; 22 + }; 23 + 24 + postPatch = '' 25 + substituteInPlace ./quickwit-ingest/build.rs \ 26 + --replace '&[]' '&["."]' 27 + substituteInPlace ./quickwit-control-plane/build.rs \ 28 + --replace '&[]' '&["."]' 29 + substituteInPlace ./quickwit-codegen/example/build.rs \ 30 + --replace '&[]' '&["."]' 31 + ''; 32 + 33 + sourceRoot = "source/quickwit"; 34 + 35 + buildInputs = lib.optionals stdenv.isDarwin [ Security ]; 36 + 37 + cargoLock = { 38 + lockFile = ./Cargo.lock; 39 + outputHashes = { 40 + "chitchat-0.5.0" = "sha256-gGWMzTzQNb9JXSbPIanMJpEKhKen1KsIrWQz6wvypDY="; 41 + "ownedbytes-0.5.0" = "sha256-+hfp2r/m4Mu+HUXy3gfyU4klHqq+5k363Tpc34IWgLQ="; 42 + "path-0.1.0" = "sha256-f+Iix+YuKy45zoQXH7ctzANaL96s7HNUBOhcM1ZV0Ko="; 43 + "pulsar-5.0.2" = "sha256-j7wpsAro6x4fk3pvSL4fxLkddJFq8duZ7jDj0Edf3YQ="; 44 + "sasl2-sys-0.1.20+2.1.28" = "sha256-u4BsfmTDFxuY3i1amLCsr7MDv356YPThMHclura0Sxs="; 45 + }; 46 + }; 47 + 48 + # needed for internal protobuf c wrapper library 49 + PROTOC = "${protobuf}/bin/protoc"; 50 + PROTOC_INCLUDE = "${protobuf}/include"; 51 + 52 + passthru.updateScript = nix-update-script { }; 53 + 54 + checkFlags = [ 55 + # tries to make a network access 56 + "--skip=test_all_local_index" 57 + "--skip=test_cmd_create" 58 + "--skip=test_cmd_create_no_index_uri" 59 + "--skip=test_cmd_search_aggregation" 60 + "--skip=test_cmd_search_with_snippets" 61 + "--skip=test_delete_index_cli" 62 + "--skip=test_delete_index_cli_dry_run" 63 + "--skip=test_ingest_docs_cli" 64 + "--skip=test_ingest_docs_cli_keep_cache" 65 + "--skip=test_search_index_cli" 66 + "--skip=test_garbage_collect_cli_no_grace" 67 + "--skip=actors::indexing_service::tests::test_indexing_service_spawn_observe_detach" 68 + "--skip=object_storage::s3_compatible_storage::tests::test_s3_compatible_storage_relative_path" 69 + # flaky test 70 + "--skip=actors::indexer::tests::test_indexer_triggers_commit_on_drained_mailbox" 71 + "--skip=actors::indexer::tests::test_indexer_partitioning" 72 + "--skip=actors::indexing_pipeline::tests::test_merge_pipeline_does_not_stop_on_indexing_pipeline_failure" 73 + # fail on darwin for some reason 74 + "--skip=io::tests::test_controlled_writer_limited_async" 75 + "--skip=io::tests::test_controlled_writer_limited_sync" 76 + ]; 77 + 78 + meta = with lib; { 79 + description = "Sub-second search & analytics engine on cloud storage"; 80 + homepage = "https://quickwit.io/"; 81 + license = licenses.agpl3Only; 82 + maintainers = with maintainers; [ happysalada ]; 83 + platforms = platforms.all; 84 + }; 85 + }
+2 -2
pkgs/servers/sql/postgresql/ext/pgvector.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pgvector"; 5 - version = "0.4.3"; 5 + version = "0.4.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "pgvector"; 9 9 repo = "pgvector"; 10 10 rev = "v${version}"; 11 - hash = "sha256-WkbY/jc34ueJ6INIt9XCEW9jK7wUizeChgFXL9doZ4Q="; 11 + hash = "sha256-D2jB0rks4zmWtGB7SCXG5XW0PCun8OPawp3W/VGRQn0="; 12 12 }; 13 13 14 14 buildInputs = [ postgresql ];
+3 -3
pkgs/tools/admin/scaleway-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "scaleway-cli"; 5 - version = "2.15.0"; 5 + version = "2.16.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "scaleway"; 9 9 repo = "scaleway-cli"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-iKyUtUm+vDwHZmjoeNTEE3rabw0krSganaHiEIN9BWE="; 11 + sha256 = "sha256-bKqlI2t7fBkKxtQPaboDsov206eD9bWpxAugaUFBIRc="; 12 12 }; 13 13 14 - vendorHash = "sha256-m03VMzLCBASn0O66Zh/E7UlC6GmgghgY0rdcKadL3mk="; 14 + vendorHash = "sha256-Y28j4vgGZ23yV2SqIsfhtc/Kj4g+Lgju/t2w+3xarnE="; 15 15 16 16 ldflags = [ 17 17 "-w"
+4
pkgs/top-level/all-packages.nix
··· 11803 11803 11804 11804 quicktun = callPackage ../tools/networking/quicktun { }; 11805 11805 11806 + quickwit = callPackage ../servers/search/quickwit { 11807 + inherit (darwin.apple_sdk.frameworks) Security; 11808 + }; 11809 + 11806 11810 quilt = callPackage ../development/tools/quilt { }; 11807 11811 11808 11812 raider = callPackage ../applications/misc/raider { };