materialize: fix on darwin + various improvements (#361500)

authored by Gaétan Lepage and committed by GitHub 95c18ad1 59e0687d

+197 -10188
+197
pkgs/by-name/ma/materialize/package.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchzip, 5 + rustPlatform, 6 + fetchFromGitHub, 7 + protobuf, 8 + 9 + # nativeBuildInputs 10 + cmake, 11 + perl, 12 + pkg-config, 13 + darwin, 14 + 15 + # buildInputs 16 + openssl, 17 + rdkafka, 18 + apple-sdk_11, 19 + darwinMinVersionHook, 20 + 21 + versionCheckHook, 22 + nix-update-script, 23 + }: 24 + 25 + let 26 + fetchNpmPackage = 27 + { 28 + name, 29 + version, 30 + hash, 31 + js_prod_file, 32 + js_dev_file, 33 + ... 34 + }@args: 35 + let 36 + package = fetchzip { 37 + url = "https://registry.npmjs.org/${name}/-/${baseNameOf name}-${version}.tgz"; 38 + inherit hash; 39 + }; 40 + 41 + files = 42 + with args; 43 + [ 44 + { 45 + src = js_prod_file; 46 + dst = "./src/environmentd/src/http/static/js/vendor/${name}.js"; 47 + } 48 + { 49 + src = js_prod_file; 50 + dst = "./src/prof-http/src/http/static/js/vendor/${name}.js"; 51 + } 52 + { 53 + src = js_dev_file; 54 + dst = "./src/environmentd/src/http/static-dev/js/vendor/${name}.js"; 55 + } 56 + { 57 + src = js_dev_file; 58 + dst = "./src/prof-http/src/http/static-dev/js/vendor/${name}.js"; 59 + } 60 + ] 61 + ++ lib.optionals (args ? css_file) [ 62 + { 63 + src = css_file; 64 + dst = "./src/environmentd/src/http/static/css/vendor/${name}.css"; 65 + } 66 + { 67 + src = css_file; 68 + dst = "./src/prof-http/src/http/static/css/vendor/${name}.css"; 69 + } 70 + ] 71 + ++ lib.optionals (args ? extra_file) [ 72 + { 73 + src = extra_file.src; 74 + dst = "./src/environmentd/src/http/static/${extra_file.dst}"; 75 + } 76 + { 77 + src = extra_file.src; 78 + dst = "./src/prof-http/src/http/static/${extra_file.dst}"; 79 + } 80 + ]; 81 + in 82 + lib.concatStringsSep "\n" ( 83 + lib.forEach files ( 84 + { src, dst }: 85 + '' 86 + mkdir -p "${dirOf dst}" 87 + cp "${package}/${src}" "${dst}" 88 + '' 89 + ) 90 + ); 91 + 92 + npmPackages = import ./npm_deps.nix; 93 + in 94 + rustPlatform.buildRustPackage rec { 95 + pname = "materialize"; 96 + version = "0.84.2"; 97 + MZ_DEV_BUILD_SHA = "9f8cf75b461d288335cb6a7a73aaa670bab4a466"; 98 + 99 + src = fetchFromGitHub { 100 + owner = "MaterializeInc"; 101 + repo = "materialize"; 102 + rev = "refs/tags/v${version}"; 103 + hash = "sha256-+cvTCiTbuaPYPIyDxQlMWdJA5/6cbMoiTcSmjj5KPjs="; 104 + fetchSubmodules = true; 105 + }; 106 + 107 + postPatch = '' 108 + ${lib.concatStringsSep "\n" (map fetchNpmPackage npmPackages)} 109 + substituteInPlace ./misc/dist/materialized.service \ 110 + --replace-fail /usr/bin $out/bin \ 111 + --replace-fail _Materialize root 112 + substituteInPlace ./src/catalog/build.rs \ 113 + --replace-fail '&[ ' '&["."' 114 + ''; 115 + 116 + env = { 117 + # needed for internal protobuf c wrapper library 118 + PROTOC = lib.getExe protobuf; 119 + PROTOC_INCLUDE = "${protobuf}/include"; 120 + 121 + # needed to dynamically link rdkafka 122 + CARGO_FEATURE_DYNAMIC_LINKING = 1; 123 + }; 124 + 125 + useFetchCargoVendor = true; 126 + cargoHash = "sha256-EHVuwVYPZKaoP3GYtJpYJaKG3CLsy9CWuEmajF4P7Qc="; 127 + 128 + nativeBuildInputs = 129 + [ 130 + cmake 131 + perl 132 + pkg-config 133 + rustPlatform.bindgenHook 134 + ] 135 + # Provides the mig command used by the krb5-src build script 136 + ++ lib.optional stdenv.hostPlatform.isDarwin darwin.bootstrap_cmds; 137 + 138 + # Needed to get openssl-sys to use pkg-config. 139 + OPENSSL_NO_VENDOR = 1; 140 + 141 + buildInputs = 142 + [ 143 + openssl 144 + rdkafka 145 + ] 146 + ++ lib.optionals stdenv.hostPlatform.isDarwin [ 147 + # error: aligned allocation function of type 'void *(std::size_t, std::align_val_t)' is only available on macOS 10.13 or newer 148 + apple-sdk_11 149 + (darwinMinVersionHook "10.13") 150 + ]; 151 + 152 + # the check phase requires linking with rocksdb which can be a problem since 153 + # the rust rocksdb crate is not updated very often. 154 + doCheck = false; 155 + 156 + # Skip tests that use the network 157 + checkFlags = [ 158 + "--exact" 159 + "--skip test_client" 160 + "--skip test_client_errors" 161 + "--skip test_client_all_subjects" 162 + "--skip test_client_subject_and_references" 163 + "--skip test_no_block" 164 + "--skip test_safe_mode" 165 + "--skip test_tls" 166 + ]; 167 + 168 + cargoBuildFlags = [ "--bin environmentd --bin clusterd" ]; 169 + 170 + postInstall = '' 171 + install --mode=444 -D ./misc/dist/materialized.service $out/etc/systemd/system/materialized.service 172 + ''; 173 + 174 + nativeInstallCheckInputs = [ 175 + versionCheckHook 176 + ]; 177 + versionCheckProgram = "${placeholder "out"}/bin/environmentd"; 178 + versionCheckProgramArg = [ "--version" ]; 179 + doInstallCheck = true; 180 + 181 + passthru = { 182 + updateScript = nix-update-script { }; 183 + }; 184 + 185 + meta = { 186 + homepage = "https://materialize.com"; 187 + description = "Streaming SQL materialized view engine for real-time applications"; 188 + license = lib.licenses.bsl11; 189 + platforms = [ 190 + "x86_64-linux" 191 + "x86_64-darwin" 192 + "aarch64-linux" 193 + ]; 194 + maintainers = with lib.maintainers; [ petrosagg ]; 195 + mainProgram = "environmentd"; 196 + }; 197 + }
-10042
pkgs/servers/sql/materialize/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 = "abomonation" 7 - version = "0.7.3" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "56e72913c99b1f927aa7bd59a41518fdd9995f63ffc8760f211609e0241c4fb2" 10 - 11 - [[package]] 12 - name = "abomonation_derive" 13 - version = "0.5.0" 14 - source = "registry+https://github.com/rust-lang/crates.io-index" 15 - checksum = "e50e2a046af56a864c62d97b7153fda72c596e646be1b0c7963736821f6e1efa" 16 - dependencies = [ 17 - "proc-macro2", 18 - "quote", 19 - "synstructure", 20 - ] 21 - 22 - [[package]] 23 - name = "addr2line" 24 - version = "0.17.0" 25 - source = "registry+https://github.com/rust-lang/crates.io-index" 26 - checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b" 27 - dependencies = [ 28 - "gimli", 29 - ] 30 - 31 - [[package]] 32 - name = "adler" 33 - version = "1.0.2" 34 - source = "registry+https://github.com/rust-lang/crates.io-index" 35 - checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 36 - 37 - [[package]] 38 - name = "ahash" 39 - version = "0.8.0" 40 - source = "registry+https://github.com/rust-lang/crates.io-index" 41 - checksum = "57e6e951cfbb2db8de1828d49073a113a29fd7117b1596caa781a258c7e38d72" 42 - dependencies = [ 43 - "cfg-if", 44 - "const-random", 45 - "getrandom", 46 - "once_cell", 47 - "version_check", 48 - ] 49 - 50 - [[package]] 51 - name = "aho-corasick" 52 - version = "0.7.20" 53 - source = "registry+https://github.com/rust-lang/crates.io-index" 54 - checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" 55 - dependencies = [ 56 - "memchr", 57 - ] 58 - 59 - [[package]] 60 - name = "allocator-api2" 61 - version = "0.2.16" 62 - source = "registry+https://github.com/rust-lang/crates.io-index" 63 - checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" 64 - 65 - [[package]] 66 - name = "android-tzdata" 67 - version = "0.1.1" 68 - source = "registry+https://github.com/rust-lang/crates.io-index" 69 - checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 70 - 71 - [[package]] 72 - name = "android_system_properties" 73 - version = "0.1.5" 74 - source = "registry+https://github.com/rust-lang/crates.io-index" 75 - checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 76 - dependencies = [ 77 - "libc", 78 - ] 79 - 80 - [[package]] 81 - name = "anes" 82 - version = "0.1.6" 83 - source = "registry+https://github.com/rust-lang/crates.io-index" 84 - checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 85 - 86 - [[package]] 87 - name = "anyhow" 88 - version = "1.0.66" 89 - source = "registry+https://github.com/rust-lang/crates.io-index" 90 - checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6" 91 - dependencies = [ 92 - "backtrace", 93 - ] 94 - 95 - [[package]] 96 - name = "array-concat" 97 - version = "0.5.2" 98 - source = "registry+https://github.com/rust-lang/crates.io-index" 99 - checksum = "e9180feb72ccbc07cfe5ef7fa8bbf86ca71490d5dc9ef8ea02c7298ba94e7f7d" 100 - 101 - [[package]] 102 - name = "array-init-cursor" 103 - version = "0.2.0" 104 - source = "registry+https://github.com/rust-lang/crates.io-index" 105 - checksum = "bf7d0a018de4f6aa429b9d33d69edf69072b1c5b1cb8d3e4a5f7ef898fc3eb76" 106 - 107 - [[package]] 108 - name = "arrayvec" 109 - version = "0.5.2" 110 - source = "registry+https://github.com/rust-lang/crates.io-index" 111 - checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" 112 - 113 - [[package]] 114 - name = "arrow-format" 115 - version = "0.8.0" 116 - source = "registry+https://github.com/rust-lang/crates.io-index" 117 - checksum = "bb83ada98f9d252a3c3642d96c53a357684a87d2e9a753ddf2a30bae20b91790" 118 - dependencies = [ 119 - "planus", 120 - "serde", 121 - ] 122 - 123 - [[package]] 124 - name = "arrow2" 125 - version = "0.16.0" 126 - source = "registry+https://github.com/rust-lang/crates.io-index" 127 - checksum = "7a4c5b03335bc1cb0fd9f5297f8fd3bbfd6fb04f3cb0bc7d6c91b7128cb8336a" 128 - dependencies = [ 129 - "ahash", 130 - "arrow-format", 131 - "base64 0.13.1", 132 - "bytemuck", 133 - "chrono", 134 - "dyn-clone", 135 - "either", 136 - "ethnum", 137 - "fallible-streaming-iterator", 138 - "foreign_vec", 139 - "futures", 140 - "getrandom", 141 - "hash_hasher", 142 - "multiversion", 143 - "num-traits", 144 - "parquet2", 145 - "rustc_version", 146 - "simdutf8", 147 - "streaming-iterator", 148 - ] 149 - 150 - [[package]] 151 - name = "askama" 152 - version = "0.11.1" 153 - source = "registry+https://github.com/rust-lang/crates.io-index" 154 - checksum = "fb98f10f371286b177db5eeb9a6e5396609555686a35e1d4f7b9a9c6d8af0139" 155 - dependencies = [ 156 - "askama_derive", 157 - "askama_escape", 158 - "askama_shared", 159 - ] 160 - 161 - [[package]] 162 - name = "askama_derive" 163 - version = "0.11.2" 164 - source = "registry+https://github.com/rust-lang/crates.io-index" 165 - checksum = "87bf87e6e8b47264efa9bde63d6225c6276a52e05e91bf37eaa8afd0032d6b71" 166 - dependencies = [ 167 - "askama_shared", 168 - "proc-macro2", 169 - "syn 1.0.107", 170 - ] 171 - 172 - [[package]] 173 - name = "askama_escape" 174 - version = "0.10.3" 175 - source = "registry+https://github.com/rust-lang/crates.io-index" 176 - checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341" 177 - 178 - [[package]] 179 - name = "askama_shared" 180 - version = "0.12.2" 181 - source = "registry+https://github.com/rust-lang/crates.io-index" 182 - checksum = "bf722b94118a07fcbc6640190f247334027685d4e218b794dbfe17c32bf38ed0" 183 - dependencies = [ 184 - "askama_escape", 185 - "mime", 186 - "mime_guess", 187 - "nom", 188 - "proc-macro2", 189 - "quote", 190 - "serde", 191 - "serde_json", 192 - "syn 1.0.107", 193 - "toml", 194 - ] 195 - 196 - [[package]] 197 - name = "assert_cmd" 198 - version = "2.0.5" 199 - source = "registry+https://github.com/rust-lang/crates.io-index" 200 - checksum = "d5c2ca00549910ec251e3bd15f87aeeb206c9456b9a77b43ff6c97c54042a472" 201 - dependencies = [ 202 - "bstr 0.2.14", 203 - "doc-comment", 204 - "predicates", 205 - "predicates-core", 206 - "predicates-tree", 207 - "wait-timeout", 208 - ] 209 - 210 - [[package]] 211 - name = "async-compression" 212 - version = "0.4.5" 213 - source = "registry+https://github.com/rust-lang/crates.io-index" 214 - checksum = "bc2d0cfb2a7388d34f590e76686704c494ed7aaceed62ee1ba35cbf363abc2a5" 215 - dependencies = [ 216 - "flate2", 217 - "futures-core", 218 - "memchr", 219 - "pin-project-lite", 220 - "tokio", 221 - "zstd 0.13.0", 222 - "zstd-safe 7.0.0", 223 - ] 224 - 225 - [[package]] 226 - name = "async-stream" 227 - version = "0.3.3" 228 - source = "registry+https://github.com/rust-lang/crates.io-index" 229 - checksum = "dad5c83079eae9969be7fadefe640a1c566901f05ff91ab221de4b6f68d9507e" 230 - dependencies = [ 231 - "async-stream-impl", 232 - "futures-core", 233 - ] 234 - 235 - [[package]] 236 - name = "async-stream-impl" 237 - version = "0.3.3" 238 - source = "registry+https://github.com/rust-lang/crates.io-index" 239 - checksum = "10f203db73a71dfa2fb6dd22763990fa26f3d2625a6da2da900d23b87d26be27" 240 - dependencies = [ 241 - "proc-macro2", 242 - "quote", 243 - "syn 1.0.107", 244 - ] 245 - 246 - [[package]] 247 - name = "async-trait" 248 - version = "0.1.68" 249 - source = "registry+https://github.com/rust-lang/crates.io-index" 250 - checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" 251 - dependencies = [ 252 - "proc-macro2", 253 - "quote", 254 - "syn 2.0.39", 255 - ] 256 - 257 - [[package]] 258 - name = "asynchronous-codec" 259 - version = "0.6.0" 260 - source = "registry+https://github.com/rust-lang/crates.io-index" 261 - checksum = "f0de5164e5edbf51c45fb8c2d9664ae1c095cce1b265ecf7569093c0d66ef690" 262 - dependencies = [ 263 - "bytes", 264 - "futures-sink", 265 - "futures-util", 266 - "memchr", 267 - "pin-project-lite", 268 - ] 269 - 270 - [[package]] 271 - name = "atty" 272 - version = "0.2.14" 273 - source = "registry+https://github.com/rust-lang/crates.io-index" 274 - checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 275 - dependencies = [ 276 - "hermit-abi 0.1.6", 277 - "libc", 278 - "winapi", 279 - ] 280 - 281 - [[package]] 282 - name = "auto_impl" 283 - version = "1.1.0" 284 - source = "registry+https://github.com/rust-lang/crates.io-index" 285 - checksum = "fee3da8ef1276b0bee5dd1c7258010d8fffd31801447323115a25560e1327b89" 286 - dependencies = [ 287 - "proc-macro-error", 288 - "proc-macro2", 289 - "quote", 290 - "syn 1.0.107", 291 - ] 292 - 293 - [[package]] 294 - name = "autocfg" 295 - version = "1.1.0" 296 - source = "registry+https://github.com/rust-lang/crates.io-index" 297 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 298 - 299 - [[package]] 300 - name = "autotools" 301 - version = "0.2.5" 302 - source = "registry+https://github.com/rust-lang/crates.io-index" 303 - checksum = "c8138adefca3e5d2e73bfba83bd6eeaf904b26a7ac1b4a19892cfe16cc7e1701" 304 - dependencies = [ 305 - "cc", 306 - ] 307 - 308 - [[package]] 309 - name = "aws-config" 310 - version = "1.1.1" 311 - source = "registry+https://github.com/rust-lang/crates.io-index" 312 - checksum = "11382bd8ac4c6c182a9775990935f96c916a865f1414486595f18eb8cfa9d90b" 313 - dependencies = [ 314 - "aws-credential-types", 315 - "aws-http", 316 - "aws-runtime", 317 - "aws-sdk-sso", 318 - "aws-sdk-ssooidc", 319 - "aws-sdk-sts", 320 - "aws-smithy-async", 321 - "aws-smithy-http", 322 - "aws-smithy-json", 323 - "aws-smithy-runtime", 324 - "aws-smithy-runtime-api", 325 - "aws-smithy-types", 326 - "aws-types", 327 - "bytes", 328 - "fastrand", 329 - "hex", 330 - "http", 331 - "hyper", 332 - "ring", 333 - "time", 334 - "tokio", 335 - "tracing", 336 - "zeroize", 337 - ] 338 - 339 - [[package]] 340 - name = "aws-credential-types" 341 - version = "1.1.1" 342 - source = "registry+https://github.com/rust-lang/crates.io-index" 343 - checksum = "70a1629320d319dc715c6189b172349186557e209d2a7b893ff3d14efd33a47c" 344 - dependencies = [ 345 - "aws-smithy-async", 346 - "aws-smithy-runtime-api", 347 - "aws-smithy-types", 348 - "zeroize", 349 - ] 350 - 351 - [[package]] 352 - name = "aws-http" 353 - version = "0.60.1" 354 - source = "registry+https://github.com/rust-lang/crates.io-index" 355 - checksum = "30e4199d5d62ab09be6a64650c06cc5c4aa45806fed4c74bc4a5c8eaf039a6fa" 356 - dependencies = [ 357 - "aws-smithy-runtime-api", 358 - "aws-smithy-types", 359 - "aws-types", 360 - "bytes", 361 - "http", 362 - "http-body", 363 - "pin-project-lite", 364 - "tracing", 365 - ] 366 - 367 - [[package]] 368 - name = "aws-runtime" 369 - version = "1.1.1" 370 - source = "registry+https://github.com/rust-lang/crates.io-index" 371 - checksum = "87116d357c905b53f1828d15366363fd27b330a0393cbef349e653f686d36bad" 372 - dependencies = [ 373 - "aws-credential-types", 374 - "aws-http", 375 - "aws-sigv4", 376 - "aws-smithy-async", 377 - "aws-smithy-eventstream", 378 - "aws-smithy-http", 379 - "aws-smithy-runtime-api", 380 - "aws-smithy-types", 381 - "aws-types", 382 - "fastrand", 383 - "http", 384 - "percent-encoding", 385 - "tracing", 386 - "uuid", 387 - ] 388 - 389 - [[package]] 390 - name = "aws-sdk-s3" 391 - version = "1.8.0" 392 - source = "registry+https://github.com/rust-lang/crates.io-index" 393 - checksum = "56e78d98df174c479a7bb6a065a3314ccefe029c0c4a1cc49c0c012eea144264" 394 - dependencies = [ 395 - "aws-credential-types", 396 - "aws-http", 397 - "aws-runtime", 398 - "aws-sigv4", 399 - "aws-smithy-async", 400 - "aws-smithy-checksums", 401 - "aws-smithy-eventstream", 402 - "aws-smithy-http", 403 - "aws-smithy-json", 404 - "aws-smithy-runtime", 405 - "aws-smithy-runtime-api", 406 - "aws-smithy-types", 407 - "aws-smithy-xml", 408 - "aws-types", 409 - "bytes", 410 - "http", 411 - "http-body", 412 - "once_cell", 413 - "percent-encoding", 414 - "regex-lite", 415 - "tracing", 416 - "url", 417 - ] 418 - 419 - [[package]] 420 - name = "aws-sdk-secretsmanager" 421 - version = "1.7.0" 422 - source = "registry+https://github.com/rust-lang/crates.io-index" 423 - checksum = "09a51b0a0838b8aa5b80677d73ba88e7b05c812540bd44aede473d6e65e712aa" 424 - dependencies = [ 425 - "aws-credential-types", 426 - "aws-http", 427 - "aws-runtime", 428 - "aws-smithy-async", 429 - "aws-smithy-http", 430 - "aws-smithy-json", 431 - "aws-smithy-runtime", 432 - "aws-smithy-runtime-api", 433 - "aws-smithy-types", 434 - "aws-types", 435 - "bytes", 436 - "fastrand", 437 - "http", 438 - "once_cell", 439 - "regex-lite", 440 - "tracing", 441 - ] 442 - 443 - [[package]] 444 - name = "aws-sdk-sso" 445 - version = "1.7.0" 446 - source = "registry+https://github.com/rust-lang/crates.io-index" 447 - checksum = "86b1779a72c60d45e5699512310d7f6fb965fecc8f7419ce1b993b716f0026fd" 448 - dependencies = [ 449 - "aws-credential-types", 450 - "aws-http", 451 - "aws-runtime", 452 - "aws-smithy-async", 453 - "aws-smithy-http", 454 - "aws-smithy-json", 455 - "aws-smithy-runtime", 456 - "aws-smithy-runtime-api", 457 - "aws-smithy-types", 458 - "aws-types", 459 - "bytes", 460 - "http", 461 - "once_cell", 462 - "regex-lite", 463 - "tracing", 464 - ] 465 - 466 - [[package]] 467 - name = "aws-sdk-ssooidc" 468 - version = "1.9.0" 469 - source = "registry+https://github.com/rust-lang/crates.io-index" 470 - checksum = "56ba4a42aa91acecd5ca43b330b5c8eb7f8808d720b6a6f796a35faa302fc73d" 471 - dependencies = [ 472 - "aws-credential-types", 473 - "aws-http", 474 - "aws-runtime", 475 - "aws-smithy-async", 476 - "aws-smithy-http", 477 - "aws-smithy-json", 478 - "aws-smithy-runtime", 479 - "aws-smithy-runtime-api", 480 - "aws-smithy-types", 481 - "aws-types", 482 - "bytes", 483 - "http", 484 - "once_cell", 485 - "regex-lite", 486 - "tracing", 487 - ] 488 - 489 - [[package]] 490 - name = "aws-sdk-sts" 491 - version = "1.7.0" 492 - source = "registry+https://github.com/rust-lang/crates.io-index" 493 - checksum = "d27259dcd835b6069260edec09487383f40f45c1cc7f02c74258eff8a22555a4" 494 - dependencies = [ 495 - "aws-credential-types", 496 - "aws-http", 497 - "aws-runtime", 498 - "aws-smithy-async", 499 - "aws-smithy-http", 500 - "aws-smithy-json", 501 - "aws-smithy-query", 502 - "aws-smithy-runtime", 503 - "aws-smithy-runtime-api", 504 - "aws-smithy-types", 505 - "aws-smithy-xml", 506 - "aws-types", 507 - "http", 508 - "once_cell", 509 - "regex-lite", 510 - "tracing", 511 - ] 512 - 513 - [[package]] 514 - name = "aws-sigv4" 515 - version = "1.1.1" 516 - source = "registry+https://github.com/rust-lang/crates.io-index" 517 - checksum = "d222297ca90209dc62245f0a490355795f29de362eb5c19caea4f7f55fe69078" 518 - dependencies = [ 519 - "aws-credential-types", 520 - "aws-smithy-eventstream", 521 - "aws-smithy-http", 522 - "aws-smithy-runtime-api", 523 - "aws-smithy-types", 524 - "bytes", 525 - "form_urlencoded", 526 - "hex", 527 - "hmac", 528 - "http", 529 - "once_cell", 530 - "percent-encoding", 531 - "sha2", 532 - "time", 533 - "tracing", 534 - ] 535 - 536 - [[package]] 537 - name = "aws-smithy-async" 538 - version = "1.1.1" 539 - source = "registry+https://github.com/rust-lang/crates.io-index" 540 - checksum = "1e9f65000917e3aa94c259d67fe01fa9e4cd456187d026067d642436e6311a81" 541 - dependencies = [ 542 - "futures-util", 543 - "pin-project-lite", 544 - "tokio", 545 - ] 546 - 547 - [[package]] 548 - name = "aws-smithy-checksums" 549 - version = "0.60.1" 550 - source = "registry+https://github.com/rust-lang/crates.io-index" 551 - checksum = "4c2a63681f82fb85ca58d566534b7dc619c782fee0c61c1aa51e2b560c21cb4f" 552 - dependencies = [ 553 - "aws-smithy-http", 554 - "aws-smithy-types", 555 - "bytes", 556 - "crc32c", 557 - "crc32fast", 558 - "hex", 559 - "http", 560 - "http-body", 561 - "md-5", 562 - "pin-project-lite", 563 - "sha1", 564 - "sha2", 565 - "tracing", 566 - ] 567 - 568 - [[package]] 569 - name = "aws-smithy-eventstream" 570 - version = "0.60.1" 571 - source = "registry+https://github.com/rust-lang/crates.io-index" 572 - checksum = "a85e16fa903c70c49ab3785e5f4ac2ad2171b36e0616f321011fa57962404bb6" 573 - dependencies = [ 574 - "aws-smithy-types", 575 - "bytes", 576 - "crc32fast", 577 - ] 578 - 579 - [[package]] 580 - name = "aws-smithy-http" 581 - version = "0.60.1" 582 - source = "registry+https://github.com/rust-lang/crates.io-index" 583 - checksum = "e4e816425a6b9caea4929ac97d0cb33674849bd5f0086418abc0d02c63f7a1bf" 584 - dependencies = [ 585 - "aws-smithy-eventstream", 586 - "aws-smithy-runtime-api", 587 - "aws-smithy-types", 588 - "bytes", 589 - "bytes-utils", 590 - "futures-core", 591 - "http", 592 - "http-body", 593 - "once_cell", 594 - "percent-encoding", 595 - "pin-project-lite", 596 - "pin-utils", 597 - "tracing", 598 - ] 599 - 600 - [[package]] 601 - name = "aws-smithy-json" 602 - version = "0.60.1" 603 - source = "registry+https://github.com/rust-lang/crates.io-index" 604 - checksum = "8ab3f6d49e08df2f8d05e1bb5b68998e1e67b76054d3c43e7b954becb9a5e9ac" 605 - dependencies = [ 606 - "aws-smithy-types", 607 - ] 608 - 609 - [[package]] 610 - name = "aws-smithy-query" 611 - version = "0.60.1" 612 - source = "registry+https://github.com/rust-lang/crates.io-index" 613 - checksum = "0f94a7a3aa509ff9e8b8d80749851d04e5eee0954c43f2e7d6396c4740028737" 614 - dependencies = [ 615 - "aws-smithy-types", 616 - "urlencoding", 617 - ] 618 - 619 - [[package]] 620 - name = "aws-smithy-runtime" 621 - version = "1.1.1" 622 - source = "registry+https://github.com/rust-lang/crates.io-index" 623 - checksum = "8da5b0a3617390e769576321816112f711c13d7e1114685e022505cf51fe5e48" 624 - dependencies = [ 625 - "aws-smithy-async", 626 - "aws-smithy-http", 627 - "aws-smithy-runtime-api", 628 - "aws-smithy-types", 629 - "bytes", 630 - "fastrand", 631 - "h2", 632 - "http", 633 - "http-body", 634 - "hyper", 635 - "once_cell", 636 - "pin-project-lite", 637 - "pin-utils", 638 - "tokio", 639 - "tracing", 640 - ] 641 - 642 - [[package]] 643 - name = "aws-smithy-runtime-api" 644 - version = "1.1.1" 645 - source = "registry+https://github.com/rust-lang/crates.io-index" 646 - checksum = "2404c9eb08bfe9af255945254d9afc69a367b7ee008b8db75c05e3bca485fc65" 647 - dependencies = [ 648 - "aws-smithy-async", 649 - "aws-smithy-types", 650 - "bytes", 651 - "http", 652 - "pin-project-lite", 653 - "tokio", 654 - "tracing", 655 - "zeroize", 656 - ] 657 - 658 - [[package]] 659 - name = "aws-smithy-types" 660 - version = "1.1.1" 661 - source = "registry+https://github.com/rust-lang/crates.io-index" 662 - checksum = "2aba8136605d14ac88f57dc3a693a9f8a4eab4a3f52bc03ff13746f0cd704e97" 663 - dependencies = [ 664 - "base64-simd", 665 - "bytes", 666 - "bytes-utils", 667 - "futures-core", 668 - "http", 669 - "http-body", 670 - "itoa", 671 - "num-integer", 672 - "pin-project-lite", 673 - "pin-utils", 674 - "ryu", 675 - "serde", 676 - "time", 677 - "tokio", 678 - "tokio-util", 679 - ] 680 - 681 - [[package]] 682 - name = "aws-smithy-xml" 683 - version = "0.60.1" 684 - source = "registry+https://github.com/rust-lang/crates.io-index" 685 - checksum = "2e8f03926587fc881b12b102048bb04305bf7fb8c83e776f0ccc51eaa2378263" 686 - dependencies = [ 687 - "xmlparser", 688 - ] 689 - 690 - [[package]] 691 - name = "aws-types" 692 - version = "1.1.1" 693 - source = "registry+https://github.com/rust-lang/crates.io-index" 694 - checksum = "4e5d5ee29077e0fcd5ddd0c227b521a33aaf02434b7cdba1c55eec5c1f18ac47" 695 - dependencies = [ 696 - "aws-credential-types", 697 - "aws-smithy-async", 698 - "aws-smithy-runtime-api", 699 - "aws-smithy-types", 700 - "http", 701 - "rustc_version", 702 - "tracing", 703 - ] 704 - 705 - [[package]] 706 - name = "axum" 707 - version = "0.6.20" 708 - source = "registry+https://github.com/rust-lang/crates.io-index" 709 - checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf" 710 - dependencies = [ 711 - "async-trait", 712 - "axum-core", 713 - "base64 0.21.5", 714 - "bitflags 1.3.2", 715 - "bytes", 716 - "futures-util", 717 - "headers", 718 - "http", 719 - "http-body", 720 - "hyper", 721 - "itoa", 722 - "matchit", 723 - "memchr", 724 - "mime", 725 - "percent-encoding", 726 - "pin-project-lite", 727 - "rustversion", 728 - "serde", 729 - "serde_json", 730 - "serde_path_to_error", 731 - "serde_urlencoded", 732 - "sha1", 733 - "sync_wrapper", 734 - "tokio", 735 - "tokio-tungstenite", 736 - "tower", 737 - "tower-layer", 738 - "tower-service", 739 - ] 740 - 741 - [[package]] 742 - name = "axum-core" 743 - version = "0.3.4" 744 - source = "registry+https://github.com/rust-lang/crates.io-index" 745 - checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c" 746 - dependencies = [ 747 - "async-trait", 748 - "bytes", 749 - "futures-util", 750 - "http", 751 - "http-body", 752 - "mime", 753 - "rustversion", 754 - "tower-layer", 755 - "tower-service", 756 - ] 757 - 758 - [[package]] 759 - name = "backoff" 760 - version = "0.4.0" 761 - source = "registry+https://github.com/rust-lang/crates.io-index" 762 - checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1" 763 - dependencies = [ 764 - "getrandom", 765 - "instant", 766 - "rand", 767 - ] 768 - 769 - [[package]] 770 - name = "backtrace" 771 - version = "0.3.66" 772 - source = "registry+https://github.com/rust-lang/crates.io-index" 773 - checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7" 774 - dependencies = [ 775 - "addr2line", 776 - "cc", 777 - "cfg-if", 778 - "libc", 779 - "miniz_oxide", 780 - "object", 781 - "rustc-demangle", 782 - ] 783 - 784 - [[package]] 785 - name = "base16ct" 786 - version = "0.1.1" 787 - source = "registry+https://github.com/rust-lang/crates.io-index" 788 - checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce" 789 - 790 - [[package]] 791 - name = "base64" 792 - version = "0.13.1" 793 - source = "registry+https://github.com/rust-lang/crates.io-index" 794 - checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 795 - 796 - [[package]] 797 - name = "base64" 798 - version = "0.21.5" 799 - source = "registry+https://github.com/rust-lang/crates.io-index" 800 - checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 801 - 802 - [[package]] 803 - name = "base64-simd" 804 - version = "0.8.0" 805 - source = "registry+https://github.com/rust-lang/crates.io-index" 806 - checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195" 807 - dependencies = [ 808 - "outref", 809 - "vsimd", 810 - ] 811 - 812 - [[package]] 813 - name = "base64ct" 814 - version = "1.5.1" 815 - source = "registry+https://github.com/rust-lang/crates.io-index" 816 - checksum = "3bdca834647821e0b13d9539a8634eb62d3501b6b6c2cec1722786ee6671b851" 817 - 818 - [[package]] 819 - name = "bincode" 820 - version = "1.3.3" 821 - source = "registry+https://github.com/rust-lang/crates.io-index" 822 - checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 823 - dependencies = [ 824 - "serde", 825 - ] 826 - 827 - [[package]] 828 - name = "bindgen" 829 - version = "0.65.1" 830 - source = "registry+https://github.com/rust-lang/crates.io-index" 831 - checksum = "cfdf7b466f9a4903edc73f95d6d2bcd5baf8ae620638762244d3f60143643cc5" 832 - dependencies = [ 833 - "bitflags 1.3.2", 834 - "cexpr", 835 - "clang-sys", 836 - "lazy_static", 837 - "lazycell", 838 - "peeking_take_while", 839 - "prettyplease 0.2.4", 840 - "proc-macro2", 841 - "quote", 842 - "regex", 843 - "rustc-hash", 844 - "shlex", 845 - "syn 2.0.39", 846 - ] 847 - 848 - [[package]] 849 - name = "bit-set" 850 - version = "0.5.3" 851 - source = "registry+https://github.com/rust-lang/crates.io-index" 852 - checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" 853 - dependencies = [ 854 - "bit-vec", 855 - ] 856 - 857 - [[package]] 858 - name = "bit-vec" 859 - version = "0.6.3" 860 - source = "registry+https://github.com/rust-lang/crates.io-index" 861 - checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 862 - 863 - [[package]] 864 - name = "bitflags" 865 - version = "1.3.2" 866 - source = "registry+https://github.com/rust-lang/crates.io-index" 867 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 868 - 869 - [[package]] 870 - name = "bitflags" 871 - version = "2.4.1" 872 - source = "registry+https://github.com/rust-lang/crates.io-index" 873 - checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" 874 - 875 - [[package]] 876 - name = "bitvec" 877 - version = "1.0.1" 878 - source = "registry+https://github.com/rust-lang/crates.io-index" 879 - checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 880 - dependencies = [ 881 - "funty", 882 - "radium", 883 - "tap", 884 - "wyz", 885 - ] 886 - 887 - [[package]] 888 - name = "block-buffer" 889 - version = "0.10.0" 890 - source = "registry+https://github.com/rust-lang/crates.io-index" 891 - checksum = "f1d36a02058e76b040de25a4464ba1c80935655595b661505c8b39b664828b95" 892 - dependencies = [ 893 - "generic-array", 894 - ] 895 - 896 - [[package]] 897 - name = "bstr" 898 - version = "0.2.14" 899 - source = "registry+https://github.com/rust-lang/crates.io-index" 900 - checksum = "473fc6b38233f9af7baa94fb5852dca389e3d95b8e21c8e3719301462c5d9faf" 901 - dependencies = [ 902 - "lazy_static", 903 - "memchr", 904 - "regex-automata 0.1.9", 905 - ] 906 - 907 - [[package]] 908 - name = "bstr" 909 - version = "1.6.0" 910 - source = "registry+https://github.com/rust-lang/crates.io-index" 911 - checksum = "6798148dccfbff0fae41c7574d2fa8f1ef3492fba0face179de5d8d447d67b05" 912 - dependencies = [ 913 - "memchr", 914 - "regex-automata 0.3.9", 915 - "serde", 916 - ] 917 - 918 - [[package]] 919 - name = "btoi" 920 - version = "0.4.3" 921 - source = "registry+https://github.com/rust-lang/crates.io-index" 922 - checksum = "9dd6407f73a9b8b6162d8a2ef999fe6afd7cc15902ebf42c5cd296addf17e0ad" 923 - dependencies = [ 924 - "num-traits", 925 - ] 926 - 927 - [[package]] 928 - name = "built" 929 - version = "0.5.1" 930 - source = "registry+https://github.com/rust-lang/crates.io-index" 931 - checksum = "4f346b6890a0dfa7266974910e7df2d5088120dd54721b9b0e5aae1ae5e05715" 932 - dependencies = [ 933 - "cargo-lock", 934 - ] 935 - 936 - [[package]] 937 - name = "bumpalo" 938 - version = "3.12.1" 939 - source = "registry+https://github.com/rust-lang/crates.io-index" 940 - checksum = "9b1ce199063694f33ffb7dd4e0ee620741495c32833cde5aa08f02a0bf96f0c8" 941 - 942 - [[package]] 943 - name = "bytecount" 944 - version = "0.6.3" 945 - source = "registry+https://github.com/rust-lang/crates.io-index" 946 - checksum = "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c" 947 - 948 - [[package]] 949 - name = "bytefmt" 950 - version = "0.1.7" 951 - source = "registry+https://github.com/rust-lang/crates.io-index" 952 - checksum = "590b1af059a21c47d4da7cd11f05e08b1992b58b5b4acf2a5e10d7e53aed3d74" 953 - dependencies = [ 954 - "regex", 955 - ] 956 - 957 - [[package]] 958 - name = "bytemuck" 959 - version = "1.9.1" 960 - source = "registry+https://github.com/rust-lang/crates.io-index" 961 - checksum = "cdead85bdec19c194affaeeb670c0e41fe23de31459efd1c174d049269cf02cc" 962 - dependencies = [ 963 - "bytemuck_derive", 964 - ] 965 - 966 - [[package]] 967 - name = "bytemuck_derive" 968 - version = "1.1.0" 969 - source = "registry+https://github.com/rust-lang/crates.io-index" 970 - checksum = "562e382481975bc61d11275ac5e62a19abd00b0547d99516a415336f183dcd0e" 971 - dependencies = [ 972 - "proc-macro2", 973 - "quote", 974 - "syn 1.0.107", 975 - ] 976 - 977 - [[package]] 978 - name = "byteorder" 979 - version = "1.4.3" 980 - source = "registry+https://github.com/rust-lang/crates.io-index" 981 - checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 982 - 983 - [[package]] 984 - name = "bytes" 985 - version = "1.4.0" 986 - source = "registry+https://github.com/rust-lang/crates.io-index" 987 - checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 988 - dependencies = [ 989 - "serde", 990 - ] 991 - 992 - [[package]] 993 - name = "bytes-utils" 994 - version = "0.1.1" 995 - source = "registry+https://github.com/rust-lang/crates.io-index" 996 - checksum = "4e314712951c43123e5920a446464929adc667a5eade7f8fb3997776c9df6e54" 997 - dependencies = [ 998 - "bytes", 999 - "either", 1000 - ] 1001 - 1002 - [[package]] 1003 - name = "bytesize" 1004 - version = "1.1.0" 1005 - source = "registry+https://github.com/rust-lang/crates.io-index" 1006 - checksum = "6c58ec36aac5066d5ca17df51b3e70279f5670a72102f5752cb7e7c856adfc70" 1007 - 1008 - [[package]] 1009 - name = "bzip2-sys" 1010 - version = "0.1.11+1.0.8" 1011 - source = "registry+https://github.com/rust-lang/crates.io-index" 1012 - checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" 1013 - dependencies = [ 1014 - "cc", 1015 - "libc", 1016 - "pkg-config", 1017 - ] 1018 - 1019 - [[package]] 1020 - name = "camino" 1021 - version = "1.1.1" 1022 - source = "registry+https://github.com/rust-lang/crates.io-index" 1023 - checksum = "88ad0e1e3e88dd237a156ab9f571021b8a158caa0ae44b1968a241efb5144c1e" 1024 - dependencies = [ 1025 - "serde", 1026 - ] 1027 - 1028 - [[package]] 1029 - name = "cargo-lock" 1030 - version = "7.1.0" 1031 - source = "registry+https://github.com/rust-lang/crates.io-index" 1032 - checksum = "6c408da54db4c50d4693f7e649c299bc9de9c23ead86249e5368830bb32a734b" 1033 - dependencies = [ 1034 - "semver", 1035 - "serde", 1036 - "toml", 1037 - "url", 1038 - ] 1039 - 1040 - [[package]] 1041 - name = "cargo-platform" 1042 - version = "0.1.2" 1043 - source = "registry+https://github.com/rust-lang/crates.io-index" 1044 - checksum = "cbdb825da8a5df079a43676dbe042702f1707b1109f713a01420fbb4cc71fa27" 1045 - dependencies = [ 1046 - "serde", 1047 - ] 1048 - 1049 - [[package]] 1050 - name = "cargo_metadata" 1051 - version = "0.14.2" 1052 - source = "registry+https://github.com/rust-lang/crates.io-index" 1053 - checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa" 1054 - dependencies = [ 1055 - "camino", 1056 - "cargo-platform", 1057 - "semver", 1058 - "serde", 1059 - "serde_json", 1060 - ] 1061 - 1062 - [[package]] 1063 - name = "cast" 1064 - version = "0.3.0" 1065 - source = "registry+https://github.com/rust-lang/crates.io-index" 1066 - checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 1067 - 1068 - [[package]] 1069 - name = "cc" 1070 - version = "1.0.83" 1071 - source = "registry+https://github.com/rust-lang/crates.io-index" 1072 - checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 1073 - dependencies = [ 1074 - "jobserver", 1075 - "libc", 1076 - ] 1077 - 1078 - [[package]] 1079 - name = "cexpr" 1080 - version = "0.6.0" 1081 - source = "registry+https://github.com/rust-lang/crates.io-index" 1082 - checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" 1083 - dependencies = [ 1084 - "nom", 1085 - ] 1086 - 1087 - [[package]] 1088 - name = "cfg-if" 1089 - version = "1.0.0" 1090 - source = "registry+https://github.com/rust-lang/crates.io-index" 1091 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 1092 - 1093 - [[package]] 1094 - name = "chrono" 1095 - version = "0.4.25" 1096 - source = "registry+https://github.com/rust-lang/crates.io-index" 1097 - checksum = "fdbc37d37da9e5bce8173f3a41b71d9bf3c674deebbaceacd0ebdabde76efb03" 1098 - dependencies = [ 1099 - "android-tzdata", 1100 - "iana-time-zone", 1101 - "num-traits", 1102 - "serde", 1103 - "winapi", 1104 - ] 1105 - 1106 - [[package]] 1107 - name = "chrono-tz" 1108 - version = "0.8.1" 1109 - source = "registry+https://github.com/rust-lang/crates.io-index" 1110 - checksum = "fa48fa079165080f11d7753fd0bc175b7d391f276b965fe4b55bfad67856e463" 1111 - dependencies = [ 1112 - "chrono", 1113 - "chrono-tz-build", 1114 - "phf", 1115 - "serde", 1116 - "uncased", 1117 - ] 1118 - 1119 - [[package]] 1120 - name = "chrono-tz-build" 1121 - version = "0.1.0" 1122 - source = "registry+https://github.com/rust-lang/crates.io-index" 1123 - checksum = "d9998fb9f7e9b2111641485bf8beb32f92945f97f92a3d061f744cfef335f751" 1124 - dependencies = [ 1125 - "parse-zoneinfo", 1126 - "phf", 1127 - "phf_codegen", 1128 - "uncased", 1129 - ] 1130 - 1131 - [[package]] 1132 - name = "chunked_transfer" 1133 - version = "1.4.0" 1134 - source = "registry+https://github.com/rust-lang/crates.io-index" 1135 - checksum = "fff857943da45f546682664a79488be82e69e43c1a7a2307679ab9afb3a66d2e" 1136 - 1137 - [[package]] 1138 - name = "ciborium" 1139 - version = "0.2.0" 1140 - source = "registry+https://github.com/rust-lang/crates.io-index" 1141 - checksum = "b0c137568cc60b904a7724001b35ce2630fd00d5d84805fbb608ab89509d788f" 1142 - dependencies = [ 1143 - "ciborium-io", 1144 - "ciborium-ll", 1145 - "serde", 1146 - ] 1147 - 1148 - [[package]] 1149 - name = "ciborium-io" 1150 - version = "0.2.0" 1151 - source = "registry+https://github.com/rust-lang/crates.io-index" 1152 - checksum = "346de753af073cc87b52b2083a506b38ac176a44cfb05497b622e27be899b369" 1153 - 1154 - [[package]] 1155 - name = "ciborium-ll" 1156 - version = "0.2.0" 1157 - source = "registry+https://github.com/rust-lang/crates.io-index" 1158 - checksum = "213030a2b5a4e0c0892b6652260cf6ccac84827b83a85a534e178e3906c4cf1b" 1159 - dependencies = [ 1160 - "ciborium-io", 1161 - "half", 1162 - ] 1163 - 1164 - [[package]] 1165 - name = "clang-sys" 1166 - version = "1.3.0" 1167 - source = "registry+https://github.com/rust-lang/crates.io-index" 1168 - checksum = "fa66045b9cb23c2e9c1520732030608b02ee07e5cfaa5a521ec15ded7fa24c90" 1169 - dependencies = [ 1170 - "glob", 1171 - "libc", 1172 - "libloading", 1173 - ] 1174 - 1175 - [[package]] 1176 - name = "clap" 1177 - version = "3.2.24" 1178 - source = "registry+https://github.com/rust-lang/crates.io-index" 1179 - checksum = "eef2b3ded6a26dfaec672a742c93c8cf6b689220324da509ec5caa20de55dc83" 1180 - dependencies = [ 1181 - "atty", 1182 - "bitflags 1.3.2", 1183 - "clap_derive", 1184 - "clap_lex", 1185 - "indexmap 1.9.1", 1186 - "once_cell", 1187 - "strsim", 1188 - "termcolor", 1189 - "terminal_size", 1190 - "textwrap", 1191 - ] 1192 - 1193 - [[package]] 1194 - name = "clap_derive" 1195 - version = "3.2.24" 1196 - source = "registry+https://github.com/rust-lang/crates.io-index" 1197 - checksum = "d756c5824fc5c0c1ee8e36000f576968dbcb2081def956c83fad6f40acd46f96" 1198 - dependencies = [ 1199 - "heck", 1200 - "proc-macro-error", 1201 - "proc-macro2", 1202 - "quote", 1203 - "syn 1.0.107", 1204 - ] 1205 - 1206 - [[package]] 1207 - name = "clap_lex" 1208 - version = "0.2.2" 1209 - source = "registry+https://github.com/rust-lang/crates.io-index" 1210 - checksum = "5538cd660450ebeb4234cfecf8f2284b844ffc4c50531e66d584ad5b91293613" 1211 - dependencies = [ 1212 - "os_str_bytes", 1213 - ] 1214 - 1215 - [[package]] 1216 - name = "cmake" 1217 - version = "0.1.48" 1218 - source = "registry+https://github.com/rust-lang/crates.io-index" 1219 - checksum = "e8ad8cef104ac57b68b89df3208164d228503abbdce70f6880ffa3d970e7443a" 1220 - dependencies = [ 1221 - "cc", 1222 - ] 1223 - 1224 - [[package]] 1225 - name = "codespan-reporting" 1226 - version = "0.11.1" 1227 - source = "registry+https://github.com/rust-lang/crates.io-index" 1228 - checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 1229 - dependencies = [ 1230 - "termcolor", 1231 - "unicode-width", 1232 - ] 1233 - 1234 - [[package]] 1235 - name = "columnation" 1236 - version = "0.1.0" 1237 - source = "git+https://github.com/MaterializeInc/columnation.git#2cd6d86e5ffabf98aef5cbef09a57f515eae7c55" 1238 - dependencies = [ 1239 - "paste", 1240 - ] 1241 - 1242 - [[package]] 1243 - name = "compact_bytes" 1244 - version = "0.1.1" 1245 - source = "registry+https://github.com/rust-lang/crates.io-index" 1246 - checksum = "de71a0422a777179ab4baef92325e56396443df4a680bc443b11f63d644ca019" 1247 - dependencies = [ 1248 - "serde", 1249 - "static_assertions", 1250 - ] 1251 - 1252 - [[package]] 1253 - name = "compile-time-run" 1254 - version = "0.2.12" 1255 - source = "registry+https://github.com/rust-lang/crates.io-index" 1256 - checksum = "43b5affba7c91c039a483065125dd8c6d4a0985e1e9ac5ab6dffdea4fe4e637f" 1257 - dependencies = [ 1258 - "proc-macro2", 1259 - "quote", 1260 - "syn 1.0.107", 1261 - ] 1262 - 1263 - [[package]] 1264 - name = "connection-string" 1265 - version = "0.2.0" 1266 - source = "registry+https://github.com/rust-lang/crates.io-index" 1267 - checksum = "510ca239cf13b7f8d16a2b48f263de7b4f8c566f0af58d901031473c76afb1e3" 1268 - 1269 - [[package]] 1270 - name = "console" 1271 - version = "0.15.5" 1272 - source = "registry+https://github.com/rust-lang/crates.io-index" 1273 - checksum = "c3d79fbe8970a77e3e34151cc13d3b3e248aa0faaecb9f6091fa07ebefe5ad60" 1274 - dependencies = [ 1275 - "encode_unicode", 1276 - "lazy_static", 1277 - "libc", 1278 - "unicode-width", 1279 - "windows-sys 0.42.0", 1280 - ] 1281 - 1282 - [[package]] 1283 - name = "console-api" 1284 - version = "0.5.0" 1285 - source = "registry+https://github.com/rust-lang/crates.io-index" 1286 - checksum = "c2895653b4d9f1538a83970077cb01dfc77a4810524e51a110944688e916b18e" 1287 - dependencies = [ 1288 - "prost", 1289 - "prost-types", 1290 - "tonic", 1291 - "tracing-core", 1292 - ] 1293 - 1294 - [[package]] 1295 - name = "console-subscriber" 1296 - version = "0.1.10" 1297 - source = "registry+https://github.com/rust-lang/crates.io-index" 1298 - checksum = "d4cf42660ac07fcebed809cfe561dd8730bcd35b075215e6479c516bcd0d11cb" 1299 - dependencies = [ 1300 - "console-api", 1301 - "crossbeam-channel", 1302 - "crossbeam-utils", 1303 - "futures", 1304 - "hdrhistogram", 1305 - "humantime", 1306 - "prost-types", 1307 - "serde", 1308 - "serde_json", 1309 - "thread_local", 1310 - "tokio", 1311 - "tokio-stream", 1312 - "tonic", 1313 - "tracing", 1314 - "tracing-core", 1315 - "tracing-subscriber", 1316 - ] 1317 - 1318 - [[package]] 1319 - name = "const-oid" 1320 - version = "0.7.1" 1321 - source = "registry+https://github.com/rust-lang/crates.io-index" 1322 - checksum = "e4c78c047431fee22c1a7bb92e00ad095a02a983affe4d8a72e2a2c62c1b94f3" 1323 - 1324 - [[package]] 1325 - name = "const-random" 1326 - version = "0.1.15" 1327 - source = "registry+https://github.com/rust-lang/crates.io-index" 1328 - checksum = "368a7a772ead6ce7e1de82bfb04c485f3db8ec744f72925af5735e29a22cc18e" 1329 - dependencies = [ 1330 - "const-random-macro", 1331 - "proc-macro-hack", 1332 - ] 1333 - 1334 - [[package]] 1335 - name = "const-random-macro" 1336 - version = "0.1.15" 1337 - source = "registry+https://github.com/rust-lang/crates.io-index" 1338 - checksum = "9d7d6ab3c3a2282db210df5f02c4dab6e0a7057af0fb7ebd4070f30fe05c0ddb" 1339 - dependencies = [ 1340 - "getrandom", 1341 - "once_cell", 1342 - "proc-macro-hack", 1343 - "tiny-keccak", 1344 - ] 1345 - 1346 - [[package]] 1347 - name = "core-foundation" 1348 - version = "0.9.3" 1349 - source = "registry+https://github.com/rust-lang/crates.io-index" 1350 - checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 1351 - dependencies = [ 1352 - "core-foundation-sys", 1353 - "libc", 1354 - ] 1355 - 1356 - [[package]] 1357 - name = "core-foundation-sys" 1358 - version = "0.8.3" 1359 - source = "registry+https://github.com/rust-lang/crates.io-index" 1360 - checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 1361 - 1362 - [[package]] 1363 - name = "core_affinity" 1364 - version = "0.8.0" 1365 - source = "registry+https://github.com/rust-lang/crates.io-index" 1366 - checksum = "4436406e93f52cce33bfba4be067a9f7229da44a634c385e4b22cdfaca5f84cc" 1367 - dependencies = [ 1368 - "libc", 1369 - "num_cpus", 1370 - "winapi", 1371 - ] 1372 - 1373 - [[package]] 1374 - name = "cpp_demangle" 1375 - version = "0.4.0" 1376 - source = "registry+https://github.com/rust-lang/crates.io-index" 1377 - checksum = "b446fd40bcc17eddd6a4a78f24315eb90afdb3334999ddfd4909985c47722442" 1378 - dependencies = [ 1379 - "cfg-if", 1380 - ] 1381 - 1382 - [[package]] 1383 - name = "cpufeatures" 1384 - version = "0.2.1" 1385 - source = "registry+https://github.com/rust-lang/crates.io-index" 1386 - checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469" 1387 - dependencies = [ 1388 - "libc", 1389 - ] 1390 - 1391 - [[package]] 1392 - name = "crc32c" 1393 - version = "0.6.3" 1394 - source = "registry+https://github.com/rust-lang/crates.io-index" 1395 - checksum = "3dfea2db42e9927a3845fb268a10a72faed6d416065f77873f05e411457c363e" 1396 - dependencies = [ 1397 - "rustc_version", 1398 - ] 1399 - 1400 - [[package]] 1401 - name = "crc32fast" 1402 - version = "1.3.2" 1403 - source = "registry+https://github.com/rust-lang/crates.io-index" 1404 - checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 1405 - dependencies = [ 1406 - "cfg-if", 1407 - ] 1408 - 1409 - [[package]] 1410 - name = "criterion" 1411 - version = "0.4.0" 1412 - source = "registry+https://github.com/rust-lang/crates.io-index" 1413 - checksum = "e7c76e09c1aae2bc52b3d2f29e13c6572553b30c4aa1b8a49fd70de6412654cb" 1414 - dependencies = [ 1415 - "anes", 1416 - "atty", 1417 - "cast", 1418 - "ciborium", 1419 - "clap", 1420 - "criterion-plot", 1421 - "futures", 1422 - "itertools", 1423 - "lazy_static", 1424 - "num-traits", 1425 - "oorandom", 1426 - "plotters", 1427 - "rayon", 1428 - "regex", 1429 - "serde", 1430 - "serde_derive", 1431 - "serde_json", 1432 - "tinytemplate", 1433 - "tokio", 1434 - "walkdir", 1435 - ] 1436 - 1437 - [[package]] 1438 - name = "criterion-plot" 1439 - version = "0.5.0" 1440 - source = "registry+https://github.com/rust-lang/crates.io-index" 1441 - checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 1442 - dependencies = [ 1443 - "cast", 1444 - "itertools", 1445 - ] 1446 - 1447 - [[package]] 1448 - name = "crossbeam" 1449 - version = "0.8.2" 1450 - source = "registry+https://github.com/rust-lang/crates.io-index" 1451 - checksum = "2801af0d36612ae591caa9568261fddce32ce6e08a7275ea334a06a4ad021a2c" 1452 - dependencies = [ 1453 - "cfg-if", 1454 - "crossbeam-channel", 1455 - "crossbeam-deque", 1456 - "crossbeam-epoch", 1457 - "crossbeam-queue", 1458 - "crossbeam-utils", 1459 - ] 1460 - 1461 - [[package]] 1462 - name = "crossbeam-channel" 1463 - version = "0.5.8" 1464 - source = "registry+https://github.com/rust-lang/crates.io-index" 1465 - checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 1466 - dependencies = [ 1467 - "cfg-if", 1468 - "crossbeam-utils", 1469 - ] 1470 - 1471 - [[package]] 1472 - name = "crossbeam-deque" 1473 - version = "0.8.3" 1474 - source = "registry+https://github.com/rust-lang/crates.io-index" 1475 - checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 1476 - dependencies = [ 1477 - "cfg-if", 1478 - "crossbeam-epoch", 1479 - "crossbeam-utils", 1480 - ] 1481 - 1482 - [[package]] 1483 - name = "crossbeam-epoch" 1484 - version = "0.9.13" 1485 - source = "registry+https://github.com/rust-lang/crates.io-index" 1486 - checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a" 1487 - dependencies = [ 1488 - "autocfg", 1489 - "cfg-if", 1490 - "crossbeam-utils", 1491 - "memoffset", 1492 - "scopeguard", 1493 - ] 1494 - 1495 - [[package]] 1496 - name = "crossbeam-queue" 1497 - version = "0.3.2" 1498 - source = "registry+https://github.com/rust-lang/crates.io-index" 1499 - checksum = "9b10ddc024425c88c2ad148c1b0fd53f4c6d38db9697c9f1588381212fa657c9" 1500 - dependencies = [ 1501 - "cfg-if", 1502 - "crossbeam-utils", 1503 - ] 1504 - 1505 - [[package]] 1506 - name = "crossbeam-utils" 1507 - version = "0.8.7" 1508 - source = "registry+https://github.com/rust-lang/crates.io-index" 1509 - checksum = "b5e5bed1f1c269533fa816a0a5492b3545209a205ca1a54842be180eb63a16a6" 1510 - dependencies = [ 1511 - "cfg-if", 1512 - "lazy_static", 1513 - ] 1514 - 1515 - [[package]] 1516 - name = "crunchy" 1517 - version = "0.2.2" 1518 - source = "registry+https://github.com/rust-lang/crates.io-index" 1519 - checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 1520 - 1521 - [[package]] 1522 - name = "crypto-common" 1523 - version = "0.1.3" 1524 - source = "registry+https://github.com/rust-lang/crates.io-index" 1525 - checksum = "57952ca27b5e3606ff4dd79b0020231aaf9d6aa76dc05fd30137538c50bd3ce8" 1526 - dependencies = [ 1527 - "generic-array", 1528 - "typenum", 1529 - ] 1530 - 1531 - [[package]] 1532 - name = "csv" 1533 - version = "1.2.1" 1534 - source = "registry+https://github.com/rust-lang/crates.io-index" 1535 - checksum = "0b015497079b9a9d69c02ad25de6c0a6edef051ea6360a327d0bd05802ef64ad" 1536 - dependencies = [ 1537 - "csv-core", 1538 - "itoa", 1539 - "ryu", 1540 - "serde", 1541 - ] 1542 - 1543 - [[package]] 1544 - name = "csv-async" 1545 - version = "1.2.6" 1546 - source = "registry+https://github.com/rust-lang/crates.io-index" 1547 - checksum = "71933d3f2d0481d5111cb2817b15b6961961458ec58adf8008194e6c850046f4" 1548 - dependencies = [ 1549 - "bstr 1.6.0", 1550 - "cfg-if", 1551 - "csv-core", 1552 - "futures", 1553 - "tokio", 1554 - "tokio-stream", 1555 - ] 1556 - 1557 - [[package]] 1558 - name = "csv-core" 1559 - version = "0.1.10" 1560 - source = "registry+https://github.com/rust-lang/crates.io-index" 1561 - checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90" 1562 - dependencies = [ 1563 - "memchr", 1564 - ] 1565 - 1566 - [[package]] 1567 - name = "ctor" 1568 - version = "0.1.26" 1569 - source = "registry+https://github.com/rust-lang/crates.io-index" 1570 - checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" 1571 - dependencies = [ 1572 - "quote", 1573 - "syn 1.0.107", 1574 - ] 1575 - 1576 - [[package]] 1577 - name = "cxx" 1578 - version = "1.0.63" 1579 - source = "registry+https://github.com/rust-lang/crates.io-index" 1580 - checksum = "c949f4e2576a655698463c56dbc5c5ea4c00964becc9adb0458baa943e862a5b" 1581 - dependencies = [ 1582 - "cc", 1583 - "cxxbridge-flags", 1584 - "cxxbridge-macro", 1585 - "link-cplusplus", 1586 - ] 1587 - 1588 - [[package]] 1589 - name = "cxx-build" 1590 - version = "1.0.63" 1591 - source = "registry+https://github.com/rust-lang/crates.io-index" 1592 - checksum = "618f85c8f132bd8912aab124e15a38adc762bb7e3cef84524adde1692ef3e8bc" 1593 - dependencies = [ 1594 - "cc", 1595 - "codespan-reporting", 1596 - "once_cell", 1597 - "proc-macro2", 1598 - "quote", 1599 - "scratch", 1600 - "syn 1.0.107", 1601 - ] 1602 - 1603 - [[package]] 1604 - name = "cxxbridge-flags" 1605 - version = "1.0.63" 1606 - source = "registry+https://github.com/rust-lang/crates.io-index" 1607 - checksum = "1b44dad556b0c83d86676135d6c684bdc2b1b9a1188052dd1cb5998246163536" 1608 - 1609 - [[package]] 1610 - name = "cxxbridge-macro" 1611 - version = "1.0.63" 1612 - source = "registry+https://github.com/rust-lang/crates.io-index" 1613 - checksum = "2acc9305a8b69bc2308c2e17dbb98debeac984cdc89ac550c01507cc129433c3" 1614 - dependencies = [ 1615 - "proc-macro2", 1616 - "quote", 1617 - "syn 1.0.107", 1618 - ] 1619 - 1620 - [[package]] 1621 - name = "darling" 1622 - version = "0.20.3" 1623 - source = "registry+https://github.com/rust-lang/crates.io-index" 1624 - checksum = "0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e" 1625 - dependencies = [ 1626 - "darling_core", 1627 - "darling_macro", 1628 - ] 1629 - 1630 - [[package]] 1631 - name = "darling_core" 1632 - version = "0.20.3" 1633 - source = "registry+https://github.com/rust-lang/crates.io-index" 1634 - checksum = "177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621" 1635 - dependencies = [ 1636 - "fnv", 1637 - "ident_case", 1638 - "proc-macro2", 1639 - "quote", 1640 - "strsim", 1641 - "syn 2.0.39", 1642 - ] 1643 - 1644 - [[package]] 1645 - name = "darling_macro" 1646 - version = "0.20.3" 1647 - source = "registry+https://github.com/rust-lang/crates.io-index" 1648 - checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5" 1649 - dependencies = [ 1650 - "darling_core", 1651 - "quote", 1652 - "syn 2.0.39", 1653 - ] 1654 - 1655 - [[package]] 1656 - name = "dashmap" 1657 - version = "5.2.0" 1658 - source = "registry+https://github.com/rust-lang/crates.io-index" 1659 - checksum = "4c8858831f7781322e539ea39e72449c46b059638250c14344fec8d0aa6e539c" 1660 - dependencies = [ 1661 - "cfg-if", 1662 - "num_cpus", 1663 - "parking_lot", 1664 - ] 1665 - 1666 - [[package]] 1667 - name = "data-encoding" 1668 - version = "2.3.2" 1669 - source = "registry+https://github.com/rust-lang/crates.io-index" 1670 - checksum = "3ee2393c4a91429dffb4bedf19f4d6abf27d8a732c8ce4980305d782e5426d57" 1671 - 1672 - [[package]] 1673 - name = "datadriven" 1674 - version = "0.6.0" 1675 - source = "registry+https://github.com/rust-lang/crates.io-index" 1676 - checksum = "5c496e3277b660041bd6a2c0618593e99c3ba450b30d5f8d89035f78c87b4106" 1677 - dependencies = [ 1678 - "anyhow", 1679 - "futures", 1680 - ] 1681 - 1682 - [[package]] 1683 - name = "deadpool" 1684 - version = "0.9.5" 1685 - source = "registry+https://github.com/rust-lang/crates.io-index" 1686 - checksum = "421fe0f90f2ab22016f32a9881be5134fdd71c65298917084b0c7477cbc3856e" 1687 - dependencies = [ 1688 - "async-trait", 1689 - "deadpool-runtime", 1690 - "num_cpus", 1691 - "retain_mut", 1692 - "tokio", 1693 - ] 1694 - 1695 - [[package]] 1696 - name = "deadpool-postgres" 1697 - version = "0.10.3" 1698 - source = "registry+https://github.com/rust-lang/crates.io-index" 1699 - checksum = "e866e414e9e12fc988f0bfb89a0b86228e7ed196ca509fbc4dcbc738c56e753c" 1700 - dependencies = [ 1701 - "deadpool", 1702 - "log", 1703 - "tokio", 1704 - "tokio-postgres", 1705 - ] 1706 - 1707 - [[package]] 1708 - name = "deadpool-runtime" 1709 - version = "0.1.2" 1710 - source = "registry+https://github.com/rust-lang/crates.io-index" 1711 - checksum = "eaa37046cc0f6c3cc6090fbdbf73ef0b8ef4cfcc37f6befc0020f63e8cf121e1" 1712 - dependencies = [ 1713 - "tokio", 1714 - ] 1715 - 1716 - [[package]] 1717 - name = "debugid" 1718 - version = "0.8.0" 1719 - source = "registry+https://github.com/rust-lang/crates.io-index" 1720 - checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d" 1721 - dependencies = [ 1722 - "serde", 1723 - "uuid", 1724 - ] 1725 - 1726 - [[package]] 1727 - name = "dec" 1728 - version = "0.4.8" 1729 - source = "registry+https://github.com/rust-lang/crates.io-index" 1730 - checksum = "cbdeb628adfc427c3f926528cf76daf4418453e103151739d48f79b8182cb41f" 1731 - dependencies = [ 1732 - "decnumber-sys", 1733 - "libc", 1734 - "serde", 1735 - "static_assertions", 1736 - ] 1737 - 1738 - [[package]] 1739 - name = "decnumber-sys" 1740 - version = "0.1.5" 1741 - source = "registry+https://github.com/rust-lang/crates.io-index" 1742 - checksum = "76a99b958f19724bc0a2202086d135c2e7ed098e95cdae778546e965648fa47b" 1743 - dependencies = [ 1744 - "cc", 1745 - "libc", 1746 - ] 1747 - 1748 - [[package]] 1749 - name = "der" 1750 - version = "0.5.1" 1751 - source = "registry+https://github.com/rust-lang/crates.io-index" 1752 - checksum = "6919815d73839e7ad218de758883aae3a257ba6759ce7a9992501efbb53d705c" 1753 - dependencies = [ 1754 - "const-oid", 1755 - ] 1756 - 1757 - [[package]] 1758 - name = "derivative" 1759 - version = "2.2.0" 1760 - source = "registry+https://github.com/rust-lang/crates.io-index" 1761 - checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" 1762 - dependencies = [ 1763 - "proc-macro2", 1764 - "quote", 1765 - "syn 1.0.107", 1766 - ] 1767 - 1768 - [[package]] 1769 - name = "derive-getters" 1770 - version = "0.3.0" 1771 - source = "registry+https://github.com/rust-lang/crates.io-index" 1772 - checksum = "7a2c35ab6e03642397cdda1dd58abbc05d418aef8e36297f336d5aba060fe8df" 1773 - dependencies = [ 1774 - "proc-macro2", 1775 - "quote", 1776 - "syn 1.0.107", 1777 - ] 1778 - 1779 - [[package]] 1780 - name = "diff" 1781 - version = "0.1.12" 1782 - source = "registry+https://github.com/rust-lang/crates.io-index" 1783 - checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499" 1784 - 1785 - [[package]] 1786 - name = "differential-dataflow" 1787 - version = "0.12.0" 1788 - source = "git+https://github.com/MaterializeInc/differential-dataflow.git#c5b9baca0283f4d96f7e6f914de8578fb5c521de" 1789 - dependencies = [ 1790 - "abomonation", 1791 - "abomonation_derive", 1792 - "fnv", 1793 - "serde", 1794 - "timely", 1795 - ] 1796 - 1797 - [[package]] 1798 - name = "difflib" 1799 - version = "0.4.0" 1800 - source = "registry+https://github.com/rust-lang/crates.io-index" 1801 - checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" 1802 - 1803 - [[package]] 1804 - name = "digest" 1805 - version = "0.10.6" 1806 - source = "registry+https://github.com/rust-lang/crates.io-index" 1807 - checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 1808 - dependencies = [ 1809 - "block-buffer", 1810 - "crypto-common", 1811 - "subtle", 1812 - ] 1813 - 1814 - [[package]] 1815 - name = "dirs" 1816 - version = "5.0.1" 1817 - source = "registry+https://github.com/rust-lang/crates.io-index" 1818 - checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" 1819 - dependencies = [ 1820 - "dirs-sys", 1821 - ] 1822 - 1823 - [[package]] 1824 - name = "dirs-sys" 1825 - version = "0.4.1" 1826 - source = "registry+https://github.com/rust-lang/crates.io-index" 1827 - checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" 1828 - dependencies = [ 1829 - "libc", 1830 - "option-ext", 1831 - "redox_users", 1832 - "windows-sys 0.48.0", 1833 - ] 1834 - 1835 - [[package]] 1836 - name = "doc-comment" 1837 - version = "0.3.1" 1838 - source = "registry+https://github.com/rust-lang/crates.io-index" 1839 - checksum = "923dea538cea0aa3025e8685b20d6ee21ef99c4f77e954a30febbaac5ec73a97" 1840 - 1841 - [[package]] 1842 - name = "dogsdogsdogs" 1843 - version = "0.1.0" 1844 - source = "git+https://github.com/MaterializeInc/differential-dataflow.git#c5b9baca0283f4d96f7e6f914de8578fb5c521de" 1845 - dependencies = [ 1846 - "abomonation", 1847 - "abomonation_derive", 1848 - "differential-dataflow", 1849 - "serde", 1850 - "serde_derive", 1851 - "timely", 1852 - ] 1853 - 1854 - [[package]] 1855 - name = "dyn-clone" 1856 - version = "1.0.9" 1857 - source = "registry+https://github.com/rust-lang/crates.io-index" 1858 - checksum = "4f94fa09c2aeea5b8839e414b7b841bf429fd25b9c522116ac97ee87856d88b2" 1859 - 1860 - [[package]] 1861 - name = "either" 1862 - version = "1.8.0" 1863 - source = "registry+https://github.com/rust-lang/crates.io-index" 1864 - checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797" 1865 - dependencies = [ 1866 - "serde", 1867 - ] 1868 - 1869 - [[package]] 1870 - name = "encode_unicode" 1871 - version = "0.3.6" 1872 - source = "registry+https://github.com/rust-lang/crates.io-index" 1873 - checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 1874 - 1875 - [[package]] 1876 - name = "encoding" 1877 - version = "0.2.33" 1878 - source = "registry+https://github.com/rust-lang/crates.io-index" 1879 - checksum = "6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec" 1880 - dependencies = [ 1881 - "encoding-index-japanese", 1882 - "encoding-index-korean", 1883 - "encoding-index-simpchinese", 1884 - "encoding-index-singlebyte", 1885 - "encoding-index-tradchinese", 1886 - ] 1887 - 1888 - [[package]] 1889 - name = "encoding-index-japanese" 1890 - version = "1.20141219.5" 1891 - source = "registry+https://github.com/rust-lang/crates.io-index" 1892 - checksum = "04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91" 1893 - dependencies = [ 1894 - "encoding_index_tests", 1895 - ] 1896 - 1897 - [[package]] 1898 - name = "encoding-index-korean" 1899 - version = "1.20141219.5" 1900 - source = "registry+https://github.com/rust-lang/crates.io-index" 1901 - checksum = "4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c878e3095ecfdf5bee529d81" 1902 - dependencies = [ 1903 - "encoding_index_tests", 1904 - ] 1905 - 1906 - [[package]] 1907 - name = "encoding-index-simpchinese" 1908 - version = "1.20141219.5" 1909 - source = "registry+https://github.com/rust-lang/crates.io-index" 1910 - checksum = "d87a7194909b9118fc707194baa434a4e3b0fb6a5a757c73c3adb07aa25031f7" 1911 - dependencies = [ 1912 - "encoding_index_tests", 1913 - ] 1914 - 1915 - [[package]] 1916 - name = "encoding-index-singlebyte" 1917 - version = "1.20141219.5" 1918 - source = "registry+https://github.com/rust-lang/crates.io-index" 1919 - checksum = "3351d5acffb224af9ca265f435b859c7c01537c0849754d3db3fdf2bfe2ae84a" 1920 - dependencies = [ 1921 - "encoding_index_tests", 1922 - ] 1923 - 1924 - [[package]] 1925 - name = "encoding-index-tradchinese" 1926 - version = "1.20141219.5" 1927 - source = "registry+https://github.com/rust-lang/crates.io-index" 1928 - checksum = "fd0e20d5688ce3cab59eb3ef3a2083a5c77bf496cb798dc6fcdb75f323890c18" 1929 - dependencies = [ 1930 - "encoding_index_tests", 1931 - ] 1932 - 1933 - [[package]] 1934 - name = "encoding_index_tests" 1935 - version = "0.1.4" 1936 - source = "registry+https://github.com/rust-lang/crates.io-index" 1937 - checksum = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569" 1938 - 1939 - [[package]] 1940 - name = "encoding_rs" 1941 - version = "0.8.26" 1942 - source = "registry+https://github.com/rust-lang/crates.io-index" 1943 - checksum = "801bbab217d7f79c0062f4f7205b5d4427c6d1a7bd7aafdd1475f7c59d62b283" 1944 - dependencies = [ 1945 - "cfg-if", 1946 - ] 1947 - 1948 - [[package]] 1949 - name = "enum-as-inner" 1950 - version = "0.5.1" 1951 - source = "registry+https://github.com/rust-lang/crates.io-index" 1952 - checksum = "c9720bba047d567ffc8a3cba48bf19126600e249ab7f128e9233e6376976a116" 1953 - dependencies = [ 1954 - "heck", 1955 - "proc-macro2", 1956 - "quote", 1957 - "syn 1.0.107", 1958 - ] 1959 - 1960 - [[package]] 1961 - name = "enum-iterator" 1962 - version = "1.2.0" 1963 - source = "registry+https://github.com/rust-lang/crates.io-index" 1964 - checksum = "91a4ec26efacf4aeff80887a175a419493cb6f8b5480d26387eb0bd038976187" 1965 - dependencies = [ 1966 - "enum-iterator-derive", 1967 - ] 1968 - 1969 - [[package]] 1970 - name = "enum-iterator-derive" 1971 - version = "1.1.0" 1972 - source = "registry+https://github.com/rust-lang/crates.io-index" 1973 - checksum = "828de45d0ca18782232dfb8f3ea9cc428e8ced380eb26a520baaacfc70de39ce" 1974 - dependencies = [ 1975 - "proc-macro2", 1976 - "quote", 1977 - "syn 1.0.107", 1978 - ] 1979 - 1980 - [[package]] 1981 - name = "enum-kinds" 1982 - version = "0.5.1" 1983 - source = "registry+https://github.com/rust-lang/crates.io-index" 1984 - checksum = "4e40a16955681d469ab3da85aaa6b42ff656b3c67b52e1d8d3dd36afe97fd462" 1985 - dependencies = [ 1986 - "proc-macro2", 1987 - "quote", 1988 - "syn 1.0.107", 1989 - ] 1990 - 1991 - [[package]] 1992 - name = "enum_dispatch" 1993 - version = "0.3.11" 1994 - source = "registry+https://github.com/rust-lang/crates.io-index" 1995 - checksum = "11f36e95862220b211a6e2aa5eca09b4fa391b13cd52ceb8035a24bf65a79de2" 1996 - dependencies = [ 1997 - "once_cell", 1998 - "proc-macro2", 1999 - "quote", 2000 - "syn 1.0.107", 2001 - ] 2002 - 2003 - [[package]] 2004 - name = "enumflags2" 2005 - version = "0.7.7" 2006 - source = "registry+https://github.com/rust-lang/crates.io-index" 2007 - checksum = "c041f5090df68b32bcd905365fd51769c8b9d553fe87fde0b683534f10c01bd2" 2008 - dependencies = [ 2009 - "enumflags2_derive", 2010 - ] 2011 - 2012 - [[package]] 2013 - name = "enumflags2_derive" 2014 - version = "0.7.7" 2015 - source = "registry+https://github.com/rust-lang/crates.io-index" 2016 - checksum = "5e9a1f9f7d83e59740248a6e14ecf93929ade55027844dfcea78beafccc15745" 2017 - dependencies = [ 2018 - "proc-macro2", 2019 - "quote", 2020 - "syn 2.0.39", 2021 - ] 2022 - 2023 - [[package]] 2024 - name = "equivalent" 2025 - version = "1.0.1" 2026 - source = "registry+https://github.com/rust-lang/crates.io-index" 2027 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 2028 - 2029 - [[package]] 2030 - name = "errno" 2031 - version = "0.3.1" 2032 - source = "registry+https://github.com/rust-lang/crates.io-index" 2033 - checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 2034 - dependencies = [ 2035 - "errno-dragonfly", 2036 - "libc", 2037 - "windows-sys 0.48.0", 2038 - ] 2039 - 2040 - [[package]] 2041 - name = "errno-dragonfly" 2042 - version = "0.1.2" 2043 - source = "registry+https://github.com/rust-lang/crates.io-index" 2044 - checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 2045 - dependencies = [ 2046 - "cc", 2047 - "libc", 2048 - ] 2049 - 2050 - [[package]] 2051 - name = "error-chain" 2052 - version = "0.12.4" 2053 - source = "registry+https://github.com/rust-lang/crates.io-index" 2054 - checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc" 2055 - dependencies = [ 2056 - "version_check", 2057 - ] 2058 - 2059 - [[package]] 2060 - name = "ethnum" 2061 - version = "1.3.0" 2062 - source = "registry+https://github.com/rust-lang/crates.io-index" 2063 - checksum = "2eac3c0b9fa6eb75255ebb42c0ba3e2210d102a66d2795afef6fed668f373311" 2064 - 2065 - [[package]] 2066 - name = "eventsource-client" 2067 - version = "0.11.0" 2068 - source = "git+https://github.com/MaterializeInc/rust-eventsource-client#fb749fde693a9757289238ee71d4e9b3590fb24b" 2069 - dependencies = [ 2070 - "futures", 2071 - "hyper", 2072 - "hyper-timeout", 2073 - "hyper-tls", 2074 - "log", 2075 - "pin-project", 2076 - "rand", 2077 - "tokio", 2078 - ] 2079 - 2080 - [[package]] 2081 - name = "exclusion-set" 2082 - version = "0.1.2" 2083 - source = "registry+https://github.com/rust-lang/crates.io-index" 2084 - checksum = "9c3708c48ed7245587498d116a41566942d6d9943f5b3207fbf522e2bd0b72d0" 2085 - dependencies = [ 2086 - "loom", 2087 - ] 2088 - 2089 - [[package]] 2090 - name = "fail" 2091 - version = "0.5.1" 2092 - source = "registry+https://github.com/rust-lang/crates.io-index" 2093 - checksum = "fe5e43d0f78a42ad591453aedb1d7ae631ce7ee445c7643691055a9ed8d3b01c" 2094 - dependencies = [ 2095 - "log", 2096 - "once_cell", 2097 - "rand", 2098 - ] 2099 - 2100 - [[package]] 2101 - name = "fallible-iterator" 2102 - version = "0.2.0" 2103 - source = "registry+https://github.com/rust-lang/crates.io-index" 2104 - checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" 2105 - 2106 - [[package]] 2107 - name = "fallible-streaming-iterator" 2108 - version = "0.1.9" 2109 - source = "registry+https://github.com/rust-lang/crates.io-index" 2110 - checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" 2111 - 2112 - [[package]] 2113 - name = "fancy-regex" 2114 - version = "0.11.0" 2115 - source = "registry+https://github.com/rust-lang/crates.io-index" 2116 - checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2" 2117 - dependencies = [ 2118 - "bit-set", 2119 - "regex", 2120 - ] 2121 - 2122 - [[package]] 2123 - name = "fast-float" 2124 - version = "0.2.0" 2125 - source = "registry+https://github.com/rust-lang/crates.io-index" 2126 - checksum = "95765f67b4b18863968b4a1bd5bb576f732b29a4a28c7cd84c09fa3e2875f33c" 2127 - 2128 - [[package]] 2129 - name = "fastrand" 2130 - version = "2.0.1" 2131 - source = "registry+https://github.com/rust-lang/crates.io-index" 2132 - checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 2133 - 2134 - [[package]] 2135 - name = "filetime" 2136 - version = "0.2.14" 2137 - source = "registry+https://github.com/rust-lang/crates.io-index" 2138 - checksum = "1d34cfa13a63ae058bfa601fe9e313bbdb3746427c1459185464ce0fcf62e1e8" 2139 - dependencies = [ 2140 - "cfg-if", 2141 - "libc", 2142 - "redox_syscall 0.2.10", 2143 - "winapi", 2144 - ] 2145 - 2146 - [[package]] 2147 - name = "findshlibs" 2148 - version = "0.10.2" 2149 - source = "registry+https://github.com/rust-lang/crates.io-index" 2150 - checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64" 2151 - dependencies = [ 2152 - "cc", 2153 - "lazy_static", 2154 - "libc", 2155 - "winapi", 2156 - ] 2157 - 2158 - [[package]] 2159 - name = "fixedbitset" 2160 - version = "0.4.1" 2161 - source = "registry+https://github.com/rust-lang/crates.io-index" 2162 - checksum = "279fb028e20b3c4c320317955b77c5e0c9701f05a1d309905d6fc702cdc5053e" 2163 - 2164 - [[package]] 2165 - name = "flate2" 2166 - version = "1.0.24" 2167 - source = "registry+https://github.com/rust-lang/crates.io-index" 2168 - checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6" 2169 - dependencies = [ 2170 - "crc32fast", 2171 - "libz-sys", 2172 - "miniz_oxide", 2173 - ] 2174 - 2175 - [[package]] 2176 - name = "float-cmp" 2177 - version = "0.9.0" 2178 - source = "registry+https://github.com/rust-lang/crates.io-index" 2179 - checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" 2180 - dependencies = [ 2181 - "num-traits", 2182 - ] 2183 - 2184 - [[package]] 2185 - name = "fnv" 2186 - version = "1.0.7" 2187 - source = "registry+https://github.com/rust-lang/crates.io-index" 2188 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 2189 - 2190 - [[package]] 2191 - name = "foreign-types" 2192 - version = "0.3.2" 2193 - source = "registry+https://github.com/rust-lang/crates.io-index" 2194 - checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 2195 - dependencies = [ 2196 - "foreign-types-shared", 2197 - ] 2198 - 2199 - [[package]] 2200 - name = "foreign-types-shared" 2201 - version = "0.1.1" 2202 - source = "registry+https://github.com/rust-lang/crates.io-index" 2203 - checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 2204 - 2205 - [[package]] 2206 - name = "foreign_vec" 2207 - version = "0.1.0" 2208 - source = "registry+https://github.com/rust-lang/crates.io-index" 2209 - checksum = "ee1b05cbd864bcaecbd3455d6d967862d446e4ebfc3c2e5e5b9841e53cba6673" 2210 - 2211 - [[package]] 2212 - name = "form_urlencoded" 2213 - version = "1.1.0" 2214 - source = "registry+https://github.com/rust-lang/crates.io-index" 2215 - checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 2216 - dependencies = [ 2217 - "percent-encoding", 2218 - ] 2219 - 2220 - [[package]] 2221 - name = "fs_extra" 2222 - version = "1.3.0" 2223 - source = "registry+https://github.com/rust-lang/crates.io-index" 2224 - checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c" 2225 - 2226 - [[package]] 2227 - name = "funty" 2228 - version = "2.0.0" 2229 - source = "registry+https://github.com/rust-lang/crates.io-index" 2230 - checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 2231 - 2232 - [[package]] 2233 - name = "futures" 2234 - version = "0.3.25" 2235 - source = "registry+https://github.com/rust-lang/crates.io-index" 2236 - checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0" 2237 - dependencies = [ 2238 - "futures-channel", 2239 - "futures-core", 2240 - "futures-executor", 2241 - "futures-io", 2242 - "futures-sink", 2243 - "futures-task", 2244 - "futures-util", 2245 - ] 2246 - 2247 - [[package]] 2248 - name = "futures-channel" 2249 - version = "0.3.28" 2250 - source = "registry+https://github.com/rust-lang/crates.io-index" 2251 - checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 2252 - dependencies = [ 2253 - "futures-core", 2254 - "futures-sink", 2255 - ] 2256 - 2257 - [[package]] 2258 - name = "futures-core" 2259 - version = "0.3.28" 2260 - source = "registry+https://github.com/rust-lang/crates.io-index" 2261 - checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 2262 - 2263 - [[package]] 2264 - name = "futures-executor" 2265 - version = "0.3.25" 2266 - source = "registry+https://github.com/rust-lang/crates.io-index" 2267 - checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2" 2268 - dependencies = [ 2269 - "futures-core", 2270 - "futures-task", 2271 - "futures-util", 2272 - ] 2273 - 2274 - [[package]] 2275 - name = "futures-io" 2276 - version = "0.3.28" 2277 - source = "registry+https://github.com/rust-lang/crates.io-index" 2278 - checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 2279 - 2280 - [[package]] 2281 - name = "futures-macro" 2282 - version = "0.3.28" 2283 - source = "registry+https://github.com/rust-lang/crates.io-index" 2284 - checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 2285 - dependencies = [ 2286 - "proc-macro2", 2287 - "quote", 2288 - "syn 2.0.39", 2289 - ] 2290 - 2291 - [[package]] 2292 - name = "futures-sink" 2293 - version = "0.3.28" 2294 - source = "registry+https://github.com/rust-lang/crates.io-index" 2295 - checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 2296 - 2297 - [[package]] 2298 - name = "futures-task" 2299 - version = "0.3.28" 2300 - source = "registry+https://github.com/rust-lang/crates.io-index" 2301 - checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 2302 - 2303 - [[package]] 2304 - name = "futures-timer" 2305 - version = "3.0.2" 2306 - source = "registry+https://github.com/rust-lang/crates.io-index" 2307 - checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c" 2308 - 2309 - [[package]] 2310 - name = "futures-util" 2311 - version = "0.3.28" 2312 - source = "registry+https://github.com/rust-lang/crates.io-index" 2313 - checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 2314 - dependencies = [ 2315 - "futures-channel", 2316 - "futures-core", 2317 - "futures-io", 2318 - "futures-macro", 2319 - "futures-sink", 2320 - "futures-task", 2321 - "memchr", 2322 - "pin-project-lite", 2323 - "pin-utils", 2324 - "slab", 2325 - ] 2326 - 2327 - [[package]] 2328 - name = "generator" 2329 - version = "0.7.5" 2330 - source = "registry+https://github.com/rust-lang/crates.io-index" 2331 - checksum = "5cc16584ff22b460a382b7feec54b23d2908d858152e5739a120b949293bd74e" 2332 - dependencies = [ 2333 - "cc", 2334 - "libc", 2335 - "log", 2336 - "rustversion", 2337 - "windows", 2338 - ] 2339 - 2340 - [[package]] 2341 - name = "generic-array" 2342 - version = "0.14.4" 2343 - source = "registry+https://github.com/rust-lang/crates.io-index" 2344 - checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817" 2345 - dependencies = [ 2346 - "typenum", 2347 - "version_check", 2348 - ] 2349 - 2350 - [[package]] 2351 - name = "getopts" 2352 - version = "0.2.21" 2353 - source = "registry+https://github.com/rust-lang/crates.io-index" 2354 - checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5" 2355 - dependencies = [ 2356 - "unicode-width", 2357 - ] 2358 - 2359 - [[package]] 2360 - name = "getrandom" 2361 - version = "0.2.10" 2362 - source = "registry+https://github.com/rust-lang/crates.io-index" 2363 - checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 2364 - dependencies = [ 2365 - "cfg-if", 2366 - "js-sys", 2367 - "libc", 2368 - "wasi", 2369 - "wasm-bindgen", 2370 - ] 2371 - 2372 - [[package]] 2373 - name = "gimli" 2374 - version = "0.26.1" 2375 - source = "registry+https://github.com/rust-lang/crates.io-index" 2376 - checksum = "78cc372d058dcf6d5ecd98510e7fbc9e5aec4d21de70f65fea8fecebcd881bd4" 2377 - 2378 - [[package]] 2379 - name = "glob" 2380 - version = "0.3.1" 2381 - source = "registry+https://github.com/rust-lang/crates.io-index" 2382 - checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 2383 - 2384 - [[package]] 2385 - name = "globset" 2386 - version = "0.4.9" 2387 - source = "registry+https://github.com/rust-lang/crates.io-index" 2388 - checksum = "0a1e17342619edbc21a964c2afbeb6c820c6a2560032872f397bb97ea127bd0a" 2389 - dependencies = [ 2390 - "aho-corasick", 2391 - "bstr 0.2.14", 2392 - "fnv", 2393 - "log", 2394 - "regex", 2395 - "serde", 2396 - ] 2397 - 2398 - [[package]] 2399 - name = "governor" 2400 - version = "0.6.0" 2401 - source = "registry+https://github.com/rust-lang/crates.io-index" 2402 - checksum = "821239e5672ff23e2a7060901fa622950bbd80b649cdaadd78d1c1767ed14eb4" 2403 - dependencies = [ 2404 - "cfg-if", 2405 - "dashmap", 2406 - "futures", 2407 - "futures-timer", 2408 - "no-std-compat", 2409 - "nonzero_ext", 2410 - "parking_lot", 2411 - "quanta", 2412 - "rand", 2413 - "smallvec", 2414 - ] 2415 - 2416 - [[package]] 2417 - name = "h2" 2418 - version = "0.3.18" 2419 - source = "registry+https://github.com/rust-lang/crates.io-index" 2420 - checksum = "17f8a914c2987b688368b5138aa05321db91f4090cf26118185672ad588bce21" 2421 - dependencies = [ 2422 - "bytes", 2423 - "fnv", 2424 - "futures-core", 2425 - "futures-sink", 2426 - "futures-util", 2427 - "http", 2428 - "indexmap 1.9.1", 2429 - "slab", 2430 - "tokio", 2431 - "tokio-util", 2432 - "tracing", 2433 - ] 2434 - 2435 - [[package]] 2436 - name = "half" 2437 - version = "1.6.0" 2438 - source = "registry+https://github.com/rust-lang/crates.io-index" 2439 - checksum = "d36fab90f82edc3c747f9d438e06cf0a491055896f2a279638bb5beed6c40177" 2440 - 2441 - [[package]] 2442 - name = "hash_hasher" 2443 - version = "2.0.3" 2444 - source = "registry+https://github.com/rust-lang/crates.io-index" 2445 - checksum = "74721d007512d0cb3338cd20f0654ac913920061a4c4d0d8708edb3f2a698c0c" 2446 - 2447 - [[package]] 2448 - name = "hashbrown" 2449 - version = "0.12.3" 2450 - source = "registry+https://github.com/rust-lang/crates.io-index" 2451 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 2452 - 2453 - [[package]] 2454 - name = "hashbrown" 2455 - version = "0.14.0" 2456 - source = "registry+https://github.com/rust-lang/crates.io-index" 2457 - checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" 2458 - dependencies = [ 2459 - "ahash", 2460 - "allocator-api2", 2461 - ] 2462 - 2463 - [[package]] 2464 - name = "hdrhistogram" 2465 - version = "7.4.0" 2466 - source = "registry+https://github.com/rust-lang/crates.io-index" 2467 - checksum = "6490be71f07a5f62b564bc58e36953f675833df11c7e4a0647bee7a07ca1ec5e" 2468 - dependencies = [ 2469 - "base64 0.13.1", 2470 - "byteorder", 2471 - "flate2", 2472 - "nom", 2473 - "num-traits", 2474 - ] 2475 - 2476 - [[package]] 2477 - name = "headers" 2478 - version = "0.3.8" 2479 - source = "registry+https://github.com/rust-lang/crates.io-index" 2480 - checksum = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584" 2481 - dependencies = [ 2482 - "base64 0.13.1", 2483 - "bitflags 1.3.2", 2484 - "bytes", 2485 - "headers-core", 2486 - "http", 2487 - "httpdate", 2488 - "mime", 2489 - "sha1", 2490 - ] 2491 - 2492 - [[package]] 2493 - name = "headers-core" 2494 - version = "0.2.0" 2495 - source = "registry+https://github.com/rust-lang/crates.io-index" 2496 - checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" 2497 - dependencies = [ 2498 - "http", 2499 - ] 2500 - 2501 - [[package]] 2502 - name = "heck" 2503 - version = "0.4.0" 2504 - source = "registry+https://github.com/rust-lang/crates.io-index" 2505 - checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" 2506 - 2507 - [[package]] 2508 - name = "hermit-abi" 2509 - version = "0.1.6" 2510 - source = "registry+https://github.com/rust-lang/crates.io-index" 2511 - checksum = "eff2656d88f158ce120947499e971d743c05dbcbed62e5bd2f38f1698bbc3772" 2512 - dependencies = [ 2513 - "libc", 2514 - ] 2515 - 2516 - [[package]] 2517 - name = "hermit-abi" 2518 - version = "0.2.6" 2519 - source = "registry+https://github.com/rust-lang/crates.io-index" 2520 - checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 2521 - dependencies = [ 2522 - "libc", 2523 - ] 2524 - 2525 - [[package]] 2526 - name = "hermit-abi" 2527 - version = "0.3.1" 2528 - source = "registry+https://github.com/rust-lang/crates.io-index" 2529 - checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 2530 - 2531 - [[package]] 2532 - name = "hex" 2533 - version = "0.4.3" 2534 - source = "registry+https://github.com/rust-lang/crates.io-index" 2535 - checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 2536 - 2537 - [[package]] 2538 - name = "hex-literal" 2539 - version = "0.3.4" 2540 - source = "registry+https://github.com/rust-lang/crates.io-index" 2541 - checksum = "7ebdb29d2ea9ed0083cd8cece49bbd968021bd99b0849edb4a9a7ee0fdf6a4e0" 2542 - 2543 - [[package]] 2544 - name = "hibitset" 2545 - version = "0.6.4" 2546 - source = "registry+https://github.com/rust-lang/crates.io-index" 2547 - checksum = "f3ede5cfa60c958e60330d65163adbc4211e15a2653ad80eb0cce878de120121" 2548 - dependencies = [ 2549 - "rayon", 2550 - ] 2551 - 2552 - [[package]] 2553 - name = "hmac" 2554 - version = "0.12.1" 2555 - source = "registry+https://github.com/rust-lang/crates.io-index" 2556 - checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 2557 - dependencies = [ 2558 - "digest", 2559 - ] 2560 - 2561 - [[package]] 2562 - name = "home" 2563 - version = "0.5.5" 2564 - source = "registry+https://github.com/rust-lang/crates.io-index" 2565 - checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" 2566 - dependencies = [ 2567 - "windows-sys 0.48.0", 2568 - ] 2569 - 2570 - [[package]] 2571 - name = "hostname" 2572 - version = "0.3.1" 2573 - source = "registry+https://github.com/rust-lang/crates.io-index" 2574 - checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" 2575 - dependencies = [ 2576 - "libc", 2577 - "match_cfg", 2578 - "winapi", 2579 - ] 2580 - 2581 - [[package]] 2582 - name = "http" 2583 - version = "0.2.9" 2584 - source = "registry+https://github.com/rust-lang/crates.io-index" 2585 - checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 2586 - dependencies = [ 2587 - "bytes", 2588 - "fnv", 2589 - "itoa", 2590 - ] 2591 - 2592 - [[package]] 2593 - name = "http-body" 2594 - version = "0.4.5" 2595 - source = "registry+https://github.com/rust-lang/crates.io-index" 2596 - checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 2597 - dependencies = [ 2598 - "bytes", 2599 - "http", 2600 - "pin-project-lite", 2601 - ] 2602 - 2603 - [[package]] 2604 - name = "http-range-header" 2605 - version = "0.3.0" 2606 - source = "registry+https://github.com/rust-lang/crates.io-index" 2607 - checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29" 2608 - 2609 - [[package]] 2610 - name = "httparse" 2611 - version = "1.8.0" 2612 - source = "registry+https://github.com/rust-lang/crates.io-index" 2613 - checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 2614 - 2615 - [[package]] 2616 - name = "httpdate" 2617 - version = "1.0.2" 2618 - source = "registry+https://github.com/rust-lang/crates.io-index" 2619 - checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 2620 - 2621 - [[package]] 2622 - name = "humantime" 2623 - version = "2.1.0" 2624 - source = "registry+https://github.com/rust-lang/crates.io-index" 2625 - checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 2626 - 2627 - [[package]] 2628 - name = "hyper" 2629 - version = "0.14.27" 2630 - source = "registry+https://github.com/rust-lang/crates.io-index" 2631 - checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 2632 - dependencies = [ 2633 - "bytes", 2634 - "futures-channel", 2635 - "futures-core", 2636 - "futures-util", 2637 - "h2", 2638 - "http", 2639 - "http-body", 2640 - "httparse", 2641 - "httpdate", 2642 - "itoa", 2643 - "pin-project-lite", 2644 - "socket2 0.4.9", 2645 - "tokio", 2646 - "tower-service", 2647 - "tracing", 2648 - "want", 2649 - ] 2650 - 2651 - [[package]] 2652 - name = "hyper-openssl" 2653 - version = "0.9.2" 2654 - source = "registry+https://github.com/rust-lang/crates.io-index" 2655 - checksum = "d6ee5d7a8f718585d1c3c61dfde28ef5b0bb14734b4db13f5ada856cdc6c612b" 2656 - dependencies = [ 2657 - "http", 2658 - "hyper", 2659 - "linked_hash_set", 2660 - "once_cell", 2661 - "openssl", 2662 - "openssl-sys", 2663 - "parking_lot", 2664 - "tokio", 2665 - "tokio-openssl", 2666 - "tower-layer", 2667 - ] 2668 - 2669 - [[package]] 2670 - name = "hyper-timeout" 2671 - version = "0.4.1" 2672 - source = "registry+https://github.com/rust-lang/crates.io-index" 2673 - checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1" 2674 - dependencies = [ 2675 - "hyper", 2676 - "pin-project-lite", 2677 - "tokio", 2678 - "tokio-io-timeout", 2679 - ] 2680 - 2681 - [[package]] 2682 - name = "hyper-tls" 2683 - version = "0.5.0" 2684 - source = "registry+https://github.com/rust-lang/crates.io-index" 2685 - checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 2686 - dependencies = [ 2687 - "bytes", 2688 - "hyper", 2689 - "native-tls", 2690 - "tokio", 2691 - "tokio-native-tls", 2692 - ] 2693 - 2694 - [[package]] 2695 - name = "iana-time-zone" 2696 - version = "0.1.47" 2697 - source = "registry+https://github.com/rust-lang/crates.io-index" 2698 - checksum = "4c495f162af0bf17656d0014a0eded5f3cd2f365fdd204548c2869db89359dc7" 2699 - dependencies = [ 2700 - "android_system_properties", 2701 - "core-foundation-sys", 2702 - "js-sys", 2703 - "once_cell", 2704 - "wasm-bindgen", 2705 - "winapi", 2706 - ] 2707 - 2708 - [[package]] 2709 - name = "ident_case" 2710 - version = "1.0.1" 2711 - source = "registry+https://github.com/rust-lang/crates.io-index" 2712 - checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 2713 - 2714 - [[package]] 2715 - name = "idna" 2716 - version = "0.3.0" 2717 - source = "registry+https://github.com/rust-lang/crates.io-index" 2718 - checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 2719 - dependencies = [ 2720 - "unicode-bidi", 2721 - "unicode-normalization", 2722 - ] 2723 - 2724 - [[package]] 2725 - name = "include_dir" 2726 - version = "0.7.3" 2727 - source = "registry+https://github.com/rust-lang/crates.io-index" 2728 - checksum = "18762faeff7122e89e0857b02f7ce6fcc0d101d5e9ad2ad7846cc01d61b7f19e" 2729 - dependencies = [ 2730 - "include_dir_macros", 2731 - ] 2732 - 2733 - [[package]] 2734 - name = "include_dir_macros" 2735 - version = "0.7.0" 2736 - source = "registry+https://github.com/rust-lang/crates.io-index" 2737 - checksum = "d551dc625a699489a6903cd41dd91aef674a5126f3d28799a316d14e7b15fcf5" 2738 - dependencies = [ 2739 - "proc-macro2", 2740 - "quote", 2741 - ] 2742 - 2743 - [[package]] 2744 - name = "indexmap" 2745 - version = "1.9.1" 2746 - source = "registry+https://github.com/rust-lang/crates.io-index" 2747 - checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" 2748 - dependencies = [ 2749 - "autocfg", 2750 - "hashbrown 0.12.3", 2751 - "serde", 2752 - ] 2753 - 2754 - [[package]] 2755 - name = "indexmap" 2756 - version = "2.0.0" 2757 - source = "registry+https://github.com/rust-lang/crates.io-index" 2758 - checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" 2759 - dependencies = [ 2760 - "equivalent", 2761 - "hashbrown 0.14.0", 2762 - ] 2763 - 2764 - [[package]] 2765 - name = "indicatif" 2766 - version = "0.17.2" 2767 - source = "registry+https://github.com/rust-lang/crates.io-index" 2768 - checksum = "4295cbb7573c16d310e99e713cf9e75101eb190ab31fccd35f2d2691b4352b19" 2769 - dependencies = [ 2770 - "console", 2771 - "number_prefix", 2772 - "portable-atomic", 2773 - "unicode-width", 2774 - ] 2775 - 2776 - [[package]] 2777 - name = "insta" 2778 - version = "1.33.0" 2779 - source = "registry+https://github.com/rust-lang/crates.io-index" 2780 - checksum = "1aa511b2e298cd49b1856746f6bb73e17036bcd66b25f5e92cdcdbec9bd75686" 2781 - dependencies = [ 2782 - "console", 2783 - "lazy_static", 2784 - "linked-hash-map", 2785 - "similar", 2786 - "yaml-rust", 2787 - ] 2788 - 2789 - [[package]] 2790 - name = "instant" 2791 - version = "0.1.12" 2792 - source = "registry+https://github.com/rust-lang/crates.io-index" 2793 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 2794 - dependencies = [ 2795 - "cfg-if", 2796 - ] 2797 - 2798 - [[package]] 2799 - name = "io-lifetimes" 2800 - version = "1.0.10" 2801 - source = "registry+https://github.com/rust-lang/crates.io-index" 2802 - checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220" 2803 - dependencies = [ 2804 - "hermit-abi 0.3.1", 2805 - "libc", 2806 - "windows-sys 0.48.0", 2807 - ] 2808 - 2809 - [[package]] 2810 - name = "ipnet" 2811 - version = "2.5.0" 2812 - source = "registry+https://github.com/rust-lang/crates.io-index" 2813 - checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b" 2814 - 2815 - [[package]] 2816 - name = "itertools" 2817 - version = "0.10.5" 2818 - source = "registry+https://github.com/rust-lang/crates.io-index" 2819 - checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 2820 - dependencies = [ 2821 - "either", 2822 - ] 2823 - 2824 - [[package]] 2825 - name = "itoa" 2826 - version = "1.0.6" 2827 - source = "registry+https://github.com/rust-lang/crates.io-index" 2828 - checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 2829 - 2830 - [[package]] 2831 - name = "jobserver" 2832 - version = "0.1.21" 2833 - source = "registry+https://github.com/rust-lang/crates.io-index" 2834 - checksum = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2" 2835 - dependencies = [ 2836 - "libc", 2837 - ] 2838 - 2839 - [[package]] 2840 - name = "js-sys" 2841 - version = "0.3.64" 2842 - source = "registry+https://github.com/rust-lang/crates.io-index" 2843 - checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 2844 - dependencies = [ 2845 - "wasm-bindgen", 2846 - ] 2847 - 2848 - [[package]] 2849 - name = "json-patch" 2850 - version = "1.0.0" 2851 - source = "registry+https://github.com/rust-lang/crates.io-index" 2852 - checksum = "1f54898088ccb91df1b492cc80029a6fdf1c48ca0db7c6822a8babad69c94658" 2853 - dependencies = [ 2854 - "serde", 2855 - "serde_json", 2856 - "thiserror", 2857 - "treediff", 2858 - ] 2859 - 2860 - [[package]] 2861 - name = "jsonpath_lib" 2862 - version = "0.3.0" 2863 - source = "registry+https://github.com/rust-lang/crates.io-index" 2864 - checksum = "eaa63191d68230cccb81c5aa23abd53ed64d83337cacbb25a7b8c7979523774f" 2865 - dependencies = [ 2866 - "log", 2867 - "serde", 2868 - "serde_json", 2869 - ] 2870 - 2871 - [[package]] 2872 - name = "jsonwebtoken" 2873 - version = "9.2.0" 2874 - source = "registry+https://github.com/rust-lang/crates.io-index" 2875 - checksum = "5c7ea04a7c5c055c175f189b6dc6ba036fd62306b58c66c9f6389036c503a3f4" 2876 - dependencies = [ 2877 - "base64 0.21.5", 2878 - "js-sys", 2879 - "pem", 2880 - "ring", 2881 - "serde", 2882 - "serde_json", 2883 - "simple_asn1", 2884 - ] 2885 - 2886 - [[package]] 2887 - name = "junit-report" 2888 - version = "0.8.3" 2889 - source = "registry+https://github.com/rust-lang/crates.io-index" 2890 - checksum = "06c3a3342e6720a82d7d179f380e9841b73a1dd49344e33959fdfe571ce56b55" 2891 - dependencies = [ 2892 - "derive-getters", 2893 - "quick-xml", 2894 - "strip-ansi-escapes", 2895 - "time", 2896 - ] 2897 - 2898 - [[package]] 2899 - name = "k8s-openapi" 2900 - version = "0.20.0" 2901 - source = "registry+https://github.com/rust-lang/crates.io-index" 2902 - checksum = "edc3606fd16aca7989db2f84bb25684d0270c6d6fa1dbcd0025af7b4130523a6" 2903 - dependencies = [ 2904 - "base64 0.21.5", 2905 - "bytes", 2906 - "chrono", 2907 - "schemars", 2908 - "serde", 2909 - "serde-value", 2910 - "serde_json", 2911 - ] 2912 - 2913 - [[package]] 2914 - name = "keyed_priority_queue" 2915 - version = "0.4.1" 2916 - source = "registry+https://github.com/rust-lang/crates.io-index" 2917 - checksum = "2d63b6407b66fc81fc539dccf3ddecb669f393c5101b6a2be3976c95099a06e8" 2918 - dependencies = [ 2919 - "indexmap 1.9.1", 2920 - ] 2921 - 2922 - [[package]] 2923 - name = "kube" 2924 - version = "0.87.1" 2925 - source = "registry+https://github.com/rust-lang/crates.io-index" 2926 - checksum = "e34392aea935145070dcd5b39a6dea689ac6534d7d117461316c3d157b1d0fc3" 2927 - dependencies = [ 2928 - "k8s-openapi", 2929 - "kube-client", 2930 - "kube-core", 2931 - "kube-derive", 2932 - "kube-runtime", 2933 - ] 2934 - 2935 - [[package]] 2936 - name = "kube-client" 2937 - version = "0.87.1" 2938 - source = "registry+https://github.com/rust-lang/crates.io-index" 2939 - checksum = "7266548b9269d9fa19022620d706697e64f312fb2ba31b93e6986453fcc82c92" 2940 - dependencies = [ 2941 - "base64 0.21.5", 2942 - "bytes", 2943 - "chrono", 2944 - "either", 2945 - "futures", 2946 - "home", 2947 - "http", 2948 - "http-body", 2949 - "hyper", 2950 - "hyper-openssl", 2951 - "hyper-timeout", 2952 - "jsonpath_lib", 2953 - "k8s-openapi", 2954 - "kube-core", 2955 - "openssl", 2956 - "pem", 2957 - "pin-project", 2958 - "rand", 2959 - "secrecy", 2960 - "serde", 2961 - "serde_json", 2962 - "serde_yaml", 2963 - "thiserror", 2964 - "tokio", 2965 - "tokio-tungstenite", 2966 - "tokio-util", 2967 - "tower", 2968 - "tower-http", 2969 - "tracing", 2970 - ] 2971 - 2972 - [[package]] 2973 - name = "kube-core" 2974 - version = "0.87.1" 2975 - source = "registry+https://github.com/rust-lang/crates.io-index" 2976 - checksum = "b8321c315b96b59f59ef6b33f604b84b905ab8f9ff114a4f909d934c520227b1" 2977 - dependencies = [ 2978 - "chrono", 2979 - "form_urlencoded", 2980 - "http", 2981 - "json-patch", 2982 - "k8s-openapi", 2983 - "once_cell", 2984 - "schemars", 2985 - "serde", 2986 - "serde_json", 2987 - "thiserror", 2988 - ] 2989 - 2990 - [[package]] 2991 - name = "kube-derive" 2992 - version = "0.87.1" 2993 - source = "registry+https://github.com/rust-lang/crates.io-index" 2994 - checksum = "d54591e1f37fc329d412c0fdaced010cc1305b546a39f283fc51700f8fb49421" 2995 - dependencies = [ 2996 - "darling", 2997 - "proc-macro2", 2998 - "quote", 2999 - "serde_json", 3000 - "syn 2.0.39", 3001 - ] 3002 - 3003 - [[package]] 3004 - name = "kube-runtime" 3005 - version = "0.87.1" 3006 - source = "registry+https://github.com/rust-lang/crates.io-index" 3007 - checksum = "e511e2c1a368d9d4bf6e70db58197e535d818df355b5a2007a8aeb17a370a8ba" 3008 - dependencies = [ 3009 - "ahash", 3010 - "async-trait", 3011 - "backoff", 3012 - "derivative", 3013 - "futures", 3014 - "hashbrown 0.14.0", 3015 - "json-patch", 3016 - "k8s-openapi", 3017 - "kube-client", 3018 - "parking_lot", 3019 - "pin-project", 3020 - "serde", 3021 - "serde_json", 3022 - "smallvec", 3023 - "thiserror", 3024 - "tokio", 3025 - "tokio-util", 3026 - "tracing", 3027 - ] 3028 - 3029 - [[package]] 3030 - name = "launchdarkly-server-sdk" 3031 - version = "1.0.0" 3032 - source = "git+https://github.com/MaterializeInc/rust-server-sdk#df1440c8b93a192d50470d1b258615febe52f1f8" 3033 - dependencies = [ 3034 - "built", 3035 - "chrono", 3036 - "crossbeam-channel", 3037 - "data-encoding", 3038 - "eventsource-client", 3039 - "futures", 3040 - "hyper", 3041 - "hyper-tls", 3042 - "launchdarkly-server-sdk-evaluation", 3043 - "lazy_static", 3044 - "log", 3045 - "lru", 3046 - "moka", 3047 - "parking_lot", 3048 - "ring", 3049 - "serde", 3050 - "serde_json", 3051 - "thiserror", 3052 - "tokio", 3053 - "tokio-stream", 3054 - "uuid", 3055 - ] 3056 - 3057 - [[package]] 3058 - name = "launchdarkly-server-sdk-evaluation" 3059 - version = "1.0.0" 3060 - source = "registry+https://github.com/rust-lang/crates.io-index" 3061 - checksum = "5c27dd31ce69c55fca526d1c22c2dcca96fd0c98e496529d37eeef6c41652173" 3062 - dependencies = [ 3063 - "base16ct", 3064 - "chrono", 3065 - "itertools", 3066 - "lazy_static", 3067 - "log", 3068 - "maplit", 3069 - "regex", 3070 - "semver", 3071 - "serde", 3072 - "serde_json", 3073 - "serde_with", 3074 - "sha1", 3075 - "urlencoding", 3076 - ] 3077 - 3078 - [[package]] 3079 - name = "lazy_static" 3080 - version = "1.4.0" 3081 - source = "registry+https://github.com/rust-lang/crates.io-index" 3082 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 3083 - 3084 - [[package]] 3085 - name = "lazycell" 3086 - version = "1.3.0" 3087 - source = "registry+https://github.com/rust-lang/crates.io-index" 3088 - checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 3089 - 3090 - [[package]] 3091 - name = "lgalloc" 3092 - version = "0.1.6" 3093 - source = "registry+https://github.com/rust-lang/crates.io-index" 3094 - checksum = "04e800ee9a186dfd634b56aac0814ab6281f87c962bc63087361fa73442e30e1" 3095 - dependencies = [ 3096 - "crossbeam-deque", 3097 - "libc", 3098 - "memmap2", 3099 - "tempfile", 3100 - "thiserror", 3101 - ] 3102 - 3103 - [[package]] 3104 - name = "libc" 3105 - version = "0.2.148" 3106 - source = "registry+https://github.com/rust-lang/crates.io-index" 3107 - checksum = "9cdc71e17332e86d2e1d38c1f99edcb6288ee11b815fb1a4b049eaa2114d369b" 3108 - 3109 - [[package]] 3110 - name = "libloading" 3111 - version = "0.7.3" 3112 - source = "registry+https://github.com/rust-lang/crates.io-index" 3113 - checksum = "efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd" 3114 - dependencies = [ 3115 - "cfg-if", 3116 - "winapi", 3117 - ] 3118 - 3119 - [[package]] 3120 - name = "librocksdb-sys" 3121 - version = "0.11.0+8.3.2" 3122 - source = "git+https://github.com/MaterializeInc/rust-rocksdb?branch=master#3305d514d509c6b95b0c925c78157e5e4ae4b7ba" 3123 - dependencies = [ 3124 - "bindgen", 3125 - "bzip2-sys", 3126 - "cc", 3127 - "glob", 3128 - "libc", 3129 - "libz-sys", 3130 - "lz4-sys", 3131 - "zstd-sys", 3132 - ] 3133 - 3134 - [[package]] 3135 - name = "libz-sys" 3136 - version = "1.1.8" 3137 - source = "registry+https://github.com/rust-lang/crates.io-index" 3138 - checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf" 3139 - dependencies = [ 3140 - "cc", 3141 - "libc", 3142 - "pkg-config", 3143 - "vcpkg", 3144 - ] 3145 - 3146 - [[package]] 3147 - name = "link-cplusplus" 3148 - version = "1.0.6" 3149 - source = "registry+https://github.com/rust-lang/crates.io-index" 3150 - checksum = "f8cae2cd7ba2f3f63938b9c724475dfb7b9861b545a90324476324ed21dbc8c8" 3151 - dependencies = [ 3152 - "cc", 3153 - ] 3154 - 3155 - [[package]] 3156 - name = "linked-hash-map" 3157 - version = "0.5.6" 3158 - source = "registry+https://github.com/rust-lang/crates.io-index" 3159 - checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 3160 - 3161 - [[package]] 3162 - name = "linked_hash_set" 3163 - version = "0.1.4" 3164 - source = "registry+https://github.com/rust-lang/crates.io-index" 3165 - checksum = "47186c6da4d81ca383c7c47c1bfc80f4b95f4720514d860a5407aaf4233f9588" 3166 - dependencies = [ 3167 - "linked-hash-map", 3168 - ] 3169 - 3170 - [[package]] 3171 - name = "linux-raw-sys" 3172 - version = "0.3.4" 3173 - source = "registry+https://github.com/rust-lang/crates.io-index" 3174 - checksum = "36eb31c1778188ae1e64398743890d0877fef36d11521ac60406b42016e8c2cf" 3175 - 3176 - [[package]] 3177 - name = "linux-raw-sys" 3178 - version = "0.4.12" 3179 - source = "registry+https://github.com/rust-lang/crates.io-index" 3180 - checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" 3181 - 3182 - [[package]] 3183 - name = "lock_api" 3184 - version = "0.4.6" 3185 - source = "registry+https://github.com/rust-lang/crates.io-index" 3186 - checksum = "88943dd7ef4a2e5a4bfa2753aaab3013e34ce2533d1996fb18ef591e315e2b3b" 3187 - dependencies = [ 3188 - "scopeguard", 3189 - ] 3190 - 3191 - [[package]] 3192 - name = "log" 3193 - version = "0.4.17" 3194 - source = "registry+https://github.com/rust-lang/crates.io-index" 3195 - checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 3196 - dependencies = [ 3197 - "cfg-if", 3198 - ] 3199 - 3200 - [[package]] 3201 - name = "loom" 3202 - version = "0.5.6" 3203 - source = "registry+https://github.com/rust-lang/crates.io-index" 3204 - checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5" 3205 - dependencies = [ 3206 - "cfg-if", 3207 - "generator", 3208 - "scoped-tls", 3209 - "tracing", 3210 - "tracing-subscriber", 3211 - ] 3212 - 3213 - [[package]] 3214 - name = "lru" 3215 - version = "0.12.0" 3216 - source = "registry+https://github.com/rust-lang/crates.io-index" 3217 - checksum = "1efa59af2ddfad1854ae27d75009d538d0998b4b2fd47083e743ac1a10e46c60" 3218 - dependencies = [ 3219 - "hashbrown 0.14.0", 3220 - ] 3221 - 3222 - [[package]] 3223 - name = "lsp-types" 3224 - version = "0.94.1" 3225 - source = "registry+https://github.com/rust-lang/crates.io-index" 3226 - checksum = "c66bfd44a06ae10647fe3f8214762e9369fd4248df1350924b4ef9e770a85ea1" 3227 - dependencies = [ 3228 - "bitflags 1.3.2", 3229 - "serde", 3230 - "serde_json", 3231 - "serde_repr", 3232 - "url", 3233 - ] 3234 - 3235 - [[package]] 3236 - name = "lz4-sys" 3237 - version = "1.9.4" 3238 - source = "registry+https://github.com/rust-lang/crates.io-index" 3239 - checksum = "57d27b317e207b10f69f5e75494119e391a96f48861ae870d1da6edac98ca900" 3240 - dependencies = [ 3241 - "cc", 3242 - "libc", 3243 - ] 3244 - 3245 - [[package]] 3246 - name = "mach2" 3247 - version = "0.4.1" 3248 - source = "registry+https://github.com/rust-lang/crates.io-index" 3249 - checksum = "6d0d1830bcd151a6fc4aea1369af235b36c1528fe976b8ff678683c9995eade8" 3250 - dependencies = [ 3251 - "libc", 3252 - ] 3253 - 3254 - [[package]] 3255 - name = "maplit" 3256 - version = "1.0.2" 3257 - source = "registry+https://github.com/rust-lang/crates.io-index" 3258 - checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" 3259 - 3260 - [[package]] 3261 - name = "match_cfg" 3262 - version = "0.1.0" 3263 - source = "registry+https://github.com/rust-lang/crates.io-index" 3264 - checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" 3265 - 3266 - [[package]] 3267 - name = "matchers" 3268 - version = "0.1.0" 3269 - source = "registry+https://github.com/rust-lang/crates.io-index" 3270 - checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 3271 - dependencies = [ 3272 - "regex-automata 0.1.9", 3273 - ] 3274 - 3275 - [[package]] 3276 - name = "matches" 3277 - version = "0.1.9" 3278 - source = "registry+https://github.com/rust-lang/crates.io-index" 3279 - checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" 3280 - 3281 - [[package]] 3282 - name = "matchit" 3283 - version = "0.7.0" 3284 - source = "registry+https://github.com/rust-lang/crates.io-index" 3285 - checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40" 3286 - 3287 - [[package]] 3288 - name = "md-5" 3289 - version = "0.10.5" 3290 - source = "registry+https://github.com/rust-lang/crates.io-index" 3291 - checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca" 3292 - dependencies = [ 3293 - "digest", 3294 - ] 3295 - 3296 - [[package]] 3297 - name = "memchr" 3298 - version = "2.5.0" 3299 - source = "registry+https://github.com/rust-lang/crates.io-index" 3300 - checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 3301 - 3302 - [[package]] 3303 - name = "memmap2" 3304 - version = "0.5.4" 3305 - source = "registry+https://github.com/rust-lang/crates.io-index" 3306 - checksum = "d5172b50c23043ff43dd53e51392f36519d9b35a8f3a410d30ece5d1aedd58ae" 3307 - dependencies = [ 3308 - "libc", 3309 - ] 3310 - 3311 - [[package]] 3312 - name = "memoffset" 3313 - version = "0.7.1" 3314 - source = "registry+https://github.com/rust-lang/crates.io-index" 3315 - checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 3316 - dependencies = [ 3317 - "autocfg", 3318 - ] 3319 - 3320 - [[package]] 3321 - name = "mime" 3322 - version = "0.3.17" 3323 - source = "registry+https://github.com/rust-lang/crates.io-index" 3324 - checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 3325 - 3326 - [[package]] 3327 - name = "mime_guess" 3328 - version = "2.0.3" 3329 - source = "registry+https://github.com/rust-lang/crates.io-index" 3330 - checksum = "2684d4c2e97d99848d30b324b00c8fcc7e5c897b7cbb5819b09e7c90e8baf212" 3331 - dependencies = [ 3332 - "mime", 3333 - "unicase", 3334 - ] 3335 - 3336 - [[package]] 3337 - name = "minimal-lexical" 3338 - version = "0.2.1" 3339 - source = "registry+https://github.com/rust-lang/crates.io-index" 3340 - checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 3341 - 3342 - [[package]] 3343 - name = "miniz_oxide" 3344 - version = "0.5.1" 3345 - source = "registry+https://github.com/rust-lang/crates.io-index" 3346 - checksum = "d2b29bd4bc3f33391105ebee3589c19197c4271e3e5a9ec9bfe8127eeff8f082" 3347 - dependencies = [ 3348 - "adler", 3349 - ] 3350 - 3351 - [[package]] 3352 - name = "mio" 3353 - version = "0.8.8" 3354 - source = "registry+https://github.com/rust-lang/crates.io-index" 3355 - checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 3356 - dependencies = [ 3357 - "libc", 3358 - "log", 3359 - "wasi", 3360 - "windows-sys 0.48.0", 3361 - ] 3362 - 3363 - [[package]] 3364 - name = "moka" 3365 - version = "0.9.6" 3366 - source = "registry+https://github.com/rust-lang/crates.io-index" 3367 - checksum = "7b49a05f67020456541f4f29cbaa812016a266a86ec76f96d3873d459c68fe5e" 3368 - dependencies = [ 3369 - "crossbeam-channel", 3370 - "crossbeam-epoch", 3371 - "crossbeam-utils", 3372 - "num_cpus", 3373 - "once_cell", 3374 - "parking_lot", 3375 - "rustc_version", 3376 - "scheduled-thread-pool", 3377 - "skeptic", 3378 - "smallvec", 3379 - "tagptr", 3380 - "thiserror", 3381 - "triomphe", 3382 - "uuid", 3383 - ] 3384 - 3385 - [[package]] 3386 - name = "multimap" 3387 - version = "0.8.3" 3388 - source = "registry+https://github.com/rust-lang/crates.io-index" 3389 - checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" 3390 - 3391 - [[package]] 3392 - name = "multiversion" 3393 - version = "0.6.1" 3394 - source = "registry+https://github.com/rust-lang/crates.io-index" 3395 - checksum = "025c962a3dd3cc5e0e520aa9c612201d127dcdf28616974961a649dca64f5373" 3396 - dependencies = [ 3397 - "multiversion-macros", 3398 - ] 3399 - 3400 - [[package]] 3401 - name = "multiversion-macros" 3402 - version = "0.6.1" 3403 - source = "registry+https://github.com/rust-lang/crates.io-index" 3404 - checksum = "a8a3e2bde382ebf960c1f3e79689fa5941625fe9bf694a1cb64af3e85faff3af" 3405 - dependencies = [ 3406 - "proc-macro2", 3407 - "quote", 3408 - "syn 1.0.107", 3409 - ] 3410 - 3411 - [[package]] 3412 - name = "mysql_async" 3413 - version = "0.33.0" 3414 - source = "registry+https://github.com/rust-lang/crates.io-index" 3415 - checksum = "6750b17ce50f8f112ef1a8394121090d47c596b56a6a17569ca680a9626e2ef2" 3416 - dependencies = [ 3417 - "bytes", 3418 - "crossbeam", 3419 - "flate2", 3420 - "futures-core", 3421 - "futures-sink", 3422 - "futures-util", 3423 - "keyed_priority_queue", 3424 - "lazy_static", 3425 - "lru", 3426 - "mio", 3427 - "mysql_common", 3428 - "once_cell", 3429 - "pem", 3430 - "percent-encoding", 3431 - "pin-project", 3432 - "rand", 3433 - "serde", 3434 - "serde_json", 3435 - "socket2 0.5.3", 3436 - "thiserror", 3437 - "tokio", 3438 - "tokio-util", 3439 - "tracing", 3440 - "twox-hash", 3441 - "url", 3442 - ] 3443 - 3444 - [[package]] 3445 - name = "mysql_common" 3446 - version = "0.31.0" 3447 - source = "registry+https://github.com/rust-lang/crates.io-index" 3448 - checksum = "06f19e4cfa0ab5a76b627cec2d81331c49b034988eaf302c3bafeada684eadef" 3449 - dependencies = [ 3450 - "base64 0.21.5", 3451 - "bindgen", 3452 - "bitflags 2.4.1", 3453 - "bitvec", 3454 - "btoi", 3455 - "byteorder", 3456 - "bytes", 3457 - "cc", 3458 - "cmake", 3459 - "crc32fast", 3460 - "flate2", 3461 - "lazy_static", 3462 - "num-bigint", 3463 - "num-traits", 3464 - "rand", 3465 - "regex", 3466 - "saturating", 3467 - "serde", 3468 - "serde_json", 3469 - "sha1", 3470 - "sha2", 3471 - "smallvec", 3472 - "subprocess", 3473 - "thiserror", 3474 - "uuid", 3475 - "zstd 0.12.4", 3476 - ] 3477 - 3478 - [[package]] 3479 - name = "mz" 3480 - version = "0.3.0" 3481 - dependencies = [ 3482 - "assert_cmd", 3483 - "axum", 3484 - "clap", 3485 - "csv", 3486 - "dirs", 3487 - "hyper", 3488 - "indicatif", 3489 - "maplit", 3490 - "mz-build-info", 3491 - "mz-cloud-api", 3492 - "mz-frontegg-auth", 3493 - "mz-frontegg-client", 3494 - "mz-ore", 3495 - "once_cell", 3496 - "open", 3497 - "openssl-probe", 3498 - "reqwest", 3499 - "rpassword", 3500 - "security-framework", 3501 - "semver", 3502 - "serde", 3503 - "serde-aux", 3504 - "serde_json", 3505 - "tabled", 3506 - "termcolor", 3507 - "thiserror", 3508 - "time", 3509 - "tokio", 3510 - "toml", 3511 - "toml_edit", 3512 - "url", 3513 - "uuid", 3514 - "workspace-hack", 3515 - ] 3516 - 3517 - [[package]] 3518 - name = "mz-adapter" 3519 - version = "0.0.0" 3520 - dependencies = [ 3521 - "anyhow", 3522 - "async-trait", 3523 - "bytes", 3524 - "bytesize", 3525 - "chrono", 3526 - "criterion", 3527 - "datadriven", 3528 - "deadpool-postgres", 3529 - "dec", 3530 - "derivative", 3531 - "differential-dataflow", 3532 - "enum-kinds", 3533 - "fail", 3534 - "futures", 3535 - "governor", 3536 - "hex", 3537 - "http", 3538 - "itertools", 3539 - "launchdarkly-server-sdk", 3540 - "maplit", 3541 - "mz-adapter-types", 3542 - "mz-audit-log", 3543 - "mz-build-info", 3544 - "mz-catalog", 3545 - "mz-ccsr", 3546 - "mz-cloud-resources", 3547 - "mz-cluster-client", 3548 - "mz-compute-client", 3549 - "mz-compute-types", 3550 - "mz-controller", 3551 - "mz-controller-types", 3552 - "mz-expr", 3553 - "mz-kafka-util", 3554 - "mz-orchestrator", 3555 - "mz-ore", 3556 - "mz-persist-client", 3557 - "mz-persist-types", 3558 - "mz-pgcopy", 3559 - "mz-pgrepr", 3560 - "mz-pgwire-common", 3561 - "mz-postgres-client", 3562 - "mz-postgres-util", 3563 - "mz-prof", 3564 - "mz-proto", 3565 - "mz-repr", 3566 - "mz-rocksdb-types", 3567 - "mz-secrets", 3568 - "mz-segment", 3569 - "mz-service", 3570 - "mz-sql", 3571 - "mz-sql-parser", 3572 - "mz-ssh-util", 3573 - "mz-stash", 3574 - "mz-storage-client", 3575 - "mz-storage-types", 3576 - "mz-timestamp-oracle", 3577 - "mz-tls-util", 3578 - "mz-tracing", 3579 - "mz-transform", 3580 - "once_cell", 3581 - "opentelemetry", 3582 - "prometheus", 3583 - "proptest", 3584 - "proptest-derive", 3585 - "prost", 3586 - "qcell", 3587 - "rand", 3588 - "rand_chacha", 3589 - "rdkafka", 3590 - "regex", 3591 - "reqwest", 3592 - "semver", 3593 - "serde", 3594 - "serde_json", 3595 - "serde_plain", 3596 - "smallvec", 3597 - "static_assertions", 3598 - "thiserror", 3599 - "timely", 3600 - "tokio", 3601 - "tokio-postgres", 3602 - "tokio-stream", 3603 - "tracing", 3604 - "tracing-core", 3605 - "tracing-opentelemetry", 3606 - "tracing-subscriber", 3607 - "uncased", 3608 - "url", 3609 - "uuid", 3610 - "workspace-hack", 3611 - ] 3612 - 3613 - [[package]] 3614 - name = "mz-adapter-types" 3615 - version = "0.0.0" 3616 - dependencies = [ 3617 - "mz-ore", 3618 - "mz-repr", 3619 - "mz-storage-types", 3620 - "serde", 3621 - "timely", 3622 - "workspace-hack", 3623 - ] 3624 - 3625 - [[package]] 3626 - name = "mz-alloc" 3627 - version = "0.0.0" 3628 - dependencies = [ 3629 - "mz-ore", 3630 - "mz-prof", 3631 - "mz-prof-http", 3632 - "tikv-jemallocator", 3633 - "workspace-hack", 3634 - ] 3635 - 3636 - [[package]] 3637 - name = "mz-audit-log" 3638 - version = "0.0.0" 3639 - dependencies = [ 3640 - "anyhow", 3641 - "mz-ore", 3642 - "proptest", 3643 - "proptest-derive", 3644 - "serde", 3645 - "serde_json", 3646 - "serde_plain", 3647 - "workspace-hack", 3648 - ] 3649 - 3650 - [[package]] 3651 - name = "mz-avro" 3652 - version = "0.7.0" 3653 - dependencies = [ 3654 - "anyhow", 3655 - "byteorder", 3656 - "chrono", 3657 - "crc32fast", 3658 - "digest", 3659 - "enum-kinds", 3660 - "flate2", 3661 - "itertools", 3662 - "mz-ore", 3663 - "once_cell", 3664 - "rand", 3665 - "regex", 3666 - "serde", 3667 - "serde_json", 3668 - "sha2", 3669 - "snap", 3670 - "tracing", 3671 - "uuid", 3672 - "workspace-hack", 3673 - ] 3674 - 3675 - [[package]] 3676 - name = "mz-avro-derive" 3677 - version = "0.0.0" 3678 - dependencies = [ 3679 - "quote", 3680 - "syn 1.0.107", 3681 - "workspace-hack", 3682 - ] 3683 - 3684 - [[package]] 3685 - name = "mz-aws-secrets-controller" 3686 - version = "0.1.0" 3687 - dependencies = [ 3688 - "anyhow", 3689 - "async-trait", 3690 - "aws-config", 3691 - "aws-credential-types", 3692 - "aws-sdk-secretsmanager", 3693 - "aws-types", 3694 - "futures", 3695 - "mz-aws-util", 3696 - "mz-repr", 3697 - "mz-secrets", 3698 - "tracing", 3699 - "workspace-hack", 3700 - ] 3701 - 3702 - [[package]] 3703 - name = "mz-aws-util" 3704 - version = "0.0.0" 3705 - dependencies = [ 3706 - "aws-config", 3707 - "aws-sdk-s3", 3708 - "aws-smithy-runtime", 3709 - "aws-smithy-runtime-api", 3710 - "aws-types", 3711 - "hyper-tls", 3712 - "workspace-hack", 3713 - ] 3714 - 3715 - [[package]] 3716 - name = "mz-balancerd" 3717 - version = "0.84.2" 3718 - dependencies = [ 3719 - "anyhow", 3720 - "async-trait", 3721 - "axum", 3722 - "bytes", 3723 - "bytesize", 3724 - "clap", 3725 - "futures", 3726 - "hyper", 3727 - "hyper-openssl", 3728 - "jsonwebtoken", 3729 - "mz-build-info", 3730 - "mz-environmentd", 3731 - "mz-frontegg-auth", 3732 - "mz-frontegg-mock", 3733 - "mz-http-util", 3734 - "mz-orchestrator-tracing", 3735 - "mz-ore", 3736 - "mz-pgwire-common", 3737 - "mz-server-core", 3738 - "num_cpus", 3739 - "openssl", 3740 - "postgres", 3741 - "prometheus", 3742 - "semver", 3743 - "tokio", 3744 - "tokio-openssl", 3745 - "tokio-postgres", 3746 - "tokio-util", 3747 - "tracing", 3748 - "uuid", 3749 - "workspace-hack", 3750 - ] 3751 - 3752 - [[package]] 3753 - name = "mz-build-info" 3754 - version = "0.0.0" 3755 - dependencies = [ 3756 - "compile-time-run", 3757 - "semver", 3758 - "workspace-hack", 3759 - ] 3760 - 3761 - [[package]] 3762 - name = "mz-catalog" 3763 - version = "0.0.0" 3764 - dependencies = [ 3765 - "anyhow", 3766 - "async-trait", 3767 - "base64 0.13.1", 3768 - "bytes", 3769 - "bytesize", 3770 - "chrono", 3771 - "derivative", 3772 - "differential-dataflow", 3773 - "fail", 3774 - "futures", 3775 - "insta", 3776 - "itertools", 3777 - "md-5", 3778 - "mz-adapter-types", 3779 - "mz-audit-log", 3780 - "mz-build-info", 3781 - "mz-cloud-resources", 3782 - "mz-compute-client", 3783 - "mz-controller", 3784 - "mz-controller-types", 3785 - "mz-expr", 3786 - "mz-orchestrator", 3787 - "mz-ore", 3788 - "mz-persist-client", 3789 - "mz-persist-types", 3790 - "mz-pgrepr", 3791 - "mz-pgtz", 3792 - "mz-postgres-util", 3793 - "mz-proto", 3794 - "mz-repr", 3795 - "mz-secrets", 3796 - "mz-sql", 3797 - "mz-sql-parser", 3798 - "mz-stash", 3799 - "mz-stash-types", 3800 - "mz-storage-client", 3801 - "mz-storage-types", 3802 - "once_cell", 3803 - "paste", 3804 - "postgres-openssl", 3805 - "prometheus", 3806 - "proptest", 3807 - "proptest-derive", 3808 - "prost", 3809 - "prost-build", 3810 - "protobuf-src", 3811 - "rand", 3812 - "serde", 3813 - "serde_json", 3814 - "serde_plain", 3815 - "sha2", 3816 - "similar-asserts", 3817 - "static_assertions", 3818 - "thiserror", 3819 - "timely", 3820 - "tokio", 3821 - "tokio-postgres", 3822 - "tracing", 3823 - "uuid", 3824 - "workspace-hack", 3825 - ] 3826 - 3827 - [[package]] 3828 - name = "mz-catalog-debug" 3829 - version = "0.84.2" 3830 - dependencies = [ 3831 - "anyhow", 3832 - "clap", 3833 - "mz-adapter", 3834 - "mz-build-info", 3835 - "mz-catalog", 3836 - "mz-ore", 3837 - "mz-persist-client", 3838 - "mz-secrets", 3839 - "mz-sql", 3840 - "mz-stash", 3841 - "mz-storage-types", 3842 - "mz-tls-util", 3843 - "once_cell", 3844 - "serde", 3845 - "serde_json", 3846 - "tokio", 3847 - "tokio-postgres", 3848 - "url", 3849 - "uuid", 3850 - "workspace-hack", 3851 - ] 3852 - 3853 - [[package]] 3854 - name = "mz-ccsr" 3855 - version = "0.0.0" 3856 - dependencies = [ 3857 - "anyhow", 3858 - "hyper", 3859 - "mz-ore", 3860 - "native-tls", 3861 - "once_cell", 3862 - "openssl", 3863 - "prost-build", 3864 - "protobuf-src", 3865 - "reqwest", 3866 - "serde", 3867 - "serde_json", 3868 - "tokio", 3869 - "tracing", 3870 - "url", 3871 - "workspace-hack", 3872 - ] 3873 - 3874 - [[package]] 3875 - name = "mz-cloud-api" 3876 - version = "0.0.0" 3877 - dependencies = [ 3878 - "anyhow", 3879 - "chrono", 3880 - "mz-frontegg-auth", 3881 - "mz-frontegg-client", 3882 - "once_cell", 3883 - "reqwest", 3884 - "serde", 3885 - "thiserror", 3886 - "tokio", 3887 - "url", 3888 - "workspace-hack", 3889 - ] 3890 - 3891 - [[package]] 3892 - name = "mz-cloud-resources" 3893 - version = "0.0.0" 3894 - dependencies = [ 3895 - "anyhow", 3896 - "async-trait", 3897 - "chrono", 3898 - "futures", 3899 - "k8s-openapi", 3900 - "kube", 3901 - "mz-ore", 3902 - "mz-repr", 3903 - "schemars", 3904 - "serde", 3905 - "serde_json", 3906 - "uuid", 3907 - "workspace-hack", 3908 - ] 3909 - 3910 - [[package]] 3911 - name = "mz-cluster" 3912 - version = "0.0.0" 3913 - dependencies = [ 3914 - "anyhow", 3915 - "async-trait", 3916 - "bytesize", 3917 - "clap", 3918 - "crossbeam-channel", 3919 - "dec", 3920 - "differential-dataflow", 3921 - "futures", 3922 - "mz-build-info", 3923 - "mz-cluster-client", 3924 - "mz-ore", 3925 - "mz-persist-client", 3926 - "mz-persist-types", 3927 - "mz-pid-file", 3928 - "mz-repr", 3929 - "mz-service", 3930 - "mz-timely-util", 3931 - "once_cell", 3932 - "prometheus", 3933 - "regex", 3934 - "rocksdb", 3935 - "scopeguard", 3936 - "serde", 3937 - "smallvec", 3938 - "timely", 3939 - "tokio", 3940 - "tracing", 3941 - "uuid", 3942 - "workspace-hack", 3943 - ] 3944 - 3945 - [[package]] 3946 - name = "mz-cluster-client" 3947 - version = "0.0.0" 3948 - dependencies = [ 3949 - "anyhow", 3950 - "async-trait", 3951 - "chrono", 3952 - "futures", 3953 - "http", 3954 - "itertools", 3955 - "mz-ore", 3956 - "mz-proto", 3957 - "once_cell", 3958 - "prometheus", 3959 - "proptest", 3960 - "proptest-derive", 3961 - "prost", 3962 - "prost-build", 3963 - "protobuf-src", 3964 - "regex", 3965 - "serde", 3966 - "serde_json", 3967 - "thiserror", 3968 - "tokio", 3969 - "tokio-stream", 3970 - "tonic", 3971 - "tonic-build", 3972 - "tracing", 3973 - "uuid", 3974 - "workspace-hack", 3975 - ] 3976 - 3977 - [[package]] 3978 - name = "mz-clusterd" 3979 - version = "0.84.2" 3980 - dependencies = [ 3981 - "anyhow", 3982 - "axum", 3983 - "clap", 3984 - "fail", 3985 - "futures", 3986 - "mz-alloc", 3987 - "mz-build-info", 3988 - "mz-cloud-resources", 3989 - "mz-cluster", 3990 - "mz-compute", 3991 - "mz-compute-client", 3992 - "mz-http-util", 3993 - "mz-metrics", 3994 - "mz-orchestrator-tracing", 3995 - "mz-ore", 3996 - "mz-persist-client", 3997 - "mz-pid-file", 3998 - "mz-prof-http", 3999 - "mz-service", 4000 - "mz-storage", 4001 - "mz-storage-client", 4002 - "mz-storage-types", 4003 - "mz-timely-util", 4004 - "once_cell", 4005 - "timely", 4006 - "tokio", 4007 - "tracing", 4008 - "workspace-hack", 4009 - ] 4010 - 4011 - [[package]] 4012 - name = "mz-compute" 4013 - version = "0.0.0" 4014 - dependencies = [ 4015 - "anyhow", 4016 - "async-trait", 4017 - "bytesize", 4018 - "clap", 4019 - "core_affinity", 4020 - "crossbeam-channel", 4021 - "dec", 4022 - "differential-dataflow", 4023 - "dogsdogsdogs", 4024 - "futures", 4025 - "itertools", 4026 - "lgalloc", 4027 - "mz-build-info", 4028 - "mz-cluster", 4029 - "mz-cluster-client", 4030 - "mz-compute-client", 4031 - "mz-compute-types", 4032 - "mz-expr", 4033 - "mz-ore", 4034 - "mz-persist-client", 4035 - "mz-persist-txn", 4036 - "mz-persist-types", 4037 - "mz-pid-file", 4038 - "mz-prof", 4039 - "mz-repr", 4040 - "mz-service", 4041 - "mz-storage-operators", 4042 - "mz-storage-types", 4043 - "mz-timely-util", 4044 - "once_cell", 4045 - "prometheus", 4046 - "scopeguard", 4047 - "serde", 4048 - "smallvec", 4049 - "timely", 4050 - "tokio", 4051 - "tracing", 4052 - "uuid", 4053 - "workspace-hack", 4054 - ] 4055 - 4056 - [[package]] 4057 - name = "mz-compute-client" 4058 - version = "0.0.0" 4059 - dependencies = [ 4060 - "anyhow", 4061 - "async-stream", 4062 - "async-trait", 4063 - "bytesize", 4064 - "chrono", 4065 - "crossbeam-channel", 4066 - "differential-dataflow", 4067 - "futures", 4068 - "http", 4069 - "mz-build-info", 4070 - "mz-cluster-client", 4071 - "mz-compute-types", 4072 - "mz-expr", 4073 - "mz-orchestrator", 4074 - "mz-ore", 4075 - "mz-persist", 4076 - "mz-persist-client", 4077 - "mz-persist-types", 4078 - "mz-proto", 4079 - "mz-repr", 4080 - "mz-service", 4081 - "mz-storage-client", 4082 - "mz-storage-types", 4083 - "mz-timely-util", 4084 - "mz-tracing", 4085 - "once_cell", 4086 - "prometheus", 4087 - "proptest", 4088 - "proptest-derive", 4089 - "prost", 4090 - "prost-build", 4091 - "protobuf-src", 4092 - "regex", 4093 - "serde", 4094 - "serde_json", 4095 - "thiserror", 4096 - "timely", 4097 - "tokio", 4098 - "tokio-stream", 4099 - "tonic", 4100 - "tonic-build", 4101 - "tracing", 4102 - "uuid", 4103 - "workspace-hack", 4104 - ] 4105 - 4106 - [[package]] 4107 - name = "mz-compute-types" 4108 - version = "0.0.0" 4109 - dependencies = [ 4110 - "columnation", 4111 - "differential-dataflow", 4112 - "itertools", 4113 - "mz-expr", 4114 - "mz-ore", 4115 - "mz-proto", 4116 - "mz-repr", 4117 - "mz-storage-types", 4118 - "proptest", 4119 - "proptest-derive", 4120 - "prost", 4121 - "prost-build", 4122 - "protobuf-src", 4123 - "serde", 4124 - "timely", 4125 - "tonic-build", 4126 - "tracing", 4127 - "workspace-hack", 4128 - ] 4129 - 4130 - [[package]] 4131 - name = "mz-controller" 4132 - version = "0.0.0" 4133 - dependencies = [ 4134 - "anyhow", 4135 - "bytesize", 4136 - "chrono", 4137 - "differential-dataflow", 4138 - "futures", 4139 - "mz-build-info", 4140 - "mz-cluster-client", 4141 - "mz-compute-client", 4142 - "mz-compute-types", 4143 - "mz-controller-types", 4144 - "mz-orchestrator", 4145 - "mz-ore", 4146 - "mz-persist-client", 4147 - "mz-persist-types", 4148 - "mz-proto", 4149 - "mz-repr", 4150 - "mz-service", 4151 - "mz-stash-types", 4152 - "mz-storage-client", 4153 - "mz-storage-controller", 4154 - "mz-storage-types", 4155 - "once_cell", 4156 - "regex", 4157 - "serde", 4158 - "serde_json", 4159 - "timely", 4160 - "tokio", 4161 - "tokio-stream", 4162 - "tracing", 4163 - "uuid", 4164 - "workspace-hack", 4165 - ] 4166 - 4167 - [[package]] 4168 - name = "mz-controller-types" 4169 - version = "0.0.0" 4170 - dependencies = [ 4171 - "mz-cluster-client", 4172 - "mz-compute-types", 4173 - "workspace-hack", 4174 - ] 4175 - 4176 - [[package]] 4177 - name = "mz-environmentd" 4178 - version = "0.84.2" 4179 - dependencies = [ 4180 - "anyhow", 4181 - "askama", 4182 - "assert_cmd", 4183 - "async-trait", 4184 - "axum", 4185 - "base64 0.13.1", 4186 - "bytes", 4187 - "bytesize", 4188 - "cc", 4189 - "chrono", 4190 - "clap", 4191 - "datadriven", 4192 - "fail", 4193 - "fallible-iterator", 4194 - "futures", 4195 - "headers", 4196 - "http", 4197 - "http-body", 4198 - "humantime", 4199 - "hyper", 4200 - "hyper-openssl", 4201 - "hyper-tls", 4202 - "include_dir", 4203 - "itertools", 4204 - "jsonwebtoken", 4205 - "libc", 4206 - "mime", 4207 - "mz-adapter", 4208 - "mz-adapter-types", 4209 - "mz-alloc", 4210 - "mz-aws-secrets-controller", 4211 - "mz-build-info", 4212 - "mz-catalog", 4213 - "mz-cloud-resources", 4214 - "mz-controller", 4215 - "mz-environmentd", 4216 - "mz-expr", 4217 - "mz-frontegg-auth", 4218 - "mz-frontegg-mock", 4219 - "mz-http-util", 4220 - "mz-interchange", 4221 - "mz-metrics", 4222 - "mz-npm", 4223 - "mz-orchestrator", 4224 - "mz-orchestrator-kubernetes", 4225 - "mz-orchestrator-process", 4226 - "mz-orchestrator-tracing", 4227 - "mz-ore", 4228 - "mz-persist-client", 4229 - "mz-pgrepr", 4230 - "mz-pgtest", 4231 - "mz-pgwire", 4232 - "mz-pgwire-common", 4233 - "mz-prof-http", 4234 - "mz-repr", 4235 - "mz-secrets", 4236 - "mz-segment", 4237 - "mz-server-core", 4238 - "mz-service", 4239 - "mz-sql", 4240 - "mz-sql-parser", 4241 - "mz-stash", 4242 - "mz-stash-types", 4243 - "mz-storage-client", 4244 - "mz-storage-types", 4245 - "mz-tls-util", 4246 - "mz-tracing", 4247 - "nix", 4248 - "num_cpus", 4249 - "once_cell", 4250 - "openssl", 4251 - "openssl-sys", 4252 - "opentelemetry", 4253 - "opentelemetry_sdk", 4254 - "pin-project", 4255 - "postgres", 4256 - "postgres-openssl", 4257 - "postgres-protocol", 4258 - "postgres_array", 4259 - "predicates", 4260 - "prometheus", 4261 - "proptest", 4262 - "rand", 4263 - "rdkafka-sys", 4264 - "regex", 4265 - "reqwest", 4266 - "rlimit", 4267 - "sentry", 4268 - "sentry-tracing", 4269 - "serde", 4270 - "serde_json", 4271 - "serde_urlencoded", 4272 - "shell-words", 4273 - "similar-asserts", 4274 - "sysctl", 4275 - "tempfile", 4276 - "thiserror", 4277 - "timely", 4278 - "tokio", 4279 - "tokio-openssl", 4280 - "tokio-postgres", 4281 - "tokio-stream", 4282 - "tower", 4283 - "tower-http", 4284 - "tracing", 4285 - "tracing-core", 4286 - "tracing-opentelemetry", 4287 - "tracing-subscriber", 4288 - "tungstenite", 4289 - "url", 4290 - "uuid", 4291 - "workspace-hack", 4292 - ] 4293 - 4294 - [[package]] 4295 - name = "mz-expr" 4296 - version = "0.0.0" 4297 - dependencies = [ 4298 - "aho-corasick", 4299 - "anyhow", 4300 - "bytes", 4301 - "bytesize", 4302 - "chrono", 4303 - "chrono-tz", 4304 - "criterion", 4305 - "csv", 4306 - "datadriven", 4307 - "dec", 4308 - "derivative", 4309 - "encoding", 4310 - "enum-iterator", 4311 - "fallible-iterator", 4312 - "hex", 4313 - "hmac", 4314 - "itertools", 4315 - "md-5", 4316 - "mz-expr-test-util", 4317 - "mz-lowertest", 4318 - "mz-ore", 4319 - "mz-persist-types", 4320 - "mz-pgrepr", 4321 - "mz-pgtz", 4322 - "mz-proto", 4323 - "mz-regexp", 4324 - "mz-repr", 4325 - "mz-sql-parser", 4326 - "mz-sql-pretty", 4327 - "num", 4328 - "num_enum", 4329 - "once_cell", 4330 - "ordered-float", 4331 - "paste", 4332 - "proc-macro2", 4333 - "proptest", 4334 - "proptest-derive", 4335 - "prost", 4336 - "prost-build", 4337 - "protobuf-src", 4338 - "regex", 4339 - "regex-syntax", 4340 - "serde", 4341 - "serde_json", 4342 - "serde_regex", 4343 - "sha1", 4344 - "sha2", 4345 - "subtle", 4346 - "timely", 4347 - "tracing", 4348 - "uncased", 4349 - "uuid", 4350 - "workspace-hack", 4351 - ] 4352 - 4353 - [[package]] 4354 - name = "mz-expr-parser" 4355 - version = "0.0.0" 4356 - dependencies = [ 4357 - "datadriven", 4358 - "mz-expr", 4359 - "mz-ore", 4360 - "mz-repr", 4361 - "proc-macro2", 4362 - "syn 2.0.39", 4363 - "workspace-hack", 4364 - ] 4365 - 4366 - [[package]] 4367 - name = "mz-expr-test-util" 4368 - version = "0.0.0" 4369 - dependencies = [ 4370 - "datadriven", 4371 - "mz-expr", 4372 - "mz-lowertest", 4373 - "mz-ore", 4374 - "mz-repr", 4375 - "mz-repr-test-util", 4376 - "proc-macro2", 4377 - "serde", 4378 - "serde_json", 4379 - "workspace-hack", 4380 - ] 4381 - 4382 - [[package]] 4383 - name = "mz-fivetran-destination" 4384 - version = "0.0.0" 4385 - dependencies = [ 4386 - "anyhow", 4387 - "async-compression", 4388 - "clap", 4389 - "csv-async", 4390 - "futures", 4391 - "itertools", 4392 - "mz-ore", 4393 - "mz-pgrepr", 4394 - "openssl", 4395 - "postgres-openssl", 4396 - "postgres-protocol", 4397 - "prost", 4398 - "prost-build", 4399 - "prost-types", 4400 - "protobuf-src", 4401 - "tokio", 4402 - "tokio-postgres", 4403 - "tonic", 4404 - "tonic-build", 4405 - "workspace-hack", 4406 - ] 4407 - 4408 - [[package]] 4409 - name = "mz-frontegg-auth" 4410 - version = "0.0.0" 4411 - dependencies = [ 4412 - "anyhow", 4413 - "axum", 4414 - "base64 0.13.1", 4415 - "clap", 4416 - "derivative", 4417 - "futures", 4418 - "jsonwebtoken", 4419 - "mz-ore", 4420 - "mz-repr", 4421 - "prometheus", 4422 - "reqwest", 4423 - "reqwest-middleware", 4424 - "reqwest-retry", 4425 - "serde", 4426 - "serde_json", 4427 - "thiserror", 4428 - "tokio", 4429 - "tracing", 4430 - "uuid", 4431 - "workspace-hack", 4432 - ] 4433 - 4434 - [[package]] 4435 - name = "mz-frontegg-client" 4436 - version = "0.0.0" 4437 - dependencies = [ 4438 - "jsonwebtoken", 4439 - "mz-frontegg-auth", 4440 - "mz-ore", 4441 - "once_cell", 4442 - "reqwest", 4443 - "serde", 4444 - "serde_json", 4445 - "thiserror", 4446 - "tokio", 4447 - "url", 4448 - "uuid", 4449 - "workspace-hack", 4450 - ] 4451 - 4452 - [[package]] 4453 - name = "mz-frontegg-mock" 4454 - version = "0.0.0" 4455 - dependencies = [ 4456 - "anyhow", 4457 - "clap", 4458 - "hyper", 4459 - "jsonwebtoken", 4460 - "mz-frontegg-auth", 4461 - "mz-ore", 4462 - "serde", 4463 - "serde_json", 4464 - "tokio", 4465 - "uuid", 4466 - "workspace-hack", 4467 - ] 4468 - 4469 - [[package]] 4470 - name = "mz-http-util" 4471 - version = "0.0.0" 4472 - dependencies = [ 4473 - "anyhow", 4474 - "askama", 4475 - "axum", 4476 - "headers", 4477 - "http", 4478 - "hyper", 4479 - "include_dir", 4480 - "mz-ore", 4481 - "prometheus", 4482 - "serde", 4483 - "serde_json", 4484 - "tokio", 4485 - "tower", 4486 - "tower-http", 4487 - "tracing", 4488 - "tracing-subscriber", 4489 - "workspace-hack", 4490 - ] 4491 - 4492 - [[package]] 4493 - name = "mz-interchange" 4494 - version = "0.0.0" 4495 - dependencies = [ 4496 - "anyhow", 4497 - "byteorder", 4498 - "chrono", 4499 - "clap", 4500 - "criterion", 4501 - "differential-dataflow", 4502 - "itertools", 4503 - "maplit", 4504 - "mz-avro", 4505 - "mz-avro-derive", 4506 - "mz-ccsr", 4507 - "mz-ore", 4508 - "mz-repr", 4509 - "once_cell", 4510 - "ordered-float", 4511 - "prost", 4512 - "prost-build", 4513 - "prost-reflect", 4514 - "protobuf-src", 4515 - "serde_json", 4516 - "timely", 4517 - "tokio", 4518 - "tracing", 4519 - "uuid", 4520 - "workspace-hack", 4521 - ] 4522 - 4523 - [[package]] 4524 - name = "mz-kafka-util" 4525 - version = "0.0.0" 4526 - dependencies = [ 4527 - "anyhow", 4528 - "chrono", 4529 - "clap", 4530 - "crossbeam", 4531 - "fancy-regex", 4532 - "futures", 4533 - "mz-avro", 4534 - "mz-ccsr", 4535 - "mz-ore", 4536 - "mz-ssh-util", 4537 - "num_cpus", 4538 - "prost", 4539 - "prost-build", 4540 - "protobuf-src", 4541 - "rand", 4542 - "rdkafka", 4543 - "serde", 4544 - "serde_json", 4545 - "thiserror", 4546 - "tokio", 4547 - "tracing", 4548 - "url", 4549 - "workspace-hack", 4550 - ] 4551 - 4552 - [[package]] 4553 - name = "mz-lowertest" 4554 - version = "0.0.0" 4555 - dependencies = [ 4556 - "anyhow", 4557 - "datadriven", 4558 - "mz-lowertest-derive", 4559 - "mz-ore", 4560 - "proc-macro2", 4561 - "serde", 4562 - "serde_json", 4563 - "workspace-hack", 4564 - ] 4565 - 4566 - [[package]] 4567 - name = "mz-lowertest-derive" 4568 - version = "0.0.0" 4569 - dependencies = [ 4570 - "proc-macro2", 4571 - "quote", 4572 - "syn 1.0.107", 4573 - "workspace-hack", 4574 - ] 4575 - 4576 - [[package]] 4577 - name = "mz-lsp-server" 4578 - version = "0.3.0" 4579 - dependencies = [ 4580 - "httparse", 4581 - "mz-build-info", 4582 - "mz-ore", 4583 - "mz-sql-lexer", 4584 - "mz-sql-parser", 4585 - "mz-sql-pretty", 4586 - "once_cell", 4587 - "regex", 4588 - "ropey", 4589 - "serde", 4590 - "serde_json", 4591 - "tokio", 4592 - "tower-lsp", 4593 - "workspace-hack", 4594 - ] 4595 - 4596 - [[package]] 4597 - name = "mz-metabase" 4598 - version = "0.0.0" 4599 - dependencies = [ 4600 - "reqwest", 4601 - "serde", 4602 - "workspace-hack", 4603 - ] 4604 - 4605 - [[package]] 4606 - name = "mz-metabase-smoketest" 4607 - version = "0.0.0" 4608 - dependencies = [ 4609 - "anyhow", 4610 - "itertools", 4611 - "mz-metabase", 4612 - "mz-ore", 4613 - "tokio", 4614 - "tokio-postgres", 4615 - "tracing", 4616 - "workspace-hack", 4617 - ] 4618 - 4619 - [[package]] 4620 - name = "mz-metrics" 4621 - version = "0.0.0" 4622 - dependencies = [ 4623 - "lgalloc", 4624 - "libc", 4625 - "mz-ore", 4626 - "paste", 4627 - "prometheus", 4628 - "tokio", 4629 - "workspace-hack", 4630 - ] 4631 - 4632 - [[package]] 4633 - name = "mz-mysql-util" 4634 - version = "0.1.0" 4635 - dependencies = [ 4636 - "anyhow", 4637 - "indexmap 1.9.1", 4638 - "itertools", 4639 - "mysql_async", 4640 - "mz-ore", 4641 - "mz-proto", 4642 - "mz-repr", 4643 - "mz-ssh-util", 4644 - "once_cell", 4645 - "proptest", 4646 - "prost", 4647 - "prost-build", 4648 - "protobuf-src", 4649 - "serde", 4650 - "thiserror", 4651 - "tonic-build", 4652 - "tracing", 4653 - "uuid", 4654 - "workspace-hack", 4655 - ] 4656 - 4657 - [[package]] 4658 - name = "mz-npm" 4659 - version = "0.0.0" 4660 - dependencies = [ 4661 - "anyhow", 4662 - "flate2", 4663 - "hex", 4664 - "hex-literal", 4665 - "reqwest", 4666 - "sha2", 4667 - "tar", 4668 - "walkdir", 4669 - "workspace-hack", 4670 - ] 4671 - 4672 - [[package]] 4673 - name = "mz-orchestrator" 4674 - version = "0.0.0" 4675 - dependencies = [ 4676 - "anyhow", 4677 - "async-trait", 4678 - "bytesize", 4679 - "chrono", 4680 - "derivative", 4681 - "futures-core", 4682 - "mz-ore", 4683 - "prost", 4684 - "protobuf-src", 4685 - "serde", 4686 - "tonic-build", 4687 - "workspace-hack", 4688 - ] 4689 - 4690 - [[package]] 4691 - name = "mz-orchestrator-kubernetes" 4692 - version = "0.0.0" 4693 - dependencies = [ 4694 - "anyhow", 4695 - "async-trait", 4696 - "chrono", 4697 - "clap", 4698 - "fail", 4699 - "futures", 4700 - "k8s-openapi", 4701 - "kube", 4702 - "maplit", 4703 - "mz-cloud-resources", 4704 - "mz-orchestrator", 4705 - "mz-repr", 4706 - "mz-secrets", 4707 - "serde", 4708 - "serde_json", 4709 - "sha2", 4710 - "tracing", 4711 - "workspace-hack", 4712 - ] 4713 - 4714 - [[package]] 4715 - name = "mz-orchestrator-process" 4716 - version = "0.0.0" 4717 - dependencies = [ 4718 - "anyhow", 4719 - "async-stream", 4720 - "async-trait", 4721 - "chrono", 4722 - "futures", 4723 - "hex", 4724 - "itertools", 4725 - "libc", 4726 - "maplit", 4727 - "mz-orchestrator", 4728 - "mz-ore", 4729 - "mz-pid-file", 4730 - "mz-repr", 4731 - "mz-secrets", 4732 - "nix", 4733 - "scopeguard", 4734 - "serde", 4735 - "serde_json", 4736 - "sha1", 4737 - "sysinfo", 4738 - "tokio", 4739 - "tracing", 4740 - "workspace-hack", 4741 - ] 4742 - 4743 - [[package]] 4744 - name = "mz-orchestrator-tracing" 4745 - version = "0.0.0" 4746 - dependencies = [ 4747 - "anyhow", 4748 - "async-trait", 4749 - "clap", 4750 - "futures-core", 4751 - "http", 4752 - "humantime", 4753 - "mz-build-info", 4754 - "mz-orchestrator", 4755 - "mz-ore", 4756 - "mz-repr", 4757 - "mz-service", 4758 - "mz-tracing", 4759 - "opentelemetry", 4760 - "opentelemetry_sdk", 4761 - "sentry-tracing", 4762 - "tracing", 4763 - "tracing-subscriber", 4764 - "workspace-hack", 4765 - ] 4766 - 4767 - [[package]] 4768 - name = "mz-ore" 4769 - version = "0.1.0" 4770 - dependencies = [ 4771 - "anyhow", 4772 - "async-trait", 4773 - "atty", 4774 - "bytes", 4775 - "chrono", 4776 - "clap", 4777 - "compact_bytes", 4778 - "console-subscriber", 4779 - "criterion", 4780 - "ctor", 4781 - "either", 4782 - "futures", 4783 - "hibitset", 4784 - "http", 4785 - "hyper", 4786 - "hyper-tls", 4787 - "lgalloc", 4788 - "mz-ore", 4789 - "mz-test-macro", 4790 - "native-tls", 4791 - "num", 4792 - "once_cell", 4793 - "openssl", 4794 - "opentelemetry", 4795 - "opentelemetry-otlp", 4796 - "opentelemetry_sdk", 4797 - "paste", 4798 - "pin-project", 4799 - "prometheus", 4800 - "proptest", 4801 - "rand", 4802 - "scopeguard", 4803 - "sentry", 4804 - "sentry-tracing", 4805 - "serde", 4806 - "serde_json", 4807 - "smallvec", 4808 - "stacker", 4809 - "tokio", 4810 - "tokio-native-tls", 4811 - "tokio-openssl", 4812 - "tokio-test", 4813 - "tonic", 4814 - "tracing", 4815 - "tracing-opentelemetry", 4816 - "tracing-subscriber", 4817 - "uuid", 4818 - "workspace-hack", 4819 - "yansi", 4820 - ] 4821 - 4822 - [[package]] 4823 - name = "mz-persist" 4824 - version = "0.0.0" 4825 - dependencies = [ 4826 - "anyhow", 4827 - "arrow2", 4828 - "async-stream", 4829 - "async-trait", 4830 - "aws-config", 4831 - "aws-credential-types", 4832 - "aws-sdk-s3", 4833 - "aws-types", 4834 - "base64 0.13.1", 4835 - "bytes", 4836 - "deadpool-postgres", 4837 - "differential-dataflow", 4838 - "fail", 4839 - "futures-util", 4840 - "md-5", 4841 - "mz-aws-util", 4842 - "mz-ore", 4843 - "mz-persist-types", 4844 - "mz-postgres-client", 4845 - "mz-proto", 4846 - "once_cell", 4847 - "openssl", 4848 - "openssl-sys", 4849 - "postgres-openssl", 4850 - "prometheus", 4851 - "proptest", 4852 - "proptest-derive", 4853 - "prost", 4854 - "prost-build", 4855 - "protobuf-src", 4856 - "rand", 4857 - "serde", 4858 - "serde_json", 4859 - "tempfile", 4860 - "timely", 4861 - "tokio", 4862 - "tokio-postgres", 4863 - "tracing", 4864 - "url", 4865 - "uuid", 4866 - "workspace-hack", 4867 - ] 4868 - 4869 - [[package]] 4870 - name = "mz-persist-client" 4871 - version = "0.84.2" 4872 - dependencies = [ 4873 - "anyhow", 4874 - "async-stream", 4875 - "async-trait", 4876 - "bytes", 4877 - "clap", 4878 - "criterion", 4879 - "datadriven", 4880 - "differential-dataflow", 4881 - "futures", 4882 - "futures-task", 4883 - "futures-util", 4884 - "h2", 4885 - "hex", 4886 - "mz-build-info", 4887 - "mz-ore", 4888 - "mz-persist", 4889 - "mz-persist-types", 4890 - "mz-postgres-client", 4891 - "mz-proto", 4892 - "mz-timely-util", 4893 - "num_cpus", 4894 - "once_cell", 4895 - "prometheus", 4896 - "proptest", 4897 - "proptest-derive", 4898 - "prost", 4899 - "prost-build", 4900 - "protobuf-src", 4901 - "semver", 4902 - "sentry-tracing", 4903 - "serde", 4904 - "serde_json", 4905 - "tempfile", 4906 - "thiserror", 4907 - "timely", 4908 - "tokio", 4909 - "tokio-metrics", 4910 - "tokio-stream", 4911 - "tonic", 4912 - "tonic-build", 4913 - "tracing", 4914 - "uuid", 4915 - "workspace-hack", 4916 - ] 4917 - 4918 - [[package]] 4919 - name = "mz-persist-txn" 4920 - version = "0.0.0" 4921 - dependencies = [ 4922 - "bytes", 4923 - "crossbeam-channel", 4924 - "differential-dataflow", 4925 - "futures", 4926 - "itertools", 4927 - "mz-ore", 4928 - "mz-persist-client", 4929 - "mz-persist-types", 4930 - "mz-timely-util", 4931 - "prometheus", 4932 - "prost", 4933 - "prost-build", 4934 - "protobuf-src", 4935 - "rand", 4936 - "serde", 4937 - "timely", 4938 - "tokio", 4939 - "tracing", 4940 - "uuid", 4941 - "workspace-hack", 4942 - ] 4943 - 4944 - [[package]] 4945 - name = "mz-persist-types" 4946 - version = "0.0.0" 4947 - dependencies = [ 4948 - "anyhow", 4949 - "arrow2", 4950 - "bytes", 4951 - "chrono", 4952 - "hex", 4953 - "mz-ore", 4954 - "mz-proto", 4955 - "parquet2", 4956 - "proptest", 4957 - "proptest-derive", 4958 - "prost", 4959 - "prost-build", 4960 - "protobuf-src", 4961 - "serde", 4962 - "serde_json", 4963 - "workspace-hack", 4964 - ] 4965 - 4966 - [[package]] 4967 - name = "mz-pgcopy" 4968 - version = "0.0.0" 4969 - dependencies = [ 4970 - "bytes", 4971 - "csv", 4972 - "mz-ore", 4973 - "mz-pgrepr", 4974 - "mz-repr", 4975 - "workspace-hack", 4976 - ] 4977 - 4978 - [[package]] 4979 - name = "mz-pgrepr" 4980 - version = "0.0.0" 4981 - dependencies = [ 4982 - "byteorder", 4983 - "bytes", 4984 - "chrono", 4985 - "dec", 4986 - "mz-ore", 4987 - "mz-pgrepr-consts", 4988 - "mz-pgwire-common", 4989 - "mz-repr", 4990 - "once_cell", 4991 - "postgres-types", 4992 - "uuid", 4993 - "workspace-hack", 4994 - ] 4995 - 4996 - [[package]] 4997 - name = "mz-pgrepr-consts" 4998 - version = "0.0.0" 4999 - dependencies = [ 5000 - "workspace-hack", 5001 - ] 5002 - 5003 - [[package]] 5004 - name = "mz-pgtest" 5005 - version = "0.0.0" 5006 - dependencies = [ 5007 - "anyhow", 5008 - "bytes", 5009 - "clap", 5010 - "datadriven", 5011 - "fallible-iterator", 5012 - "mz-ore", 5013 - "postgres-protocol", 5014 - "serde", 5015 - "serde_json", 5016 - "workspace-hack", 5017 - ] 5018 - 5019 - [[package]] 5020 - name = "mz-pgtz" 5021 - version = "0.0.0" 5022 - dependencies = [ 5023 - "anyhow", 5024 - "chrono", 5025 - "chrono-tz", 5026 - "mz-lowertest", 5027 - "mz-ore", 5028 - "mz-proto", 5029 - "phf", 5030 - "phf_codegen", 5031 - "proptest", 5032 - "proptest-derive", 5033 - "prost", 5034 - "prost-build", 5035 - "protobuf-src", 5036 - "serde", 5037 - "uncased", 5038 - "workspace-hack", 5039 - ] 5040 - 5041 - [[package]] 5042 - name = "mz-pgwire" 5043 - version = "0.0.0" 5044 - dependencies = [ 5045 - "anyhow", 5046 - "async-trait", 5047 - "byteorder", 5048 - "bytes", 5049 - "bytesize", 5050 - "futures", 5051 - "itertools", 5052 - "mz-adapter", 5053 - "mz-adapter-types", 5054 - "mz-expr", 5055 - "mz-frontegg-auth", 5056 - "mz-ore", 5057 - "mz-pgcopy", 5058 - "mz-pgrepr", 5059 - "mz-pgwire-common", 5060 - "mz-repr", 5061 - "mz-server-core", 5062 - "mz-sql", 5063 - "openssl", 5064 - "postgres", 5065 - "tokio", 5066 - "tokio-openssl", 5067 - "tokio-stream", 5068 - "tokio-util", 5069 - "tracing", 5070 - "workspace-hack", 5071 - ] 5072 - 5073 - [[package]] 5074 - name = "mz-pgwire-common" 5075 - version = "0.0.0" 5076 - dependencies = [ 5077 - "async-trait", 5078 - "byteorder", 5079 - "bytes", 5080 - "bytesize", 5081 - "mz-ore", 5082 - "mz-server-core", 5083 - "tokio", 5084 - "tokio-openssl", 5085 - "tokio-postgres", 5086 - "tracing", 5087 - "workspace-hack", 5088 - ] 5089 - 5090 - [[package]] 5091 - name = "mz-pid-file" 5092 - version = "0.0.0" 5093 - dependencies = [ 5094 - "cc", 5095 - "libc", 5096 - "mz-ore", 5097 - "tempfile", 5098 - "workspace-hack", 5099 - ] 5100 - 5101 - [[package]] 5102 - name = "mz-postgres-client" 5103 - version = "0.0.0" 5104 - dependencies = [ 5105 - "anyhow", 5106 - "deadpool-postgres", 5107 - "mz-ore", 5108 - "mz-tls-util", 5109 - "prometheus", 5110 - "tokio", 5111 - "tracing", 5112 - "workspace-hack", 5113 - ] 5114 - 5115 - [[package]] 5116 - name = "mz-postgres-util" 5117 - version = "0.0.0" 5118 - dependencies = [ 5119 - "anyhow", 5120 - "mz-cloud-resources", 5121 - "mz-ore", 5122 - "mz-proto", 5123 - "mz-repr", 5124 - "mz-ssh-util", 5125 - "mz-tls-util", 5126 - "openssh", 5127 - "openssl", 5128 - "postgres-openssl", 5129 - "postgres_array", 5130 - "proptest", 5131 - "prost", 5132 - "prost-build", 5133 - "protobuf-src", 5134 - "serde", 5135 - "thiserror", 5136 - "tokio", 5137 - "tokio-postgres", 5138 - "tonic-build", 5139 - "tracing", 5140 - "workspace-hack", 5141 - ] 5142 - 5143 - [[package]] 5144 - name = "mz-proc" 5145 - version = "0.1.0" 5146 - dependencies = [ 5147 - "anyhow", 5148 - "libc", 5149 - "mz-ore", 5150 - "workspace-hack", 5151 - ] 5152 - 5153 - [[package]] 5154 - name = "mz-prof" 5155 - version = "0.0.0" 5156 - dependencies = [ 5157 - "anyhow", 5158 - "backtrace", 5159 - "flate2", 5160 - "libc", 5161 - "mz-ore", 5162 - "mz-proc", 5163 - "once_cell", 5164 - "pprof", 5165 - "prost", 5166 - "prost-build", 5167 - "protobuf-src", 5168 - "tempfile", 5169 - "tikv-jemalloc-ctl", 5170 - "tokio", 5171 - "tracing", 5172 - "workspace-hack", 5173 - ] 5174 - 5175 - [[package]] 5176 - name = "mz-prof-http" 5177 - version = "0.0.0" 5178 - dependencies = [ 5179 - "anyhow", 5180 - "askama", 5181 - "axum", 5182 - "bytesize", 5183 - "cfg-if", 5184 - "headers", 5185 - "http", 5186 - "include_dir", 5187 - "mime", 5188 - "mz-build-info", 5189 - "mz-http-util", 5190 - "mz-npm", 5191 - "mz-ore", 5192 - "mz-prof", 5193 - "once_cell", 5194 - "serde", 5195 - "tokio", 5196 - "tracing", 5197 - "workspace-hack", 5198 - ] 5199 - 5200 - [[package]] 5201 - name = "mz-proto" 5202 - version = "0.0.0" 5203 - dependencies = [ 5204 - "anyhow", 5205 - "chrono", 5206 - "chrono-tz", 5207 - "globset", 5208 - "http", 5209 - "mz-ore", 5210 - "num", 5211 - "proptest", 5212 - "prost", 5213 - "prost-build", 5214 - "protobuf-src", 5215 - "regex", 5216 - "serde_json", 5217 - "tokio-postgres", 5218 - "url", 5219 - "uuid", 5220 - "workspace-hack", 5221 - ] 5222 - 5223 - [[package]] 5224 - name = "mz-regexp" 5225 - version = "0.0.0" 5226 - dependencies = [ 5227 - "anyhow", 5228 - "mz-ore", 5229 - "mz-repr", 5230 - "postgres", 5231 - "regex", 5232 - "workspace-hack", 5233 - ] 5234 - 5235 - [[package]] 5236 - name = "mz-repr" 5237 - version = "0.0.0" 5238 - dependencies = [ 5239 - "anyhow", 5240 - "bitflags 1.3.2", 5241 - "bytes", 5242 - "cfg-if", 5243 - "chrono", 5244 - "chrono-tz", 5245 - "columnation", 5246 - "compact_bytes", 5247 - "criterion", 5248 - "dec", 5249 - "differential-dataflow", 5250 - "enum-kinds", 5251 - "enum_dispatch", 5252 - "fast-float", 5253 - "hex", 5254 - "itertools", 5255 - "mz-lowertest", 5256 - "mz-ore", 5257 - "mz-persist", 5258 - "mz-persist-types", 5259 - "mz-pgtz", 5260 - "mz-proto", 5261 - "mz-sql-parser", 5262 - "num-traits", 5263 - "num_enum", 5264 - "once_cell", 5265 - "ordered-float", 5266 - "postgres-protocol", 5267 - "proptest", 5268 - "proptest-derive", 5269 - "prost", 5270 - "prost-build", 5271 - "protobuf-src", 5272 - "rand", 5273 - "regex", 5274 - "ryu", 5275 - "serde", 5276 - "serde_json", 5277 - "smallvec", 5278 - "static_assertions", 5279 - "strsim", 5280 - "thiserror", 5281 - "timely", 5282 - "tokio-postgres", 5283 - "tracing", 5284 - "tracing-core", 5285 - "tracing-subscriber", 5286 - "url", 5287 - "uuid", 5288 - "workspace-hack", 5289 - ] 5290 - 5291 - [[package]] 5292 - name = "mz-repr-test-util" 5293 - version = "0.0.0" 5294 - dependencies = [ 5295 - "chrono", 5296 - "datadriven", 5297 - "mz-lowertest", 5298 - "mz-ore", 5299 - "mz-repr", 5300 - "proc-macro2", 5301 - "workspace-hack", 5302 - ] 5303 - 5304 - [[package]] 5305 - name = "mz-rocksdb" 5306 - version = "0.0.0" 5307 - dependencies = [ 5308 - "anyhow", 5309 - "bincode", 5310 - "derivative", 5311 - "itertools", 5312 - "mz-ore", 5313 - "mz-proto", 5314 - "mz-rocksdb-types", 5315 - "num_cpus", 5316 - "once_cell", 5317 - "prometheus", 5318 - "proptest", 5319 - "proptest-derive", 5320 - "prost", 5321 - "prost-build", 5322 - "protobuf-src", 5323 - "rocksdb", 5324 - "serde", 5325 - "serde_json", 5326 - "tempfile", 5327 - "thiserror", 5328 - "tokio", 5329 - "tonic-build", 5330 - "tracing", 5331 - "uncased", 5332 - "workspace-hack", 5333 - ] 5334 - 5335 - [[package]] 5336 - name = "mz-rocksdb-types" 5337 - version = "0.0.0" 5338 - dependencies = [ 5339 - "anyhow", 5340 - "mz-ore", 5341 - "mz-proto", 5342 - "num_cpus", 5343 - "proptest", 5344 - "proptest-derive", 5345 - "prost", 5346 - "prost-build", 5347 - "protobuf-src", 5348 - "serde", 5349 - "tonic-build", 5350 - "uncased", 5351 - "workspace-hack", 5352 - ] 5353 - 5354 - [[package]] 5355 - name = "mz-s3-datagen" 5356 - version = "0.0.0" 5357 - dependencies = [ 5358 - "anyhow", 5359 - "aws-config", 5360 - "aws-sdk-s3", 5361 - "bytefmt", 5362 - "clap", 5363 - "futures", 5364 - "indicatif", 5365 - "mz-aws-util", 5366 - "mz-ore", 5367 - "tokio", 5368 - "tracing", 5369 - "tracing-subscriber", 5370 - "workspace-hack", 5371 - ] 5372 - 5373 - [[package]] 5374 - name = "mz-secrets" 5375 - version = "0.0.0" 5376 - dependencies = [ 5377 - "anyhow", 5378 - "async-trait", 5379 - "mz-ore", 5380 - "mz-repr", 5381 - "tokio", 5382 - "tracing", 5383 - "workspace-hack", 5384 - ] 5385 - 5386 - [[package]] 5387 - name = "mz-segment" 5388 - version = "0.0.0" 5389 - dependencies = [ 5390 - "mz-ore", 5391 - "segment", 5392 - "serde_json", 5393 - "tokio", 5394 - "tracing", 5395 - "uuid", 5396 - "workspace-hack", 5397 - ] 5398 - 5399 - [[package]] 5400 - name = "mz-server-core" 5401 - version = "0.0.0" 5402 - dependencies = [ 5403 - "anyhow", 5404 - "clap", 5405 - "futures", 5406 - "mz-ore", 5407 - "openssl", 5408 - "socket2 0.5.3", 5409 - "tokio", 5410 - "tokio-stream", 5411 - "tracing", 5412 - "workspace-hack", 5413 - ] 5414 - 5415 - [[package]] 5416 - name = "mz-service" 5417 - version = "0.0.0" 5418 - dependencies = [ 5419 - "anyhow", 5420 - "async-stream", 5421 - "async-trait", 5422 - "clap", 5423 - "crossbeam-channel", 5424 - "futures", 5425 - "http", 5426 - "itertools", 5427 - "mz-aws-secrets-controller", 5428 - "mz-build-info", 5429 - "mz-orchestrator-kubernetes", 5430 - "mz-orchestrator-process", 5431 - "mz-ore", 5432 - "mz-proto", 5433 - "mz-repr", 5434 - "mz-secrets", 5435 - "once_cell", 5436 - "os_info", 5437 - "proptest", 5438 - "proptest-derive", 5439 - "prost", 5440 - "prost-build", 5441 - "protobuf-src", 5442 - "semver", 5443 - "sentry-tracing", 5444 - "serde", 5445 - "sysinfo", 5446 - "timely", 5447 - "tokio", 5448 - "tokio-stream", 5449 - "tonic", 5450 - "tonic-build", 5451 - "tower", 5452 - "tracing", 5453 - "workspace-hack", 5454 - ] 5455 - 5456 - [[package]] 5457 - name = "mz-sql" 5458 - version = "0.0.0" 5459 - dependencies = [ 5460 - "anyhow", 5461 - "array-concat", 5462 - "aws-sdk-sts", 5463 - "bitflags 1.3.2", 5464 - "chrono", 5465 - "clap", 5466 - "datadriven", 5467 - "enum-kinds", 5468 - "fail", 5469 - "globset", 5470 - "hex", 5471 - "http", 5472 - "itertools", 5473 - "maplit", 5474 - "mysql_async", 5475 - "mz-adapter-types", 5476 - "mz-build-info", 5477 - "mz-ccsr", 5478 - "mz-cloud-resources", 5479 - "mz-controller-types", 5480 - "mz-expr", 5481 - "mz-interchange", 5482 - "mz-kafka-util", 5483 - "mz-lowertest", 5484 - "mz-mysql-util", 5485 - "mz-orchestrator", 5486 - "mz-ore", 5487 - "mz-persist-client", 5488 - "mz-pgcopy", 5489 - "mz-pgrepr", 5490 - "mz-pgwire-common", 5491 - "mz-postgres-util", 5492 - "mz-proto", 5493 - "mz-repr", 5494 - "mz-rocksdb-types", 5495 - "mz-secrets", 5496 - "mz-sql-lexer", 5497 - "mz-sql-parser", 5498 - "mz-ssh-util", 5499 - "mz-storage-types", 5500 - "mz-tracing", 5501 - "num_enum", 5502 - "once_cell", 5503 - "paste", 5504 - "postgres_array", 5505 - "proptest", 5506 - "proptest-derive", 5507 - "prost", 5508 - "protobuf-native", 5509 - "rdkafka", 5510 - "regex", 5511 - "reqwest", 5512 - "serde", 5513 - "serde_json", 5514 - "static_assertions", 5515 - "thiserror", 5516 - "tokio", 5517 - "tokio-postgres", 5518 - "tracing", 5519 - "tracing-subscriber", 5520 - "uncased", 5521 - "uuid", 5522 - "workspace-hack", 5523 - ] 5524 - 5525 - [[package]] 5526 - name = "mz-sql-lexer" 5527 - version = "0.0.0" 5528 - dependencies = [ 5529 - "anyhow", 5530 - "datadriven", 5531 - "mz-ore", 5532 - "phf", 5533 - "phf_codegen", 5534 - "serde", 5535 - "uncased", 5536 - "workspace-hack", 5537 - ] 5538 - 5539 - [[package]] 5540 - name = "mz-sql-parser" 5541 - version = "0.0.0" 5542 - dependencies = [ 5543 - "anyhow", 5544 - "bytesize", 5545 - "datadriven", 5546 - "enum-kinds", 5547 - "itertools", 5548 - "mz-ore", 5549 - "mz-sql-lexer", 5550 - "mz-sql-parser", 5551 - "mz-walkabout", 5552 - "phf", 5553 - "serde", 5554 - "thiserror", 5555 - "tracing", 5556 - "uncased", 5557 - "unicode-width", 5558 - "workspace-hack", 5559 - ] 5560 - 5561 - [[package]] 5562 - name = "mz-sql-pretty" 5563 - version = "0.0.0" 5564 - dependencies = [ 5565 - "datadriven", 5566 - "mz-ore", 5567 - "mz-sql-parser", 5568 - "pretty", 5569 - "thiserror", 5570 - "workspace-hack", 5571 - ] 5572 - 5573 - [[package]] 5574 - name = "mz-sqllogictest" 5575 - version = "0.0.1" 5576 - dependencies = [ 5577 - "anyhow", 5578 - "bytes", 5579 - "chrono", 5580 - "clap", 5581 - "dec", 5582 - "fallible-iterator", 5583 - "futures", 5584 - "itertools", 5585 - "junit-report", 5586 - "md-5", 5587 - "mz-build-info", 5588 - "mz-cloud-resources", 5589 - "mz-controller", 5590 - "mz-environmentd", 5591 - "mz-orchestrator", 5592 - "mz-orchestrator-process", 5593 - "mz-orchestrator-tracing", 5594 - "mz-ore", 5595 - "mz-persist-client", 5596 - "mz-pgrepr", 5597 - "mz-repr", 5598 - "mz-secrets", 5599 - "mz-service", 5600 - "mz-sql", 5601 - "mz-sql-parser", 5602 - "mz-stash-types", 5603 - "mz-storage-types", 5604 - "mz-tracing", 5605 - "once_cell", 5606 - "postgres-protocol", 5607 - "regex", 5608 - "reqwest", 5609 - "serde_json", 5610 - "shell-words", 5611 - "tempfile", 5612 - "time", 5613 - "tokio", 5614 - "tokio-postgres", 5615 - "tokio-stream", 5616 - "tower-http", 5617 - "tracing", 5618 - "uuid", 5619 - "walkdir", 5620 - "workspace-hack", 5621 - ] 5622 - 5623 - [[package]] 5624 - name = "mz-ssh-util" 5625 - version = "0.0.0" 5626 - dependencies = [ 5627 - "anyhow", 5628 - "futures", 5629 - "mz-ore", 5630 - "openssh", 5631 - "openssh-mux-client", 5632 - "openssl", 5633 - "rand", 5634 - "scopeguard", 5635 - "serde", 5636 - "serde_json", 5637 - "ssh-key", 5638 - "tempfile", 5639 - "thiserror", 5640 - "tokio", 5641 - "tokio-stream", 5642 - "tracing", 5643 - "workspace-hack", 5644 - "zeroize", 5645 - ] 5646 - 5647 - [[package]] 5648 - name = "mz-stash" 5649 - version = "0.0.0" 5650 - dependencies = [ 5651 - "bytes", 5652 - "criterion", 5653 - "derivative", 5654 - "differential-dataflow", 5655 - "fail", 5656 - "futures", 5657 - "itertools", 5658 - "mz-ore", 5659 - "mz-proto", 5660 - "mz-stash-types", 5661 - "mz-tls-util", 5662 - "once_cell", 5663 - "paste", 5664 - "postgres-openssl", 5665 - "prometheus", 5666 - "proptest", 5667 - "prost", 5668 - "rand", 5669 - "serde", 5670 - "timely", 5671 - "tokio", 5672 - "tokio-postgres", 5673 - "tracing", 5674 - "workspace-hack", 5675 - ] 5676 - 5677 - [[package]] 5678 - name = "mz-stash-debug" 5679 - version = "0.84.2" 5680 - dependencies = [ 5681 - "anyhow", 5682 - "clap", 5683 - "futures", 5684 - "mz-adapter", 5685 - "mz-build-info", 5686 - "mz-catalog", 5687 - "mz-ore", 5688 - "mz-secrets", 5689 - "mz-sql", 5690 - "mz-stash", 5691 - "mz-storage-controller", 5692 - "mz-storage-types", 5693 - "mz-tls-util", 5694 - "once_cell", 5695 - "prost", 5696 - "serde_json", 5697 - "tokio", 5698 - "tokio-postgres", 5699 - "tracing", 5700 - "tracing-subscriber", 5701 - "workspace-hack", 5702 - ] 5703 - 5704 - [[package]] 5705 - name = "mz-stash-types" 5706 - version = "0.0.0" 5707 - dependencies = [ 5708 - "anyhow", 5709 - "mz-ore", 5710 - "mz-proto", 5711 - "paste", 5712 - "prometheus", 5713 - "prost", 5714 - "serde", 5715 - "tokio-postgres", 5716 - "workspace-hack", 5717 - ] 5718 - 5719 - [[package]] 5720 - name = "mz-storage" 5721 - version = "0.0.0" 5722 - dependencies = [ 5723 - "anyhow", 5724 - "async-stream", 5725 - "async-trait", 5726 - "axum", 5727 - "bincode", 5728 - "bytes", 5729 - "bytesize", 5730 - "chrono", 5731 - "clap", 5732 - "crossbeam-channel", 5733 - "csv-core", 5734 - "datadriven", 5735 - "dec", 5736 - "differential-dataflow", 5737 - "either", 5738 - "fail", 5739 - "futures", 5740 - "globset", 5741 - "http", 5742 - "humantime", 5743 - "indexmap 2.0.0", 5744 - "itertools", 5745 - "maplit", 5746 - "mysql_async", 5747 - "mysql_common", 5748 - "mz-avro", 5749 - "mz-aws-util", 5750 - "mz-build-info", 5751 - "mz-ccsr", 5752 - "mz-cloud-resources", 5753 - "mz-cluster", 5754 - "mz-expr", 5755 - "mz-http-util", 5756 - "mz-interchange", 5757 - "mz-kafka-util", 5758 - "mz-mysql-util", 5759 - "mz-orchestrator-tracing", 5760 - "mz-ore", 5761 - "mz-persist", 5762 - "mz-persist-client", 5763 - "mz-persist-types", 5764 - "mz-pgcopy", 5765 - "mz-pid-file", 5766 - "mz-postgres-util", 5767 - "mz-repr", 5768 - "mz-rocksdb", 5769 - "mz-secrets", 5770 - "mz-service", 5771 - "mz-sql-parser", 5772 - "mz-ssh-util", 5773 - "mz-storage-client", 5774 - "mz-storage-operators", 5775 - "mz-storage-types", 5776 - "mz-timely-util", 5777 - "num_cpus", 5778 - "once_cell", 5779 - "postgres-protocol", 5780 - "prometheus", 5781 - "prost", 5782 - "protobuf-src", 5783 - "rand", 5784 - "rdkafka", 5785 - "regex", 5786 - "rocksdb", 5787 - "seahash", 5788 - "serde", 5789 - "serde_json", 5790 - "sha2", 5791 - "tempfile", 5792 - "thiserror", 5793 - "timely", 5794 - "tokio", 5795 - "tokio-postgres", 5796 - "tokio-stream", 5797 - "tokio-util", 5798 - "tonic-build", 5799 - "tracing", 5800 - "tracing-subscriber", 5801 - "url", 5802 - "uuid", 5803 - "workspace-hack", 5804 - ] 5805 - 5806 - [[package]] 5807 - name = "mz-storage-client" 5808 - version = "0.0.0" 5809 - dependencies = [ 5810 - "anyhow", 5811 - "async-trait", 5812 - "chrono", 5813 - "differential-dataflow", 5814 - "http", 5815 - "itertools", 5816 - "maplit", 5817 - "mz-ccsr", 5818 - "mz-cluster-client", 5819 - "mz-kafka-util", 5820 - "mz-ore", 5821 - "mz-persist-client", 5822 - "mz-persist-types", 5823 - "mz-proto", 5824 - "mz-repr", 5825 - "mz-service", 5826 - "mz-storage-types", 5827 - "mz-timely-util", 5828 - "once_cell", 5829 - "prometheus", 5830 - "proptest", 5831 - "prost", 5832 - "prost-build", 5833 - "protobuf-src", 5834 - "rdkafka", 5835 - "serde", 5836 - "serde_json", 5837 - "static_assertions", 5838 - "timely", 5839 - "tokio", 5840 - "tokio-stream", 5841 - "tonic", 5842 - "tonic-build", 5843 - "tracing", 5844 - "workspace-hack", 5845 - ] 5846 - 5847 - [[package]] 5848 - name = "mz-storage-controller" 5849 - version = "0.0.0" 5850 - dependencies = [ 5851 - "anyhow", 5852 - "async-trait", 5853 - "bytes", 5854 - "chrono", 5855 - "differential-dataflow", 5856 - "futures", 5857 - "itertools", 5858 - "mz-build-info", 5859 - "mz-cluster-client", 5860 - "mz-ore", 5861 - "mz-persist-client", 5862 - "mz-persist-txn", 5863 - "mz-persist-types", 5864 - "mz-proto", 5865 - "mz-repr", 5866 - "mz-service", 5867 - "mz-stash", 5868 - "mz-stash-types", 5869 - "mz-storage-client", 5870 - "mz-storage-types", 5871 - "mz-tls-util", 5872 - "once_cell", 5873 - "proptest", 5874 - "prost", 5875 - "serde", 5876 - "serde_json", 5877 - "timely", 5878 - "tokio", 5879 - "tokio-postgres", 5880 - "tokio-stream", 5881 - "tracing", 5882 - "workspace-hack", 5883 - ] 5884 - 5885 - [[package]] 5886 - name = "mz-storage-operators" 5887 - version = "0.0.0" 5888 - dependencies = [ 5889 - "async-stream", 5890 - "differential-dataflow", 5891 - "futures", 5892 - "mz-expr", 5893 - "mz-ore", 5894 - "mz-persist-client", 5895 - "mz-persist-txn", 5896 - "mz-persist-types", 5897 - "mz-repr", 5898 - "mz-storage-types", 5899 - "mz-timely-util", 5900 - "prometheus", 5901 - "proptest", 5902 - "serde", 5903 - "timely", 5904 - "tokio", 5905 - "tracing", 5906 - "workspace-hack", 5907 - ] 5908 - 5909 - [[package]] 5910 - name = "mz-storage-types" 5911 - version = "0.0.0" 5912 - dependencies = [ 5913 - "anyhow", 5914 - "aws-config", 5915 - "aws-credential-types", 5916 - "aws-sdk-sts", 5917 - "aws-types", 5918 - "base64 0.13.1", 5919 - "bytes", 5920 - "dec", 5921 - "derivative", 5922 - "differential-dataflow", 5923 - "fail", 5924 - "itertools", 5925 - "mysql_async", 5926 - "mz-aws-util", 5927 - "mz-ccsr", 5928 - "mz-cloud-resources", 5929 - "mz-expr", 5930 - "mz-interchange", 5931 - "mz-kafka-util", 5932 - "mz-mysql-util", 5933 - "mz-ore", 5934 - "mz-persist-client", 5935 - "mz-persist-txn", 5936 - "mz-persist-types", 5937 - "mz-postgres-util", 5938 - "mz-proto", 5939 - "mz-repr", 5940 - "mz-rocksdb-types", 5941 - "mz-secrets", 5942 - "mz-service", 5943 - "mz-ssh-util", 5944 - "mz-stash-types", 5945 - "mz-timely-util", 5946 - "mz-tracing", 5947 - "native-tls", 5948 - "num_enum", 5949 - "once_cell", 5950 - "openssl", 5951 - "proptest", 5952 - "proptest-derive", 5953 - "prost", 5954 - "prost-build", 5955 - "protobuf-src", 5956 - "rdkafka", 5957 - "scopeguard", 5958 - "serde", 5959 - "serde_json", 5960 - "thiserror", 5961 - "timely", 5962 - "tokio", 5963 - "tokio-postgres", 5964 - "tonic-build", 5965 - "tracing", 5966 - "url", 5967 - "uuid", 5968 - "workspace-hack", 5969 - ] 5970 - 5971 - [[package]] 5972 - name = "mz-test-macro" 5973 - version = "0.1.0" 5974 - dependencies = [ 5975 - "proc-macro2", 5976 - "quote", 5977 - "syn 1.0.107", 5978 - "workspace-hack", 5979 - ] 5980 - 5981 - [[package]] 5982 - name = "mz-test-util" 5983 - version = "0.0.0" 5984 - dependencies = [ 5985 - "anyhow", 5986 - "chrono", 5987 - "mz-kafka-util", 5988 - "mz-ore", 5989 - "rand", 5990 - "rdkafka", 5991 - "tokio", 5992 - "tokio-postgres", 5993 - "tracing", 5994 - "workspace-hack", 5995 - ] 5996 - 5997 - [[package]] 5998 - name = "mz-testdrive" 5999 - version = "0.84.2" 6000 - dependencies = [ 6001 - "anyhow", 6002 - "async-compression", 6003 - "async-trait", 6004 - "atty", 6005 - "aws-config", 6006 - "aws-credential-types", 6007 - "aws-sdk-sts", 6008 - "aws-types", 6009 - "byteorder", 6010 - "bytes", 6011 - "chrono", 6012 - "clap", 6013 - "flate2", 6014 - "futures", 6015 - "globset", 6016 - "hex", 6017 - "http", 6018 - "humantime", 6019 - "itertools", 6020 - "junit-report", 6021 - "maplit", 6022 - "md-5", 6023 - "mysql_async", 6024 - "mz-adapter", 6025 - "mz-avro", 6026 - "mz-aws-util", 6027 - "mz-build-info", 6028 - "mz-catalog", 6029 - "mz-ccsr", 6030 - "mz-expr", 6031 - "mz-interchange", 6032 - "mz-kafka-util", 6033 - "mz-ore", 6034 - "mz-persist-client", 6035 - "mz-persist-types", 6036 - "mz-pgrepr", 6037 - "mz-repr", 6038 - "mz-sql", 6039 - "mz-sql-parser", 6040 - "mz-stash", 6041 - "mz-storage-types", 6042 - "mz-tls-util", 6043 - "once_cell", 6044 - "postgres_array", 6045 - "prost", 6046 - "prost-reflect", 6047 - "protobuf-src", 6048 - "rand", 6049 - "rdkafka", 6050 - "regex", 6051 - "reqwest", 6052 - "serde", 6053 - "serde_json", 6054 - "similar", 6055 - "tempfile", 6056 - "termcolor", 6057 - "tiberius", 6058 - "time", 6059 - "tokio", 6060 - "tokio-postgres", 6061 - "tokio-stream", 6062 - "tokio-util", 6063 - "tracing", 6064 - "tracing-subscriber", 6065 - "url", 6066 - "uuid", 6067 - "walkdir", 6068 - "workspace-hack", 6069 - ] 6070 - 6071 - [[package]] 6072 - name = "mz-timely-util" 6073 - version = "0.0.0" 6074 - dependencies = [ 6075 - "ahash", 6076 - "differential-dataflow", 6077 - "futures-util", 6078 - "mz-ore", 6079 - "num-traits", 6080 - "proptest", 6081 - "serde", 6082 - "timely", 6083 - "tokio", 6084 - "workspace-hack", 6085 - ] 6086 - 6087 - [[package]] 6088 - name = "mz-timestamp-oracle" 6089 - version = "0.0.0" 6090 - dependencies = [ 6091 - "anyhow", 6092 - "async-trait", 6093 - "deadpool-postgres", 6094 - "dec", 6095 - "futures", 6096 - "mz-adapter-types", 6097 - "mz-ore", 6098 - "mz-pgrepr", 6099 - "mz-postgres-client", 6100 - "mz-repr", 6101 - "rand", 6102 - "serde", 6103 - "tokio", 6104 - "tracing", 6105 - "uuid", 6106 - "workspace-hack", 6107 - ] 6108 - 6109 - [[package]] 6110 - name = "mz-tls-util" 6111 - version = "0.0.0" 6112 - dependencies = [ 6113 - "anyhow", 6114 - "openssl", 6115 - "openssl-sys", 6116 - "postgres-openssl", 6117 - "thiserror", 6118 - "tokio", 6119 - "tokio-postgres", 6120 - "tracing", 6121 - "workspace-hack", 6122 - ] 6123 - 6124 - [[package]] 6125 - name = "mz-tracing" 6126 - version = "0.0.0" 6127 - dependencies = [ 6128 - "anyhow", 6129 - "mz-ore", 6130 - "mz-proto", 6131 - "proptest", 6132 - "prost", 6133 - "prost-build", 6134 - "protobuf-src", 6135 - "serde", 6136 - "tonic-build", 6137 - "tracing", 6138 - "tracing-subscriber", 6139 - "workspace-hack", 6140 - ] 6141 - 6142 - [[package]] 6143 - name = "mz-transform" 6144 - version = "0.0.0" 6145 - dependencies = [ 6146 - "anyhow", 6147 - "datadriven", 6148 - "differential-dataflow", 6149 - "enum-kinds", 6150 - "itertools", 6151 - "mz-compute-types", 6152 - "mz-expr", 6153 - "mz-expr-parser", 6154 - "mz-expr-test-util", 6155 - "mz-lowertest", 6156 - "mz-ore", 6157 - "mz-persist-client", 6158 - "mz-repr", 6159 - "num-traits", 6160 - "ordered-float", 6161 - "paste", 6162 - "proc-macro2", 6163 - "serde_json", 6164 - "tracing", 6165 - "workspace-hack", 6166 - ] 6167 - 6168 - [[package]] 6169 - name = "mz-walkabout" 6170 - version = "0.0.0" 6171 - dependencies = [ 6172 - "anyhow", 6173 - "datadriven", 6174 - "itertools", 6175 - "mz-ore", 6176 - "quote", 6177 - "syn 1.0.107", 6178 - "tempfile", 6179 - "workspace-hack", 6180 - ] 6181 - 6182 - [[package]] 6183 - name = "native-tls" 6184 - version = "0.2.11" 6185 - source = "registry+https://github.com/rust-lang/crates.io-index" 6186 - checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 6187 - dependencies = [ 6188 - "lazy_static", 6189 - "libc", 6190 - "log", 6191 - "openssl", 6192 - "openssl-probe", 6193 - "openssl-sys", 6194 - "schannel", 6195 - "security-framework", 6196 - "security-framework-sys", 6197 - "tempfile", 6198 - ] 6199 - 6200 - [[package]] 6201 - name = "nix" 6202 - version = "0.26.1" 6203 - source = "registry+https://github.com/rust-lang/crates.io-index" 6204 - checksum = "46a58d1d356c6597d08cde02c2f09d785b09e28711837b1ed667dc652c08a694" 6205 - dependencies = [ 6206 - "bitflags 1.3.2", 6207 - "cfg-if", 6208 - "libc", 6209 - "memoffset", 6210 - "pin-utils", 6211 - "static_assertions", 6212 - ] 6213 - 6214 - [[package]] 6215 - name = "no-std-compat" 6216 - version = "0.4.1" 6217 - source = "registry+https://github.com/rust-lang/crates.io-index" 6218 - checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c" 6219 - 6220 - [[package]] 6221 - name = "nom" 6222 - version = "7.1.2" 6223 - source = "registry+https://github.com/rust-lang/crates.io-index" 6224 - checksum = "e5507769c4919c998e69e49c839d9dc6e693ede4cc4290d6ad8b41d4f09c548c" 6225 - dependencies = [ 6226 - "memchr", 6227 - "minimal-lexical", 6228 - ] 6229 - 6230 - [[package]] 6231 - name = "nonzero_ext" 6232 - version = "0.3.0" 6233 - source = "registry+https://github.com/rust-lang/crates.io-index" 6234 - checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21" 6235 - 6236 - [[package]] 6237 - name = "normalize-line-endings" 6238 - version = "0.3.0" 6239 - source = "registry+https://github.com/rust-lang/crates.io-index" 6240 - checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be" 6241 - 6242 - [[package]] 6243 - name = "ntapi" 6244 - version = "0.4.0" 6245 - source = "registry+https://github.com/rust-lang/crates.io-index" 6246 - checksum = "bc51db7b362b205941f71232e56c625156eb9a929f8cf74a428fd5bc094a4afc" 6247 - dependencies = [ 6248 - "winapi", 6249 - ] 6250 - 6251 - [[package]] 6252 - name = "nu-ansi-term" 6253 - version = "0.46.0" 6254 - source = "registry+https://github.com/rust-lang/crates.io-index" 6255 - checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 6256 - dependencies = [ 6257 - "overload", 6258 - "winapi", 6259 - ] 6260 - 6261 - [[package]] 6262 - name = "num" 6263 - version = "0.4.0" 6264 - source = "registry+https://github.com/rust-lang/crates.io-index" 6265 - checksum = "43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606" 6266 - dependencies = [ 6267 - "num-bigint", 6268 - "num-complex", 6269 - "num-integer", 6270 - "num-iter", 6271 - "num-rational", 6272 - "num-traits", 6273 - ] 6274 - 6275 - [[package]] 6276 - name = "num-bigint" 6277 - version = "0.4.3" 6278 - source = "registry+https://github.com/rust-lang/crates.io-index" 6279 - checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" 6280 - dependencies = [ 6281 - "autocfg", 6282 - "num-integer", 6283 - "num-traits", 6284 - ] 6285 - 6286 - [[package]] 6287 - name = "num-complex" 6288 - version = "0.4.0" 6289 - source = "registry+https://github.com/rust-lang/crates.io-index" 6290 - checksum = "26873667bbbb7c5182d4a37c1add32cdf09f841af72da53318fdb81543c15085" 6291 - dependencies = [ 6292 - "num-traits", 6293 - ] 6294 - 6295 - [[package]] 6296 - name = "num-integer" 6297 - version = "0.1.44" 6298 - source = "registry+https://github.com/rust-lang/crates.io-index" 6299 - checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db" 6300 - dependencies = [ 6301 - "autocfg", 6302 - "num-traits", 6303 - ] 6304 - 6305 - [[package]] 6306 - name = "num-iter" 6307 - version = "0.1.42" 6308 - source = "registry+https://github.com/rust-lang/crates.io-index" 6309 - checksum = "b2021c8337a54d21aca0d59a92577a029af9431cb59b909b03252b9c164fad59" 6310 - dependencies = [ 6311 - "autocfg", 6312 - "num-integer", 6313 - "num-traits", 6314 - ] 6315 - 6316 - [[package]] 6317 - name = "num-rational" 6318 - version = "0.4.0" 6319 - source = "registry+https://github.com/rust-lang/crates.io-index" 6320 - checksum = "d41702bd167c2df5520b384281bc111a4b5efcf7fbc4c9c222c815b07e0a6a6a" 6321 - dependencies = [ 6322 - "autocfg", 6323 - "num-bigint", 6324 - "num-integer", 6325 - "num-traits", 6326 - ] 6327 - 6328 - [[package]] 6329 - name = "num-traits" 6330 - version = "0.2.15" 6331 - source = "registry+https://github.com/rust-lang/crates.io-index" 6332 - checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 6333 - dependencies = [ 6334 - "autocfg", 6335 - ] 6336 - 6337 - [[package]] 6338 - name = "num_cpus" 6339 - version = "1.15.0" 6340 - source = "registry+https://github.com/rust-lang/crates.io-index" 6341 - checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 6342 - dependencies = [ 6343 - "hermit-abi 0.2.6", 6344 - "libc", 6345 - ] 6346 - 6347 - [[package]] 6348 - name = "num_enum" 6349 - version = "0.5.7" 6350 - source = "registry+https://github.com/rust-lang/crates.io-index" 6351 - checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9" 6352 - dependencies = [ 6353 - "num_enum_derive", 6354 - ] 6355 - 6356 - [[package]] 6357 - name = "num_enum_derive" 6358 - version = "0.5.7" 6359 - source = "registry+https://github.com/rust-lang/crates.io-index" 6360 - checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce" 6361 - dependencies = [ 6362 - "proc-macro-crate", 6363 - "proc-macro2", 6364 - "quote", 6365 - "syn 1.0.107", 6366 - ] 6367 - 6368 - [[package]] 6369 - name = "number_prefix" 6370 - version = "0.4.0" 6371 - source = "registry+https://github.com/rust-lang/crates.io-index" 6372 - checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" 6373 - 6374 - [[package]] 6375 - name = "object" 6376 - version = "0.29.0" 6377 - source = "registry+https://github.com/rust-lang/crates.io-index" 6378 - checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53" 6379 - dependencies = [ 6380 - "memchr", 6381 - ] 6382 - 6383 - [[package]] 6384 - name = "once_cell" 6385 - version = "1.19.0" 6386 - source = "registry+https://github.com/rust-lang/crates.io-index" 6387 - checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 6388 - 6389 - [[package]] 6390 - name = "oorandom" 6391 - version = "11.1.0" 6392 - source = "registry+https://github.com/rust-lang/crates.io-index" 6393 - checksum = "ebcec7c9c2a95cacc7cd0ecb89d8a8454eca13906f6deb55258ffff0adeb9405" 6394 - 6395 - [[package]] 6396 - name = "open" 6397 - version = "3.2.0" 6398 - source = "registry+https://github.com/rust-lang/crates.io-index" 6399 - checksum = "2078c0039e6a54a0c42c28faa984e115fb4c2d5bf2208f77d1961002df8576f8" 6400 - dependencies = [ 6401 - "pathdiff", 6402 - "windows-sys 0.42.0", 6403 - ] 6404 - 6405 - [[package]] 6406 - name = "openssh" 6407 - version = "0.9.9" 6408 - source = "git+https://github.com/MaterializeInc/openssh.git#34404a274c5e1a7addd48940656fa12b7531e793" 6409 - dependencies = [ 6410 - "dirs", 6411 - "libc", 6412 - "once_cell", 6413 - "openssh-mux-client", 6414 - "shell-escape", 6415 - "tempfile", 6416 - "thiserror", 6417 - "tokio", 6418 - "tokio-pipe", 6419 - ] 6420 - 6421 - [[package]] 6422 - name = "openssh-mux-client" 6423 - version = "0.15.5" 6424 - source = "registry+https://github.com/rust-lang/crates.io-index" 6425 - checksum = "88eac793af6170bcd6d4f39c3b7ba3f4227cab5680d7189ba30f9d174600b75f" 6426 - dependencies = [ 6427 - "once_cell", 6428 - "sendfd", 6429 - "serde", 6430 - "ssh_format", 6431 - "thiserror", 6432 - "tokio", 6433 - "tokio-io-utility", 6434 - "typed-builder", 6435 - ] 6436 - 6437 - [[package]] 6438 - name = "openssl" 6439 - version = "0.10.55" 6440 - source = "registry+https://github.com/rust-lang/crates.io-index" 6441 - checksum = "345df152bc43501c5eb9e4654ff05f794effb78d4efe3d53abc158baddc0703d" 6442 - dependencies = [ 6443 - "bitflags 1.3.2", 6444 - "cfg-if", 6445 - "foreign-types", 6446 - "libc", 6447 - "once_cell", 6448 - "openssl-macros", 6449 - "openssl-sys", 6450 - ] 6451 - 6452 - [[package]] 6453 - name = "openssl-macros" 6454 - version = "0.1.0" 6455 - source = "registry+https://github.com/rust-lang/crates.io-index" 6456 - checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 6457 - dependencies = [ 6458 - "proc-macro2", 6459 - "quote", 6460 - "syn 1.0.107", 6461 - ] 6462 - 6463 - [[package]] 6464 - name = "openssl-probe" 6465 - version = "0.1.2" 6466 - source = "registry+https://github.com/rust-lang/crates.io-index" 6467 - checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" 6468 - 6469 - [[package]] 6470 - name = "openssl-src" 6471 - version = "111.25.0+1.1.1t" 6472 - source = "registry+https://github.com/rust-lang/crates.io-index" 6473 - checksum = "3173cd3626c43e3854b1b727422a276e568d9ec5fe8cec197822cf52cfb743d6" 6474 - dependencies = [ 6475 - "cc", 6476 - ] 6477 - 6478 - [[package]] 6479 - name = "openssl-sys" 6480 - version = "0.9.90" 6481 - source = "registry+https://github.com/rust-lang/crates.io-index" 6482 - checksum = "374533b0e45f3a7ced10fcaeccca020e66656bc03dac384f852e4e5a7a8104a6" 6483 - dependencies = [ 6484 - "cc", 6485 - "libc", 6486 - "openssl-src", 6487 - "pkg-config", 6488 - "vcpkg", 6489 - ] 6490 - 6491 - [[package]] 6492 - name = "opentelemetry" 6493 - version = "0.21.0" 6494 - source = "registry+https://github.com/rust-lang/crates.io-index" 6495 - checksum = "1e32339a5dc40459130b3bd269e9892439f55b33e772d2a9d402a789baaf4e8a" 6496 - dependencies = [ 6497 - "futures-core", 6498 - "futures-sink", 6499 - "indexmap 2.0.0", 6500 - "js-sys", 6501 - "once_cell", 6502 - "pin-project-lite", 6503 - "thiserror", 6504 - "urlencoding", 6505 - ] 6506 - 6507 - [[package]] 6508 - name = "opentelemetry-otlp" 6509 - version = "0.14.0" 6510 - source = "registry+https://github.com/rust-lang/crates.io-index" 6511 - checksum = "f24cda83b20ed2433c68241f918d0f6fdec8b1d43b7a9590ab4420c5095ca930" 6512 - dependencies = [ 6513 - "async-trait", 6514 - "futures-core", 6515 - "http", 6516 - "opentelemetry", 6517 - "opentelemetry-proto", 6518 - "opentelemetry-semantic-conventions", 6519 - "opentelemetry_sdk", 6520 - "prost", 6521 - "thiserror", 6522 - "tokio", 6523 - "tonic", 6524 - ] 6525 - 6526 - [[package]] 6527 - name = "opentelemetry-proto" 6528 - version = "0.4.0" 6529 - source = "registry+https://github.com/rust-lang/crates.io-index" 6530 - checksum = "a2e155ce5cc812ea3d1dffbd1539aed653de4bf4882d60e6e04dcf0901d674e1" 6531 - dependencies = [ 6532 - "opentelemetry", 6533 - "opentelemetry_sdk", 6534 - "prost", 6535 - "tonic", 6536 - ] 6537 - 6538 - [[package]] 6539 - name = "opentelemetry-semantic-conventions" 6540 - version = "0.13.0" 6541 - source = "registry+https://github.com/rust-lang/crates.io-index" 6542 - checksum = "f5774f1ef1f982ef2a447f6ee04ec383981a3ab99c8e77a1a7b30182e65bbc84" 6543 - dependencies = [ 6544 - "opentelemetry", 6545 - ] 6546 - 6547 - [[package]] 6548 - name = "opentelemetry_sdk" 6549 - version = "0.21.2" 6550 - source = "registry+https://github.com/rust-lang/crates.io-index" 6551 - checksum = "2f16aec8a98a457a52664d69e0091bac3a0abd18ead9b641cb00202ba4e0efe4" 6552 - dependencies = [ 6553 - "async-trait", 6554 - "crossbeam-channel", 6555 - "futures-channel", 6556 - "futures-executor", 6557 - "futures-util", 6558 - "glob", 6559 - "once_cell", 6560 - "opentelemetry", 6561 - "ordered-float", 6562 - "percent-encoding", 6563 - "rand", 6564 - "thiserror", 6565 - "tokio", 6566 - "tokio-stream", 6567 - ] 6568 - 6569 - [[package]] 6570 - name = "option-ext" 6571 - version = "0.2.0" 6572 - source = "registry+https://github.com/rust-lang/crates.io-index" 6573 - checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 6574 - 6575 - [[package]] 6576 - name = "ordered-float" 6577 - version = "4.2.0" 6578 - source = "registry+https://github.com/rust-lang/crates.io-index" 6579 - checksum = "a76df7075c7d4d01fdcb46c912dd17fba5b60c78ea480b475f2b6ab6f666584e" 6580 - dependencies = [ 6581 - "num-traits", 6582 - "rand", 6583 - "serde", 6584 - ] 6585 - 6586 - [[package]] 6587 - name = "os_info" 6588 - version = "3.5.1" 6589 - source = "registry+https://github.com/rust-lang/crates.io-index" 6590 - checksum = "c4750134fb6a5d49afc80777394ad5d95b04bc12068c6abb92fae8f43817270f" 6591 - dependencies = [ 6592 - "log", 6593 - "serde", 6594 - "winapi", 6595 - ] 6596 - 6597 - [[package]] 6598 - name = "os_str_bytes" 6599 - version = "6.0.0" 6600 - source = "registry+https://github.com/rust-lang/crates.io-index" 6601 - checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64" 6602 - 6603 - [[package]] 6604 - name = "output_vt100" 6605 - version = "0.1.2" 6606 - source = "registry+https://github.com/rust-lang/crates.io-index" 6607 - checksum = "53cdc5b785b7a58c5aad8216b3dfa114df64b0b06ae6e1501cef91df2fbdf8f9" 6608 - dependencies = [ 6609 - "winapi", 6610 - ] 6611 - 6612 - [[package]] 6613 - name = "outref" 6614 - version = "0.5.1" 6615 - source = "registry+https://github.com/rust-lang/crates.io-index" 6616 - checksum = "4030760ffd992bef45b0ae3f10ce1aba99e33464c90d14dd7c039884963ddc7a" 6617 - 6618 - [[package]] 6619 - name = "overload" 6620 - version = "0.1.1" 6621 - source = "registry+https://github.com/rust-lang/crates.io-index" 6622 - checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 6623 - 6624 - [[package]] 6625 - name = "papergrid" 6626 - version = "0.7.1" 6627 - source = "registry+https://github.com/rust-lang/crates.io-index" 6628 - checksum = "1526bb6aa9f10ec339fb10360f22c57edf81d5678d0278e93bc12a47ffbe4b01" 6629 - dependencies = [ 6630 - "bytecount", 6631 - "fnv", 6632 - "unicode-width", 6633 - ] 6634 - 6635 - [[package]] 6636 - name = "parking_lot" 6637 - version = "0.12.1" 6638 - source = "registry+https://github.com/rust-lang/crates.io-index" 6639 - checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 6640 - dependencies = [ 6641 - "lock_api", 6642 - "parking_lot_core", 6643 - ] 6644 - 6645 - [[package]] 6646 - name = "parking_lot_core" 6647 - version = "0.9.4" 6648 - source = "registry+https://github.com/rust-lang/crates.io-index" 6649 - checksum = "4dc9e0dc2adc1c69d09143aff38d3d30c5c3f0df0dad82e6d25547af174ebec0" 6650 - dependencies = [ 6651 - "cfg-if", 6652 - "libc", 6653 - "redox_syscall 0.2.10", 6654 - "smallvec", 6655 - "windows-sys 0.42.0", 6656 - ] 6657 - 6658 - [[package]] 6659 - name = "parquet-format-safe" 6660 - version = "0.2.4" 6661 - source = "registry+https://github.com/rust-lang/crates.io-index" 6662 - checksum = "1131c54b167dd4e4799ce762e1ab01549ebb94d5bdd13e6ec1b467491c378e1f" 6663 - dependencies = [ 6664 - "async-trait", 6665 - "futures", 6666 - ] 6667 - 6668 - [[package]] 6669 - name = "parquet2" 6670 - version = "0.17.1" 6671 - source = "registry+https://github.com/rust-lang/crates.io-index" 6672 - checksum = "aefc53bedbf9bbe0ff8912befafaafe30ced83851fb0aebe86696a9289ebb29e" 6673 - dependencies = [ 6674 - "async-stream", 6675 - "futures", 6676 - "parquet-format-safe", 6677 - "seq-macro", 6678 - "streaming-decompression", 6679 - ] 6680 - 6681 - [[package]] 6682 - name = "parse-zoneinfo" 6683 - version = "0.3.0" 6684 - source = "registry+https://github.com/rust-lang/crates.io-index" 6685 - checksum = "c705f256449c60da65e11ff6626e0c16a0a0b96aaa348de61376b249bc340f41" 6686 - dependencies = [ 6687 - "regex", 6688 - ] 6689 - 6690 - [[package]] 6691 - name = "paste" 6692 - version = "1.0.11" 6693 - source = "registry+https://github.com/rust-lang/crates.io-index" 6694 - checksum = "d01a5bd0424d00070b0098dd17ebca6f961a959dead1dbcbbbc1d1cd8d3deeba" 6695 - 6696 - [[package]] 6697 - name = "pathdiff" 6698 - version = "0.2.1" 6699 - source = "registry+https://github.com/rust-lang/crates.io-index" 6700 - checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" 6701 - 6702 - [[package]] 6703 - name = "peeking_take_while" 6704 - version = "0.1.2" 6705 - source = "registry+https://github.com/rust-lang/crates.io-index" 6706 - checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" 6707 - 6708 - [[package]] 6709 - name = "pem" 6710 - version = "3.0.2" 6711 - source = "registry+https://github.com/rust-lang/crates.io-index" 6712 - checksum = "3163d2912b7c3b52d651a055f2c7eec9ba5cd22d26ef75b8dd3a59980b185923" 6713 - dependencies = [ 6714 - "base64 0.21.5", 6715 - "serde", 6716 - ] 6717 - 6718 - [[package]] 6719 - name = "pem-rfc7468" 6720 - version = "0.6.0" 6721 - source = "registry+https://github.com/rust-lang/crates.io-index" 6722 - checksum = "24d159833a9105500e0398934e205e0773f0b27529557134ecfc51c27646adac" 6723 - dependencies = [ 6724 - "base64ct", 6725 - ] 6726 - 6727 - [[package]] 6728 - name = "percent-encoding" 6729 - version = "2.2.0" 6730 - source = "registry+https://github.com/rust-lang/crates.io-index" 6731 - checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 6732 - 6733 - [[package]] 6734 - name = "persistcli" 6735 - version = "0.0.0" 6736 - dependencies = [ 6737 - "anyhow", 6738 - "async-trait", 6739 - "axum", 6740 - "bytes", 6741 - "clap", 6742 - "differential-dataflow", 6743 - "futures", 6744 - "humantime", 6745 - "mz-http-util", 6746 - "mz-orchestrator-tracing", 6747 - "mz-ore", 6748 - "mz-persist", 6749 - "mz-persist-client", 6750 - "mz-persist-txn", 6751 - "mz-persist-types", 6752 - "num_cpus", 6753 - "num_enum", 6754 - "prometheus", 6755 - "serde", 6756 - "serde_json", 6757 - "timely", 6758 - "tokio", 6759 - "tracing", 6760 - "uuid", 6761 - "workspace-hack", 6762 - ] 6763 - 6764 - [[package]] 6765 - name = "petgraph" 6766 - version = "0.6.0" 6767 - source = "registry+https://github.com/rust-lang/crates.io-index" 6768 - checksum = "4a13a2fa9d0b63e5f22328828741e523766fff0ee9e779316902290dff3f824f" 6769 - dependencies = [ 6770 - "fixedbitset", 6771 - "indexmap 1.9.1", 6772 - ] 6773 - 6774 - [[package]] 6775 - name = "phf" 6776 - version = "0.11.1" 6777 - source = "registry+https://github.com/rust-lang/crates.io-index" 6778 - checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c" 6779 - dependencies = [ 6780 - "phf_shared", 6781 - ] 6782 - 6783 - [[package]] 6784 - name = "phf_codegen" 6785 - version = "0.11.1" 6786 - source = "registry+https://github.com/rust-lang/crates.io-index" 6787 - checksum = "a56ac890c5e3ca598bbdeaa99964edb5b0258a583a9eb6ef4e89fc85d9224770" 6788 - dependencies = [ 6789 - "phf_generator", 6790 - "phf_shared", 6791 - ] 6792 - 6793 - [[package]] 6794 - name = "phf_generator" 6795 - version = "0.11.0" 6796 - source = "registry+https://github.com/rust-lang/crates.io-index" 6797 - checksum = "5b450720b6f75cfbfabc195814bd3765f337a4f9a83186f8537297cac12f6705" 6798 - dependencies = [ 6799 - "phf_shared", 6800 - "rand", 6801 - ] 6802 - 6803 - [[package]] 6804 - name = "phf_shared" 6805 - version = "0.11.1" 6806 - source = "registry+https://github.com/rust-lang/crates.io-index" 6807 - checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676" 6808 - dependencies = [ 6809 - "siphasher", 6810 - "uncased", 6811 - ] 6812 - 6813 - [[package]] 6814 - name = "pin-project" 6815 - version = "1.0.12" 6816 - source = "registry+https://github.com/rust-lang/crates.io-index" 6817 - checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" 6818 - dependencies = [ 6819 - "pin-project-internal", 6820 - ] 6821 - 6822 - [[package]] 6823 - name = "pin-project-internal" 6824 - version = "1.0.12" 6825 - source = "registry+https://github.com/rust-lang/crates.io-index" 6826 - checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" 6827 - dependencies = [ 6828 - "proc-macro2", 6829 - "quote", 6830 - "syn 1.0.107", 6831 - ] 6832 - 6833 - [[package]] 6834 - name = "pin-project-lite" 6835 - version = "0.2.13" 6836 - source = "registry+https://github.com/rust-lang/crates.io-index" 6837 - checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 6838 - 6839 - [[package]] 6840 - name = "pin-utils" 6841 - version = "0.1.0" 6842 - source = "registry+https://github.com/rust-lang/crates.io-index" 6843 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 6844 - 6845 - [[package]] 6846 - name = "pkg-config" 6847 - version = "0.3.20" 6848 - source = "registry+https://github.com/rust-lang/crates.io-index" 6849 - checksum = "7c9b1041b4387893b91ee6746cddfc28516aff326a3519fb2adf820932c5e6cb" 6850 - 6851 - [[package]] 6852 - name = "planus" 6853 - version = "0.3.1" 6854 - source = "registry+https://github.com/rust-lang/crates.io-index" 6855 - checksum = "fc1691dd09e82f428ce8d6310bd6d5da2557c82ff17694d2a32cad7242aea89f" 6856 - dependencies = [ 6857 - "array-init-cursor", 6858 - ] 6859 - 6860 - [[package]] 6861 - name = "plotters" 6862 - version = "0.3.1" 6863 - source = "registry+https://github.com/rust-lang/crates.io-index" 6864 - checksum = "32a3fd9ec30b9749ce28cd91f255d569591cdf937fe280c312143e3c4bad6f2a" 6865 - dependencies = [ 6866 - "num-traits", 6867 - "plotters-backend", 6868 - "plotters-svg", 6869 - "wasm-bindgen", 6870 - "web-sys", 6871 - ] 6872 - 6873 - [[package]] 6874 - name = "plotters-backend" 6875 - version = "0.3.2" 6876 - source = "registry+https://github.com/rust-lang/crates.io-index" 6877 - checksum = "d88417318da0eaf0fdcdb51a0ee6c3bed624333bff8f946733049380be67ac1c" 6878 - 6879 - [[package]] 6880 - name = "plotters-svg" 6881 - version = "0.3.1" 6882 - source = "registry+https://github.com/rust-lang/crates.io-index" 6883 - checksum = "521fa9638fa597e1dc53e9412a4f9cefb01187ee1f7413076f9e6749e2885ba9" 6884 - dependencies = [ 6885 - "plotters-backend", 6886 - ] 6887 - 6888 - [[package]] 6889 - name = "portable-atomic" 6890 - version = "0.3.15" 6891 - source = "registry+https://github.com/rust-lang/crates.io-index" 6892 - checksum = "15eb2c6e362923af47e13c23ca5afb859e83d54452c55b0b9ac763b8f7c1ac16" 6893 - 6894 - [[package]] 6895 - name = "postgres" 6896 - version = "0.19.5" 6897 - source = "git+https://github.com/MaterializeInc/rust-postgres#b759caa33610403aa74b1cfdd37f45eb3100c9af" 6898 - dependencies = [ 6899 - "bytes", 6900 - "fallible-iterator", 6901 - "futures-util", 6902 - "log", 6903 - "tokio", 6904 - "tokio-postgres", 6905 - ] 6906 - 6907 - [[package]] 6908 - name = "postgres-openssl" 6909 - version = "0.5.0" 6910 - source = "git+https://github.com/MaterializeInc/rust-postgres#b759caa33610403aa74b1cfdd37f45eb3100c9af" 6911 - dependencies = [ 6912 - "openssl", 6913 - "tokio", 6914 - "tokio-openssl", 6915 - "tokio-postgres", 6916 - ] 6917 - 6918 - [[package]] 6919 - name = "postgres-protocol" 6920 - version = "0.6.5" 6921 - source = "git+https://github.com/MaterializeInc/rust-postgres#b759caa33610403aa74b1cfdd37f45eb3100c9af" 6922 - dependencies = [ 6923 - "base64 0.21.5", 6924 - "byteorder", 6925 - "bytes", 6926 - "fallible-iterator", 6927 - "hmac", 6928 - "md-5", 6929 - "memchr", 6930 - "rand", 6931 - "sha2", 6932 - "stringprep", 6933 - ] 6934 - 6935 - [[package]] 6936 - name = "postgres-types" 6937 - version = "0.2.5" 6938 - source = "git+https://github.com/MaterializeInc/rust-postgres#b759caa33610403aa74b1cfdd37f45eb3100c9af" 6939 - dependencies = [ 6940 - "bytes", 6941 - "chrono", 6942 - "fallible-iterator", 6943 - "postgres-protocol", 6944 - "serde", 6945 - "serde_json", 6946 - "uuid", 6947 - ] 6948 - 6949 - [[package]] 6950 - name = "postgres_array" 6951 - version = "0.11.0" 6952 - source = "git+https://github.com/MaterializeInc/rust-postgres-array#f58d0101e5198e04e8692629018d9b58f8543534" 6953 - dependencies = [ 6954 - "bytes", 6955 - "fallible-iterator", 6956 - "postgres-protocol", 6957 - "postgres-types", 6958 - ] 6959 - 6960 - [[package]] 6961 - name = "pprof" 6962 - version = "0.11.1" 6963 - source = "registry+https://github.com/rust-lang/crates.io-index" 6964 - checksum = "196ded5d4be535690899a4631cc9f18cdc41b7ebf24a79400f46f48e49a11059" 6965 - dependencies = [ 6966 - "backtrace", 6967 - "cfg-if", 6968 - "findshlibs", 6969 - "libc", 6970 - "log", 6971 - "nix", 6972 - "once_cell", 6973 - "parking_lot", 6974 - "smallvec", 6975 - "symbolic-demangle", 6976 - "tempfile", 6977 - "thiserror", 6978 - ] 6979 - 6980 - [[package]] 6981 - name = "ppv-lite86" 6982 - version = "0.2.10" 6983 - source = "registry+https://github.com/rust-lang/crates.io-index" 6984 - checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857" 6985 - 6986 - [[package]] 6987 - name = "predicates" 6988 - version = "2.1.4" 6989 - source = "registry+https://github.com/rust-lang/crates.io-index" 6990 - checksum = "f54fc5dc63ed3bbf19494623db4f3af16842c0d975818e469022d09e53f0aa05" 6991 - dependencies = [ 6992 - "difflib", 6993 - "float-cmp", 6994 - "itertools", 6995 - "normalize-line-endings", 6996 - "predicates-core", 6997 - "regex", 6998 - ] 6999 - 7000 - [[package]] 7001 - name = "predicates-core" 7002 - version = "1.0.0" 7003 - source = "registry+https://github.com/rust-lang/crates.io-index" 7004 - checksum = "06075c3a3e92559ff8929e7a280684489ea27fe44805174c3ebd9328dcb37178" 7005 - 7006 - [[package]] 7007 - name = "predicates-tree" 7008 - version = "1.0.0" 7009 - source = "registry+https://github.com/rust-lang/crates.io-index" 7010 - checksum = "8e63c4859013b38a76eca2414c64911fba30def9e3202ac461a2d22831220124" 7011 - dependencies = [ 7012 - "predicates-core", 7013 - "treeline", 7014 - ] 7015 - 7016 - [[package]] 7017 - name = "pretty" 7018 - version = "0.12.3" 7019 - source = "registry+https://github.com/rust-lang/crates.io-index" 7020 - checksum = "b55c4d17d994b637e2f4daf6e5dc5d660d209d5642377d675d7a1c3ab69fa579" 7021 - dependencies = [ 7022 - "arrayvec", 7023 - "typed-arena", 7024 - "unicode-width", 7025 - ] 7026 - 7027 - [[package]] 7028 - name = "pretty-hex" 7029 - version = "0.3.0" 7030 - source = "registry+https://github.com/rust-lang/crates.io-index" 7031 - checksum = "c6fa0831dd7cc608c38a5e323422a0077678fa5744aa2be4ad91c4ece8eec8d5" 7032 - 7033 - [[package]] 7034 - name = "pretty_assertions" 7035 - version = "1.3.0" 7036 - source = "registry+https://github.com/rust-lang/crates.io-index" 7037 - checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755" 7038 - dependencies = [ 7039 - "ctor", 7040 - "diff", 7041 - "output_vt100", 7042 - "yansi", 7043 - ] 7044 - 7045 - [[package]] 7046 - name = "prettyplease" 7047 - version = "0.1.25" 7048 - source = "registry+https://github.com/rust-lang/crates.io-index" 7049 - checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86" 7050 - dependencies = [ 7051 - "proc-macro2", 7052 - "syn 1.0.107", 7053 - ] 7054 - 7055 - [[package]] 7056 - name = "prettyplease" 7057 - version = "0.2.4" 7058 - source = "registry+https://github.com/rust-lang/crates.io-index" 7059 - checksum = "1ceca8aaf45b5c46ec7ed39fff75f57290368c1846d33d24a122ca81416ab058" 7060 - dependencies = [ 7061 - "proc-macro2", 7062 - "syn 2.0.39", 7063 - ] 7064 - 7065 - [[package]] 7066 - name = "proc-macro-crate" 7067 - version = "1.3.1" 7068 - source = "registry+https://github.com/rust-lang/crates.io-index" 7069 - checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 7070 - dependencies = [ 7071 - "once_cell", 7072 - "toml_edit", 7073 - ] 7074 - 7075 - [[package]] 7076 - name = "proc-macro-error" 7077 - version = "1.0.4" 7078 - source = "registry+https://github.com/rust-lang/crates.io-index" 7079 - checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 7080 - dependencies = [ 7081 - "proc-macro-error-attr", 7082 - "proc-macro2", 7083 - "quote", 7084 - "syn 1.0.107", 7085 - "version_check", 7086 - ] 7087 - 7088 - [[package]] 7089 - name = "proc-macro-error-attr" 7090 - version = "1.0.4" 7091 - source = "registry+https://github.com/rust-lang/crates.io-index" 7092 - checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 7093 - dependencies = [ 7094 - "proc-macro2", 7095 - "quote", 7096 - "version_check", 7097 - ] 7098 - 7099 - [[package]] 7100 - name = "proc-macro-hack" 7101 - version = "0.5.19" 7102 - source = "registry+https://github.com/rust-lang/crates.io-index" 7103 - checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" 7104 - 7105 - [[package]] 7106 - name = "proc-macro2" 7107 - version = "1.0.69" 7108 - source = "registry+https://github.com/rust-lang/crates.io-index" 7109 - checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" 7110 - dependencies = [ 7111 - "unicode-ident", 7112 - ] 7113 - 7114 - [[package]] 7115 - name = "prometheus" 7116 - version = "0.13.3" 7117 - source = "registry+https://github.com/rust-lang/crates.io-index" 7118 - checksum = "449811d15fbdf5ceb5c1144416066429cf82316e2ec8ce0c1f6f8a02e7bbcf8c" 7119 - dependencies = [ 7120 - "cfg-if", 7121 - "fnv", 7122 - "lazy_static", 7123 - "memchr", 7124 - "parking_lot", 7125 - "thiserror", 7126 - ] 7127 - 7128 - [[package]] 7129 - name = "proptest" 7130 - version = "1.0.0" 7131 - source = "git+https://github.com/MaterializeInc/proptest.git#4d8c406c32260484747c828050016de599b9f3a4" 7132 - dependencies = [ 7133 - "bitflags 1.3.2", 7134 - "byteorder", 7135 - "lazy_static", 7136 - "num-traits", 7137 - "quick-error", 7138 - "rand", 7139 - "rand_chacha", 7140 - "rand_xorshift", 7141 - "regex-syntax", 7142 - ] 7143 - 7144 - [[package]] 7145 - name = "proptest-derive" 7146 - version = "0.3.0" 7147 - source = "git+https://github.com/MaterializeInc/proptest.git#4d8c406c32260484747c828050016de599b9f3a4" 7148 - dependencies = [ 7149 - "proc-macro2", 7150 - "quote", 7151 - "syn 1.0.107", 7152 - ] 7153 - 7154 - [[package]] 7155 - name = "prost" 7156 - version = "0.11.9" 7157 - source = "registry+https://github.com/rust-lang/crates.io-index" 7158 - checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd" 7159 - dependencies = [ 7160 - "bytes", 7161 - "prost-derive", 7162 - ] 7163 - 7164 - [[package]] 7165 - name = "prost-build" 7166 - version = "0.11.9" 7167 - source = "registry+https://github.com/rust-lang/crates.io-index" 7168 - checksum = "119533552c9a7ffacc21e099c24a0ac8bb19c2a2a3f363de84cd9b844feab270" 7169 - dependencies = [ 7170 - "bytes", 7171 - "heck", 7172 - "itertools", 7173 - "lazy_static", 7174 - "log", 7175 - "multimap", 7176 - "petgraph", 7177 - "prettyplease 0.1.25", 7178 - "prost", 7179 - "prost-types", 7180 - "regex", 7181 - "syn 1.0.107", 7182 - "tempfile", 7183 - "which", 7184 - ] 7185 - 7186 - [[package]] 7187 - name = "prost-derive" 7188 - version = "0.11.9" 7189 - source = "registry+https://github.com/rust-lang/crates.io-index" 7190 - checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4" 7191 - dependencies = [ 7192 - "anyhow", 7193 - "itertools", 7194 - "proc-macro2", 7195 - "quote", 7196 - "syn 1.0.107", 7197 - ] 7198 - 7199 - [[package]] 7200 - name = "prost-reflect" 7201 - version = "0.11.4" 7202 - source = "registry+https://github.com/rust-lang/crates.io-index" 7203 - checksum = "000e1e05ebf7b26e1eba298e66fe4eee6eb19c567d0ffb35e0dd34231cdac4c8" 7204 - dependencies = [ 7205 - "base64 0.21.5", 7206 - "once_cell", 7207 - "prost", 7208 - "prost-types", 7209 - "serde", 7210 - "serde-value", 7211 - ] 7212 - 7213 - [[package]] 7214 - name = "prost-types" 7215 - version = "0.11.9" 7216 - source = "registry+https://github.com/rust-lang/crates.io-index" 7217 - checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13" 7218 - dependencies = [ 7219 - "prost", 7220 - ] 7221 - 7222 - [[package]] 7223 - name = "protobuf-native" 7224 - version = "0.2.1+3.19.1" 7225 - source = "registry+https://github.com/rust-lang/crates.io-index" 7226 - checksum = "86df76d0f2a6933036e8a9f28f1adc8b48081fa681dba07eaa30ac75663f7f4e" 7227 - dependencies = [ 7228 - "cxx", 7229 - "cxx-build", 7230 - "paste", 7231 - "pretty_assertions", 7232 - "protobuf-src", 7233 - "tempfile", 7234 - ] 7235 - 7236 - [[package]] 7237 - name = "protobuf-src" 7238 - version = "1.1.0+21.5" 7239 - source = "registry+https://github.com/rust-lang/crates.io-index" 7240 - checksum = "c7ac8852baeb3cc6fb83b93646fb93c0ffe5d14bf138c945ceb4b9948ee0e3c1" 7241 - dependencies = [ 7242 - "autotools", 7243 - ] 7244 - 7245 - [[package]] 7246 - name = "psm" 7247 - version = "0.1.16" 7248 - source = "registry+https://github.com/rust-lang/crates.io-index" 7249 - checksum = "cd136ff4382c4753fc061cb9e4712ab2af263376b95bbd5bd8cd50c020b78e69" 7250 - dependencies = [ 7251 - "cc", 7252 - ] 7253 - 7254 - [[package]] 7255 - name = "pulldown-cmark" 7256 - version = "0.9.1" 7257 - source = "registry+https://github.com/rust-lang/crates.io-index" 7258 - checksum = "34f197a544b0c9ab3ae46c359a7ec9cbbb5c7bf97054266fecb7ead794a181d6" 7259 - dependencies = [ 7260 - "bitflags 1.3.2", 7261 - "memchr", 7262 - "unicase", 7263 - ] 7264 - 7265 - [[package]] 7266 - name = "qcell" 7267 - version = "0.5.4" 7268 - source = "registry+https://github.com/rust-lang/crates.io-index" 7269 - checksum = "9f6c04aa3dea4dab485f6d87449ba94d5664c388c0f1fe2b07c4891175513345" 7270 - dependencies = [ 7271 - "exclusion-set", 7272 - "once_cell", 7273 - ] 7274 - 7275 - [[package]] 7276 - name = "quanta" 7277 - version = "0.11.1" 7278 - source = "registry+https://github.com/rust-lang/crates.io-index" 7279 - checksum = "a17e662a7a8291a865152364c20c7abc5e60486ab2001e8ec10b24862de0b9ab" 7280 - dependencies = [ 7281 - "crossbeam-utils", 7282 - "libc", 7283 - "mach2", 7284 - "once_cell", 7285 - "raw-cpuid", 7286 - "wasi", 7287 - "web-sys", 7288 - "winapi", 7289 - ] 7290 - 7291 - [[package]] 7292 - name = "quick-error" 7293 - version = "2.0.0" 7294 - source = "registry+https://github.com/rust-lang/crates.io-index" 7295 - checksum = "3ac73b1112776fc109b2e61909bc46c7e1bf0d7f690ffb1676553acce16d5cda" 7296 - 7297 - [[package]] 7298 - name = "quick-xml" 7299 - version = "0.31.0" 7300 - source = "registry+https://github.com/rust-lang/crates.io-index" 7301 - checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" 7302 - dependencies = [ 7303 - "memchr", 7304 - ] 7305 - 7306 - [[package]] 7307 - name = "quickcheck" 7308 - version = "1.0.3" 7309 - source = "registry+https://github.com/rust-lang/crates.io-index" 7310 - checksum = "588f6378e4dd99458b60ec275b4477add41ce4fa9f64dcba6f15adccb19b50d6" 7311 - dependencies = [ 7312 - "rand", 7313 - ] 7314 - 7315 - [[package]] 7316 - name = "quote" 7317 - version = "1.0.28" 7318 - source = "registry+https://github.com/rust-lang/crates.io-index" 7319 - checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488" 7320 - dependencies = [ 7321 - "proc-macro2", 7322 - ] 7323 - 7324 - [[package]] 7325 - name = "radium" 7326 - version = "0.7.0" 7327 - source = "registry+https://github.com/rust-lang/crates.io-index" 7328 - checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 7329 - 7330 - [[package]] 7331 - name = "rand" 7332 - version = "0.8.5" 7333 - source = "registry+https://github.com/rust-lang/crates.io-index" 7334 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 7335 - dependencies = [ 7336 - "libc", 7337 - "rand_chacha", 7338 - "rand_core", 7339 - "serde", 7340 - ] 7341 - 7342 - [[package]] 7343 - name = "rand_chacha" 7344 - version = "0.3.0" 7345 - source = "registry+https://github.com/rust-lang/crates.io-index" 7346 - checksum = "e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d" 7347 - dependencies = [ 7348 - "ppv-lite86", 7349 - "rand_core", 7350 - ] 7351 - 7352 - [[package]] 7353 - name = "rand_core" 7354 - version = "0.6.2" 7355 - source = "registry+https://github.com/rust-lang/crates.io-index" 7356 - checksum = "34cf66eb183df1c5876e2dcf6b13d57340741e8dc255b48e40a26de954d06ae7" 7357 - dependencies = [ 7358 - "getrandom", 7359 - "serde", 7360 - ] 7361 - 7362 - [[package]] 7363 - name = "rand_xorshift" 7364 - version = "0.3.0" 7365 - source = "registry+https://github.com/rust-lang/crates.io-index" 7366 - checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" 7367 - dependencies = [ 7368 - "rand_core", 7369 - ] 7370 - 7371 - [[package]] 7372 - name = "raw-cpuid" 7373 - version = "10.7.0" 7374 - source = "registry+https://github.com/rust-lang/crates.io-index" 7375 - checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332" 7376 - dependencies = [ 7377 - "bitflags 1.3.2", 7378 - ] 7379 - 7380 - [[package]] 7381 - name = "rayon" 7382 - version = "1.5.1" 7383 - source = "registry+https://github.com/rust-lang/crates.io-index" 7384 - checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90" 7385 - dependencies = [ 7386 - "autocfg", 7387 - "crossbeam-deque", 7388 - "either", 7389 - "rayon-core", 7390 - ] 7391 - 7392 - [[package]] 7393 - name = "rayon-core" 7394 - version = "1.9.1" 7395 - source = "registry+https://github.com/rust-lang/crates.io-index" 7396 - checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e" 7397 - dependencies = [ 7398 - "crossbeam-channel", 7399 - "crossbeam-deque", 7400 - "crossbeam-utils", 7401 - "lazy_static", 7402 - "num_cpus", 7403 - ] 7404 - 7405 - [[package]] 7406 - name = "rdkafka" 7407 - version = "0.29.0" 7408 - source = "git+https://github.com/MaterializeInc/rust-rdkafka.git#8ea07c4d2b96636ff093e670bc921892aee0d56a" 7409 - dependencies = [ 7410 - "futures-channel", 7411 - "futures-util", 7412 - "libc", 7413 - "log", 7414 - "rdkafka-sys", 7415 - "serde", 7416 - "serde_derive", 7417 - "serde_json", 7418 - "slab", 7419 - "tokio", 7420 - ] 7421 - 7422 - [[package]] 7423 - name = "rdkafka-sys" 7424 - version = "4.3.0+1.9.2" 7425 - source = "git+https://github.com/MaterializeInc/rust-rdkafka.git#8ea07c4d2b96636ff093e670bc921892aee0d56a" 7426 - dependencies = [ 7427 - "cmake", 7428 - "libc", 7429 - "libz-sys", 7430 - "num_enum", 7431 - "openssl-sys", 7432 - "pkg-config", 7433 - "zstd-sys", 7434 - ] 7435 - 7436 - [[package]] 7437 - name = "redox_syscall" 7438 - version = "0.2.10" 7439 - source = "registry+https://github.com/rust-lang/crates.io-index" 7440 - checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff" 7441 - dependencies = [ 7442 - "bitflags 1.3.2", 7443 - ] 7444 - 7445 - [[package]] 7446 - name = "redox_syscall" 7447 - version = "0.4.1" 7448 - source = "registry+https://github.com/rust-lang/crates.io-index" 7449 - checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 7450 - dependencies = [ 7451 - "bitflags 1.3.2", 7452 - ] 7453 - 7454 - [[package]] 7455 - name = "redox_users" 7456 - version = "0.4.0" 7457 - source = "registry+https://github.com/rust-lang/crates.io-index" 7458 - checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64" 7459 - dependencies = [ 7460 - "getrandom", 7461 - "redox_syscall 0.2.10", 7462 - ] 7463 - 7464 - [[package]] 7465 - name = "regex" 7466 - version = "1.7.0" 7467 - source = "registry+https://github.com/rust-lang/crates.io-index" 7468 - checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a" 7469 - dependencies = [ 7470 - "aho-corasick", 7471 - "memchr", 7472 - "regex-syntax", 7473 - ] 7474 - 7475 - [[package]] 7476 - name = "regex-automata" 7477 - version = "0.1.9" 7478 - source = "registry+https://github.com/rust-lang/crates.io-index" 7479 - checksum = "ae1ded71d66a4a97f5e961fd0cb25a5f366a42a41570d16a763a69c092c26ae4" 7480 - dependencies = [ 7481 - "byteorder", 7482 - "regex-syntax", 7483 - ] 7484 - 7485 - [[package]] 7486 - name = "regex-automata" 7487 - version = "0.3.9" 7488 - source = "registry+https://github.com/rust-lang/crates.io-index" 7489 - checksum = "59b23e92ee4318893fa3fe3e6fb365258efbfe6ac6ab30f090cdcbb7aa37efa9" 7490 - 7491 - [[package]] 7492 - name = "regex-lite" 7493 - version = "0.1.5" 7494 - source = "registry+https://github.com/rust-lang/crates.io-index" 7495 - checksum = "30b661b2f27137bdbc16f00eda72866a92bb28af1753ffbd56744fb6e2e9cd8e" 7496 - 7497 - [[package]] 7498 - name = "regex-syntax" 7499 - version = "0.6.28" 7500 - source = "registry+https://github.com/rust-lang/crates.io-index" 7501 - checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" 7502 - 7503 - [[package]] 7504 - name = "reqwest" 7505 - version = "0.11.13" 7506 - source = "registry+https://github.com/rust-lang/crates.io-index" 7507 - checksum = "68cc60575865c7831548863cc02356512e3f1dc2f3f82cb837d7fc4cc8f3c97c" 7508 - dependencies = [ 7509 - "base64 0.13.1", 7510 - "bytes", 7511 - "encoding_rs", 7512 - "futures-core", 7513 - "futures-util", 7514 - "h2", 7515 - "http", 7516 - "http-body", 7517 - "hyper", 7518 - "hyper-tls", 7519 - "ipnet", 7520 - "js-sys", 7521 - "log", 7522 - "mime", 7523 - "mime_guess", 7524 - "native-tls", 7525 - "once_cell", 7526 - "percent-encoding", 7527 - "pin-project-lite", 7528 - "serde", 7529 - "serde_json", 7530 - "serde_urlencoded", 7531 - "tokio", 7532 - "tokio-native-tls", 7533 - "tower-service", 7534 - "url", 7535 - "wasm-bindgen", 7536 - "wasm-bindgen-futures", 7537 - "web-sys", 7538 - "winreg", 7539 - ] 7540 - 7541 - [[package]] 7542 - name = "reqwest-middleware" 7543 - version = "0.2.3" 7544 - source = "git+https://github.com/MaterializeInc/reqwest-middleware.git#1c44c7ddbf4954cc2d4de73a760b9a8d84827349" 7545 - dependencies = [ 7546 - "anyhow", 7547 - "async-trait", 7548 - "http", 7549 - "reqwest", 7550 - "serde", 7551 - "task-local-extensions", 7552 - "thiserror", 7553 - ] 7554 - 7555 - [[package]] 7556 - name = "reqwest-retry" 7557 - version = "0.2.2" 7558 - source = "git+https://github.com/MaterializeInc/reqwest-middleware.git#1c44c7ddbf4954cc2d4de73a760b9a8d84827349" 7559 - dependencies = [ 7560 - "anyhow", 7561 - "async-trait", 7562 - "chrono", 7563 - "futures", 7564 - "http", 7565 - "hyper", 7566 - "reqwest", 7567 - "reqwest-middleware", 7568 - "retry-policies", 7569 - "task-local-extensions", 7570 - "tokio", 7571 - "tracing", 7572 - ] 7573 - 7574 - [[package]] 7575 - name = "retain_mut" 7576 - version = "0.1.9" 7577 - source = "registry+https://github.com/rust-lang/crates.io-index" 7578 - checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0" 7579 - 7580 - [[package]] 7581 - name = "retry-policies" 7582 - version = "0.1.2" 7583 - source = "registry+https://github.com/rust-lang/crates.io-index" 7584 - checksum = "e09bbcb5003282bcb688f0bae741b278e9c7e8f378f561522c9806c58e075d9b" 7585 - dependencies = [ 7586 - "anyhow", 7587 - "chrono", 7588 - "rand", 7589 - ] 7590 - 7591 - [[package]] 7592 - name = "ring" 7593 - version = "0.17.7" 7594 - source = "registry+https://github.com/rust-lang/crates.io-index" 7595 - checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" 7596 - dependencies = [ 7597 - "cc", 7598 - "getrandom", 7599 - "libc", 7600 - "spin", 7601 - "untrusted", 7602 - "windows-sys 0.48.0", 7603 - ] 7604 - 7605 - [[package]] 7606 - name = "rlimit" 7607 - version = "0.8.3" 7608 - source = "registry+https://github.com/rust-lang/crates.io-index" 7609 - checksum = "f7278a1ec8bfd4a4e07515c589f5ff7b309a373f987393aef44813d9dcf87aa3" 7610 - dependencies = [ 7611 - "libc", 7612 - ] 7613 - 7614 - [[package]] 7615 - name = "rocksdb" 7616 - version = "0.21.0" 7617 - source = "git+https://github.com/MaterializeInc/rust-rocksdb?branch=master#3305d514d509c6b95b0c925c78157e5e4ae4b7ba" 7618 - dependencies = [ 7619 - "libc", 7620 - "librocksdb-sys", 7621 - ] 7622 - 7623 - [[package]] 7624 - name = "ropey" 7625 - version = "1.6.0" 7626 - source = "registry+https://github.com/rust-lang/crates.io-index" 7627 - checksum = "53ce7a2c43a32e50d666e33c5a80251b31147bb4b49024bcab11fb6f20c671ed" 7628 - dependencies = [ 7629 - "smallvec", 7630 - "str_indices", 7631 - ] 7632 - 7633 - [[package]] 7634 - name = "rpassword" 7635 - version = "7.2.0" 7636 - source = "registry+https://github.com/rust-lang/crates.io-index" 7637 - checksum = "6678cf63ab3491898c0d021b493c94c9b221d91295294a2a5746eacbe5928322" 7638 - dependencies = [ 7639 - "libc", 7640 - "rtoolbox", 7641 - "winapi", 7642 - ] 7643 - 7644 - [[package]] 7645 - name = "rtoolbox" 7646 - version = "0.0.1" 7647 - source = "registry+https://github.com/rust-lang/crates.io-index" 7648 - checksum = "034e22c514f5c0cb8a10ff341b9b048b5ceb21591f31c8f44c43b960f9b3524a" 7649 - dependencies = [ 7650 - "libc", 7651 - "winapi", 7652 - ] 7653 - 7654 - [[package]] 7655 - name = "rustc-demangle" 7656 - version = "0.1.16" 7657 - source = "registry+https://github.com/rust-lang/crates.io-index" 7658 - checksum = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783" 7659 - 7660 - [[package]] 7661 - name = "rustc-hash" 7662 - version = "1.1.0" 7663 - source = "registry+https://github.com/rust-lang/crates.io-index" 7664 - checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 7665 - 7666 - [[package]] 7667 - name = "rustc_version" 7668 - version = "0.4.0" 7669 - source = "registry+https://github.com/rust-lang/crates.io-index" 7670 - checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 7671 - dependencies = [ 7672 - "semver", 7673 - ] 7674 - 7675 - [[package]] 7676 - name = "rustix" 7677 - version = "0.37.15" 7678 - source = "registry+https://github.com/rust-lang/crates.io-index" 7679 - checksum = "a0661814f891c57c930a610266415528da53c4933e6dea5fb350cbfe048a9ece" 7680 - dependencies = [ 7681 - "bitflags 1.3.2", 7682 - "errno", 7683 - "io-lifetimes", 7684 - "libc", 7685 - "linux-raw-sys 0.3.4", 7686 - "windows-sys 0.48.0", 7687 - ] 7688 - 7689 - [[package]] 7690 - name = "rustix" 7691 - version = "0.38.21" 7692 - source = "registry+https://github.com/rust-lang/crates.io-index" 7693 - checksum = "2b426b0506e5d50a7d8dafcf2e81471400deb602392c7dd110815afb4eaf02a3" 7694 - dependencies = [ 7695 - "bitflags 2.4.1", 7696 - "errno", 7697 - "libc", 7698 - "linux-raw-sys 0.4.12", 7699 - "windows-sys 0.48.0", 7700 - ] 7701 - 7702 - [[package]] 7703 - name = "rustversion" 7704 - version = "1.0.9" 7705 - source = "registry+https://github.com/rust-lang/crates.io-index" 7706 - checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8" 7707 - 7708 - [[package]] 7709 - name = "ryu" 7710 - version = "1.0.12" 7711 - source = "registry+https://github.com/rust-lang/crates.io-index" 7712 - checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde" 7713 - 7714 - [[package]] 7715 - name = "same-file" 7716 - version = "1.0.4" 7717 - source = "registry+https://github.com/rust-lang/crates.io-index" 7718 - checksum = "8f20c4be53a8a1ff4c1f1b2bd14570d2f634628709752f0702ecdd2b3f9a5267" 7719 - dependencies = [ 7720 - "winapi-util", 7721 - ] 7722 - 7723 - [[package]] 7724 - name = "saturating" 7725 - version = "0.1.0" 7726 - source = "registry+https://github.com/rust-lang/crates.io-index" 7727 - checksum = "ece8e78b2f38ec51c51f5d475df0a7187ba5111b2a28bdc761ee05b075d40a71" 7728 - 7729 - [[package]] 7730 - name = "schannel" 7731 - version = "0.1.18" 7732 - source = "registry+https://github.com/rust-lang/crates.io-index" 7733 - checksum = "039c25b130bd8c1321ee2d7de7fde2659fa9c2744e4bb29711cfc852ea53cd19" 7734 - dependencies = [ 7735 - "lazy_static", 7736 - "winapi", 7737 - ] 7738 - 7739 - [[package]] 7740 - name = "scheduled-thread-pool" 7741 - version = "0.2.6" 7742 - source = "registry+https://github.com/rust-lang/crates.io-index" 7743 - checksum = "977a7519bff143a44f842fd07e80ad1329295bd71686457f18e496736f4bf9bf" 7744 - dependencies = [ 7745 - "parking_lot", 7746 - ] 7747 - 7748 - [[package]] 7749 - name = "schemars" 7750 - version = "0.8.11" 7751 - source = "registry+https://github.com/rust-lang/crates.io-index" 7752 - checksum = "2a5fb6c61f29e723026dc8e923d94c694313212abbecbbe5f55a7748eec5b307" 7753 - dependencies = [ 7754 - "dyn-clone", 7755 - "schemars_derive", 7756 - "serde", 7757 - "serde_json", 7758 - "uuid", 7759 - ] 7760 - 7761 - [[package]] 7762 - name = "schemars_derive" 7763 - version = "0.8.11" 7764 - source = "registry+https://github.com/rust-lang/crates.io-index" 7765 - checksum = "f188d036977451159430f3b8dc82ec76364a42b7e289c2b18a9a18f4470058e9" 7766 - dependencies = [ 7767 - "proc-macro2", 7768 - "quote", 7769 - "serde_derive_internals", 7770 - "syn 1.0.107", 7771 - ] 7772 - 7773 - [[package]] 7774 - name = "scoped-tls" 7775 - version = "1.0.1" 7776 - source = "registry+https://github.com/rust-lang/crates.io-index" 7777 - checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 7778 - 7779 - [[package]] 7780 - name = "scopeguard" 7781 - version = "1.1.0" 7782 - source = "registry+https://github.com/rust-lang/crates.io-index" 7783 - checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 7784 - 7785 - [[package]] 7786 - name = "scratch" 7787 - version = "1.0.1" 7788 - source = "registry+https://github.com/rust-lang/crates.io-index" 7789 - checksum = "96311ef4a16462c757bb6a39152c40f58f31cd2602a40fceb937e2bc34e6cbab" 7790 - 7791 - [[package]] 7792 - name = "seahash" 7793 - version = "4.1.0" 7794 - source = "registry+https://github.com/rust-lang/crates.io-index" 7795 - checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" 7796 - 7797 - [[package]] 7798 - name = "sec1" 7799 - version = "0.2.1" 7800 - source = "registry+https://github.com/rust-lang/crates.io-index" 7801 - checksum = "08da66b8b0965a5555b6bd6639e68ccba85e1e2506f5fbb089e93f8a04e1a2d1" 7802 - dependencies = [ 7803 - "der", 7804 - "generic-array", 7805 - ] 7806 - 7807 - [[package]] 7808 - name = "secrecy" 7809 - version = "0.8.0" 7810 - source = "registry+https://github.com/rust-lang/crates.io-index" 7811 - checksum = "9bd1c54ea06cfd2f6b63219704de0b9b4f72dcc2b8fdef820be6cd799780e91e" 7812 - dependencies = [ 7813 - "serde", 7814 - "zeroize", 7815 - ] 7816 - 7817 - [[package]] 7818 - name = "security-framework" 7819 - version = "2.7.0" 7820 - source = "registry+https://github.com/rust-lang/crates.io-index" 7821 - checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c" 7822 - dependencies = [ 7823 - "bitflags 1.3.2", 7824 - "core-foundation", 7825 - "core-foundation-sys", 7826 - "libc", 7827 - "security-framework-sys", 7828 - ] 7829 - 7830 - [[package]] 7831 - name = "security-framework-sys" 7832 - version = "2.6.1" 7833 - source = "registry+https://github.com/rust-lang/crates.io-index" 7834 - checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556" 7835 - dependencies = [ 7836 - "core-foundation-sys", 7837 - "libc", 7838 - ] 7839 - 7840 - [[package]] 7841 - name = "segment" 7842 - version = "0.2.1" 7843 - source = "registry+https://github.com/rust-lang/crates.io-index" 7844 - checksum = "24fc91c898e0487ff3e471d0849bbaf7d38a00ff5e3531009d386b0bab9b6b12" 7845 - dependencies = [ 7846 - "async-trait", 7847 - "reqwest", 7848 - "serde", 7849 - "serde_json", 7850 - "thiserror", 7851 - "time", 7852 - ] 7853 - 7854 - [[package]] 7855 - name = "semver" 7856 - version = "1.0.16" 7857 - source = "registry+https://github.com/rust-lang/crates.io-index" 7858 - checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a" 7859 - dependencies = [ 7860 - "serde", 7861 - ] 7862 - 7863 - [[package]] 7864 - name = "sendfd" 7865 - version = "0.4.3" 7866 - source = "registry+https://github.com/rust-lang/crates.io-index" 7867 - checksum = "604b71b8fc267e13bb3023a2c901126c8f349393666a6d98ac1ae5729b701798" 7868 - dependencies = [ 7869 - "libc", 7870 - "tokio", 7871 - ] 7872 - 7873 - [[package]] 7874 - name = "sentry" 7875 - version = "0.29.1" 7876 - source = "registry+https://github.com/rust-lang/crates.io-index" 7877 - checksum = "17ad137b9df78294b98cab1a650bef237cc6c950e82e5ce164655e674d07c5cc" 7878 - dependencies = [ 7879 - "httpdate", 7880 - "native-tls", 7881 - "reqwest", 7882 - "sentry-backtrace", 7883 - "sentry-contexts", 7884 - "sentry-core", 7885 - "sentry-debug-images", 7886 - "sentry-panic", 7887 - "tokio", 7888 - "ureq", 7889 - ] 7890 - 7891 - [[package]] 7892 - name = "sentry-backtrace" 7893 - version = "0.29.1" 7894 - source = "registry+https://github.com/rust-lang/crates.io-index" 7895 - checksum = "afe4800806552aab314129761d5d3b3d422284eca3de2ab59e9fd133636cbd3d" 7896 - dependencies = [ 7897 - "backtrace", 7898 - "once_cell", 7899 - "regex", 7900 - "sentry-core", 7901 - ] 7902 - 7903 - [[package]] 7904 - name = "sentry-contexts" 7905 - version = "0.29.1" 7906 - source = "registry+https://github.com/rust-lang/crates.io-index" 7907 - checksum = "a42938426670f6e7974989cd1417837a96dd8bbb01567094f567d6acb360bf88" 7908 - dependencies = [ 7909 - "hostname", 7910 - "libc", 7911 - "os_info", 7912 - "rustc_version", 7913 - "sentry-core", 7914 - "uname", 7915 - ] 7916 - 7917 - [[package]] 7918 - name = "sentry-core" 7919 - version = "0.29.1" 7920 - source = "registry+https://github.com/rust-lang/crates.io-index" 7921 - checksum = "4df9b9d8de2658a1ecd4e45f7b06c80c5dd97b891bfbc7c501186189b7e9bbdf" 7922 - dependencies = [ 7923 - "once_cell", 7924 - "rand", 7925 - "sentry-types", 7926 - "serde", 7927 - "serde_json", 7928 - ] 7929 - 7930 - [[package]] 7931 - name = "sentry-debug-images" 7932 - version = "0.29.1" 7933 - source = "registry+https://github.com/rust-lang/crates.io-index" 7934 - checksum = "3995208135571444b7d5a247f42bd36677553bb64185d85b317acdc1789749b3" 7935 - dependencies = [ 7936 - "findshlibs", 7937 - "once_cell", 7938 - "sentry-core", 7939 - ] 7940 - 7941 - [[package]] 7942 - name = "sentry-panic" 7943 - version = "0.29.1" 7944 - source = "registry+https://github.com/rust-lang/crates.io-index" 7945 - checksum = "0af37b8500f273e511ebd6eb0d342ff7937d64ce3f134764b2b4653112d48cb4" 7946 - dependencies = [ 7947 - "sentry-backtrace", 7948 - "sentry-core", 7949 - ] 7950 - 7951 - [[package]] 7952 - name = "sentry-tracing" 7953 - version = "0.29.1" 7954 - source = "registry+https://github.com/rust-lang/crates.io-index" 7955 - checksum = "63fc83ec2cf38726bd18cb1943ff11555b07fd5034cb68b10958ab32e2863a1f" 7956 - dependencies = [ 7957 - "sentry-core", 7958 - "tracing-core", 7959 - "tracing-subscriber", 7960 - ] 7961 - 7962 - [[package]] 7963 - name = "sentry-types" 7964 - version = "0.29.1" 7965 - source = "registry+https://github.com/rust-lang/crates.io-index" 7966 - checksum = "ccc95faa4078768a6bf8df45e2b894bbf372b3dbbfb364e9429c1c58ab7545c6" 7967 - dependencies = [ 7968 - "debugid", 7969 - "getrandom", 7970 - "hex", 7971 - "serde", 7972 - "serde_json", 7973 - "thiserror", 7974 - "time", 7975 - "url", 7976 - "uuid", 7977 - ] 7978 - 7979 - [[package]] 7980 - name = "seq-macro" 7981 - version = "0.3.1" 7982 - source = "registry+https://github.com/rust-lang/crates.io-index" 7983 - checksum = "0772c5c30e1a0d91f6834f8e545c69281c099dfa9a3ac58d96a9fd629c8d4898" 7984 - 7985 - [[package]] 7986 - name = "serde" 7987 - version = "1.0.164" 7988 - source = "registry+https://github.com/rust-lang/crates.io-index" 7989 - checksum = "9e8c8cf938e98f769bc164923b06dce91cea1751522f46f8466461af04c9027d" 7990 - dependencies = [ 7991 - "serde_derive", 7992 - ] 7993 - 7994 - [[package]] 7995 - name = "serde-aux" 7996 - version = "4.2.0" 7997 - source = "registry+https://github.com/rust-lang/crates.io-index" 7998 - checksum = "c3dfe1b7eb6f9dcf011bd6fad169cdeaae75eda0d61b1a99a3f015b41b0cae39" 7999 - dependencies = [ 8000 - "chrono", 8001 - "serde", 8002 - "serde_json", 8003 - ] 8004 - 8005 - [[package]] 8006 - name = "serde-value" 8007 - version = "0.7.0" 8008 - source = "git+https://github.com/MaterializeInc/serde-value.git#a84c6b71825efaffb332c0d19f18c2bdf9ee7b40" 8009 - dependencies = [ 8010 - "ordered-float", 8011 - "serde", 8012 - ] 8013 - 8014 - [[package]] 8015 - name = "serde_derive" 8016 - version = "1.0.164" 8017 - source = "registry+https://github.com/rust-lang/crates.io-index" 8018 - checksum = "d9735b638ccc51c28bf6914d90a2e9725b377144fc612c49a611fddd1b631d68" 8019 - dependencies = [ 8020 - "proc-macro2", 8021 - "quote", 8022 - "syn 2.0.39", 8023 - ] 8024 - 8025 - [[package]] 8026 - name = "serde_derive_internals" 8027 - version = "0.26.0" 8028 - source = "registry+https://github.com/rust-lang/crates.io-index" 8029 - checksum = "85bf8229e7920a9f636479437026331ce11aa132b4dde37d121944a44d6e5f3c" 8030 - dependencies = [ 8031 - "proc-macro2", 8032 - "quote", 8033 - "syn 1.0.107", 8034 - ] 8035 - 8036 - [[package]] 8037 - name = "serde_json" 8038 - version = "1.0.99" 8039 - source = "registry+https://github.com/rust-lang/crates.io-index" 8040 - checksum = "46266871c240a00b8f503b877622fe33430b3c7d963bdc0f2adc511e54a1eae3" 8041 - dependencies = [ 8042 - "indexmap 2.0.0", 8043 - "itoa", 8044 - "ryu", 8045 - "serde", 8046 - ] 8047 - 8048 - [[package]] 8049 - name = "serde_path_to_error" 8050 - version = "0.1.8" 8051 - source = "registry+https://github.com/rust-lang/crates.io-index" 8052 - checksum = "184c643044780f7ceb59104cef98a5a6f12cb2288a7bc701ab93a362b49fd47d" 8053 - dependencies = [ 8054 - "serde", 8055 - ] 8056 - 8057 - [[package]] 8058 - name = "serde_plain" 8059 - version = "1.0.1" 8060 - source = "registry+https://github.com/rust-lang/crates.io-index" 8061 - checksum = "d6018081315db179d0ce57b1fe4b62a12a0028c9cf9bbef868c9cf477b3c34ae" 8062 - dependencies = [ 8063 - "serde", 8064 - ] 8065 - 8066 - [[package]] 8067 - name = "serde_regex" 8068 - version = "1.1.0" 8069 - source = "registry+https://github.com/rust-lang/crates.io-index" 8070 - checksum = "a8136f1a4ea815d7eac4101cfd0b16dc0cb5e1fe1b8609dfd728058656b7badf" 8071 - dependencies = [ 8072 - "regex", 8073 - "serde", 8074 - ] 8075 - 8076 - [[package]] 8077 - name = "serde_repr" 8078 - version = "0.1.13" 8079 - source = "registry+https://github.com/rust-lang/crates.io-index" 8080 - checksum = "6f0a21fba416426ac927b1691996e82079f8b6156e920c85345f135b2e9ba2de" 8081 - dependencies = [ 8082 - "proc-macro2", 8083 - "quote", 8084 - "syn 2.0.39", 8085 - ] 8086 - 8087 - [[package]] 8088 - name = "serde_spanned" 8089 - version = "0.6.3" 8090 - source = "registry+https://github.com/rust-lang/crates.io-index" 8091 - checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186" 8092 - dependencies = [ 8093 - "serde", 8094 - ] 8095 - 8096 - [[package]] 8097 - name = "serde_urlencoded" 8098 - version = "0.7.1" 8099 - source = "registry+https://github.com/rust-lang/crates.io-index" 8100 - checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 8101 - dependencies = [ 8102 - "form_urlencoded", 8103 - "itoa", 8104 - "ryu", 8105 - "serde", 8106 - ] 8107 - 8108 - [[package]] 8109 - name = "serde_with" 8110 - version = "2.3.3" 8111 - source = "registry+https://github.com/rust-lang/crates.io-index" 8112 - checksum = "07ff71d2c147a7b57362cead5e22f772cd52f6ab31cfcd9edcd7f6aeb2a0afbe" 8113 - dependencies = [ 8114 - "base64 0.13.1", 8115 - "chrono", 8116 - "hex", 8117 - "indexmap 1.9.1", 8118 - "serde", 8119 - "serde_json", 8120 - "serde_with_macros", 8121 - "time", 8122 - ] 8123 - 8124 - [[package]] 8125 - name = "serde_with_macros" 8126 - version = "2.3.3" 8127 - source = "registry+https://github.com/rust-lang/crates.io-index" 8128 - checksum = "881b6f881b17d13214e5d494c939ebab463d01264ce1811e9d4ac3a882e7695f" 8129 - dependencies = [ 8130 - "darling", 8131 - "proc-macro2", 8132 - "quote", 8133 - "syn 2.0.39", 8134 - ] 8135 - 8136 - [[package]] 8137 - name = "serde_yaml" 8138 - version = "0.9.25" 8139 - source = "registry+https://github.com/rust-lang/crates.io-index" 8140 - checksum = "1a49e178e4452f45cb61d0cd8cebc1b0fafd3e41929e996cef79aa3aca91f574" 8141 - dependencies = [ 8142 - "indexmap 2.0.0", 8143 - "itoa", 8144 - "ryu", 8145 - "serde", 8146 - "unsafe-libyaml", 8147 - ] 8148 - 8149 - [[package]] 8150 - name = "sha1" 8151 - version = "0.10.5" 8152 - source = "registry+https://github.com/rust-lang/crates.io-index" 8153 - checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" 8154 - dependencies = [ 8155 - "cfg-if", 8156 - "cpufeatures", 8157 - "digest", 8158 - ] 8159 - 8160 - [[package]] 8161 - name = "sha1_smol" 8162 - version = "1.0.0" 8163 - source = "registry+https://github.com/rust-lang/crates.io-index" 8164 - checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012" 8165 - 8166 - [[package]] 8167 - name = "sha2" 8168 - version = "0.10.6" 8169 - source = "registry+https://github.com/rust-lang/crates.io-index" 8170 - checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 8171 - dependencies = [ 8172 - "cfg-if", 8173 - "cpufeatures", 8174 - "digest", 8175 - ] 8176 - 8177 - [[package]] 8178 - name = "sharded-slab" 8179 - version = "0.1.4" 8180 - source = "registry+https://github.com/rust-lang/crates.io-index" 8181 - checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 8182 - dependencies = [ 8183 - "lazy_static", 8184 - ] 8185 - 8186 - [[package]] 8187 - name = "shell-escape" 8188 - version = "0.1.5" 8189 - source = "registry+https://github.com/rust-lang/crates.io-index" 8190 - checksum = "45bb67a18fa91266cc7807181f62f9178a6873bfad7dc788c42e6430db40184f" 8191 - 8192 - [[package]] 8193 - name = "shell-words" 8194 - version = "1.1.0" 8195 - source = "registry+https://github.com/rust-lang/crates.io-index" 8196 - checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde" 8197 - 8198 - [[package]] 8199 - name = "shlex" 8200 - version = "1.1.0" 8201 - source = "registry+https://github.com/rust-lang/crates.io-index" 8202 - checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3" 8203 - 8204 - [[package]] 8205 - name = "signal-hook-registry" 8206 - version = "1.4.1" 8207 - source = "registry+https://github.com/rust-lang/crates.io-index" 8208 - checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 8209 - dependencies = [ 8210 - "libc", 8211 - ] 8212 - 8213 - [[package]] 8214 - name = "signature" 8215 - version = "1.5.0" 8216 - source = "registry+https://github.com/rust-lang/crates.io-index" 8217 - checksum = "f054c6c1a6e95179d6f23ed974060dcefb2d9388bb7256900badad682c499de4" 8218 - 8219 - [[package]] 8220 - name = "simdutf8" 8221 - version = "0.1.3" 8222 - source = "registry+https://github.com/rust-lang/crates.io-index" 8223 - checksum = "c970da16e7c682fa90a261cf0724dee241c9f7831635ecc4e988ae8f3b505559" 8224 - 8225 - [[package]] 8226 - name = "similar" 8227 - version = "2.2.1" 8228 - source = "registry+https://github.com/rust-lang/crates.io-index" 8229 - checksum = "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf" 8230 - dependencies = [ 8231 - "bstr 0.2.14", 8232 - "unicode-segmentation", 8233 - ] 8234 - 8235 - [[package]] 8236 - name = "similar-asserts" 8237 - version = "1.4.2" 8238 - source = "registry+https://github.com/rust-lang/crates.io-index" 8239 - checksum = "bbf644ad016b75129f01a34a355dcb8d66a5bc803e417c7a77cc5d5ee9fa0f18" 8240 - dependencies = [ 8241 - "console", 8242 - "similar", 8243 - ] 8244 - 8245 - [[package]] 8246 - name = "simple_asn1" 8247 - version = "0.6.1" 8248 - source = "registry+https://github.com/rust-lang/crates.io-index" 8249 - checksum = "4a762b1c38b9b990c694b9c2f8abe3372ce6a9ceaae6bca39cfc46e054f45745" 8250 - dependencies = [ 8251 - "num-bigint", 8252 - "num-traits", 8253 - "thiserror", 8254 - "time", 8255 - ] 8256 - 8257 - [[package]] 8258 - name = "siphasher" 8259 - version = "0.3.3" 8260 - source = "registry+https://github.com/rust-lang/crates.io-index" 8261 - checksum = "fa8f3741c7372e75519bd9346068370c9cdaabcc1f9599cbcf2a2719352286b7" 8262 - 8263 - [[package]] 8264 - name = "skeptic" 8265 - version = "0.13.7" 8266 - source = "registry+https://github.com/rust-lang/crates.io-index" 8267 - checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8" 8268 - dependencies = [ 8269 - "bytecount", 8270 - "cargo_metadata", 8271 - "error-chain", 8272 - "glob", 8273 - "pulldown-cmark", 8274 - "tempfile", 8275 - "walkdir", 8276 - ] 8277 - 8278 - [[package]] 8279 - name = "slab" 8280 - version = "0.4.6" 8281 - source = "registry+https://github.com/rust-lang/crates.io-index" 8282 - checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32" 8283 - 8284 - [[package]] 8285 - name = "smallvec" 8286 - version = "1.10.0" 8287 - source = "registry+https://github.com/rust-lang/crates.io-index" 8288 - checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 8289 - dependencies = [ 8290 - "serde", 8291 - ] 8292 - 8293 - [[package]] 8294 - name = "snap" 8295 - version = "1.1.0" 8296 - source = "registry+https://github.com/rust-lang/crates.io-index" 8297 - checksum = "5e9f0ab6ef7eb7353d9119c170a436d1bf248eea575ac42d19d12f4e34130831" 8298 - 8299 - [[package]] 8300 - name = "socket2" 8301 - version = "0.4.9" 8302 - source = "registry+https://github.com/rust-lang/crates.io-index" 8303 - checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 8304 - dependencies = [ 8305 - "libc", 8306 - "winapi", 8307 - ] 8308 - 8309 - [[package]] 8310 - name = "socket2" 8311 - version = "0.5.3" 8312 - source = "registry+https://github.com/rust-lang/crates.io-index" 8313 - checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877" 8314 - dependencies = [ 8315 - "libc", 8316 - "windows-sys 0.48.0", 8317 - ] 8318 - 8319 - [[package]] 8320 - name = "spin" 8321 - version = "0.9.8" 8322 - source = "registry+https://github.com/rust-lang/crates.io-index" 8323 - checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 8324 - 8325 - [[package]] 8326 - name = "ssh-key" 8327 - version = "0.4.3" 8328 - source = "registry+https://github.com/rust-lang/crates.io-index" 8329 - checksum = "f02d3730e8785e797a4552137d1acc0d7f7146dad3b5fe65ed83637711dfc6c5" 8330 - dependencies = [ 8331 - "base64ct", 8332 - "pem-rfc7468", 8333 - "rand_core", 8334 - "sec1", 8335 - "sha2", 8336 - "signature", 8337 - "zeroize", 8338 - ] 8339 - 8340 - [[package]] 8341 - name = "ssh_format" 8342 - version = "0.12.0" 8343 - source = "registry+https://github.com/rust-lang/crates.io-index" 8344 - checksum = "b8701239872766d43b8a5f9a560ff7f002b48064fadea87f44a70507069fb482" 8345 - dependencies = [ 8346 - "serde", 8347 - ] 8348 - 8349 - [[package]] 8350 - name = "stable_deref_trait" 8351 - version = "1.2.0" 8352 - source = "registry+https://github.com/rust-lang/crates.io-index" 8353 - checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 8354 - 8355 - [[package]] 8356 - name = "stacker" 8357 - version = "0.1.15" 8358 - source = "registry+https://github.com/rust-lang/crates.io-index" 8359 - checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce" 8360 - dependencies = [ 8361 - "cc", 8362 - "cfg-if", 8363 - "libc", 8364 - "psm", 8365 - "winapi", 8366 - ] 8367 - 8368 - [[package]] 8369 - name = "static_assertions" 8370 - version = "1.1.0" 8371 - source = "registry+https://github.com/rust-lang/crates.io-index" 8372 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 8373 - 8374 - [[package]] 8375 - name = "str_indices" 8376 - version = "0.4.1" 8377 - source = "registry+https://github.com/rust-lang/crates.io-index" 8378 - checksum = "5f026164926842ec52deb1938fae44f83dfdb82d0a5b0270c5bd5935ab74d6dd" 8379 - 8380 - [[package]] 8381 - name = "streaming-decompression" 8382 - version = "0.1.0" 8383 - source = "registry+https://github.com/rust-lang/crates.io-index" 8384 - checksum = "9bc687acd5dc742c4a7094f2927a8614a68e4743ef682e7a2f9f0f711656cc92" 8385 - dependencies = [ 8386 - "fallible-streaming-iterator", 8387 - ] 8388 - 8389 - [[package]] 8390 - name = "streaming-iterator" 8391 - version = "0.1.5" 8392 - source = "registry+https://github.com/rust-lang/crates.io-index" 8393 - checksum = "303235c177994a476226b80d076bd333b7b560fb05bd242a10609d11b07f81f5" 8394 - 8395 - [[package]] 8396 - name = "stringprep" 8397 - version = "0.1.2" 8398 - source = "registry+https://github.com/rust-lang/crates.io-index" 8399 - checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1" 8400 - dependencies = [ 8401 - "unicode-bidi", 8402 - "unicode-normalization", 8403 - ] 8404 - 8405 - [[package]] 8406 - name = "strip-ansi-escapes" 8407 - version = "0.2.0" 8408 - source = "registry+https://github.com/rust-lang/crates.io-index" 8409 - checksum = "55ff8ef943b384c414f54aefa961dd2bd853add74ec75e7ac74cf91dba62bcfa" 8410 - dependencies = [ 8411 - "vte", 8412 - ] 8413 - 8414 - [[package]] 8415 - name = "strsim" 8416 - version = "0.10.0" 8417 - source = "registry+https://github.com/rust-lang/crates.io-index" 8418 - checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 8419 - 8420 - [[package]] 8421 - name = "subprocess" 8422 - version = "0.2.9" 8423 - source = "registry+https://github.com/rust-lang/crates.io-index" 8424 - checksum = "0c2e86926081dda636c546d8c5e641661049d7562a68f5488be4a1f7f66f6086" 8425 - dependencies = [ 8426 - "libc", 8427 - "winapi", 8428 - ] 8429 - 8430 - [[package]] 8431 - name = "subtle" 8432 - version = "2.4.1" 8433 - source = "registry+https://github.com/rust-lang/crates.io-index" 8434 - checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 8435 - 8436 - [[package]] 8437 - name = "symbolic-common" 8438 - version = "10.2.0" 8439 - source = "registry+https://github.com/rust-lang/crates.io-index" 8440 - checksum = "c5d7c8cd6663e22c348c74cf0b2c77d196fd252c7efe5594ae05edb07d0475da" 8441 - dependencies = [ 8442 - "debugid", 8443 - "memmap2", 8444 - "stable_deref_trait", 8445 - "uuid", 8446 - ] 8447 - 8448 - [[package]] 8449 - name = "symbolic-demangle" 8450 - version = "10.2.0" 8451 - source = "registry+https://github.com/rust-lang/crates.io-index" 8452 - checksum = "86dc78e43163d342e72c0175113cf0c6ffc6b2540163c8680c4ed91c992af9e2" 8453 - dependencies = [ 8454 - "cpp_demangle", 8455 - "rustc-demangle", 8456 - "symbolic-common", 8457 - ] 8458 - 8459 - [[package]] 8460 - name = "syn" 8461 - version = "1.0.107" 8462 - source = "registry+https://github.com/rust-lang/crates.io-index" 8463 - checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" 8464 - dependencies = [ 8465 - "proc-macro2", 8466 - "quote", 8467 - "unicode-ident", 8468 - ] 8469 - 8470 - [[package]] 8471 - name = "syn" 8472 - version = "2.0.39" 8473 - source = "registry+https://github.com/rust-lang/crates.io-index" 8474 - checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a" 8475 - dependencies = [ 8476 - "proc-macro2", 8477 - "quote", 8478 - "unicode-ident", 8479 - ] 8480 - 8481 - [[package]] 8482 - name = "sync_wrapper" 8483 - version = "0.1.1" 8484 - source = "registry+https://github.com/rust-lang/crates.io-index" 8485 - checksum = "20518fe4a4c9acf048008599e464deb21beeae3d3578418951a189c235a7a9a8" 8486 - 8487 - [[package]] 8488 - name = "synstructure" 8489 - version = "0.12.3" 8490 - source = "registry+https://github.com/rust-lang/crates.io-index" 8491 - checksum = "67656ea1dc1b41b1451851562ea232ec2e5a80242139f7e679ceccfb5d61f545" 8492 - dependencies = [ 8493 - "proc-macro2", 8494 - "quote", 8495 - "syn 1.0.107", 8496 - "unicode-xid", 8497 - ] 8498 - 8499 - [[package]] 8500 - name = "sysctl" 8501 - version = "0.5.4" 8502 - source = "registry+https://github.com/rust-lang/crates.io-index" 8503 - checksum = "ed66d6a2ccbd656659289bc90767895b7abbdec897a0fc6031aca3ed1cb51d3e" 8504 - dependencies = [ 8505 - "bitflags 1.3.2", 8506 - "byteorder", 8507 - "enum-as-inner", 8508 - "libc", 8509 - "thiserror", 8510 - "walkdir", 8511 - ] 8512 - 8513 - [[package]] 8514 - name = "sysinfo" 8515 - version = "0.27.2" 8516 - source = "registry+https://github.com/rust-lang/crates.io-index" 8517 - checksum = "17351d0e9eb8841897b14e9669378f3c69fb57779cc04f8ca9a9d512edfb2563" 8518 - dependencies = [ 8519 - "cfg-if", 8520 - "core-foundation-sys", 8521 - "libc", 8522 - "ntapi", 8523 - "once_cell", 8524 - "rayon", 8525 - "winapi", 8526 - ] 8527 - 8528 - [[package]] 8529 - name = "tabled" 8530 - version = "0.10.0" 8531 - source = "registry+https://github.com/rust-lang/crates.io-index" 8532 - checksum = "56c3ee73732ffceaea7b8f6b719ce3bb17f253fa27461ffeaf568ebd0cdb4b85" 8533 - dependencies = [ 8534 - "papergrid", 8535 - "tabled_derive", 8536 - "unicode-width", 8537 - ] 8538 - 8539 - [[package]] 8540 - name = "tabled_derive" 8541 - version = "0.5.0" 8542 - source = "registry+https://github.com/rust-lang/crates.io-index" 8543 - checksum = "beca1b4eaceb4f2755df858b88d9b9315b7ccfd1ffd0d7a48a52602301f01a57" 8544 - dependencies = [ 8545 - "heck", 8546 - "proc-macro-error", 8547 - "proc-macro2", 8548 - "quote", 8549 - "syn 1.0.107", 8550 - ] 8551 - 8552 - [[package]] 8553 - name = "tagptr" 8554 - version = "0.2.0" 8555 - source = "registry+https://github.com/rust-lang/crates.io-index" 8556 - checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417" 8557 - 8558 - [[package]] 8559 - name = "tap" 8560 - version = "1.0.1" 8561 - source = "registry+https://github.com/rust-lang/crates.io-index" 8562 - checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 8563 - 8564 - [[package]] 8565 - name = "tar" 8566 - version = "0.4.38" 8567 - source = "registry+https://github.com/rust-lang/crates.io-index" 8568 - checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6" 8569 - dependencies = [ 8570 - "filetime", 8571 - "libc", 8572 - "xattr", 8573 - ] 8574 - 8575 - [[package]] 8576 - name = "task-local-extensions" 8577 - version = "0.1.4" 8578 - source = "registry+https://github.com/rust-lang/crates.io-index" 8579 - checksum = "ba323866e5d033818e3240feeb9f7db2c4296674e4d9e16b97b7bf8f490434e8" 8580 - dependencies = [ 8581 - "pin-utils", 8582 - ] 8583 - 8584 - [[package]] 8585 - name = "tempfile" 8586 - version = "3.8.1" 8587 - source = "registry+https://github.com/rust-lang/crates.io-index" 8588 - checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" 8589 - dependencies = [ 8590 - "cfg-if", 8591 - "fastrand", 8592 - "redox_syscall 0.4.1", 8593 - "rustix 0.38.21", 8594 - "windows-sys 0.48.0", 8595 - ] 8596 - 8597 - [[package]] 8598 - name = "termcolor" 8599 - version = "1.2.0" 8600 - source = "registry+https://github.com/rust-lang/crates.io-index" 8601 - checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 8602 - dependencies = [ 8603 - "winapi-util", 8604 - ] 8605 - 8606 - [[package]] 8607 - name = "terminal_size" 8608 - version = "0.2.6" 8609 - source = "registry+https://github.com/rust-lang/crates.io-index" 8610 - checksum = "8e6bf6f19e9f8ed8d4048dc22981458ebcf406d67e94cd422e5ecd73d63b3237" 8611 - dependencies = [ 8612 - "rustix 0.37.15", 8613 - "windows-sys 0.48.0", 8614 - ] 8615 - 8616 - [[package]] 8617 - name = "textwrap" 8618 - version = "0.16.0" 8619 - source = "registry+https://github.com/rust-lang/crates.io-index" 8620 - checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" 8621 - dependencies = [ 8622 - "terminal_size", 8623 - ] 8624 - 8625 - [[package]] 8626 - name = "thiserror" 8627 - version = "1.0.40" 8628 - source = "registry+https://github.com/rust-lang/crates.io-index" 8629 - checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 8630 - dependencies = [ 8631 - "thiserror-impl", 8632 - ] 8633 - 8634 - [[package]] 8635 - name = "thiserror-impl" 8636 - version = "1.0.40" 8637 - source = "registry+https://github.com/rust-lang/crates.io-index" 8638 - checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 8639 - dependencies = [ 8640 - "proc-macro2", 8641 - "quote", 8642 - "syn 2.0.39", 8643 - ] 8644 - 8645 - [[package]] 8646 - name = "thread_local" 8647 - version = "1.1.4" 8648 - source = "registry+https://github.com/rust-lang/crates.io-index" 8649 - checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" 8650 - dependencies = [ 8651 - "once_cell", 8652 - ] 8653 - 8654 - [[package]] 8655 - name = "tiberius" 8656 - version = "0.11.7" 8657 - source = "registry+https://github.com/rust-lang/crates.io-index" 8658 - checksum = "66303a42b7c5daffb95c10cd8f3007a9c29b3e90128cf42b3738f58102aa2516" 8659 - dependencies = [ 8660 - "async-trait", 8661 - "asynchronous-codec", 8662 - "byteorder", 8663 - "bytes", 8664 - "connection-string", 8665 - "encoding", 8666 - "enumflags2", 8667 - "futures", 8668 - "futures-sink", 8669 - "futures-util", 8670 - "num-traits", 8671 - "once_cell", 8672 - "pin-project-lite", 8673 - "pretty-hex", 8674 - "thiserror", 8675 - "tracing", 8676 - "uuid", 8677 - ] 8678 - 8679 - [[package]] 8680 - name = "tikv-jemalloc-ctl" 8681 - version = "0.5.0" 8682 - source = "registry+https://github.com/rust-lang/crates.io-index" 8683 - checksum = "e37706572f4b151dff7a0146e040804e9c26fe3a3118591112f05cf12a4216c1" 8684 - dependencies = [ 8685 - "libc", 8686 - "paste", 8687 - "tikv-jemalloc-sys", 8688 - ] 8689 - 8690 - [[package]] 8691 - name = "tikv-jemalloc-sys" 8692 - version = "0.5.2+5.3.0-patched" 8693 - source = "registry+https://github.com/rust-lang/crates.io-index" 8694 - checksum = "ec45c14da997d0925c7835883e4d5c181f196fa142f8c19d7643d1e9af2592c3" 8695 - dependencies = [ 8696 - "cc", 8697 - "fs_extra", 8698 - "libc", 8699 - ] 8700 - 8701 - [[package]] 8702 - name = "tikv-jemallocator" 8703 - version = "0.5.0" 8704 - source = "registry+https://github.com/rust-lang/crates.io-index" 8705 - checksum = "20612db8a13a6c06d57ec83953694185a367e16945f66565e8028d2c0bd76979" 8706 - dependencies = [ 8707 - "libc", 8708 - "tikv-jemalloc-sys", 8709 - ] 8710 - 8711 - [[package]] 8712 - name = "time" 8713 - version = "0.3.17" 8714 - source = "registry+https://github.com/rust-lang/crates.io-index" 8715 - checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376" 8716 - dependencies = [ 8717 - "itoa", 8718 - "quickcheck", 8719 - "serde", 8720 - "time-core", 8721 - "time-macros", 8722 - ] 8723 - 8724 - [[package]] 8725 - name = "time-core" 8726 - version = "0.1.0" 8727 - source = "registry+https://github.com/rust-lang/crates.io-index" 8728 - checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" 8729 - 8730 - [[package]] 8731 - name = "time-macros" 8732 - version = "0.2.6" 8733 - source = "registry+https://github.com/rust-lang/crates.io-index" 8734 - checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2" 8735 - dependencies = [ 8736 - "time-core", 8737 - ] 8738 - 8739 - [[package]] 8740 - name = "timely" 8741 - version = "0.12.0" 8742 - source = "git+https://github.com/MaterializeInc/timely-dataflow.git#de20aa88cc6df3de910e9befbe68408d31e287be" 8743 - dependencies = [ 8744 - "abomonation", 8745 - "abomonation_derive", 8746 - "crossbeam-channel", 8747 - "futures-util", 8748 - "getopts", 8749 - "serde", 8750 - "serde_derive", 8751 - "timely_bytes", 8752 - "timely_communication", 8753 - "timely_container", 8754 - "timely_logging", 8755 - ] 8756 - 8757 - [[package]] 8758 - name = "timely_bytes" 8759 - version = "0.12.0" 8760 - source = "git+https://github.com/MaterializeInc/timely-dataflow.git#de20aa88cc6df3de910e9befbe68408d31e287be" 8761 - 8762 - [[package]] 8763 - name = "timely_communication" 8764 - version = "0.12.0" 8765 - source = "git+https://github.com/MaterializeInc/timely-dataflow.git#de20aa88cc6df3de910e9befbe68408d31e287be" 8766 - dependencies = [ 8767 - "abomonation", 8768 - "abomonation_derive", 8769 - "bincode", 8770 - "crossbeam-channel", 8771 - "getopts", 8772 - "serde", 8773 - "serde_derive", 8774 - "timely_bytes", 8775 - "timely_logging", 8776 - ] 8777 - 8778 - [[package]] 8779 - name = "timely_container" 8780 - version = "0.12.0" 8781 - source = "git+https://github.com/MaterializeInc/timely-dataflow.git#de20aa88cc6df3de910e9befbe68408d31e287be" 8782 - dependencies = [ 8783 - "columnation", 8784 - "serde", 8785 - ] 8786 - 8787 - [[package]] 8788 - name = "timely_logging" 8789 - version = "0.12.0" 8790 - source = "git+https://github.com/MaterializeInc/timely-dataflow.git#de20aa88cc6df3de910e9befbe68408d31e287be" 8791 - 8792 - [[package]] 8793 - name = "tiny-keccak" 8794 - version = "2.0.2" 8795 - source = "registry+https://github.com/rust-lang/crates.io-index" 8796 - checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" 8797 - dependencies = [ 8798 - "crunchy", 8799 - ] 8800 - 8801 - [[package]] 8802 - name = "tinytemplate" 8803 - version = "1.1.0" 8804 - source = "registry+https://github.com/rust-lang/crates.io-index" 8805 - checksum = "6d3dc76004a03cec1c5932bca4cdc2e39aaa798e3f82363dd94f9adf6098c12f" 8806 - dependencies = [ 8807 - "serde", 8808 - "serde_json", 8809 - ] 8810 - 8811 - [[package]] 8812 - name = "tinyvec" 8813 - version = "1.6.0" 8814 - source = "registry+https://github.com/rust-lang/crates.io-index" 8815 - checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 8816 - dependencies = [ 8817 - "tinyvec_macros", 8818 - ] 8819 - 8820 - [[package]] 8821 - name = "tinyvec_macros" 8822 - version = "0.1.0" 8823 - source = "registry+https://github.com/rust-lang/crates.io-index" 8824 - checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 8825 - 8826 - [[package]] 8827 - name = "tokio" 8828 - version = "1.32.0" 8829 - source = "registry+https://github.com/rust-lang/crates.io-index" 8830 - checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" 8831 - dependencies = [ 8832 - "backtrace", 8833 - "bytes", 8834 - "libc", 8835 - "mio", 8836 - "num_cpus", 8837 - "parking_lot", 8838 - "pin-project-lite", 8839 - "signal-hook-registry", 8840 - "socket2 0.5.3", 8841 - "tokio-macros", 8842 - "tracing", 8843 - "windows-sys 0.48.0", 8844 - ] 8845 - 8846 - [[package]] 8847 - name = "tokio-io-timeout" 8848 - version = "1.1.1" 8849 - source = "registry+https://github.com/rust-lang/crates.io-index" 8850 - checksum = "90c49f106be240de154571dd31fbe48acb10ba6c6dd6f6517ad603abffa42de9" 8851 - dependencies = [ 8852 - "pin-project-lite", 8853 - "tokio", 8854 - ] 8855 - 8856 - [[package]] 8857 - name = "tokio-io-utility" 8858 - version = "0.7.6" 8859 - source = "registry+https://github.com/rust-lang/crates.io-index" 8860 - checksum = "8d672654d175710e52c7c41f6aec77c62b3c0954e2a7ebce9049d1e94ed7c263" 8861 - dependencies = [ 8862 - "tokio", 8863 - ] 8864 - 8865 - [[package]] 8866 - name = "tokio-macros" 8867 - version = "2.1.0" 8868 - source = "registry+https://github.com/rust-lang/crates.io-index" 8869 - checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 8870 - dependencies = [ 8871 - "proc-macro2", 8872 - "quote", 8873 - "syn 2.0.39", 8874 - ] 8875 - 8876 - [[package]] 8877 - name = "tokio-metrics" 8878 - version = "0.3.0" 8879 - source = "registry+https://github.com/rust-lang/crates.io-index" 8880 - checksum = "d4b2fc67d5dec41db679b9b052eb572269616926040b7831e32c8a152df77b84" 8881 - dependencies = [ 8882 - "futures-util", 8883 - "pin-project-lite", 8884 - "tokio", 8885 - "tokio-stream", 8886 - ] 8887 - 8888 - [[package]] 8889 - name = "tokio-native-tls" 8890 - version = "0.3.0" 8891 - source = "registry+https://github.com/rust-lang/crates.io-index" 8892 - checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b" 8893 - dependencies = [ 8894 - "native-tls", 8895 - "tokio", 8896 - ] 8897 - 8898 - [[package]] 8899 - name = "tokio-openssl" 8900 - version = "0.6.3" 8901 - source = "registry+https://github.com/rust-lang/crates.io-index" 8902 - checksum = "c08f9ffb7809f1b20c1b398d92acf4cc719874b3b2b2d9ea2f09b4a80350878a" 8903 - dependencies = [ 8904 - "futures-util", 8905 - "openssl", 8906 - "openssl-sys", 8907 - "tokio", 8908 - ] 8909 - 8910 - [[package]] 8911 - name = "tokio-pipe" 8912 - version = "0.2.12" 8913 - source = "registry+https://github.com/rust-lang/crates.io-index" 8914 - checksum = "f213a84bffbd61b8fa0ba8a044b4bbe35d471d0b518867181e82bd5c15542784" 8915 - dependencies = [ 8916 - "libc", 8917 - "tokio", 8918 - ] 8919 - 8920 - [[package]] 8921 - name = "tokio-postgres" 8922 - version = "0.7.8" 8923 - source = "git+https://github.com/MaterializeInc/rust-postgres#b759caa33610403aa74b1cfdd37f45eb3100c9af" 8924 - dependencies = [ 8925 - "async-trait", 8926 - "byteorder", 8927 - "bytes", 8928 - "fallible-iterator", 8929 - "futures-channel", 8930 - "futures-util", 8931 - "log", 8932 - "parking_lot", 8933 - "percent-encoding", 8934 - "phf", 8935 - "pin-project-lite", 8936 - "postgres-protocol", 8937 - "postgres-types", 8938 - "serde", 8939 - "socket2 0.5.3", 8940 - "tokio", 8941 - "tokio-util", 8942 - ] 8943 - 8944 - [[package]] 8945 - name = "tokio-stream" 8946 - version = "0.1.11" 8947 - source = "registry+https://github.com/rust-lang/crates.io-index" 8948 - checksum = "d660770404473ccd7bc9f8b28494a811bc18542b915c0855c51e8f419d5223ce" 8949 - dependencies = [ 8950 - "futures-core", 8951 - "pin-project-lite", 8952 - "tokio", 8953 - "tokio-util", 8954 - ] 8955 - 8956 - [[package]] 8957 - name = "tokio-test" 8958 - version = "0.4.2" 8959 - source = "registry+https://github.com/rust-lang/crates.io-index" 8960 - checksum = "53474327ae5e166530d17f2d956afcb4f8a004de581b3cae10f12006bc8163e3" 8961 - dependencies = [ 8962 - "async-stream", 8963 - "bytes", 8964 - "futures-core", 8965 - "tokio", 8966 - "tokio-stream", 8967 - ] 8968 - 8969 - [[package]] 8970 - name = "tokio-tungstenite" 8971 - version = "0.20.0" 8972 - source = "registry+https://github.com/rust-lang/crates.io-index" 8973 - checksum = "2b2dbec703c26b00d74844519606ef15d09a7d6857860f84ad223dec002ddea2" 8974 - dependencies = [ 8975 - "futures-util", 8976 - "log", 8977 - "tokio", 8978 - "tungstenite", 8979 - ] 8980 - 8981 - [[package]] 8982 - name = "tokio-util" 8983 - version = "0.7.4" 8984 - source = "registry+https://github.com/rust-lang/crates.io-index" 8985 - checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740" 8986 - dependencies = [ 8987 - "bytes", 8988 - "futures-core", 8989 - "futures-io", 8990 - "futures-sink", 8991 - "pin-project-lite", 8992 - "slab", 8993 - "tokio", 8994 - "tracing", 8995 - ] 8996 - 8997 - [[package]] 8998 - name = "toml" 8999 - version = "0.5.9" 9000 - source = "registry+https://github.com/rust-lang/crates.io-index" 9001 - checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7" 9002 - dependencies = [ 9003 - "serde", 9004 - ] 9005 - 9006 - [[package]] 9007 - name = "toml_datetime" 9008 - version = "0.6.3" 9009 - source = "registry+https://github.com/rust-lang/crates.io-index" 9010 - checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" 9011 - dependencies = [ 9012 - "serde", 9013 - ] 9014 - 9015 - [[package]] 9016 - name = "toml_edit" 9017 - version = "0.19.14" 9018 - source = "registry+https://github.com/rust-lang/crates.io-index" 9019 - checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a" 9020 - dependencies = [ 9021 - "indexmap 2.0.0", 9022 - "serde", 9023 - "serde_spanned", 9024 - "toml_datetime", 9025 - "winnow", 9026 - ] 9027 - 9028 - [[package]] 9029 - name = "tonic" 9030 - version = "0.9.2" 9031 - source = "registry+https://github.com/rust-lang/crates.io-index" 9032 - checksum = "3082666a3a6433f7f511c7192923fa1fe07c69332d3c6a2e6bb040b569199d5a" 9033 - dependencies = [ 9034 - "async-trait", 9035 - "axum", 9036 - "base64 0.21.5", 9037 - "bytes", 9038 - "futures-core", 9039 - "futures-util", 9040 - "h2", 9041 - "http", 9042 - "http-body", 9043 - "hyper", 9044 - "hyper-timeout", 9045 - "percent-encoding", 9046 - "pin-project", 9047 - "prost", 9048 - "tokio", 9049 - "tokio-stream", 9050 - "tower", 9051 - "tower-layer", 9052 - "tower-service", 9053 - "tracing", 9054 - ] 9055 - 9056 - [[package]] 9057 - name = "tonic-build" 9058 - version = "0.9.2" 9059 - source = "git+https://github.com/MaterializeInc/tonic?rev=0d86e360ab45779770ca150c8487fe7940c299a9#0d86e360ab45779770ca150c8487fe7940c299a9" 9060 - dependencies = [ 9061 - "prettyplease 0.1.25", 9062 - "proc-macro2", 9063 - "prost-build", 9064 - "quote", 9065 - "syn 1.0.107", 9066 - ] 9067 - 9068 - [[package]] 9069 - name = "tower" 9070 - version = "0.4.13" 9071 - source = "registry+https://github.com/rust-lang/crates.io-index" 9072 - checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 9073 - dependencies = [ 9074 - "futures-core", 9075 - "futures-util", 9076 - "indexmap 1.9.1", 9077 - "pin-project", 9078 - "pin-project-lite", 9079 - "rand", 9080 - "slab", 9081 - "tokio", 9082 - "tokio-util", 9083 - "tower-layer", 9084 - "tower-service", 9085 - "tracing", 9086 - ] 9087 - 9088 - [[package]] 9089 - name = "tower-http" 9090 - version = "0.4.3" 9091 - source = "registry+https://github.com/rust-lang/crates.io-index" 9092 - checksum = "55ae70283aba8d2a8b411c695c437fe25b8b5e44e23e780662002fc72fb47a82" 9093 - dependencies = [ 9094 - "base64 0.21.5", 9095 - "bitflags 2.4.1", 9096 - "bytes", 9097 - "futures-core", 9098 - "futures-util", 9099 - "http", 9100 - "http-body", 9101 - "http-range-header", 9102 - "mime", 9103 - "pin-project-lite", 9104 - "tower", 9105 - "tower-layer", 9106 - "tower-service", 9107 - "tracing", 9108 - ] 9109 - 9110 - [[package]] 9111 - name = "tower-layer" 9112 - version = "0.3.2" 9113 - source = "registry+https://github.com/rust-lang/crates.io-index" 9114 - checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" 9115 - 9116 - [[package]] 9117 - name = "tower-lsp" 9118 - version = "0.20.0" 9119 - source = "registry+https://github.com/rust-lang/crates.io-index" 9120 - checksum = "d4ba052b54a6627628d9b3c34c176e7eda8359b7da9acd497b9f20998d118508" 9121 - dependencies = [ 9122 - "async-trait", 9123 - "auto_impl", 9124 - "bytes", 9125 - "dashmap", 9126 - "futures", 9127 - "httparse", 9128 - "lsp-types", 9129 - "memchr", 9130 - "serde", 9131 - "serde_json", 9132 - "tokio", 9133 - "tokio-util", 9134 - "tower", 9135 - "tower-lsp-macros", 9136 - "tracing", 9137 - ] 9138 - 9139 - [[package]] 9140 - name = "tower-lsp-macros" 9141 - version = "0.9.0" 9142 - source = "registry+https://github.com/rust-lang/crates.io-index" 9143 - checksum = "84fd902d4e0b9a4b27f2f440108dc034e1758628a9b702f8ec61ad66355422fa" 9144 - dependencies = [ 9145 - "proc-macro2", 9146 - "quote", 9147 - "syn 2.0.39", 9148 - ] 9149 - 9150 - [[package]] 9151 - name = "tower-service" 9152 - version = "0.3.1" 9153 - source = "registry+https://github.com/rust-lang/crates.io-index" 9154 - checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6" 9155 - 9156 - [[package]] 9157 - name = "tracing" 9158 - version = "0.1.37" 9159 - source = "registry+https://github.com/rust-lang/crates.io-index" 9160 - checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 9161 - dependencies = [ 9162 - "cfg-if", 9163 - "log", 9164 - "pin-project-lite", 9165 - "tracing-attributes", 9166 - "tracing-core", 9167 - ] 9168 - 9169 - [[package]] 9170 - name = "tracing-attributes" 9171 - version = "0.1.23" 9172 - source = "registry+https://github.com/rust-lang/crates.io-index" 9173 - checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" 9174 - dependencies = [ 9175 - "proc-macro2", 9176 - "quote", 9177 - "syn 1.0.107", 9178 - ] 9179 - 9180 - [[package]] 9181 - name = "tracing-core" 9182 - version = "0.1.30" 9183 - source = "registry+https://github.com/rust-lang/crates.io-index" 9184 - checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 9185 - dependencies = [ 9186 - "once_cell", 9187 - "valuable", 9188 - ] 9189 - 9190 - [[package]] 9191 - name = "tracing-log" 9192 - version = "0.2.0" 9193 - source = "registry+https://github.com/rust-lang/crates.io-index" 9194 - checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 9195 - dependencies = [ 9196 - "log", 9197 - "once_cell", 9198 - "tracing-core", 9199 - ] 9200 - 9201 - [[package]] 9202 - name = "tracing-opentelemetry" 9203 - version = "0.22.0" 9204 - source = "git+https://github.com/MaterializeInc/tracing-opentelemetry.git#7035e641b683985cc3b8630f3b61d53c96f83695" 9205 - dependencies = [ 9206 - "js-sys", 9207 - "once_cell", 9208 - "opentelemetry", 9209 - "opentelemetry_sdk", 9210 - "smallvec", 9211 - "tracing", 9212 - "tracing-core", 9213 - "tracing-log", 9214 - "tracing-subscriber", 9215 - "web-time", 9216 - ] 9217 - 9218 - [[package]] 9219 - name = "tracing-serde" 9220 - version = "0.1.3" 9221 - source = "registry+https://github.com/rust-lang/crates.io-index" 9222 - checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1" 9223 - dependencies = [ 9224 - "serde", 9225 - "tracing-core", 9226 - ] 9227 - 9228 - [[package]] 9229 - name = "tracing-subscriber" 9230 - version = "0.3.18" 9231 - source = "registry+https://github.com/rust-lang/crates.io-index" 9232 - checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" 9233 - dependencies = [ 9234 - "matchers", 9235 - "nu-ansi-term", 9236 - "once_cell", 9237 - "regex", 9238 - "serde", 9239 - "serde_json", 9240 - "sharded-slab", 9241 - "smallvec", 9242 - "thread_local", 9243 - "tracing", 9244 - "tracing-core", 9245 - "tracing-log", 9246 - "tracing-serde", 9247 - ] 9248 - 9249 - [[package]] 9250 - name = "treediff" 9251 - version = "4.0.2" 9252 - source = "registry+https://github.com/rust-lang/crates.io-index" 9253 - checksum = "52984d277bdf2a751072b5df30ec0377febdb02f7696d64c2d7d54630bac4303" 9254 - dependencies = [ 9255 - "serde_json", 9256 - ] 9257 - 9258 - [[package]] 9259 - name = "treeline" 9260 - version = "0.1.0" 9261 - source = "registry+https://github.com/rust-lang/crates.io-index" 9262 - checksum = "a7f741b240f1a48843f9b8e0444fb55fb2a4ff67293b50a9179dfd5ea67f8d41" 9263 - 9264 - [[package]] 9265 - name = "triomphe" 9266 - version = "0.1.8" 9267 - source = "registry+https://github.com/rust-lang/crates.io-index" 9268 - checksum = "f1ee9bd9239c339d714d657fac840c6d2a4f9c45f4f9ec7b0975113458be78db" 9269 - 9270 - [[package]] 9271 - name = "try-lock" 9272 - version = "0.2.2" 9273 - source = "registry+https://github.com/rust-lang/crates.io-index" 9274 - checksum = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" 9275 - 9276 - [[package]] 9277 - name = "tungstenite" 9278 - version = "0.20.1" 9279 - source = "registry+https://github.com/rust-lang/crates.io-index" 9280 - checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9" 9281 - dependencies = [ 9282 - "byteorder", 9283 - "bytes", 9284 - "data-encoding", 9285 - "http", 9286 - "httparse", 9287 - "log", 9288 - "rand", 9289 - "sha1", 9290 - "thiserror", 9291 - "url", 9292 - "utf-8", 9293 - ] 9294 - 9295 - [[package]] 9296 - name = "twox-hash" 9297 - version = "1.6.2" 9298 - source = "registry+https://github.com/rust-lang/crates.io-index" 9299 - checksum = "4ee73e6e4924fe940354b8d4d98cad5231175d615cd855b758adc658c0aac6a0" 9300 - dependencies = [ 9301 - "cfg-if", 9302 - "rand", 9303 - "static_assertions", 9304 - ] 9305 - 9306 - [[package]] 9307 - name = "typed-arena" 9308 - version = "2.0.2" 9309 - source = "registry+https://github.com/rust-lang/crates.io-index" 9310 - checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a" 9311 - 9312 - [[package]] 9313 - name = "typed-builder" 9314 - version = "0.10.0" 9315 - source = "registry+https://github.com/rust-lang/crates.io-index" 9316 - checksum = "89851716b67b937e393b3daa8423e67ddfc4bbbf1654bcf05488e95e0828db0c" 9317 - dependencies = [ 9318 - "proc-macro2", 9319 - "quote", 9320 - "syn 1.0.107", 9321 - ] 9322 - 9323 - [[package]] 9324 - name = "typenum" 9325 - version = "1.15.0" 9326 - source = "registry+https://github.com/rust-lang/crates.io-index" 9327 - checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" 9328 - 9329 - [[package]] 9330 - name = "uname" 9331 - version = "0.1.1" 9332 - source = "registry+https://github.com/rust-lang/crates.io-index" 9333 - checksum = "b72f89f0ca32e4db1c04e2a72f5345d59796d4866a1ee0609084569f73683dc8" 9334 - dependencies = [ 9335 - "libc", 9336 - ] 9337 - 9338 - [[package]] 9339 - name = "uncased" 9340 - version = "0.9.7" 9341 - source = "registry+https://github.com/rust-lang/crates.io-index" 9342 - checksum = "09b01702b0fd0b3fadcf98e098780badda8742d4f4a7676615cad90e8ac73622" 9343 - dependencies = [ 9344 - "version_check", 9345 - ] 9346 - 9347 - [[package]] 9348 - name = "unicase" 9349 - version = "2.6.0" 9350 - source = "registry+https://github.com/rust-lang/crates.io-index" 9351 - checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" 9352 - dependencies = [ 9353 - "version_check", 9354 - ] 9355 - 9356 - [[package]] 9357 - name = "unicode-bidi" 9358 - version = "0.3.4" 9359 - source = "registry+https://github.com/rust-lang/crates.io-index" 9360 - checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" 9361 - dependencies = [ 9362 - "matches", 9363 - ] 9364 - 9365 - [[package]] 9366 - name = "unicode-ident" 9367 - version = "1.0.0" 9368 - source = "registry+https://github.com/rust-lang/crates.io-index" 9369 - checksum = "d22af068fba1eb5edcb4aea19d382b2a3deb4c8f9d475c589b6ada9e0fd493ee" 9370 - 9371 - [[package]] 9372 - name = "unicode-normalization" 9373 - version = "0.1.21" 9374 - source = "registry+https://github.com/rust-lang/crates.io-index" 9375 - checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6" 9376 - dependencies = [ 9377 - "tinyvec", 9378 - ] 9379 - 9380 - [[package]] 9381 - name = "unicode-segmentation" 9382 - version = "1.10.1" 9383 - source = "registry+https://github.com/rust-lang/crates.io-index" 9384 - checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 9385 - 9386 - [[package]] 9387 - name = "unicode-width" 9388 - version = "0.1.10" 9389 - source = "registry+https://github.com/rust-lang/crates.io-index" 9390 - checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 9391 - 9392 - [[package]] 9393 - name = "unicode-xid" 9394 - version = "0.2.2" 9395 - source = "registry+https://github.com/rust-lang/crates.io-index" 9396 - checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" 9397 - 9398 - [[package]] 9399 - name = "unsafe-libyaml" 9400 - version = "0.2.9" 9401 - source = "registry+https://github.com/rust-lang/crates.io-index" 9402 - checksum = "f28467d3e1d3c6586d8f25fa243f544f5800fec42d97032474e17222c2b75cfa" 9403 - 9404 - [[package]] 9405 - name = "untrusted" 9406 - version = "0.9.0" 9407 - source = "registry+https://github.com/rust-lang/crates.io-index" 9408 - checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 9409 - 9410 - [[package]] 9411 - name = "ureq" 9412 - version = "2.5.0" 9413 - source = "registry+https://github.com/rust-lang/crates.io-index" 9414 - checksum = "b97acb4c28a254fd7a4aeec976c46a7fa404eac4d7c134b30c75144846d7cb8f" 9415 - dependencies = [ 9416 - "base64 0.13.1", 9417 - "chunked_transfer", 9418 - "log", 9419 - "native-tls", 9420 - "once_cell", 9421 - "url", 9422 - ] 9423 - 9424 - [[package]] 9425 - name = "url" 9426 - version = "2.3.1" 9427 - source = "registry+https://github.com/rust-lang/crates.io-index" 9428 - checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 9429 - dependencies = [ 9430 - "form_urlencoded", 9431 - "idna", 9432 - "percent-encoding", 9433 - "serde", 9434 - ] 9435 - 9436 - [[package]] 9437 - name = "urlencoding" 9438 - version = "2.1.2" 9439 - source = "registry+https://github.com/rust-lang/crates.io-index" 9440 - checksum = "e8db7427f936968176eaa7cdf81b7f98b980b18495ec28f1b5791ac3bfe3eea9" 9441 - 9442 - [[package]] 9443 - name = "utf-8" 9444 - version = "0.7.6" 9445 - source = "registry+https://github.com/rust-lang/crates.io-index" 9446 - checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 9447 - 9448 - [[package]] 9449 - name = "utf8parse" 9450 - version = "0.2.1" 9451 - source = "registry+https://github.com/rust-lang/crates.io-index" 9452 - checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 9453 - 9454 - [[package]] 9455 - name = "uuid" 9456 - version = "1.2.2" 9457 - source = "registry+https://github.com/rust-lang/crates.io-index" 9458 - checksum = "422ee0de9031b5b948b97a8fc04e3aa35230001a722ddd27943e0be31564ce4c" 9459 - dependencies = [ 9460 - "getrandom", 9461 - "serde", 9462 - "sha1_smol", 9463 - ] 9464 - 9465 - [[package]] 9466 - name = "valuable" 9467 - version = "0.1.0" 9468 - source = "registry+https://github.com/rust-lang/crates.io-index" 9469 - checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 9470 - 9471 - [[package]] 9472 - name = "vcpkg" 9473 - version = "0.2.8" 9474 - source = "registry+https://github.com/rust-lang/crates.io-index" 9475 - checksum = "3fc439f2794e98976c88a2a2dafce96b930fe8010b0a256b3c2199a773933168" 9476 - 9477 - [[package]] 9478 - name = "version_check" 9479 - version = "0.9.4" 9480 - source = "registry+https://github.com/rust-lang/crates.io-index" 9481 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 9482 - 9483 - [[package]] 9484 - name = "vsimd" 9485 - version = "0.8.0" 9486 - source = "registry+https://github.com/rust-lang/crates.io-index" 9487 - checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64" 9488 - 9489 - [[package]] 9490 - name = "vte" 9491 - version = "0.11.1" 9492 - source = "registry+https://github.com/rust-lang/crates.io-index" 9493 - checksum = "f5022b5fbf9407086c180e9557be968742d839e68346af7792b8592489732197" 9494 - dependencies = [ 9495 - "utf8parse", 9496 - "vte_generate_state_changes", 9497 - ] 9498 - 9499 - [[package]] 9500 - name = "vte_generate_state_changes" 9501 - version = "0.1.1" 9502 - source = "registry+https://github.com/rust-lang/crates.io-index" 9503 - checksum = "d257817081c7dffcdbab24b9e62d2def62e2ff7d00b1c20062551e6cccc145ff" 9504 - dependencies = [ 9505 - "proc-macro2", 9506 - "quote", 9507 - ] 9508 - 9509 - [[package]] 9510 - name = "wait-timeout" 9511 - version = "0.2.0" 9512 - source = "registry+https://github.com/rust-lang/crates.io-index" 9513 - checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6" 9514 - dependencies = [ 9515 - "libc", 9516 - ] 9517 - 9518 - [[package]] 9519 - name = "walkdir" 9520 - version = "2.3.2" 9521 - source = "registry+https://github.com/rust-lang/crates.io-index" 9522 - checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 9523 - dependencies = [ 9524 - "same-file", 9525 - "winapi", 9526 - "winapi-util", 9527 - ] 9528 - 9529 - [[package]] 9530 - name = "want" 9531 - version = "0.3.0" 9532 - source = "registry+https://github.com/rust-lang/crates.io-index" 9533 - checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 9534 - dependencies = [ 9535 - "log", 9536 - "try-lock", 9537 - ] 9538 - 9539 - [[package]] 9540 - name = "wasi" 9541 - version = "0.11.0+wasi-snapshot-preview1" 9542 - source = "registry+https://github.com/rust-lang/crates.io-index" 9543 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 9544 - 9545 - [[package]] 9546 - name = "wasm-bindgen" 9547 - version = "0.2.87" 9548 - source = "registry+https://github.com/rust-lang/crates.io-index" 9549 - checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 9550 - dependencies = [ 9551 - "cfg-if", 9552 - "wasm-bindgen-macro", 9553 - ] 9554 - 9555 - [[package]] 9556 - name = "wasm-bindgen-backend" 9557 - version = "0.2.87" 9558 - source = "registry+https://github.com/rust-lang/crates.io-index" 9559 - checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 9560 - dependencies = [ 9561 - "bumpalo", 9562 - "log", 9563 - "once_cell", 9564 - "proc-macro2", 9565 - "quote", 9566 - "syn 2.0.39", 9567 - "wasm-bindgen-shared", 9568 - ] 9569 - 9570 - [[package]] 9571 - name = "wasm-bindgen-futures" 9572 - version = "0.4.19" 9573 - source = "registry+https://github.com/rust-lang/crates.io-index" 9574 - checksum = "1fe9756085a84584ee9457a002b7cdfe0bfff169f45d2591d8be1345a6780e35" 9575 - dependencies = [ 9576 - "cfg-if", 9577 - "js-sys", 9578 - "wasm-bindgen", 9579 - "web-sys", 9580 - ] 9581 - 9582 - [[package]] 9583 - name = "wasm-bindgen-macro" 9584 - version = "0.2.87" 9585 - source = "registry+https://github.com/rust-lang/crates.io-index" 9586 - checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 9587 - dependencies = [ 9588 - "quote", 9589 - "wasm-bindgen-macro-support", 9590 - ] 9591 - 9592 - [[package]] 9593 - name = "wasm-bindgen-macro-support" 9594 - version = "0.2.87" 9595 - source = "registry+https://github.com/rust-lang/crates.io-index" 9596 - checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 9597 - dependencies = [ 9598 - "proc-macro2", 9599 - "quote", 9600 - "syn 2.0.39", 9601 - "wasm-bindgen-backend", 9602 - "wasm-bindgen-shared", 9603 - ] 9604 - 9605 - [[package]] 9606 - name = "wasm-bindgen-shared" 9607 - version = "0.2.87" 9608 - source = "registry+https://github.com/rust-lang/crates.io-index" 9609 - checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 9610 - 9611 - [[package]] 9612 - name = "web-sys" 9613 - version = "0.3.51" 9614 - source = "registry+https://github.com/rust-lang/crates.io-index" 9615 - checksum = "e828417b379f3df7111d3a2a9e5753706cae29c41f7c4029ee9fd77f3e09e582" 9616 - dependencies = [ 9617 - "js-sys", 9618 - "wasm-bindgen", 9619 - ] 9620 - 9621 - [[package]] 9622 - name = "web-time" 9623 - version = "0.2.4" 9624 - source = "registry+https://github.com/rust-lang/crates.io-index" 9625 - checksum = "aa30049b1c872b72c89866d458eae9f20380ab280ffd1b1e18df2d3e2d98cfe0" 9626 - dependencies = [ 9627 - "js-sys", 9628 - "wasm-bindgen", 9629 - ] 9630 - 9631 - [[package]] 9632 - name = "which" 9633 - version = "4.2.2" 9634 - source = "registry+https://github.com/rust-lang/crates.io-index" 9635 - checksum = "ea187a8ef279bc014ec368c27a920da2024d2a711109bfbe3440585d5cf27ad9" 9636 - dependencies = [ 9637 - "either", 9638 - "lazy_static", 9639 - "libc", 9640 - ] 9641 - 9642 - [[package]] 9643 - name = "winapi" 9644 - version = "0.3.9" 9645 - source = "registry+https://github.com/rust-lang/crates.io-index" 9646 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 9647 - dependencies = [ 9648 - "winapi-i686-pc-windows-gnu", 9649 - "winapi-x86_64-pc-windows-gnu", 9650 - ] 9651 - 9652 - [[package]] 9653 - name = "winapi-i686-pc-windows-gnu" 9654 - version = "0.4.0" 9655 - source = "registry+https://github.com/rust-lang/crates.io-index" 9656 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 9657 - 9658 - [[package]] 9659 - name = "winapi-util" 9660 - version = "0.1.3" 9661 - source = "registry+https://github.com/rust-lang/crates.io-index" 9662 - checksum = "4ccfbf554c6ad11084fb7517daca16cfdcaccbdadba4fc336f032a8b12c2ad80" 9663 - dependencies = [ 9664 - "winapi", 9665 - ] 9666 - 9667 - [[package]] 9668 - name = "winapi-x86_64-pc-windows-gnu" 9669 - version = "0.4.0" 9670 - source = "registry+https://github.com/rust-lang/crates.io-index" 9671 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 9672 - 9673 - [[package]] 9674 - name = "windows" 9675 - version = "0.48.0" 9676 - source = "registry+https://github.com/rust-lang/crates.io-index" 9677 - checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 9678 - dependencies = [ 9679 - "windows-targets", 9680 - ] 9681 - 9682 - [[package]] 9683 - name = "windows-sys" 9684 - version = "0.42.0" 9685 - source = "registry+https://github.com/rust-lang/crates.io-index" 9686 - checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 9687 - dependencies = [ 9688 - "windows_aarch64_gnullvm 0.42.2", 9689 - "windows_aarch64_msvc 0.42.2", 9690 - "windows_i686_gnu 0.42.2", 9691 - "windows_i686_msvc 0.42.2", 9692 - "windows_x86_64_gnu 0.42.2", 9693 - "windows_x86_64_gnullvm 0.42.2", 9694 - "windows_x86_64_msvc 0.42.2", 9695 - ] 9696 - 9697 - [[package]] 9698 - name = "windows-sys" 9699 - version = "0.48.0" 9700 - source = "registry+https://github.com/rust-lang/crates.io-index" 9701 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 9702 - dependencies = [ 9703 - "windows-targets", 9704 - ] 9705 - 9706 - [[package]] 9707 - name = "windows-targets" 9708 - version = "0.48.0" 9709 - source = "registry+https://github.com/rust-lang/crates.io-index" 9710 - checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 9711 - dependencies = [ 9712 - "windows_aarch64_gnullvm 0.48.0", 9713 - "windows_aarch64_msvc 0.48.0", 9714 - "windows_i686_gnu 0.48.0", 9715 - "windows_i686_msvc 0.48.0", 9716 - "windows_x86_64_gnu 0.48.0", 9717 - "windows_x86_64_gnullvm 0.48.0", 9718 - "windows_x86_64_msvc 0.48.0", 9719 - ] 9720 - 9721 - [[package]] 9722 - name = "windows_aarch64_gnullvm" 9723 - version = "0.42.2" 9724 - source = "registry+https://github.com/rust-lang/crates.io-index" 9725 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 9726 - 9727 - [[package]] 9728 - name = "windows_aarch64_gnullvm" 9729 - version = "0.48.0" 9730 - source = "registry+https://github.com/rust-lang/crates.io-index" 9731 - checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 9732 - 9733 - [[package]] 9734 - name = "windows_aarch64_msvc" 9735 - version = "0.42.2" 9736 - source = "registry+https://github.com/rust-lang/crates.io-index" 9737 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 9738 - 9739 - [[package]] 9740 - name = "windows_aarch64_msvc" 9741 - version = "0.48.0" 9742 - source = "registry+https://github.com/rust-lang/crates.io-index" 9743 - checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 9744 - 9745 - [[package]] 9746 - name = "windows_i686_gnu" 9747 - version = "0.42.2" 9748 - source = "registry+https://github.com/rust-lang/crates.io-index" 9749 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 9750 - 9751 - [[package]] 9752 - name = "windows_i686_gnu" 9753 - version = "0.48.0" 9754 - source = "registry+https://github.com/rust-lang/crates.io-index" 9755 - checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 9756 - 9757 - [[package]] 9758 - name = "windows_i686_msvc" 9759 - version = "0.42.2" 9760 - source = "registry+https://github.com/rust-lang/crates.io-index" 9761 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 9762 - 9763 - [[package]] 9764 - name = "windows_i686_msvc" 9765 - version = "0.48.0" 9766 - source = "registry+https://github.com/rust-lang/crates.io-index" 9767 - checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 9768 - 9769 - [[package]] 9770 - name = "windows_x86_64_gnu" 9771 - version = "0.42.2" 9772 - source = "registry+https://github.com/rust-lang/crates.io-index" 9773 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 9774 - 9775 - [[package]] 9776 - name = "windows_x86_64_gnu" 9777 - version = "0.48.0" 9778 - source = "registry+https://github.com/rust-lang/crates.io-index" 9779 - checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 9780 - 9781 - [[package]] 9782 - name = "windows_x86_64_gnullvm" 9783 - version = "0.42.2" 9784 - source = "registry+https://github.com/rust-lang/crates.io-index" 9785 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 9786 - 9787 - [[package]] 9788 - name = "windows_x86_64_gnullvm" 9789 - version = "0.48.0" 9790 - source = "registry+https://github.com/rust-lang/crates.io-index" 9791 - checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 9792 - 9793 - [[package]] 9794 - name = "windows_x86_64_msvc" 9795 - version = "0.42.2" 9796 - source = "registry+https://github.com/rust-lang/crates.io-index" 9797 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 9798 - 9799 - [[package]] 9800 - name = "windows_x86_64_msvc" 9801 - version = "0.48.0" 9802 - source = "registry+https://github.com/rust-lang/crates.io-index" 9803 - checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 9804 - 9805 - [[package]] 9806 - name = "winnow" 9807 - version = "0.5.4" 9808 - source = "registry+https://github.com/rust-lang/crates.io-index" 9809 - checksum = "acaaa1190073b2b101e15083c38ee8ec891b5e05cbee516521e94ec008f61e64" 9810 - dependencies = [ 9811 - "memchr", 9812 - ] 9813 - 9814 - [[package]] 9815 - name = "winreg" 9816 - version = "0.10.1" 9817 - source = "registry+https://github.com/rust-lang/crates.io-index" 9818 - checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 9819 - dependencies = [ 9820 - "winapi", 9821 - ] 9822 - 9823 - [[package]] 9824 - name = "workspace-hack" 9825 - version = "0.0.0" 9826 - dependencies = [ 9827 - "ahash", 9828 - "anyhow", 9829 - "async-compression", 9830 - "aws-config", 9831 - "aws-credential-types", 9832 - "aws-runtime", 9833 - "aws-sdk-sts", 9834 - "aws-sigv4", 9835 - "aws-smithy-async", 9836 - "aws-smithy-http", 9837 - "aws-smithy-runtime", 9838 - "aws-smithy-runtime-api", 9839 - "aws-smithy-types", 9840 - "axum", 9841 - "bitflags 2.4.1", 9842 - "bstr 0.2.14", 9843 - "byteorder", 9844 - "bytes", 9845 - "cc", 9846 - "chrono", 9847 - "clap", 9848 - "console", 9849 - "criterion", 9850 - "crossbeam-deque", 9851 - "crossbeam-epoch", 9852 - "crossbeam-utils", 9853 - "crypto-common", 9854 - "debugid", 9855 - "dec", 9856 - "digest", 9857 - "either", 9858 - "flate2", 9859 - "futures-channel", 9860 - "futures-core", 9861 - "futures-executor", 9862 - "futures-io", 9863 - "futures-sink", 9864 - "futures-task", 9865 - "futures-util", 9866 - "globset", 9867 - "hashbrown 0.14.0", 9868 - "hyper", 9869 - "indexmap 1.9.1", 9870 - "itertools", 9871 - "k8s-openapi", 9872 - "kube", 9873 - "kube-client", 9874 - "kube-core", 9875 - "libc", 9876 - "libz-sys", 9877 - "log", 9878 - "memchr", 9879 - "mime_guess", 9880 - "mio", 9881 - "mysql_async", 9882 - "mysql_common", 9883 - "native-tls", 9884 - "nix", 9885 - "nom", 9886 - "num-bigint", 9887 - "num-integer", 9888 - "num-traits", 9889 - "once_cell", 9890 - "openssl", 9891 - "openssl-sys", 9892 - "ordered-float", 9893 - "parking_lot", 9894 - "phf", 9895 - "phf_shared", 9896 - "postgres", 9897 - "postgres-types", 9898 - "predicates", 9899 - "proc-macro2", 9900 - "prost", 9901 - "prost-reflect", 9902 - "prost-types", 9903 - "quote", 9904 - "rand", 9905 - "rand_chacha", 9906 - "rdkafka-sys", 9907 - "regex", 9908 - "regex-syntax", 9909 - "reqwest", 9910 - "ring", 9911 - "schemars", 9912 - "scopeguard", 9913 - "security-framework", 9914 - "semver", 9915 - "serde", 9916 - "serde_json", 9917 - "sha2", 9918 - "similar", 9919 - "smallvec", 9920 - "socket2 0.5.3", 9921 - "subtle", 9922 - "syn 1.0.107", 9923 - "syn 2.0.39", 9924 - "textwrap", 9925 - "tikv-jemalloc-sys", 9926 - "time", 9927 - "time-macros", 9928 - "timely", 9929 - "timely_communication", 9930 - "tokio", 9931 - "tokio-postgres", 9932 - "tokio-stream", 9933 - "tokio-util", 9934 - "toml_datetime", 9935 - "toml_edit", 9936 - "tower", 9937 - "tower-http", 9938 - "tracing", 9939 - "tracing-core", 9940 - "tracing-subscriber", 9941 - "tungstenite", 9942 - "uncased", 9943 - "url", 9944 - "uuid", 9945 - "zeroize", 9946 - "zstd-sys", 9947 - ] 9948 - 9949 - [[package]] 9950 - name = "wyz" 9951 - version = "0.5.1" 9952 - source = "registry+https://github.com/rust-lang/crates.io-index" 9953 - checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 9954 - dependencies = [ 9955 - "tap", 9956 - ] 9957 - 9958 - [[package]] 9959 - name = "xattr" 9960 - version = "0.2.2" 9961 - source = "registry+https://github.com/rust-lang/crates.io-index" 9962 - checksum = "244c3741f4240ef46274860397c7c74e50eb23624996930e484c16679633a54c" 9963 - dependencies = [ 9964 - "libc", 9965 - ] 9966 - 9967 - [[package]] 9968 - name = "xmlparser" 9969 - version = "0.13.5" 9970 - source = "registry+https://github.com/rust-lang/crates.io-index" 9971 - checksum = "4d25c75bf9ea12c4040a97f829154768bbbce366287e2dc044af160cd79a13fd" 9972 - 9973 - [[package]] 9974 - name = "yaml-rust" 9975 - version = "0.4.5" 9976 - source = "registry+https://github.com/rust-lang/crates.io-index" 9977 - checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 9978 - dependencies = [ 9979 - "linked-hash-map", 9980 - ] 9981 - 9982 - [[package]] 9983 - name = "yansi" 9984 - version = "0.5.1" 9985 - source = "registry+https://github.com/rust-lang/crates.io-index" 9986 - checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" 9987 - 9988 - [[package]] 9989 - name = "zeroize" 9990 - version = "1.5.7" 9991 - source = "registry+https://github.com/rust-lang/crates.io-index" 9992 - checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f" 9993 - dependencies = [ 9994 - "serde", 9995 - ] 9996 - 9997 - [[package]] 9998 - name = "zstd" 9999 - version = "0.12.4" 10000 - source = "registry+https://github.com/rust-lang/crates.io-index" 10001 - checksum = "1a27595e173641171fc74a1232b7b1c7a7cb6e18222c11e9dfb9888fa424c53c" 10002 - dependencies = [ 10003 - "zstd-safe 6.0.6", 10004 - ] 10005 - 10006 - [[package]] 10007 - name = "zstd" 10008 - version = "0.13.0" 10009 - source = "registry+https://github.com/rust-lang/crates.io-index" 10010 - checksum = "bffb3309596d527cfcba7dfc6ed6052f1d39dfbd7c867aa2e865e4a449c10110" 10011 - dependencies = [ 10012 - "zstd-safe 7.0.0", 10013 - ] 10014 - 10015 - [[package]] 10016 - name = "zstd-safe" 10017 - version = "6.0.6" 10018 - source = "registry+https://github.com/rust-lang/crates.io-index" 10019 - checksum = "ee98ffd0b48ee95e6c5168188e44a54550b1564d9d530ee21d5f0eaed1069581" 10020 - dependencies = [ 10021 - "libc", 10022 - "zstd-sys", 10023 - ] 10024 - 10025 - [[package]] 10026 - name = "zstd-safe" 10027 - version = "7.0.0" 10028 - source = "registry+https://github.com/rust-lang/crates.io-index" 10029 - checksum = "43747c7422e2924c11144d5229878b98180ef8b06cca4ab5af37afc8a8d8ea3e" 10030 - dependencies = [ 10031 - "zstd-sys", 10032 - ] 10033 - 10034 - [[package]] 10035 - name = "zstd-sys" 10036 - version = "2.0.9+zstd.1.5.5" 10037 - source = "registry+https://github.com/rust-lang/crates.io-index" 10038 - checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656" 10039 - dependencies = [ 10040 - "cc", 10041 - "pkg-config", 10042 - ]
···
-141
pkgs/servers/sql/materialize/default.nix
··· 1 - { stdenv 2 - , lib 3 - , fetchFromGitHub 4 - , fetchzip 5 - , rustPlatform 6 - , bootstrap_cmds 7 - , DiskArbitration 8 - , Foundation 9 - , cmake 10 - , libiconv 11 - , openssl 12 - , perl 13 - , pkg-config 14 - , protobuf 15 - , libclang 16 - , rdkafka 17 - }: 18 - 19 - let 20 - fetchNpmPackage = {name, version, hash, js_prod_file, js_dev_file, ...} @ args: 21 - let 22 - package = fetchzip { 23 - url = "https://registry.npmjs.org/${name}/-/${baseNameOf name}-${version}.tgz"; 24 - inherit hash; 25 - }; 26 - 27 - files = with args; [ 28 - { src = js_prod_file; dst = "./src/environmentd/src/http/static/js/vendor/${name}.js"; } 29 - { src = js_prod_file; dst = "./src/prof-http/src/http/static/js/vendor/${name}.js"; } 30 - { src = js_dev_file; dst = "./src/environmentd/src/http/static-dev/js/vendor/${name}.js"; } 31 - { src = js_dev_file; dst = "./src/prof-http/src/http/static-dev/js/vendor/${name}.js"; } 32 - ] ++ lib.optionals (args ? css_file) [ 33 - { src = css_file; dst = "./src/environmentd/src/http/static/css/vendor/${name}.css"; } 34 - { src = css_file; dst = "./src/prof-http/src/http/static/css/vendor/${name}.css"; } 35 - ] 36 - ++ lib.optionals (args ? extra_file) [ 37 - { src = extra_file.src; dst = "./src/environmentd/src/http/static/${extra_file.dst}";} 38 - { src = extra_file.src; dst = "./src/prof-http/src/http/static/${extra_file.dst}";} 39 - ]; 40 - in 41 - lib.concatStringsSep "\n" (lib.forEach files ({src, dst}: '' 42 - mkdir -p "${dirOf dst}" 43 - cp "${package}/${src}" "${dst}" 44 - '')); 45 - 46 - npmPackages = import ./npm_deps.nix; 47 - in 48 - rustPlatform.buildRustPackage rec { 49 - pname = "materialize"; 50 - version = "0.84.2"; 51 - MZ_DEV_BUILD_SHA = "9f8cf75b461d288335cb6a7a73aaa670bab4a466"; 52 - 53 - src = fetchFromGitHub { 54 - owner = "MaterializeInc"; 55 - repo = pname; 56 - rev = "v${version}"; 57 - hash = "sha256-+cvTCiTbuaPYPIyDxQlMWdJA5/6cbMoiTcSmjj5KPjs="; 58 - fetchSubmodules = true; 59 - }; 60 - 61 - postPatch = '' 62 - ${lib.concatStringsSep "\n" (map fetchNpmPackage npmPackages)} 63 - substituteInPlace ./misc/dist/materialized.service \ 64 - --replace /usr/bin $out/bin \ 65 - --replace _Materialize root 66 - substituteInPlace ./src/catalog/build.rs \ 67 - --replace '&[ ' '&["."' 68 - ''; 69 - 70 - # needed for internal protobuf c wrapper library 71 - env.PROTOC = "${protobuf}/bin/protoc"; 72 - env.PROTOC_INCLUDE = "${protobuf}/include"; 73 - # needed to dynamically link rdkafka 74 - env.CARGO_FEATURE_DYNAMIC_LINKING=1; 75 - 76 - cargoLock = { 77 - lockFile = ./Cargo.lock; 78 - outputHashes = { 79 - "columnation-0.1.0" = "sha256-VRDQqIVLayEnMHeth4cjsS/FYah3B3mwYEGnv8jpKs8="; 80 - "differential-dataflow-0.12.0" = "sha256-cEmtDXOZSy4rDFZ7gCd7lx6wH+m1S9vphjb+wO4MSAM="; 81 - "eventsource-client-0.11.0" = "sha256-FeEWV2yy1et5mna0TyAnakXlcIR42Aq97Lfjjlom8T0="; 82 - "launchdarkly-server-sdk-1.0.0" = "sha256-fSWiV9mNf5WBkWDNckiUR3URQ8lJ4GZURxbYO/753sU="; 83 - "librocksdb-sys-0.11.0+8.3.2" = "sha256-bnAvH2z9n26MYFhTN/+Yz+7lEdNKKmHJOoHkxTdZGvw="; 84 - "openssh-0.9.9" = "sha256-2jaQN6PhavUtlWwqCn2VXEg213uj7BQ+FIrhnL3rb8Q="; 85 - "postgres-0.19.5" = "sha256-i0mURHTCMrgaW1DD1CihWMdZ3zoNI14dCpq/ja8RW9E="; 86 - "postgres_array-0.11.0" = "sha256-ealgPVExRIFUt0QVao8H7Q7u/PTuCbpGrk6Tm5jVwZ0="; 87 - "proptest-1.0.0" = "sha256-sJbPQIVeHZZiRXssRpJWRbD9l8QnfwVcpGu6knjAe5o="; 88 - "rdkafka-0.29.0" = "sha256-48CMvJ4PoVfKyiNMSpCGBtj36j2CF1E8a/QQ/urfiPc="; 89 - "reqwest-middleware-0.2.3" = "sha256-zzlQycH5dmgM8ew1gy8m5r6Q2ib7LXnUeX69M3ih+sY="; 90 - "serde-value-0.7.0" = "sha256-ewEYsf1+9MmLuSm5KbO326ngGB79i00lAp2NMHuuxw8="; 91 - "timely-0.12.0" = "sha256-wJtHJ9ygPVusN5Io8SjZGo1r7lcrrcauESSC+9038AU="; 92 - "tonic-build-0.9.2" = "sha256-cGvHjgmdr3NU1phwUfMvEE6uU12fOlhTlL2LoWeOO4I="; 93 - "tracing-opentelemetry-0.22.0" = "sha256-mawDGrue/e3dPYVG0ANs9nZ+xmQyd1YTWH8QmE6VD0U="; 94 - }; 95 - }; 96 - 97 - nativeBuildInputs = [ 98 - cmake 99 - perl 100 - pkg-config 101 - rustPlatform.bindgenHook 102 - ] 103 - # Provides the mig command used by the krb5-src build script 104 - ++ lib.optional stdenv.hostPlatform.isDarwin bootstrap_cmds; 105 - 106 - # Needed to get openssl-sys to use pkg-config. 107 - OPENSSL_NO_VENDOR = 1; 108 - 109 - buildInputs = [ openssl rdkafka libclang ] 110 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ libiconv DiskArbitration Foundation ]; 111 - 112 - # the check phase requires linking with rocksdb which can be a problem since 113 - # the rust rocksdb crate is not updated very often. 114 - doCheck = false; 115 - 116 - # Skip tests that use the network 117 - checkFlags = [ 118 - "--exact" 119 - "--skip test_client" 120 - "--skip test_client_errors" 121 - "--skip test_client_all_subjects" 122 - "--skip test_client_subject_and_references" 123 - "--skip test_no_block" 124 - "--skip test_safe_mode" 125 - "--skip test_tls" 126 - ]; 127 - 128 - cargoBuildFlags = [ "--bin environmentd --bin clusterd" ]; 129 - 130 - postInstall = '' 131 - install --mode=444 -D ./misc/dist/materialized.service $out/etc/systemd/system/materialized.service 132 - ''; 133 - 134 - meta = with lib; { 135 - homepage = "https://materialize.com"; 136 - description = "Streaming SQL materialized view engine for real-time applications"; 137 - license = licenses.bsl11; 138 - platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" ]; 139 - maintainers = [ maintainers.petrosagg ]; 140 - }; 141 - }
···
pkgs/servers/sql/materialize/npm_deps.nix pkgs/by-name/ma/materialize/npm_deps.nix
-5
pkgs/top-level/all-packages.nix
··· 11712 yarn-berry = yarn-berry.override { nodejs = nodejs-slim_22; }; 11713 }; 11714 11715 - materialize = callPackage ../servers/sql/materialize { 11716 - inherit (buildPackages.darwin) bootstrap_cmds; 11717 - inherit (darwin.apple_sdk.frameworks) DiskArbitration Foundation; 11718 - }; 11719 - 11720 micro-full = micro.wrapper.override { 11721 extraPackages = [ 11722 wl-clipboard
··· 11712 yarn-berry = yarn-berry.override { nodejs = nodejs-slim_22; }; 11713 }; 11714 11715 micro-full = micro.wrapper.override { 11716 extraPackages = [ 11717 wl-clipboard