Merge pull request #294960 from aaronjheng/replibyte

replibyte: 0.9.7 -> 0.10.0

authored by Pol Dellaiera and committed by GitHub 3ba95f71 f38cc448

+4219 -13
+4205
pkgs/development/tools/database/replibyte/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 = "addr2line" 7 + version = "0.21.0" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" 10 + dependencies = [ 11 + "gimli 0.28.1", 12 + ] 13 + 14 + [[package]] 15 + name = "adler" 16 + version = "1.0.2" 17 + source = "registry+https://github.com/rust-lang/crates.io-index" 18 + checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 + 20 + [[package]] 21 + name = "aead" 22 + version = "0.4.3" 23 + source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877" 25 + dependencies = [ 26 + "generic-array", 27 + ] 28 + 29 + [[package]] 30 + name = "aes" 31 + version = "0.7.5" 32 + source = "registry+https://github.com/rust-lang/crates.io-index" 33 + checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8" 34 + dependencies = [ 35 + "cfg-if 1.0.0", 36 + "cipher", 37 + "cpufeatures", 38 + "opaque-debug", 39 + ] 40 + 41 + [[package]] 42 + name = "aes-gcm" 43 + version = "0.9.4" 44 + source = "registry+https://github.com/rust-lang/crates.io-index" 45 + checksum = "df5f85a83a7d8b0442b6aa7b504b8212c1733da07b98aae43d4bc21b2cb3cdf6" 46 + dependencies = [ 47 + "aead", 48 + "aes", 49 + "cipher", 50 + "ctr", 51 + "ghash", 52 + "subtle", 53 + ] 54 + 55 + [[package]] 56 + name = "ahash" 57 + version = "0.7.8" 58 + source = "registry+https://github.com/rust-lang/crates.io-index" 59 + checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" 60 + dependencies = [ 61 + "getrandom 0.2.12", 62 + "once_cell", 63 + "version_check", 64 + ] 65 + 66 + [[package]] 67 + name = "ahash" 68 + version = "0.8.11" 69 + source = "registry+https://github.com/rust-lang/crates.io-index" 70 + checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 71 + dependencies = [ 72 + "cfg-if 1.0.0", 73 + "getrandom 0.2.12", 74 + "once_cell", 75 + "version_check", 76 + "zerocopy", 77 + ] 78 + 79 + [[package]] 80 + name = "aho-corasick" 81 + version = "1.1.2" 82 + source = "registry+https://github.com/rust-lang/crates.io-index" 83 + checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 84 + dependencies = [ 85 + "memchr", 86 + ] 87 + 88 + [[package]] 89 + name = "android-tzdata" 90 + version = "0.1.1" 91 + source = "registry+https://github.com/rust-lang/crates.io-index" 92 + checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 93 + 94 + [[package]] 95 + name = "android_system_properties" 96 + version = "0.1.5" 97 + source = "registry+https://github.com/rust-lang/crates.io-index" 98 + checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 99 + dependencies = [ 100 + "libc", 101 + ] 102 + 103 + [[package]] 104 + name = "anyhow" 105 + version = "1.0.80" 106 + source = "registry+https://github.com/rust-lang/crates.io-index" 107 + checksum = "5ad32ce52e4161730f7098c077cd2ed6229b5804ccf99e5366be1ab72a98b4e1" 108 + 109 + [[package]] 110 + name = "arrayref" 111 + version = "0.3.7" 112 + source = "registry+https://github.com/rust-lang/crates.io-index" 113 + checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" 114 + 115 + [[package]] 116 + name = "arrayvec" 117 + version = "0.5.2" 118 + source = "registry+https://github.com/rust-lang/crates.io-index" 119 + checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" 120 + 121 + [[package]] 122 + name = "atty" 123 + version = "0.2.14" 124 + source = "registry+https://github.com/rust-lang/crates.io-index" 125 + checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 126 + dependencies = [ 127 + "hermit-abi 0.1.19", 128 + "libc", 129 + "winapi", 130 + ] 131 + 132 + [[package]] 133 + name = "autocfg" 134 + version = "0.1.8" 135 + source = "registry+https://github.com/rust-lang/crates.io-index" 136 + checksum = "0dde43e75fd43e8a1bf86103336bc699aa8d17ad1be60c76c0bdfd4828e19b78" 137 + dependencies = [ 138 + "autocfg 1.1.0", 139 + ] 140 + 141 + [[package]] 142 + name = "autocfg" 143 + version = "1.1.0" 144 + source = "registry+https://github.com/rust-lang/crates.io-index" 145 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 146 + 147 + [[package]] 148 + name = "aws-config" 149 + version = "0.9.0" 150 + source = "registry+https://github.com/rust-lang/crates.io-index" 151 + checksum = "2da63196d2d0dd38667b404459a35d32562a8d83c1f46c5b789ab89ab176fd53" 152 + dependencies = [ 153 + "aws-http", 154 + "aws-sdk-sso", 155 + "aws-sdk-sts", 156 + "aws-smithy-async", 157 + "aws-smithy-client", 158 + "aws-smithy-http", 159 + "aws-smithy-http-tower", 160 + "aws-smithy-json", 161 + "aws-smithy-types", 162 + "aws-types", 163 + "bytes", 164 + "hex", 165 + "http", 166 + "hyper", 167 + "ring 0.16.20", 168 + "tokio", 169 + "tower", 170 + "tracing", 171 + "zeroize", 172 + ] 173 + 174 + [[package]] 175 + name = "aws-endpoint" 176 + version = "0.9.0" 177 + source = "registry+https://github.com/rust-lang/crates.io-index" 178 + checksum = "5279590d48e92b287f864e099c7e851af03a5e184a57cec0959872cee297c7a0" 179 + dependencies = [ 180 + "aws-smithy-http", 181 + "aws-types", 182 + "http", 183 + "regex", 184 + "tracing", 185 + ] 186 + 187 + [[package]] 188 + name = "aws-http" 189 + version = "0.9.0" 190 + source = "registry+https://github.com/rust-lang/crates.io-index" 191 + checksum = "e7046bdd807c70caf28d6dbc69b9d6d8dda1728577866d3ff3862de585b8b0eb" 192 + dependencies = [ 193 + "aws-smithy-http", 194 + "aws-smithy-types", 195 + "aws-types", 196 + "http", 197 + "lazy_static", 198 + "percent-encoding", 199 + "tracing", 200 + ] 201 + 202 + [[package]] 203 + name = "aws-sdk-s3" 204 + version = "0.9.0" 205 + source = "registry+https://github.com/rust-lang/crates.io-index" 206 + checksum = "c4fd99b22cbdb894925468005ad55defcfe0ce294fadcc5f7be9d9119646b0de" 207 + dependencies = [ 208 + "aws-endpoint", 209 + "aws-http", 210 + "aws-sig-auth", 211 + "aws-sigv4", 212 + "aws-smithy-async", 213 + "aws-smithy-client", 214 + "aws-smithy-eventstream", 215 + "aws-smithy-http", 216 + "aws-smithy-http-tower", 217 + "aws-smithy-types", 218 + "aws-smithy-xml", 219 + "aws-types", 220 + "bytes", 221 + "http", 222 + "md5", 223 + "tokio-stream", 224 + "tower", 225 + ] 226 + 227 + [[package]] 228 + name = "aws-sdk-sso" 229 + version = "0.9.0" 230 + source = "registry+https://github.com/rust-lang/crates.io-index" 231 + checksum = "96f9038b498944025a39e426ae38f64e3e8481a9d675469580e1de7397b46ed5" 232 + dependencies = [ 233 + "aws-endpoint", 234 + "aws-http", 235 + "aws-sig-auth", 236 + "aws-smithy-async", 237 + "aws-smithy-client", 238 + "aws-smithy-http", 239 + "aws-smithy-http-tower", 240 + "aws-smithy-json", 241 + "aws-smithy-types", 242 + "aws-types", 243 + "bytes", 244 + "http", 245 + "tokio-stream", 246 + "tower", 247 + ] 248 + 249 + [[package]] 250 + name = "aws-sdk-sts" 251 + version = "0.9.0" 252 + source = "registry+https://github.com/rust-lang/crates.io-index" 253 + checksum = "e717e67debcd7f9d87563d08e7d40e3c5c28634a8badc491650d5ad2305befd3" 254 + dependencies = [ 255 + "aws-endpoint", 256 + "aws-http", 257 + "aws-sig-auth", 258 + "aws-smithy-async", 259 + "aws-smithy-client", 260 + "aws-smithy-http", 261 + "aws-smithy-http-tower", 262 + "aws-smithy-query", 263 + "aws-smithy-types", 264 + "aws-smithy-xml", 265 + "aws-types", 266 + "bytes", 267 + "http", 268 + "tower", 269 + ] 270 + 271 + [[package]] 272 + name = "aws-sig-auth" 273 + version = "0.9.0" 274 + source = "registry+https://github.com/rust-lang/crates.io-index" 275 + checksum = "a0e6e4ba09f502057ad6a4ebf3627f9dae8402e366cf7b36ca1c09cbff8b5834" 276 + dependencies = [ 277 + "aws-sigv4", 278 + "aws-smithy-eventstream", 279 + "aws-smithy-http", 280 + "aws-types", 281 + "http", 282 + "thiserror", 283 + "tracing", 284 + ] 285 + 286 + [[package]] 287 + name = "aws-sigv4" 288 + version = "0.9.1" 289 + source = "registry+https://github.com/rust-lang/crates.io-index" 290 + checksum = "b746b4628b27221170f81a0f35a7f8cefa9988d7958249f4b78a7b3bae77d7f1" 291 + dependencies = [ 292 + "aws-smithy-eventstream", 293 + "aws-smithy-http", 294 + "bytes", 295 + "form_urlencoded", 296 + "hex", 297 + "http", 298 + "once_cell", 299 + "percent-encoding", 300 + "regex", 301 + "ring 0.16.20", 302 + "time 0.3.34", 303 + "tracing", 304 + ] 305 + 306 + [[package]] 307 + name = "aws-smithy-async" 308 + version = "0.39.0" 309 + source = "registry+https://github.com/rust-lang/crates.io-index" 310 + checksum = "66ab5373d24e1651860240f122a8d956f7a2094d4553c78979617a7fac640030" 311 + dependencies = [ 312 + "futures-util", 313 + "pin-project-lite", 314 + "tokio", 315 + "tokio-stream", 316 + ] 317 + 318 + [[package]] 319 + name = "aws-smithy-client" 320 + version = "0.39.0" 321 + source = "registry+https://github.com/rust-lang/crates.io-index" 322 + checksum = "88e8a92747322eace67f666402a5949da27675f60a2b9098b84b63edef8e6980" 323 + dependencies = [ 324 + "aws-smithy-async", 325 + "aws-smithy-http", 326 + "aws-smithy-http-tower", 327 + "aws-smithy-types", 328 + "bytes", 329 + "fastrand 1.9.0", 330 + "http", 331 + "http-body", 332 + "hyper", 333 + "hyper-rustls", 334 + "lazy_static", 335 + "pin-project", 336 + "pin-project-lite", 337 + "tokio", 338 + "tower", 339 + "tracing", 340 + ] 341 + 342 + [[package]] 343 + name = "aws-smithy-eventstream" 344 + version = "0.39.0" 345 + source = "registry+https://github.com/rust-lang/crates.io-index" 346 + checksum = "775b1de8d55fd1cda393c3d81cb5c3dc0e1cac38170883049e2d7a8e16cefad1" 347 + dependencies = [ 348 + "aws-smithy-types", 349 + "bytes", 350 + "crc32fast", 351 + ] 352 + 353 + [[package]] 354 + name = "aws-smithy-http" 355 + version = "0.39.0" 356 + source = "registry+https://github.com/rust-lang/crates.io-index" 357 + checksum = "579d0c2ae96c700499c5330f082c4170b0535835f01eb845056324aa0abd04b4" 358 + dependencies = [ 359 + "aws-smithy-eventstream", 360 + "aws-smithy-types", 361 + "bytes", 362 + "bytes-utils", 363 + "futures-core", 364 + "http", 365 + "http-body", 366 + "hyper", 367 + "once_cell", 368 + "percent-encoding", 369 + "pin-project", 370 + "tokio", 371 + "tokio-util 0.6.10", 372 + "tracing", 373 + ] 374 + 375 + [[package]] 376 + name = "aws-smithy-http-tower" 377 + version = "0.39.0" 378 + source = "registry+https://github.com/rust-lang/crates.io-index" 379 + checksum = "101a2e213acebe624cfb9bfc944de5e33c849e0df0f09c3d3aa3b54368dbe7af" 380 + dependencies = [ 381 + "aws-smithy-http", 382 + "bytes", 383 + "http", 384 + "http-body", 385 + "pin-project", 386 + "tower", 387 + "tracing", 388 + ] 389 + 390 + [[package]] 391 + name = "aws-smithy-json" 392 + version = "0.39.0" 393 + source = "registry+https://github.com/rust-lang/crates.io-index" 394 + checksum = "bd21f28535a2538b77274aa590abfb6d37aece3281dfc4c9411c1625d3b9239e" 395 + dependencies = [ 396 + "aws-smithy-types", 397 + ] 398 + 399 + [[package]] 400 + name = "aws-smithy-query" 401 + version = "0.39.0" 402 + source = "registry+https://github.com/rust-lang/crates.io-index" 403 + checksum = "eb5a2c90311b0d20cf23212a15961cad2b76480863b1f7ce0608d9ece8dacdfb" 404 + dependencies = [ 405 + "aws-smithy-types", 406 + "urlencoding", 407 + ] 408 + 409 + [[package]] 410 + name = "aws-smithy-types" 411 + version = "0.39.0" 412 + source = "registry+https://github.com/rust-lang/crates.io-index" 413 + checksum = "962f2da621cd29f272636eebce39ca321c91e02bbb7eb848c4587ac14933d339" 414 + dependencies = [ 415 + "itoa", 416 + "num-integer", 417 + "ryu", 418 + "time 0.3.34", 419 + ] 420 + 421 + [[package]] 422 + name = "aws-smithy-xml" 423 + version = "0.39.0" 424 + source = "registry+https://github.com/rust-lang/crates.io-index" 425 + checksum = "829c7efd92b7a6d0536ceb48fd93a289ddf8763c67bffe875d82eae3f9886546" 426 + dependencies = [ 427 + "thiserror", 428 + "xmlparser", 429 + ] 430 + 431 + [[package]] 432 + name = "aws-types" 433 + version = "0.9.0" 434 + source = "registry+https://github.com/rust-lang/crates.io-index" 435 + checksum = "68159725aa77553dbc6028f36d8378563cd45b18ef9cf03d1515ac469efacf13" 436 + dependencies = [ 437 + "aws-smithy-async", 438 + "aws-smithy-client", 439 + "aws-smithy-types", 440 + "rustc_version 0.4.0", 441 + "tracing", 442 + "zeroize", 443 + ] 444 + 445 + [[package]] 446 + name = "backtrace" 447 + version = "0.3.69" 448 + source = "registry+https://github.com/rust-lang/crates.io-index" 449 + checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" 450 + dependencies = [ 451 + "addr2line", 452 + "cc", 453 + "cfg-if 1.0.0", 454 + "libc", 455 + "miniz_oxide", 456 + "object 0.32.2", 457 + "rustc-demangle", 458 + ] 459 + 460 + [[package]] 461 + name = "base-x" 462 + version = "0.2.11" 463 + source = "registry+https://github.com/rust-lang/crates.io-index" 464 + checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 465 + 466 + [[package]] 467 + name = "base64" 468 + version = "0.13.1" 469 + source = "registry+https://github.com/rust-lang/crates.io-index" 470 + checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 471 + 472 + [[package]] 473 + name = "base64" 474 + version = "0.21.7" 475 + source = "registry+https://github.com/rust-lang/crates.io-index" 476 + checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 477 + 478 + [[package]] 479 + name = "bitflags" 480 + version = "1.3.2" 481 + source = "registry+https://github.com/rust-lang/crates.io-index" 482 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 483 + 484 + [[package]] 485 + name = "bitflags" 486 + version = "2.4.2" 487 + source = "registry+https://github.com/rust-lang/crates.io-index" 488 + checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" 489 + 490 + [[package]] 491 + name = "bitvec" 492 + version = "1.0.1" 493 + source = "registry+https://github.com/rust-lang/crates.io-index" 494 + checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 495 + dependencies = [ 496 + "funty", 497 + "radium", 498 + "tap", 499 + "wyz", 500 + ] 501 + 502 + [[package]] 503 + name = "blake2b_simd" 504 + version = "0.5.11" 505 + source = "registry+https://github.com/rust-lang/crates.io-index" 506 + checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587" 507 + dependencies = [ 508 + "arrayref", 509 + "arrayvec", 510 + "constant_time_eq", 511 + ] 512 + 513 + [[package]] 514 + name = "bson" 515 + version = "2.9.0" 516 + source = "registry+https://github.com/rust-lang/crates.io-index" 517 + checksum = "ce21468c1c9c154a85696bb25c20582511438edb6ad67f846ba1378ffdd80222" 518 + dependencies = [ 519 + "ahash 0.8.11", 520 + "base64 0.13.1", 521 + "bitvec", 522 + "hex", 523 + "indexmap 2.2.5", 524 + "js-sys", 525 + "once_cell", 526 + "rand 0.8.5", 527 + "serde", 528 + "serde_bytes", 529 + "serde_json", 530 + "time 0.3.34", 531 + "uuid", 532 + ] 533 + 534 + [[package]] 535 + name = "build_const" 536 + version = "0.2.2" 537 + source = "registry+https://github.com/rust-lang/crates.io-index" 538 + checksum = "b4ae4235e6dac0694637c763029ecea1a2ec9e4e06ec2729bd21ba4d9c863eb7" 539 + 540 + [[package]] 541 + name = "bumpalo" 542 + version = "3.15.4" 543 + source = "registry+https://github.com/rust-lang/crates.io-index" 544 + checksum = "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa" 545 + 546 + [[package]] 547 + name = "bytecheck" 548 + version = "0.6.12" 549 + source = "registry+https://github.com/rust-lang/crates.io-index" 550 + checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" 551 + dependencies = [ 552 + "bytecheck_derive", 553 + "ptr_meta", 554 + "simdutf8", 555 + ] 556 + 557 + [[package]] 558 + name = "bytecheck_derive" 559 + version = "0.6.12" 560 + source = "registry+https://github.com/rust-lang/crates.io-index" 561 + checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" 562 + dependencies = [ 563 + "proc-macro2", 564 + "quote", 565 + "syn 1.0.109", 566 + ] 567 + 568 + [[package]] 569 + name = "byteorder" 570 + version = "1.5.0" 571 + source = "registry+https://github.com/rust-lang/crates.io-index" 572 + checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 573 + 574 + [[package]] 575 + name = "bytes" 576 + version = "1.5.0" 577 + source = "registry+https://github.com/rust-lang/crates.io-index" 578 + checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 579 + 580 + [[package]] 581 + name = "bytes-utils" 582 + version = "0.1.4" 583 + source = "registry+https://github.com/rust-lang/crates.io-index" 584 + checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35" 585 + dependencies = [ 586 + "bytes", 587 + "either", 588 + ] 589 + 590 + [[package]] 591 + name = "cc" 592 + version = "1.0.90" 593 + source = "registry+https://github.com/rust-lang/crates.io-index" 594 + checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5" 595 + 596 + [[package]] 597 + name = "cfg-if" 598 + version = "0.1.10" 599 + source = "registry+https://github.com/rust-lang/crates.io-index" 600 + checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 601 + 602 + [[package]] 603 + name = "cfg-if" 604 + version = "1.0.0" 605 + source = "registry+https://github.com/rust-lang/crates.io-index" 606 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 607 + 608 + [[package]] 609 + name = "cfg_aliases" 610 + version = "0.1.1" 611 + source = "registry+https://github.com/rust-lang/crates.io-index" 612 + checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" 613 + 614 + [[package]] 615 + name = "chrono" 616 + version = "0.4.35" 617 + source = "registry+https://github.com/rust-lang/crates.io-index" 618 + checksum = "8eaf5903dcbc0a39312feb77df2ff4c76387d591b9fc7b04a238dcf8bb62639a" 619 + dependencies = [ 620 + "android-tzdata", 621 + "iana-time-zone", 622 + "js-sys", 623 + "num-traits", 624 + "serde", 625 + "wasm-bindgen", 626 + "windows-targets 0.52.4", 627 + ] 628 + 629 + [[package]] 630 + name = "cipher" 631 + version = "0.3.0" 632 + source = "registry+https://github.com/rust-lang/crates.io-index" 633 + checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7" 634 + dependencies = [ 635 + "generic-array", 636 + ] 637 + 638 + [[package]] 639 + name = "clap" 640 + version = "3.2.25" 641 + source = "registry+https://github.com/rust-lang/crates.io-index" 642 + checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123" 643 + dependencies = [ 644 + "atty", 645 + "bitflags 1.3.2", 646 + "clap_derive", 647 + "clap_lex", 648 + "indexmap 1.9.3", 649 + "once_cell", 650 + "strsim", 651 + "termcolor", 652 + "textwrap", 653 + ] 654 + 655 + [[package]] 656 + name = "clap_derive" 657 + version = "3.2.25" 658 + source = "registry+https://github.com/rust-lang/crates.io-index" 659 + checksum = "ae6371b8bdc8b7d3959e9cf7b22d4435ef3e79e138688421ec654acf8c81b008" 660 + dependencies = [ 661 + "heck", 662 + "proc-macro-error", 663 + "proc-macro2", 664 + "quote", 665 + "syn 1.0.109", 666 + ] 667 + 668 + [[package]] 669 + name = "clap_lex" 670 + version = "0.2.4" 671 + source = "registry+https://github.com/rust-lang/crates.io-index" 672 + checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 673 + dependencies = [ 674 + "os_str_bytes", 675 + ] 676 + 677 + [[package]] 678 + name = "cloudabi" 679 + version = "0.0.3" 680 + source = "registry+https://github.com/rust-lang/crates.io-index" 681 + checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" 682 + dependencies = [ 683 + "bitflags 1.3.2", 684 + ] 685 + 686 + [[package]] 687 + name = "console" 688 + version = "0.15.8" 689 + source = "registry+https://github.com/rust-lang/crates.io-index" 690 + checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" 691 + dependencies = [ 692 + "encode_unicode", 693 + "lazy_static", 694 + "libc", 695 + "windows-sys 0.52.0", 696 + ] 697 + 698 + [[package]] 699 + name = "console_error_panic_hook" 700 + version = "0.1.7" 701 + source = "registry+https://github.com/rust-lang/crates.io-index" 702 + checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc" 703 + dependencies = [ 704 + "cfg-if 1.0.0", 705 + "wasm-bindgen", 706 + ] 707 + 708 + [[package]] 709 + name = "const_fn" 710 + version = "0.4.9" 711 + source = "registry+https://github.com/rust-lang/crates.io-index" 712 + checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935" 713 + 714 + [[package]] 715 + name = "constant_time_eq" 716 + version = "0.1.5" 717 + source = "registry+https://github.com/rust-lang/crates.io-index" 718 + checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" 719 + 720 + [[package]] 721 + name = "core-foundation" 722 + version = "0.9.4" 723 + source = "registry+https://github.com/rust-lang/crates.io-index" 724 + checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 725 + dependencies = [ 726 + "core-foundation-sys", 727 + "libc", 728 + ] 729 + 730 + [[package]] 731 + name = "core-foundation-sys" 732 + version = "0.8.6" 733 + source = "registry+https://github.com/rust-lang/crates.io-index" 734 + checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 735 + 736 + [[package]] 737 + name = "corosensei" 738 + version = "0.1.4" 739 + source = "registry+https://github.com/rust-lang/crates.io-index" 740 + checksum = "80128832c58ea9cbd041d2a759ec449224487b2c1e400453d99d244eead87a8e" 741 + dependencies = [ 742 + "autocfg 1.1.0", 743 + "cfg-if 1.0.0", 744 + "libc", 745 + "scopeguard", 746 + "windows-sys 0.33.0", 747 + ] 748 + 749 + [[package]] 750 + name = "cpufeatures" 751 + version = "0.2.12" 752 + source = "registry+https://github.com/rust-lang/crates.io-index" 753 + checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 754 + dependencies = [ 755 + "libc", 756 + ] 757 + 758 + [[package]] 759 + name = "cranelift-bforest" 760 + version = "0.82.3" 761 + source = "registry+https://github.com/rust-lang/crates.io-index" 762 + checksum = "38faa2a16616c8e78a18d37b4726b98bfd2de192f2fdc8a39ddf568a408a0f75" 763 + dependencies = [ 764 + "cranelift-entity", 765 + ] 766 + 767 + [[package]] 768 + name = "cranelift-codegen" 769 + version = "0.82.3" 770 + source = "registry+https://github.com/rust-lang/crates.io-index" 771 + checksum = "26f192472a3ba23860afd07d2b0217dc628f21fcc72617aa1336d98e1671f33b" 772 + dependencies = [ 773 + "cranelift-bforest", 774 + "cranelift-codegen-meta", 775 + "cranelift-codegen-shared", 776 + "cranelift-entity", 777 + "gimli 0.26.2", 778 + "log", 779 + "regalloc", 780 + "smallvec", 781 + "target-lexicon", 782 + ] 783 + 784 + [[package]] 785 + name = "cranelift-codegen-meta" 786 + version = "0.82.3" 787 + source = "registry+https://github.com/rust-lang/crates.io-index" 788 + checksum = "0f32ddb89e9b89d3d9b36a5b7d7ea3261c98235a76ac95ba46826b8ec40b1a24" 789 + dependencies = [ 790 + "cranelift-codegen-shared", 791 + ] 792 + 793 + [[package]] 794 + name = "cranelift-codegen-shared" 795 + version = "0.82.3" 796 + source = "registry+https://github.com/rust-lang/crates.io-index" 797 + checksum = "01fd0d9f288cc1b42d9333b7a776b17e278fc888c28e6a0f09b5573d45a150bc" 798 + 799 + [[package]] 800 + name = "cranelift-entity" 801 + version = "0.82.3" 802 + source = "registry+https://github.com/rust-lang/crates.io-index" 803 + checksum = "9e3bfe172b83167604601faf9dc60453e0d0a93415b57a9c4d1a7ae6849185cf" 804 + 805 + [[package]] 806 + name = "cranelift-frontend" 807 + version = "0.82.3" 808 + source = "registry+https://github.com/rust-lang/crates.io-index" 809 + checksum = "a006e3e32d80ce0e4ba7f1f9ddf66066d052a8c884a110b91d05404d6ce26dce" 810 + dependencies = [ 811 + "cranelift-codegen", 812 + "log", 813 + "smallvec", 814 + "target-lexicon", 815 + ] 816 + 817 + [[package]] 818 + name = "crc" 819 + version = "1.8.1" 820 + source = "registry+https://github.com/rust-lang/crates.io-index" 821 + checksum = "d663548de7f5cca343f1e0a48d14dcfb0e9eb4e079ec58883b7251539fa10aeb" 822 + dependencies = [ 823 + "build_const", 824 + ] 825 + 826 + [[package]] 827 + name = "crc32fast" 828 + version = "1.4.0" 829 + source = "registry+https://github.com/rust-lang/crates.io-index" 830 + checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa" 831 + dependencies = [ 832 + "cfg-if 1.0.0", 833 + ] 834 + 835 + [[package]] 836 + name = "crossbeam-deque" 837 + version = "0.8.5" 838 + source = "registry+https://github.com/rust-lang/crates.io-index" 839 + checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 840 + dependencies = [ 841 + "crossbeam-epoch", 842 + "crossbeam-utils", 843 + ] 844 + 845 + [[package]] 846 + name = "crossbeam-epoch" 847 + version = "0.9.18" 848 + source = "registry+https://github.com/rust-lang/crates.io-index" 849 + checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 850 + dependencies = [ 851 + "crossbeam-utils", 852 + ] 853 + 854 + [[package]] 855 + name = "crossbeam-utils" 856 + version = "0.8.19" 857 + source = "registry+https://github.com/rust-lang/crates.io-index" 858 + checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 859 + 860 + [[package]] 861 + name = "csv" 862 + version = "1.3.0" 863 + source = "registry+https://github.com/rust-lang/crates.io-index" 864 + checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe" 865 + dependencies = [ 866 + "csv-core", 867 + "itoa", 868 + "ryu", 869 + "serde", 870 + ] 871 + 872 + [[package]] 873 + name = "csv-core" 874 + version = "0.1.11" 875 + source = "registry+https://github.com/rust-lang/crates.io-index" 876 + checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70" 877 + dependencies = [ 878 + "memchr", 879 + ] 880 + 881 + [[package]] 882 + name = "ct-logs" 883 + version = "0.8.0" 884 + source = "registry+https://github.com/rust-lang/crates.io-index" 885 + checksum = "c1a816186fa68d9e426e3cb4ae4dff1fcd8e4a2c34b781bf7a822574a0d0aac8" 886 + dependencies = [ 887 + "sct 0.6.1", 888 + ] 889 + 890 + [[package]] 891 + name = "ctr" 892 + version = "0.8.0" 893 + source = "registry+https://github.com/rust-lang/crates.io-index" 894 + checksum = "049bb91fb4aaf0e3c7efa6cd5ef877dbbbd15b39dad06d9948de4ec8a75761ea" 895 + dependencies = [ 896 + "cipher", 897 + ] 898 + 899 + [[package]] 900 + name = "ctrlc" 901 + version = "3.4.4" 902 + source = "registry+https://github.com/rust-lang/crates.io-index" 903 + checksum = "672465ae37dc1bc6380a6547a8883d5dd397b0f1faaad4f265726cc7042a5345" 904 + dependencies = [ 905 + "nix", 906 + "windows-sys 0.52.0", 907 + ] 908 + 909 + [[package]] 910 + name = "darling" 911 + version = "0.20.8" 912 + source = "registry+https://github.com/rust-lang/crates.io-index" 913 + checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391" 914 + dependencies = [ 915 + "darling_core", 916 + "darling_macro", 917 + ] 918 + 919 + [[package]] 920 + name = "darling_core" 921 + version = "0.20.8" 922 + source = "registry+https://github.com/rust-lang/crates.io-index" 923 + checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f" 924 + dependencies = [ 925 + "fnv", 926 + "ident_case", 927 + "proc-macro2", 928 + "quote", 929 + "syn 2.0.52", 930 + ] 931 + 932 + [[package]] 933 + name = "darling_macro" 934 + version = "0.20.8" 935 + source = "registry+https://github.com/rust-lang/crates.io-index" 936 + checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f" 937 + dependencies = [ 938 + "darling_core", 939 + "quote", 940 + "syn 2.0.52", 941 + ] 942 + 943 + [[package]] 944 + name = "deranged" 945 + version = "0.3.11" 946 + source = "registry+https://github.com/rust-lang/crates.io-index" 947 + checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 948 + dependencies = [ 949 + "powerfmt", 950 + ] 951 + 952 + [[package]] 953 + name = "deunicode" 954 + version = "1.4.3" 955 + source = "registry+https://github.com/rust-lang/crates.io-index" 956 + checksum = "b6e854126756c496b8c81dec88f9a706b15b875c5849d4097a3854476b9fdf94" 957 + 958 + [[package]] 959 + name = "dirs" 960 + version = "1.0.5" 961 + source = "registry+https://github.com/rust-lang/crates.io-index" 962 + checksum = "3fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901" 963 + dependencies = [ 964 + "libc", 965 + "redox_users", 966 + "winapi", 967 + ] 968 + 969 + [[package]] 970 + name = "discard" 971 + version = "1.0.4" 972 + source = "registry+https://github.com/rust-lang/crates.io-index" 973 + checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0" 974 + 975 + [[package]] 976 + name = "dump-parser" 977 + version = "0.10.0" 978 + dependencies = [ 979 + "bson", 980 + "crc", 981 + "serde", 982 + ] 983 + 984 + [[package]] 985 + name = "either" 986 + version = "1.10.0" 987 + source = "registry+https://github.com/rust-lang/crates.io-index" 988 + checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a" 989 + 990 + [[package]] 991 + name = "encode_unicode" 992 + version = "0.3.6" 993 + source = "registry+https://github.com/rust-lang/crates.io-index" 994 + checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 995 + 996 + [[package]] 997 + name = "encoding_rs" 998 + version = "0.8.33" 999 + source = "registry+https://github.com/rust-lang/crates.io-index" 1000 + checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 1001 + dependencies = [ 1002 + "cfg-if 1.0.0", 1003 + ] 1004 + 1005 + [[package]] 1006 + name = "enum-iterator" 1007 + version = "0.7.0" 1008 + source = "registry+https://github.com/rust-lang/crates.io-index" 1009 + checksum = "4eeac5c5edb79e4e39fe8439ef35207780a11f69c52cbe424ce3dfad4cb78de6" 1010 + dependencies = [ 1011 + "enum-iterator-derive", 1012 + ] 1013 + 1014 + [[package]] 1015 + name = "enum-iterator-derive" 1016 + version = "0.7.0" 1017 + source = "registry+https://github.com/rust-lang/crates.io-index" 1018 + checksum = "c134c37760b27a871ba422106eedbb8247da973a09e82558bf26d619c882b159" 1019 + dependencies = [ 1020 + "proc-macro2", 1021 + "quote", 1022 + "syn 1.0.109", 1023 + ] 1024 + 1025 + [[package]] 1026 + name = "enumset" 1027 + version = "1.1.3" 1028 + source = "registry+https://github.com/rust-lang/crates.io-index" 1029 + checksum = "226c0da7462c13fb57e5cc9e0dc8f0635e7d27f276a3a7fd30054647f669007d" 1030 + dependencies = [ 1031 + "enumset_derive", 1032 + ] 1033 + 1034 + [[package]] 1035 + name = "enumset_derive" 1036 + version = "0.8.1" 1037 + source = "registry+https://github.com/rust-lang/crates.io-index" 1038 + checksum = "e08b6c6ab82d70f08844964ba10c7babb716de2ecaeab9be5717918a5177d3af" 1039 + dependencies = [ 1040 + "darling", 1041 + "proc-macro2", 1042 + "quote", 1043 + "syn 2.0.52", 1044 + ] 1045 + 1046 + [[package]] 1047 + name = "env_logger" 1048 + version = "0.9.3" 1049 + source = "registry+https://github.com/rust-lang/crates.io-index" 1050 + checksum = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7" 1051 + dependencies = [ 1052 + "atty", 1053 + "humantime", 1054 + "log", 1055 + "regex", 1056 + "termcolor", 1057 + ] 1058 + 1059 + [[package]] 1060 + name = "equivalent" 1061 + version = "1.0.1" 1062 + source = "registry+https://github.com/rust-lang/crates.io-index" 1063 + checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 1064 + 1065 + [[package]] 1066 + name = "errno" 1067 + version = "0.3.8" 1068 + source = "registry+https://github.com/rust-lang/crates.io-index" 1069 + checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 1070 + dependencies = [ 1071 + "libc", 1072 + "windows-sys 0.52.0", 1073 + ] 1074 + 1075 + [[package]] 1076 + name = "failure" 1077 + version = "0.1.8" 1078 + source = "registry+https://github.com/rust-lang/crates.io-index" 1079 + checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86" 1080 + dependencies = [ 1081 + "backtrace", 1082 + "failure_derive", 1083 + ] 1084 + 1085 + [[package]] 1086 + name = "failure_derive" 1087 + version = "0.1.8" 1088 + source = "registry+https://github.com/rust-lang/crates.io-index" 1089 + checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4" 1090 + dependencies = [ 1091 + "proc-macro2", 1092 + "quote", 1093 + "syn 1.0.109", 1094 + "synstructure", 1095 + ] 1096 + 1097 + [[package]] 1098 + name = "fake" 1099 + version = "2.9.2" 1100 + source = "registry+https://github.com/rust-lang/crates.io-index" 1101 + checksum = "1c25829bde82205da46e1823b2259db6273379f626fc211f126f65654a2669be" 1102 + dependencies = [ 1103 + "deunicode", 1104 + "rand 0.8.5", 1105 + ] 1106 + 1107 + [[package]] 1108 + name = "fallible-iterator" 1109 + version = "0.2.0" 1110 + source = "registry+https://github.com/rust-lang/crates.io-index" 1111 + checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" 1112 + 1113 + [[package]] 1114 + name = "fastrand" 1115 + version = "1.9.0" 1116 + source = "registry+https://github.com/rust-lang/crates.io-index" 1117 + checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 1118 + dependencies = [ 1119 + "instant", 1120 + ] 1121 + 1122 + [[package]] 1123 + name = "fastrand" 1124 + version = "2.0.1" 1125 + source = "registry+https://github.com/rust-lang/crates.io-index" 1126 + checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 1127 + 1128 + [[package]] 1129 + name = "flate2" 1130 + version = "1.0.28" 1131 + source = "registry+https://github.com/rust-lang/crates.io-index" 1132 + checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" 1133 + dependencies = [ 1134 + "crc32fast", 1135 + "miniz_oxide", 1136 + ] 1137 + 1138 + [[package]] 1139 + name = "fnv" 1140 + version = "1.0.7" 1141 + source = "registry+https://github.com/rust-lang/crates.io-index" 1142 + checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1143 + 1144 + [[package]] 1145 + name = "foreign-types" 1146 + version = "0.3.2" 1147 + source = "registry+https://github.com/rust-lang/crates.io-index" 1148 + checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 1149 + dependencies = [ 1150 + "foreign-types-shared", 1151 + ] 1152 + 1153 + [[package]] 1154 + name = "foreign-types-shared" 1155 + version = "0.1.1" 1156 + source = "registry+https://github.com/rust-lang/crates.io-index" 1157 + checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 1158 + 1159 + [[package]] 1160 + name = "form_urlencoded" 1161 + version = "1.2.1" 1162 + source = "registry+https://github.com/rust-lang/crates.io-index" 1163 + checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1164 + dependencies = [ 1165 + "percent-encoding", 1166 + ] 1167 + 1168 + [[package]] 1169 + name = "fuchsia-cprng" 1170 + version = "0.1.1" 1171 + source = "registry+https://github.com/rust-lang/crates.io-index" 1172 + checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" 1173 + 1174 + [[package]] 1175 + name = "funty" 1176 + version = "2.0.0" 1177 + source = "registry+https://github.com/rust-lang/crates.io-index" 1178 + checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 1179 + 1180 + [[package]] 1181 + name = "futures-channel" 1182 + version = "0.3.30" 1183 + source = "registry+https://github.com/rust-lang/crates.io-index" 1184 + checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 1185 + dependencies = [ 1186 + "futures-core", 1187 + ] 1188 + 1189 + [[package]] 1190 + name = "futures-core" 1191 + version = "0.3.30" 1192 + source = "registry+https://github.com/rust-lang/crates.io-index" 1193 + checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 1194 + 1195 + [[package]] 1196 + name = "futures-io" 1197 + version = "0.3.30" 1198 + source = "registry+https://github.com/rust-lang/crates.io-index" 1199 + checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 1200 + 1201 + [[package]] 1202 + name = "futures-macro" 1203 + version = "0.3.30" 1204 + source = "registry+https://github.com/rust-lang/crates.io-index" 1205 + checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 1206 + dependencies = [ 1207 + "proc-macro2", 1208 + "quote", 1209 + "syn 2.0.52", 1210 + ] 1211 + 1212 + [[package]] 1213 + name = "futures-sink" 1214 + version = "0.3.30" 1215 + source = "registry+https://github.com/rust-lang/crates.io-index" 1216 + checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 1217 + 1218 + [[package]] 1219 + name = "futures-task" 1220 + version = "0.3.30" 1221 + source = "registry+https://github.com/rust-lang/crates.io-index" 1222 + checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 1223 + 1224 + [[package]] 1225 + name = "futures-util" 1226 + version = "0.3.30" 1227 + source = "registry+https://github.com/rust-lang/crates.io-index" 1228 + checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 1229 + dependencies = [ 1230 + "futures-core", 1231 + "futures-io", 1232 + "futures-macro", 1233 + "futures-task", 1234 + "memchr", 1235 + "pin-project-lite", 1236 + "pin-utils", 1237 + "slab", 1238 + ] 1239 + 1240 + [[package]] 1241 + name = "generational-arena" 1242 + version = "0.2.9" 1243 + source = "registry+https://github.com/rust-lang/crates.io-index" 1244 + checksum = "877e94aff08e743b651baaea359664321055749b398adff8740a7399af7796e7" 1245 + dependencies = [ 1246 + "cfg-if 1.0.0", 1247 + ] 1248 + 1249 + [[package]] 1250 + name = "generic-array" 1251 + version = "0.14.7" 1252 + source = "registry+https://github.com/rust-lang/crates.io-index" 1253 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1254 + dependencies = [ 1255 + "typenum", 1256 + "version_check", 1257 + ] 1258 + 1259 + [[package]] 1260 + name = "getrandom" 1261 + version = "0.1.16" 1262 + source = "registry+https://github.com/rust-lang/crates.io-index" 1263 + checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 1264 + dependencies = [ 1265 + "cfg-if 1.0.0", 1266 + "libc", 1267 + "wasi 0.9.0+wasi-snapshot-preview1", 1268 + ] 1269 + 1270 + [[package]] 1271 + name = "getrandom" 1272 + version = "0.2.12" 1273 + source = "registry+https://github.com/rust-lang/crates.io-index" 1274 + checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" 1275 + dependencies = [ 1276 + "cfg-if 1.0.0", 1277 + "libc", 1278 + "wasi 0.11.0+wasi-snapshot-preview1", 1279 + ] 1280 + 1281 + [[package]] 1282 + name = "ghash" 1283 + version = "0.4.4" 1284 + source = "registry+https://github.com/rust-lang/crates.io-index" 1285 + checksum = "1583cc1656d7839fd3732b80cf4f38850336cdb9b8ded1cd399ca62958de3c99" 1286 + dependencies = [ 1287 + "opaque-debug", 1288 + "polyval", 1289 + ] 1290 + 1291 + [[package]] 1292 + name = "gimli" 1293 + version = "0.26.2" 1294 + source = "registry+https://github.com/rust-lang/crates.io-index" 1295 + checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d" 1296 + dependencies = [ 1297 + "fallible-iterator", 1298 + "indexmap 1.9.3", 1299 + "stable_deref_trait", 1300 + ] 1301 + 1302 + [[package]] 1303 + name = "gimli" 1304 + version = "0.28.1" 1305 + source = "registry+https://github.com/rust-lang/crates.io-index" 1306 + checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 1307 + 1308 + [[package]] 1309 + name = "h2" 1310 + version = "0.3.24" 1311 + source = "registry+https://github.com/rust-lang/crates.io-index" 1312 + checksum = "bb2c4422095b67ee78da96fbb51a4cc413b3b25883c7717ff7ca1ab31022c9c9" 1313 + dependencies = [ 1314 + "bytes", 1315 + "fnv", 1316 + "futures-core", 1317 + "futures-sink", 1318 + "futures-util", 1319 + "http", 1320 + "indexmap 2.2.5", 1321 + "slab", 1322 + "tokio", 1323 + "tokio-util 0.7.10", 1324 + "tracing", 1325 + ] 1326 + 1327 + [[package]] 1328 + name = "hashbrown" 1329 + version = "0.11.2" 1330 + source = "registry+https://github.com/rust-lang/crates.io-index" 1331 + checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" 1332 + dependencies = [ 1333 + "ahash 0.7.8", 1334 + ] 1335 + 1336 + [[package]] 1337 + name = "hashbrown" 1338 + version = "0.12.3" 1339 + source = "registry+https://github.com/rust-lang/crates.io-index" 1340 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1341 + dependencies = [ 1342 + "ahash 0.7.8", 1343 + ] 1344 + 1345 + [[package]] 1346 + name = "hashbrown" 1347 + version = "0.14.3" 1348 + source = "registry+https://github.com/rust-lang/crates.io-index" 1349 + checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 1350 + 1351 + [[package]] 1352 + name = "heck" 1353 + version = "0.4.1" 1354 + source = "registry+https://github.com/rust-lang/crates.io-index" 1355 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1356 + 1357 + [[package]] 1358 + name = "hermit-abi" 1359 + version = "0.1.19" 1360 + source = "registry+https://github.com/rust-lang/crates.io-index" 1361 + checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 1362 + dependencies = [ 1363 + "libc", 1364 + ] 1365 + 1366 + [[package]] 1367 + name = "hermit-abi" 1368 + version = "0.3.9" 1369 + source = "registry+https://github.com/rust-lang/crates.io-index" 1370 + checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 1371 + 1372 + [[package]] 1373 + name = "hex" 1374 + version = "0.4.3" 1375 + source = "registry+https://github.com/rust-lang/crates.io-index" 1376 + checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1377 + 1378 + [[package]] 1379 + name = "home" 1380 + version = "0.5.9" 1381 + source = "registry+https://github.com/rust-lang/crates.io-index" 1382 + checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 1383 + dependencies = [ 1384 + "windows-sys 0.52.0", 1385 + ] 1386 + 1387 + [[package]] 1388 + name = "http" 1389 + version = "0.2.12" 1390 + source = "registry+https://github.com/rust-lang/crates.io-index" 1391 + checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" 1392 + dependencies = [ 1393 + "bytes", 1394 + "fnv", 1395 + "itoa", 1396 + ] 1397 + 1398 + [[package]] 1399 + name = "http-body" 1400 + version = "0.4.6" 1401 + source = "registry+https://github.com/rust-lang/crates.io-index" 1402 + checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 1403 + dependencies = [ 1404 + "bytes", 1405 + "http", 1406 + "pin-project-lite", 1407 + ] 1408 + 1409 + [[package]] 1410 + name = "httparse" 1411 + version = "1.8.0" 1412 + source = "registry+https://github.com/rust-lang/crates.io-index" 1413 + checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 1414 + 1415 + [[package]] 1416 + name = "httpdate" 1417 + version = "1.0.3" 1418 + source = "registry+https://github.com/rust-lang/crates.io-index" 1419 + checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 1420 + 1421 + [[package]] 1422 + name = "humantime" 1423 + version = "2.1.0" 1424 + source = "registry+https://github.com/rust-lang/crates.io-index" 1425 + checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 1426 + 1427 + [[package]] 1428 + name = "hyper" 1429 + version = "0.14.28" 1430 + source = "registry+https://github.com/rust-lang/crates.io-index" 1431 + checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" 1432 + dependencies = [ 1433 + "bytes", 1434 + "futures-channel", 1435 + "futures-core", 1436 + "futures-util", 1437 + "h2", 1438 + "http", 1439 + "http-body", 1440 + "httparse", 1441 + "httpdate", 1442 + "itoa", 1443 + "pin-project-lite", 1444 + "socket2", 1445 + "tokio", 1446 + "tower-service", 1447 + "tracing", 1448 + "want", 1449 + ] 1450 + 1451 + [[package]] 1452 + name = "hyper-rustls" 1453 + version = "0.22.1" 1454 + source = "registry+https://github.com/rust-lang/crates.io-index" 1455 + checksum = "5f9f7a97316d44c0af9b0301e65010573a853a9fc97046d7331d7f6bc0fd5a64" 1456 + dependencies = [ 1457 + "ct-logs", 1458 + "futures-util", 1459 + "hyper", 1460 + "log", 1461 + "rustls 0.19.1", 1462 + "rustls-native-certs", 1463 + "tokio", 1464 + "tokio-rustls", 1465 + "webpki 0.21.4", 1466 + ] 1467 + 1468 + [[package]] 1469 + name = "hyper-tls" 1470 + version = "0.5.0" 1471 + source = "registry+https://github.com/rust-lang/crates.io-index" 1472 + checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 1473 + dependencies = [ 1474 + "bytes", 1475 + "hyper", 1476 + "native-tls", 1477 + "tokio", 1478 + "tokio-native-tls", 1479 + ] 1480 + 1481 + [[package]] 1482 + name = "iana-time-zone" 1483 + version = "0.1.60" 1484 + source = "registry+https://github.com/rust-lang/crates.io-index" 1485 + checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 1486 + dependencies = [ 1487 + "android_system_properties", 1488 + "core-foundation-sys", 1489 + "iana-time-zone-haiku", 1490 + "js-sys", 1491 + "wasm-bindgen", 1492 + "windows-core", 1493 + ] 1494 + 1495 + [[package]] 1496 + name = "iana-time-zone-haiku" 1497 + version = "0.1.2" 1498 + source = "registry+https://github.com/rust-lang/crates.io-index" 1499 + checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1500 + dependencies = [ 1501 + "cc", 1502 + ] 1503 + 1504 + [[package]] 1505 + name = "ident_case" 1506 + version = "1.0.1" 1507 + source = "registry+https://github.com/rust-lang/crates.io-index" 1508 + checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1509 + 1510 + [[package]] 1511 + name = "idna" 1512 + version = "0.5.0" 1513 + source = "registry+https://github.com/rust-lang/crates.io-index" 1514 + checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 1515 + dependencies = [ 1516 + "unicode-bidi", 1517 + "unicode-normalization", 1518 + ] 1519 + 1520 + [[package]] 1521 + name = "indexmap" 1522 + version = "1.9.3" 1523 + source = "registry+https://github.com/rust-lang/crates.io-index" 1524 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 1525 + dependencies = [ 1526 + "autocfg 1.1.0", 1527 + "hashbrown 0.12.3", 1528 + "serde", 1529 + ] 1530 + 1531 + [[package]] 1532 + name = "indexmap" 1533 + version = "2.2.5" 1534 + source = "registry+https://github.com/rust-lang/crates.io-index" 1535 + checksum = "7b0b929d511467233429c45a44ac1dcaa21ba0f5ba11e4879e6ed28ddb4f9df4" 1536 + dependencies = [ 1537 + "equivalent", 1538 + "hashbrown 0.14.3", 1539 + ] 1540 + 1541 + [[package]] 1542 + name = "indicatif" 1543 + version = "0.16.2" 1544 + source = "registry+https://github.com/rust-lang/crates.io-index" 1545 + checksum = "2d207dc617c7a380ab07ff572a6e52fa202a2a8f355860ac9c38e23f8196be1b" 1546 + dependencies = [ 1547 + "console", 1548 + "lazy_static", 1549 + "number_prefix", 1550 + "regex", 1551 + ] 1552 + 1553 + [[package]] 1554 + name = "instant" 1555 + version = "0.1.12" 1556 + source = "registry+https://github.com/rust-lang/crates.io-index" 1557 + checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1558 + dependencies = [ 1559 + "cfg-if 1.0.0", 1560 + ] 1561 + 1562 + [[package]] 1563 + name = "ipnet" 1564 + version = "2.9.0" 1565 + source = "registry+https://github.com/rust-lang/crates.io-index" 1566 + checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" 1567 + 1568 + [[package]] 1569 + name = "isolang" 1570 + version = "1.0.0" 1571 + source = "registry+https://github.com/rust-lang/crates.io-index" 1572 + checksum = "265ef164908329e47e753c769b14cbb27434abf0c41984dca201484022f09ce5" 1573 + dependencies = [ 1574 + "phf", 1575 + "phf_codegen", 1576 + ] 1577 + 1578 + [[package]] 1579 + name = "itoa" 1580 + version = "1.0.10" 1581 + source = "registry+https://github.com/rust-lang/crates.io-index" 1582 + checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" 1583 + 1584 + [[package]] 1585 + name = "js-sys" 1586 + version = "0.3.69" 1587 + source = "registry+https://github.com/rust-lang/crates.io-index" 1588 + checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 1589 + dependencies = [ 1590 + "wasm-bindgen", 1591 + ] 1592 + 1593 + [[package]] 1594 + name = "lazy_static" 1595 + version = "1.4.0" 1596 + source = "registry+https://github.com/rust-lang/crates.io-index" 1597 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1598 + 1599 + [[package]] 1600 + name = "leb128" 1601 + version = "0.2.5" 1602 + source = "registry+https://github.com/rust-lang/crates.io-index" 1603 + checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67" 1604 + 1605 + [[package]] 1606 + name = "libc" 1607 + version = "0.2.153" 1608 + source = "registry+https://github.com/rust-lang/crates.io-index" 1609 + checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" 1610 + 1611 + [[package]] 1612 + name = "libloading" 1613 + version = "0.7.4" 1614 + source = "registry+https://github.com/rust-lang/crates.io-index" 1615 + checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 1616 + dependencies = [ 1617 + "cfg-if 1.0.0", 1618 + "winapi", 1619 + ] 1620 + 1621 + [[package]] 1622 + name = "linked-hash-map" 1623 + version = "0.5.6" 1624 + source = "registry+https://github.com/rust-lang/crates.io-index" 1625 + checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 1626 + 1627 + [[package]] 1628 + name = "linux-raw-sys" 1629 + version = "0.4.13" 1630 + source = "registry+https://github.com/rust-lang/crates.io-index" 1631 + checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" 1632 + 1633 + [[package]] 1634 + name = "lock_api" 1635 + version = "0.4.11" 1636 + source = "registry+https://github.com/rust-lang/crates.io-index" 1637 + checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 1638 + dependencies = [ 1639 + "autocfg 1.1.0", 1640 + "scopeguard", 1641 + ] 1642 + 1643 + [[package]] 1644 + name = "log" 1645 + version = "0.4.21" 1646 + source = "registry+https://github.com/rust-lang/crates.io-index" 1647 + checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 1648 + 1649 + [[package]] 1650 + name = "loupe" 1651 + version = "0.1.3" 1652 + source = "registry+https://github.com/rust-lang/crates.io-index" 1653 + checksum = "9b6a72dfa44fe15b5e76b94307eeb2ff995a8c5b283b55008940c02e0c5b634d" 1654 + dependencies = [ 1655 + "indexmap 1.9.3", 1656 + "loupe-derive", 1657 + "rustversion", 1658 + ] 1659 + 1660 + [[package]] 1661 + name = "loupe-derive" 1662 + version = "0.1.3" 1663 + source = "registry+https://github.com/rust-lang/crates.io-index" 1664 + checksum = "c0fbfc88337168279f2e9ae06e157cfed4efd3316e14dc96ed074d4f2e6c5952" 1665 + dependencies = [ 1666 + "quote", 1667 + "syn 1.0.109", 1668 + ] 1669 + 1670 + [[package]] 1671 + name = "mach" 1672 + version = "0.3.2" 1673 + source = "registry+https://github.com/rust-lang/crates.io-index" 1674 + checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa" 1675 + dependencies = [ 1676 + "libc", 1677 + ] 1678 + 1679 + [[package]] 1680 + name = "machine-uid" 1681 + version = "0.2.0" 1682 + source = "registry+https://github.com/rust-lang/crates.io-index" 1683 + checksum = "1f1595709b0a7386bcd56ba34d250d626e5503917d05d32cdccddcd68603e212" 1684 + dependencies = [ 1685 + "winreg 0.6.2", 1686 + ] 1687 + 1688 + [[package]] 1689 + name = "md5" 1690 + version = "0.7.0" 1691 + source = "registry+https://github.com/rust-lang/crates.io-index" 1692 + checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771" 1693 + 1694 + [[package]] 1695 + name = "memchr" 1696 + version = "2.7.1" 1697 + source = "registry+https://github.com/rust-lang/crates.io-index" 1698 + checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" 1699 + 1700 + [[package]] 1701 + name = "memmap2" 1702 + version = "0.5.10" 1703 + source = "registry+https://github.com/rust-lang/crates.io-index" 1704 + checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327" 1705 + dependencies = [ 1706 + "libc", 1707 + ] 1708 + 1709 + [[package]] 1710 + name = "memoffset" 1711 + version = "0.6.5" 1712 + source = "registry+https://github.com/rust-lang/crates.io-index" 1713 + checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 1714 + dependencies = [ 1715 + "autocfg 1.1.0", 1716 + ] 1717 + 1718 + [[package]] 1719 + name = "memory_units" 1720 + version = "0.4.0" 1721 + source = "registry+https://github.com/rust-lang/crates.io-index" 1722 + checksum = "8452105ba047068f40ff7093dd1d9da90898e63dd61736462e9cdda6a90ad3c3" 1723 + 1724 + [[package]] 1725 + name = "mime" 1726 + version = "0.3.17" 1727 + source = "registry+https://github.com/rust-lang/crates.io-index" 1728 + checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1729 + 1730 + [[package]] 1731 + name = "miniz_oxide" 1732 + version = "0.7.2" 1733 + source = "registry+https://github.com/rust-lang/crates.io-index" 1734 + checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" 1735 + dependencies = [ 1736 + "adler", 1737 + ] 1738 + 1739 + [[package]] 1740 + name = "mio" 1741 + version = "0.8.11" 1742 + source = "registry+https://github.com/rust-lang/crates.io-index" 1743 + checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 1744 + dependencies = [ 1745 + "libc", 1746 + "wasi 0.11.0+wasi-snapshot-preview1", 1747 + "windows-sys 0.48.0", 1748 + ] 1749 + 1750 + [[package]] 1751 + name = "mongodb-schema-parser" 1752 + version = "0.5.0" 1753 + source = "git+https://github.com/mongodb-rust/mongodb-schema-parser.git?rev=2d489307dd70b63b216a9968f7dec7c217108b32#2d489307dd70b63b216a9968f7dec7c217108b32" 1754 + dependencies = [ 1755 + "bson", 1756 + "console_error_panic_hook", 1757 + "failure", 1758 + "js-sys", 1759 + "serde", 1760 + "serde_derive", 1761 + "serde_json", 1762 + "wasm-bindgen", 1763 + "wasm-bindgen-test", 1764 + "web-sys", 1765 + "wee_alloc", 1766 + ] 1767 + 1768 + [[package]] 1769 + name = "more-asserts" 1770 + version = "0.2.2" 1771 + source = "registry+https://github.com/rust-lang/crates.io-index" 1772 + checksum = "7843ec2de400bcbc6a6328c958dc38e5359da6e93e72e37bc5246bf1ae776389" 1773 + 1774 + [[package]] 1775 + name = "native-tls" 1776 + version = "0.2.11" 1777 + source = "registry+https://github.com/rust-lang/crates.io-index" 1778 + checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 1779 + dependencies = [ 1780 + "lazy_static", 1781 + "libc", 1782 + "log", 1783 + "openssl", 1784 + "openssl-probe", 1785 + "openssl-sys", 1786 + "schannel", 1787 + "security-framework", 1788 + "security-framework-sys", 1789 + "tempfile", 1790 + ] 1791 + 1792 + [[package]] 1793 + name = "nix" 1794 + version = "0.28.0" 1795 + source = "registry+https://github.com/rust-lang/crates.io-index" 1796 + checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" 1797 + dependencies = [ 1798 + "bitflags 2.4.2", 1799 + "cfg-if 1.0.0", 1800 + "cfg_aliases", 1801 + "libc", 1802 + ] 1803 + 1804 + [[package]] 1805 + name = "num-conv" 1806 + version = "0.1.0" 1807 + source = "registry+https://github.com/rust-lang/crates.io-index" 1808 + checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 1809 + 1810 + [[package]] 1811 + name = "num-integer" 1812 + version = "0.1.46" 1813 + source = "registry+https://github.com/rust-lang/crates.io-index" 1814 + checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 1815 + dependencies = [ 1816 + "num-traits", 1817 + ] 1818 + 1819 + [[package]] 1820 + name = "num-traits" 1821 + version = "0.2.18" 1822 + source = "registry+https://github.com/rust-lang/crates.io-index" 1823 + checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" 1824 + dependencies = [ 1825 + "autocfg 1.1.0", 1826 + ] 1827 + 1828 + [[package]] 1829 + name = "num_cpus" 1830 + version = "1.16.0" 1831 + source = "registry+https://github.com/rust-lang/crates.io-index" 1832 + checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 1833 + dependencies = [ 1834 + "hermit-abi 0.3.9", 1835 + "libc", 1836 + ] 1837 + 1838 + [[package]] 1839 + name = "number_prefix" 1840 + version = "0.4.0" 1841 + source = "registry+https://github.com/rust-lang/crates.io-index" 1842 + checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" 1843 + 1844 + [[package]] 1845 + name = "object" 1846 + version = "0.28.4" 1847 + source = "registry+https://github.com/rust-lang/crates.io-index" 1848 + checksum = "e42c982f2d955fac81dd7e1d0e1426a7d702acd9c98d19ab01083a6a0328c424" 1849 + dependencies = [ 1850 + "crc32fast", 1851 + "hashbrown 0.11.2", 1852 + "indexmap 1.9.3", 1853 + "memchr", 1854 + ] 1855 + 1856 + [[package]] 1857 + name = "object" 1858 + version = "0.32.2" 1859 + source = "registry+https://github.com/rust-lang/crates.io-index" 1860 + checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 1861 + dependencies = [ 1862 + "memchr", 1863 + ] 1864 + 1865 + [[package]] 1866 + name = "once_cell" 1867 + version = "1.19.0" 1868 + source = "registry+https://github.com/rust-lang/crates.io-index" 1869 + checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 1870 + 1871 + [[package]] 1872 + name = "opaque-debug" 1873 + version = "0.3.1" 1874 + source = "registry+https://github.com/rust-lang/crates.io-index" 1875 + checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" 1876 + 1877 + [[package]] 1878 + name = "openssl" 1879 + version = "0.10.64" 1880 + source = "registry+https://github.com/rust-lang/crates.io-index" 1881 + checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f" 1882 + dependencies = [ 1883 + "bitflags 2.4.2", 1884 + "cfg-if 1.0.0", 1885 + "foreign-types", 1886 + "libc", 1887 + "once_cell", 1888 + "openssl-macros", 1889 + "openssl-sys", 1890 + ] 1891 + 1892 + [[package]] 1893 + name = "openssl-macros" 1894 + version = "0.1.1" 1895 + source = "registry+https://github.com/rust-lang/crates.io-index" 1896 + checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 1897 + dependencies = [ 1898 + "proc-macro2", 1899 + "quote", 1900 + "syn 2.0.52", 1901 + ] 1902 + 1903 + [[package]] 1904 + name = "openssl-probe" 1905 + version = "0.1.5" 1906 + source = "registry+https://github.com/rust-lang/crates.io-index" 1907 + checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 1908 + 1909 + [[package]] 1910 + name = "openssl-sys" 1911 + version = "0.9.101" 1912 + source = "registry+https://github.com/rust-lang/crates.io-index" 1913 + checksum = "dda2b0f344e78efc2facf7d195d098df0dd72151b26ab98da807afc26c198dff" 1914 + dependencies = [ 1915 + "cc", 1916 + "libc", 1917 + "pkg-config", 1918 + "vcpkg", 1919 + ] 1920 + 1921 + [[package]] 1922 + name = "os_str_bytes" 1923 + version = "6.6.1" 1924 + source = "registry+https://github.com/rust-lang/crates.io-index" 1925 + checksum = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1" 1926 + 1927 + [[package]] 1928 + name = "parking_lot" 1929 + version = "0.12.1" 1930 + source = "registry+https://github.com/rust-lang/crates.io-index" 1931 + checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1932 + dependencies = [ 1933 + "lock_api", 1934 + "parking_lot_core", 1935 + ] 1936 + 1937 + [[package]] 1938 + name = "parking_lot_core" 1939 + version = "0.9.9" 1940 + source = "registry+https://github.com/rust-lang/crates.io-index" 1941 + checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 1942 + dependencies = [ 1943 + "cfg-if 1.0.0", 1944 + "libc", 1945 + "redox_syscall 0.4.1", 1946 + "smallvec", 1947 + "windows-targets 0.48.5", 1948 + ] 1949 + 1950 + [[package]] 1951 + name = "percent-encoding" 1952 + version = "2.3.1" 1953 + source = "registry+https://github.com/rust-lang/crates.io-index" 1954 + checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 1955 + 1956 + [[package]] 1957 + name = "phf" 1958 + version = "0.7.24" 1959 + source = "registry+https://github.com/rust-lang/crates.io-index" 1960 + checksum = "b3da44b85f8e8dfaec21adae67f95d93244b2ecf6ad2a692320598dcc8e6dd18" 1961 + dependencies = [ 1962 + "phf_shared", 1963 + ] 1964 + 1965 + [[package]] 1966 + name = "phf_codegen" 1967 + version = "0.7.24" 1968 + source = "registry+https://github.com/rust-lang/crates.io-index" 1969 + checksum = "b03e85129e324ad4166b06b2c7491ae27fe3ec353af72e72cd1654c7225d517e" 1970 + dependencies = [ 1971 + "phf_generator", 1972 + "phf_shared", 1973 + ] 1974 + 1975 + [[package]] 1976 + name = "phf_generator" 1977 + version = "0.7.24" 1978 + source = "registry+https://github.com/rust-lang/crates.io-index" 1979 + checksum = "09364cc93c159b8b06b1f4dd8a4398984503483891b0c26b867cf431fb132662" 1980 + dependencies = [ 1981 + "phf_shared", 1982 + "rand 0.6.5", 1983 + ] 1984 + 1985 + [[package]] 1986 + name = "phf_shared" 1987 + version = "0.7.24" 1988 + source = "registry+https://github.com/rust-lang/crates.io-index" 1989 + checksum = "234f71a15de2288bcb7e3b6515828d22af7ec8598ee6d24c3b526fa0a80b67a0" 1990 + dependencies = [ 1991 + "siphasher", 1992 + ] 1993 + 1994 + [[package]] 1995 + name = "pin-project" 1996 + version = "1.1.5" 1997 + source = "registry+https://github.com/rust-lang/crates.io-index" 1998 + checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" 1999 + dependencies = [ 2000 + "pin-project-internal", 2001 + ] 2002 + 2003 + [[package]] 2004 + name = "pin-project-internal" 2005 + version = "1.1.5" 2006 + source = "registry+https://github.com/rust-lang/crates.io-index" 2007 + checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" 2008 + dependencies = [ 2009 + "proc-macro2", 2010 + "quote", 2011 + "syn 2.0.52", 2012 + ] 2013 + 2014 + [[package]] 2015 + name = "pin-project-lite" 2016 + version = "0.2.13" 2017 + source = "registry+https://github.com/rust-lang/crates.io-index" 2018 + checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 2019 + 2020 + [[package]] 2021 + name = "pin-utils" 2022 + version = "0.1.0" 2023 + source = "registry+https://github.com/rust-lang/crates.io-index" 2024 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2025 + 2026 + [[package]] 2027 + name = "pkg-config" 2028 + version = "0.3.30" 2029 + source = "registry+https://github.com/rust-lang/crates.io-index" 2030 + checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 2031 + 2032 + [[package]] 2033 + name = "polyval" 2034 + version = "0.5.3" 2035 + source = "registry+https://github.com/rust-lang/crates.io-index" 2036 + checksum = "8419d2b623c7c0896ff2d5d96e2cb4ede590fed28fcc34934f4c33c036e620a1" 2037 + dependencies = [ 2038 + "cfg-if 1.0.0", 2039 + "cpufeatures", 2040 + "opaque-debug", 2041 + "universal-hash", 2042 + ] 2043 + 2044 + [[package]] 2045 + name = "powerfmt" 2046 + version = "0.2.0" 2047 + source = "registry+https://github.com/rust-lang/crates.io-index" 2048 + checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 2049 + 2050 + [[package]] 2051 + name = "ppv-lite86" 2052 + version = "0.2.17" 2053 + source = "registry+https://github.com/rust-lang/crates.io-index" 2054 + checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 2055 + 2056 + [[package]] 2057 + name = "prettytable-rs" 2058 + version = "0.8.0" 2059 + source = "registry+https://github.com/rust-lang/crates.io-index" 2060 + checksum = "0fd04b170004fa2daccf418a7f8253aaf033c27760b5f225889024cf66d7ac2e" 2061 + dependencies = [ 2062 + "atty", 2063 + "csv", 2064 + "encode_unicode", 2065 + "lazy_static", 2066 + "term", 2067 + "unicode-width", 2068 + ] 2069 + 2070 + [[package]] 2071 + name = "proc-macro-error" 2072 + version = "1.0.4" 2073 + source = "registry+https://github.com/rust-lang/crates.io-index" 2074 + checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 2075 + dependencies = [ 2076 + "proc-macro-error-attr", 2077 + "proc-macro2", 2078 + "quote", 2079 + "syn 1.0.109", 2080 + "version_check", 2081 + ] 2082 + 2083 + [[package]] 2084 + name = "proc-macro-error-attr" 2085 + version = "1.0.4" 2086 + source = "registry+https://github.com/rust-lang/crates.io-index" 2087 + checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 2088 + dependencies = [ 2089 + "proc-macro2", 2090 + "quote", 2091 + "version_check", 2092 + ] 2093 + 2094 + [[package]] 2095 + name = "proc-macro-hack" 2096 + version = "0.5.20+deprecated" 2097 + source = "registry+https://github.com/rust-lang/crates.io-index" 2098 + checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 2099 + 2100 + [[package]] 2101 + name = "proc-macro2" 2102 + version = "1.0.78" 2103 + source = "registry+https://github.com/rust-lang/crates.io-index" 2104 + checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" 2105 + dependencies = [ 2106 + "unicode-ident", 2107 + ] 2108 + 2109 + [[package]] 2110 + name = "ptr_meta" 2111 + version = "0.1.4" 2112 + source = "registry+https://github.com/rust-lang/crates.io-index" 2113 + checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1" 2114 + dependencies = [ 2115 + "ptr_meta_derive", 2116 + ] 2117 + 2118 + [[package]] 2119 + name = "ptr_meta_derive" 2120 + version = "0.1.4" 2121 + source = "registry+https://github.com/rust-lang/crates.io-index" 2122 + checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac" 2123 + dependencies = [ 2124 + "proc-macro2", 2125 + "quote", 2126 + "syn 1.0.109", 2127 + ] 2128 + 2129 + [[package]] 2130 + name = "quote" 2131 + version = "1.0.35" 2132 + source = "registry+https://github.com/rust-lang/crates.io-index" 2133 + checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 2134 + dependencies = [ 2135 + "proc-macro2", 2136 + ] 2137 + 2138 + [[package]] 2139 + name = "radium" 2140 + version = "0.7.0" 2141 + source = "registry+https://github.com/rust-lang/crates.io-index" 2142 + checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 2143 + 2144 + [[package]] 2145 + name = "rand" 2146 + version = "0.6.5" 2147 + source = "registry+https://github.com/rust-lang/crates.io-index" 2148 + checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" 2149 + dependencies = [ 2150 + "autocfg 0.1.8", 2151 + "libc", 2152 + "rand_chacha 0.1.1", 2153 + "rand_core 0.4.2", 2154 + "rand_hc", 2155 + "rand_isaac", 2156 + "rand_jitter", 2157 + "rand_os", 2158 + "rand_pcg", 2159 + "rand_xorshift", 2160 + "winapi", 2161 + ] 2162 + 2163 + [[package]] 2164 + name = "rand" 2165 + version = "0.8.5" 2166 + source = "registry+https://github.com/rust-lang/crates.io-index" 2167 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2168 + dependencies = [ 2169 + "libc", 2170 + "rand_chacha 0.3.1", 2171 + "rand_core 0.6.4", 2172 + ] 2173 + 2174 + [[package]] 2175 + name = "rand_chacha" 2176 + version = "0.1.1" 2177 + source = "registry+https://github.com/rust-lang/crates.io-index" 2178 + checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" 2179 + dependencies = [ 2180 + "autocfg 0.1.8", 2181 + "rand_core 0.3.1", 2182 + ] 2183 + 2184 + [[package]] 2185 + name = "rand_chacha" 2186 + version = "0.3.1" 2187 + source = "registry+https://github.com/rust-lang/crates.io-index" 2188 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2189 + dependencies = [ 2190 + "ppv-lite86", 2191 + "rand_core 0.6.4", 2192 + ] 2193 + 2194 + [[package]] 2195 + name = "rand_core" 2196 + version = "0.3.1" 2197 + source = "registry+https://github.com/rust-lang/crates.io-index" 2198 + checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" 2199 + dependencies = [ 2200 + "rand_core 0.4.2", 2201 + ] 2202 + 2203 + [[package]] 2204 + name = "rand_core" 2205 + version = "0.4.2" 2206 + source = "registry+https://github.com/rust-lang/crates.io-index" 2207 + checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" 2208 + 2209 + [[package]] 2210 + name = "rand_core" 2211 + version = "0.6.4" 2212 + source = "registry+https://github.com/rust-lang/crates.io-index" 2213 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2214 + dependencies = [ 2215 + "getrandom 0.2.12", 2216 + ] 2217 + 2218 + [[package]] 2219 + name = "rand_hc" 2220 + version = "0.1.0" 2221 + source = "registry+https://github.com/rust-lang/crates.io-index" 2222 + checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" 2223 + dependencies = [ 2224 + "rand_core 0.3.1", 2225 + ] 2226 + 2227 + [[package]] 2228 + name = "rand_isaac" 2229 + version = "0.1.1" 2230 + source = "registry+https://github.com/rust-lang/crates.io-index" 2231 + checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" 2232 + dependencies = [ 2233 + "rand_core 0.3.1", 2234 + ] 2235 + 2236 + [[package]] 2237 + name = "rand_jitter" 2238 + version = "0.1.4" 2239 + source = "registry+https://github.com/rust-lang/crates.io-index" 2240 + checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" 2241 + dependencies = [ 2242 + "libc", 2243 + "rand_core 0.4.2", 2244 + "winapi", 2245 + ] 2246 + 2247 + [[package]] 2248 + name = "rand_os" 2249 + version = "0.1.3" 2250 + source = "registry+https://github.com/rust-lang/crates.io-index" 2251 + checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" 2252 + dependencies = [ 2253 + "cloudabi", 2254 + "fuchsia-cprng", 2255 + "libc", 2256 + "rand_core 0.4.2", 2257 + "rdrand", 2258 + "winapi", 2259 + ] 2260 + 2261 + [[package]] 2262 + name = "rand_pcg" 2263 + version = "0.1.2" 2264 + source = "registry+https://github.com/rust-lang/crates.io-index" 2265 + checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" 2266 + dependencies = [ 2267 + "autocfg 0.1.8", 2268 + "rand_core 0.4.2", 2269 + ] 2270 + 2271 + [[package]] 2272 + name = "rand_xorshift" 2273 + version = "0.1.1" 2274 + source = "registry+https://github.com/rust-lang/crates.io-index" 2275 + checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" 2276 + dependencies = [ 2277 + "rand_core 0.3.1", 2278 + ] 2279 + 2280 + [[package]] 2281 + name = "rayon" 2282 + version = "1.9.0" 2283 + source = "registry+https://github.com/rust-lang/crates.io-index" 2284 + checksum = "e4963ed1bc86e4f3ee217022bd855b297cef07fb9eac5dfa1f788b220b49b3bd" 2285 + dependencies = [ 2286 + "either", 2287 + "rayon-core", 2288 + ] 2289 + 2290 + [[package]] 2291 + name = "rayon-core" 2292 + version = "1.12.1" 2293 + source = "registry+https://github.com/rust-lang/crates.io-index" 2294 + checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 2295 + dependencies = [ 2296 + "crossbeam-deque", 2297 + "crossbeam-utils", 2298 + ] 2299 + 2300 + [[package]] 2301 + name = "rdrand" 2302 + version = "0.4.0" 2303 + source = "registry+https://github.com/rust-lang/crates.io-index" 2304 + checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" 2305 + dependencies = [ 2306 + "rand_core 0.3.1", 2307 + ] 2308 + 2309 + [[package]] 2310 + name = "redox_syscall" 2311 + version = "0.1.57" 2312 + source = "registry+https://github.com/rust-lang/crates.io-index" 2313 + checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" 2314 + 2315 + [[package]] 2316 + name = "redox_syscall" 2317 + version = "0.4.1" 2318 + source = "registry+https://github.com/rust-lang/crates.io-index" 2319 + checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 2320 + dependencies = [ 2321 + "bitflags 1.3.2", 2322 + ] 2323 + 2324 + [[package]] 2325 + name = "redox_users" 2326 + version = "0.3.5" 2327 + source = "registry+https://github.com/rust-lang/crates.io-index" 2328 + checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d" 2329 + dependencies = [ 2330 + "getrandom 0.1.16", 2331 + "redox_syscall 0.1.57", 2332 + "rust-argon2", 2333 + ] 2334 + 2335 + [[package]] 2336 + name = "regalloc" 2337 + version = "0.0.34" 2338 + source = "registry+https://github.com/rust-lang/crates.io-index" 2339 + checksum = "62446b1d3ebf980bdc68837700af1d77b37bc430e524bf95319c6eada2a4cc02" 2340 + dependencies = [ 2341 + "log", 2342 + "rustc-hash", 2343 + "smallvec", 2344 + ] 2345 + 2346 + [[package]] 2347 + name = "regex" 2348 + version = "1.10.3" 2349 + source = "registry+https://github.com/rust-lang/crates.io-index" 2350 + checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" 2351 + dependencies = [ 2352 + "aho-corasick", 2353 + "memchr", 2354 + "regex-automata", 2355 + "regex-syntax", 2356 + ] 2357 + 2358 + [[package]] 2359 + name = "regex-automata" 2360 + version = "0.4.6" 2361 + source = "registry+https://github.com/rust-lang/crates.io-index" 2362 + checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" 2363 + dependencies = [ 2364 + "aho-corasick", 2365 + "memchr", 2366 + "regex-syntax", 2367 + ] 2368 + 2369 + [[package]] 2370 + name = "regex-syntax" 2371 + version = "0.8.2" 2372 + source = "registry+https://github.com/rust-lang/crates.io-index" 2373 + checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 2374 + 2375 + [[package]] 2376 + name = "region" 2377 + version = "3.0.0" 2378 + source = "registry+https://github.com/rust-lang/crates.io-index" 2379 + checksum = "76e189c2369884dce920945e2ddf79b3dff49e071a167dd1817fa9c4c00d512e" 2380 + dependencies = [ 2381 + "bitflags 1.3.2", 2382 + "libc", 2383 + "mach", 2384 + "winapi", 2385 + ] 2386 + 2387 + [[package]] 2388 + name = "rend" 2389 + version = "0.4.2" 2390 + source = "registry+https://github.com/rust-lang/crates.io-index" 2391 + checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" 2392 + dependencies = [ 2393 + "bytecheck", 2394 + ] 2395 + 2396 + [[package]] 2397 + name = "replibyte" 2398 + version = "0.10.0" 2399 + dependencies = [ 2400 + "aes-gcm", 2401 + "anyhow", 2402 + "aws-config", 2403 + "aws-sdk-s3", 2404 + "aws-smithy-client", 2405 + "aws-smithy-http", 2406 + "aws-types", 2407 + "bson", 2408 + "chrono", 2409 + "clap", 2410 + "ctrlc", 2411 + "dump-parser", 2412 + "env_logger", 2413 + "fake", 2414 + "flate2", 2415 + "http", 2416 + "indicatif", 2417 + "lazy_static", 2418 + "log", 2419 + "machine-uid", 2420 + "mongodb-schema-parser", 2421 + "percent-encoding", 2422 + "prettytable-rs", 2423 + "rand 0.8.5", 2424 + "reqwest", 2425 + "rustls 0.20.9", 2426 + "serde", 2427 + "serde_json", 2428 + "serde_yaml", 2429 + "subset", 2430 + "tempfile", 2431 + "timeago", 2432 + "tokio", 2433 + "url", 2434 + "wasmer", 2435 + "wasmer-wasi", 2436 + "which", 2437 + ] 2438 + 2439 + [[package]] 2440 + name = "reqwest" 2441 + version = "0.11.25" 2442 + source = "registry+https://github.com/rust-lang/crates.io-index" 2443 + checksum = "0eea5a9eb898d3783f17c6407670e3592fd174cb81a10e51d4c37f49450b9946" 2444 + dependencies = [ 2445 + "base64 0.21.7", 2446 + "bytes", 2447 + "encoding_rs", 2448 + "futures-core", 2449 + "futures-util", 2450 + "h2", 2451 + "http", 2452 + "http-body", 2453 + "hyper", 2454 + "hyper-tls", 2455 + "ipnet", 2456 + "js-sys", 2457 + "log", 2458 + "mime", 2459 + "native-tls", 2460 + "once_cell", 2461 + "percent-encoding", 2462 + "pin-project-lite", 2463 + "rustls-pemfile", 2464 + "serde", 2465 + "serde_json", 2466 + "serde_urlencoded", 2467 + "sync_wrapper", 2468 + "system-configuration", 2469 + "tokio", 2470 + "tokio-native-tls", 2471 + "tower-service", 2472 + "url", 2473 + "wasm-bindgen", 2474 + "wasm-bindgen-futures", 2475 + "web-sys", 2476 + "winreg 0.50.0", 2477 + ] 2478 + 2479 + [[package]] 2480 + name = "ring" 2481 + version = "0.16.20" 2482 + source = "registry+https://github.com/rust-lang/crates.io-index" 2483 + checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 2484 + dependencies = [ 2485 + "cc", 2486 + "libc", 2487 + "once_cell", 2488 + "spin 0.5.2", 2489 + "untrusted 0.7.1", 2490 + "web-sys", 2491 + "winapi", 2492 + ] 2493 + 2494 + [[package]] 2495 + name = "ring" 2496 + version = "0.17.8" 2497 + source = "registry+https://github.com/rust-lang/crates.io-index" 2498 + checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" 2499 + dependencies = [ 2500 + "cc", 2501 + "cfg-if 1.0.0", 2502 + "getrandom 0.2.12", 2503 + "libc", 2504 + "spin 0.9.8", 2505 + "untrusted 0.9.0", 2506 + "windows-sys 0.52.0", 2507 + ] 2508 + 2509 + [[package]] 2510 + name = "rkyv" 2511 + version = "0.7.44" 2512 + source = "registry+https://github.com/rust-lang/crates.io-index" 2513 + checksum = "5cba464629b3394fc4dbc6f940ff8f5b4ff5c7aef40f29166fd4ad12acbc99c0" 2514 + dependencies = [ 2515 + "bitvec", 2516 + "bytecheck", 2517 + "bytes", 2518 + "hashbrown 0.12.3", 2519 + "ptr_meta", 2520 + "rend", 2521 + "rkyv_derive", 2522 + "seahash", 2523 + "tinyvec", 2524 + "uuid", 2525 + ] 2526 + 2527 + [[package]] 2528 + name = "rkyv_derive" 2529 + version = "0.7.44" 2530 + source = "registry+https://github.com/rust-lang/crates.io-index" 2531 + checksum = "a7dddfff8de25e6f62b9d64e6e432bf1c6736c57d20323e15ee10435fbda7c65" 2532 + dependencies = [ 2533 + "proc-macro2", 2534 + "quote", 2535 + "syn 1.0.109", 2536 + ] 2537 + 2538 + [[package]] 2539 + name = "rust-argon2" 2540 + version = "0.8.3" 2541 + source = "registry+https://github.com/rust-lang/crates.io-index" 2542 + checksum = "4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb" 2543 + dependencies = [ 2544 + "base64 0.13.1", 2545 + "blake2b_simd", 2546 + "constant_time_eq", 2547 + "crossbeam-utils", 2548 + ] 2549 + 2550 + [[package]] 2551 + name = "rustc-demangle" 2552 + version = "0.1.23" 2553 + source = "registry+https://github.com/rust-lang/crates.io-index" 2554 + checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 2555 + 2556 + [[package]] 2557 + name = "rustc-hash" 2558 + version = "1.1.0" 2559 + source = "registry+https://github.com/rust-lang/crates.io-index" 2560 + checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 2561 + 2562 + [[package]] 2563 + name = "rustc_version" 2564 + version = "0.2.3" 2565 + source = "registry+https://github.com/rust-lang/crates.io-index" 2566 + checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" 2567 + dependencies = [ 2568 + "semver 0.9.0", 2569 + ] 2570 + 2571 + [[package]] 2572 + name = "rustc_version" 2573 + version = "0.4.0" 2574 + source = "registry+https://github.com/rust-lang/crates.io-index" 2575 + checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 2576 + dependencies = [ 2577 + "semver 1.0.22", 2578 + ] 2579 + 2580 + [[package]] 2581 + name = "rustix" 2582 + version = "0.38.31" 2583 + source = "registry+https://github.com/rust-lang/crates.io-index" 2584 + checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949" 2585 + dependencies = [ 2586 + "bitflags 2.4.2", 2587 + "errno", 2588 + "libc", 2589 + "linux-raw-sys", 2590 + "windows-sys 0.52.0", 2591 + ] 2592 + 2593 + [[package]] 2594 + name = "rustls" 2595 + version = "0.19.1" 2596 + source = "registry+https://github.com/rust-lang/crates.io-index" 2597 + checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7" 2598 + dependencies = [ 2599 + "base64 0.13.1", 2600 + "log", 2601 + "ring 0.16.20", 2602 + "sct 0.6.1", 2603 + "webpki 0.21.4", 2604 + ] 2605 + 2606 + [[package]] 2607 + name = "rustls" 2608 + version = "0.20.9" 2609 + source = "registry+https://github.com/rust-lang/crates.io-index" 2610 + checksum = "1b80e3dec595989ea8510028f30c408a4630db12c9cbb8de34203b89d6577e99" 2611 + dependencies = [ 2612 + "log", 2613 + "ring 0.16.20", 2614 + "sct 0.7.1", 2615 + "webpki 0.22.4", 2616 + ] 2617 + 2618 + [[package]] 2619 + name = "rustls-native-certs" 2620 + version = "0.5.0" 2621 + source = "registry+https://github.com/rust-lang/crates.io-index" 2622 + checksum = "5a07b7c1885bd8ed3831c289b7870b13ef46fe0e856d288c30d9cc17d75a2092" 2623 + dependencies = [ 2624 + "openssl-probe", 2625 + "rustls 0.19.1", 2626 + "schannel", 2627 + "security-framework", 2628 + ] 2629 + 2630 + [[package]] 2631 + name = "rustls-pemfile" 2632 + version = "1.0.4" 2633 + source = "registry+https://github.com/rust-lang/crates.io-index" 2634 + checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 2635 + dependencies = [ 2636 + "base64 0.21.7", 2637 + ] 2638 + 2639 + [[package]] 2640 + name = "rustversion" 2641 + version = "1.0.14" 2642 + source = "registry+https://github.com/rust-lang/crates.io-index" 2643 + checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" 2644 + 2645 + [[package]] 2646 + name = "ryu" 2647 + version = "1.0.17" 2648 + source = "registry+https://github.com/rust-lang/crates.io-index" 2649 + checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" 2650 + 2651 + [[package]] 2652 + name = "schannel" 2653 + version = "0.1.23" 2654 + source = "registry+https://github.com/rust-lang/crates.io-index" 2655 + checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 2656 + dependencies = [ 2657 + "windows-sys 0.52.0", 2658 + ] 2659 + 2660 + [[package]] 2661 + name = "scoped-tls" 2662 + version = "1.0.1" 2663 + source = "registry+https://github.com/rust-lang/crates.io-index" 2664 + checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 2665 + 2666 + [[package]] 2667 + name = "scopeguard" 2668 + version = "1.2.0" 2669 + source = "registry+https://github.com/rust-lang/crates.io-index" 2670 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2671 + 2672 + [[package]] 2673 + name = "sct" 2674 + version = "0.6.1" 2675 + source = "registry+https://github.com/rust-lang/crates.io-index" 2676 + checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce" 2677 + dependencies = [ 2678 + "ring 0.16.20", 2679 + "untrusted 0.7.1", 2680 + ] 2681 + 2682 + [[package]] 2683 + name = "sct" 2684 + version = "0.7.1" 2685 + source = "registry+https://github.com/rust-lang/crates.io-index" 2686 + checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 2687 + dependencies = [ 2688 + "ring 0.17.8", 2689 + "untrusted 0.9.0", 2690 + ] 2691 + 2692 + [[package]] 2693 + name = "seahash" 2694 + version = "4.1.0" 2695 + source = "registry+https://github.com/rust-lang/crates.io-index" 2696 + checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" 2697 + 2698 + [[package]] 2699 + name = "security-framework" 2700 + version = "2.9.2" 2701 + source = "registry+https://github.com/rust-lang/crates.io-index" 2702 + checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" 2703 + dependencies = [ 2704 + "bitflags 1.3.2", 2705 + "core-foundation", 2706 + "core-foundation-sys", 2707 + "libc", 2708 + "security-framework-sys", 2709 + ] 2710 + 2711 + [[package]] 2712 + name = "security-framework-sys" 2713 + version = "2.9.1" 2714 + source = "registry+https://github.com/rust-lang/crates.io-index" 2715 + checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" 2716 + dependencies = [ 2717 + "core-foundation-sys", 2718 + "libc", 2719 + ] 2720 + 2721 + [[package]] 2722 + name = "semver" 2723 + version = "0.9.0" 2724 + source = "registry+https://github.com/rust-lang/crates.io-index" 2725 + checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" 2726 + dependencies = [ 2727 + "semver-parser", 2728 + ] 2729 + 2730 + [[package]] 2731 + name = "semver" 2732 + version = "1.0.22" 2733 + source = "registry+https://github.com/rust-lang/crates.io-index" 2734 + checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" 2735 + 2736 + [[package]] 2737 + name = "semver-parser" 2738 + version = "0.7.0" 2739 + source = "registry+https://github.com/rust-lang/crates.io-index" 2740 + checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" 2741 + 2742 + [[package]] 2743 + name = "serde" 2744 + version = "1.0.197" 2745 + source = "registry+https://github.com/rust-lang/crates.io-index" 2746 + checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2" 2747 + dependencies = [ 2748 + "serde_derive", 2749 + ] 2750 + 2751 + [[package]] 2752 + name = "serde_bytes" 2753 + version = "0.11.14" 2754 + source = "registry+https://github.com/rust-lang/crates.io-index" 2755 + checksum = "8b8497c313fd43ab992087548117643f6fcd935cbf36f176ffda0aacf9591734" 2756 + dependencies = [ 2757 + "serde", 2758 + ] 2759 + 2760 + [[package]] 2761 + name = "serde_derive" 2762 + version = "1.0.197" 2763 + source = "registry+https://github.com/rust-lang/crates.io-index" 2764 + checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b" 2765 + dependencies = [ 2766 + "proc-macro2", 2767 + "quote", 2768 + "syn 2.0.52", 2769 + ] 2770 + 2771 + [[package]] 2772 + name = "serde_json" 2773 + version = "1.0.114" 2774 + source = "registry+https://github.com/rust-lang/crates.io-index" 2775 + checksum = "c5f09b1bd632ef549eaa9f60a1f8de742bdbc698e6cee2095fc84dde5f549ae0" 2776 + dependencies = [ 2777 + "indexmap 2.2.5", 2778 + "itoa", 2779 + "ryu", 2780 + "serde", 2781 + ] 2782 + 2783 + [[package]] 2784 + name = "serde_urlencoded" 2785 + version = "0.7.1" 2786 + source = "registry+https://github.com/rust-lang/crates.io-index" 2787 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2788 + dependencies = [ 2789 + "form_urlencoded", 2790 + "itoa", 2791 + "ryu", 2792 + "serde", 2793 + ] 2794 + 2795 + [[package]] 2796 + name = "serde_yaml" 2797 + version = "0.8.26" 2798 + source = "registry+https://github.com/rust-lang/crates.io-index" 2799 + checksum = "578a7433b776b56a35785ed5ce9a7e777ac0598aac5a6dd1b4b18a307c7fc71b" 2800 + dependencies = [ 2801 + "indexmap 1.9.3", 2802 + "ryu", 2803 + "serde", 2804 + "yaml-rust", 2805 + ] 2806 + 2807 + [[package]] 2808 + name = "sha1" 2809 + version = "0.6.1" 2810 + source = "registry+https://github.com/rust-lang/crates.io-index" 2811 + checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770" 2812 + dependencies = [ 2813 + "sha1_smol", 2814 + ] 2815 + 2816 + [[package]] 2817 + name = "sha1_smol" 2818 + version = "1.0.0" 2819 + source = "registry+https://github.com/rust-lang/crates.io-index" 2820 + checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012" 2821 + 2822 + [[package]] 2823 + name = "signal-hook-registry" 2824 + version = "1.4.1" 2825 + source = "registry+https://github.com/rust-lang/crates.io-index" 2826 + checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 2827 + dependencies = [ 2828 + "libc", 2829 + ] 2830 + 2831 + [[package]] 2832 + name = "simdutf8" 2833 + version = "0.1.4" 2834 + source = "registry+https://github.com/rust-lang/crates.io-index" 2835 + checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a" 2836 + 2837 + [[package]] 2838 + name = "siphasher" 2839 + version = "0.2.3" 2840 + source = "registry+https://github.com/rust-lang/crates.io-index" 2841 + checksum = "0b8de496cf83d4ed58b6be86c3a275b8602f6ffe98d3024a869e124147a9a3ac" 2842 + 2843 + [[package]] 2844 + name = "slab" 2845 + version = "0.4.9" 2846 + source = "registry+https://github.com/rust-lang/crates.io-index" 2847 + checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 2848 + dependencies = [ 2849 + "autocfg 1.1.0", 2850 + ] 2851 + 2852 + [[package]] 2853 + name = "smallvec" 2854 + version = "1.13.1" 2855 + source = "registry+https://github.com/rust-lang/crates.io-index" 2856 + checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" 2857 + 2858 + [[package]] 2859 + name = "socket2" 2860 + version = "0.5.6" 2861 + source = "registry+https://github.com/rust-lang/crates.io-index" 2862 + checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871" 2863 + dependencies = [ 2864 + "libc", 2865 + "windows-sys 0.52.0", 2866 + ] 2867 + 2868 + [[package]] 2869 + name = "spin" 2870 + version = "0.5.2" 2871 + source = "registry+https://github.com/rust-lang/crates.io-index" 2872 + checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 2873 + 2874 + [[package]] 2875 + name = "spin" 2876 + version = "0.9.8" 2877 + source = "registry+https://github.com/rust-lang/crates.io-index" 2878 + checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 2879 + 2880 + [[package]] 2881 + name = "stable_deref_trait" 2882 + version = "1.2.0" 2883 + source = "registry+https://github.com/rust-lang/crates.io-index" 2884 + checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 2885 + 2886 + [[package]] 2887 + name = "standback" 2888 + version = "0.2.17" 2889 + source = "registry+https://github.com/rust-lang/crates.io-index" 2890 + checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff" 2891 + dependencies = [ 2892 + "version_check", 2893 + ] 2894 + 2895 + [[package]] 2896 + name = "stdweb" 2897 + version = "0.4.20" 2898 + source = "registry+https://github.com/rust-lang/crates.io-index" 2899 + checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5" 2900 + dependencies = [ 2901 + "discard", 2902 + "rustc_version 0.2.3", 2903 + "stdweb-derive", 2904 + "stdweb-internal-macros", 2905 + "stdweb-internal-runtime", 2906 + "wasm-bindgen", 2907 + ] 2908 + 2909 + [[package]] 2910 + name = "stdweb-derive" 2911 + version = "0.5.3" 2912 + source = "registry+https://github.com/rust-lang/crates.io-index" 2913 + checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef" 2914 + dependencies = [ 2915 + "proc-macro2", 2916 + "quote", 2917 + "serde", 2918 + "serde_derive", 2919 + "syn 1.0.109", 2920 + ] 2921 + 2922 + [[package]] 2923 + name = "stdweb-internal-macros" 2924 + version = "0.2.9" 2925 + source = "registry+https://github.com/rust-lang/crates.io-index" 2926 + checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11" 2927 + dependencies = [ 2928 + "base-x", 2929 + "proc-macro2", 2930 + "quote", 2931 + "serde", 2932 + "serde_derive", 2933 + "serde_json", 2934 + "sha1", 2935 + "syn 1.0.109", 2936 + ] 2937 + 2938 + [[package]] 2939 + name = "stdweb-internal-runtime" 2940 + version = "0.1.5" 2941 + source = "registry+https://github.com/rust-lang/crates.io-index" 2942 + checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0" 2943 + 2944 + [[package]] 2945 + name = "strsim" 2946 + version = "0.10.0" 2947 + source = "registry+https://github.com/rust-lang/crates.io-index" 2948 + checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 2949 + 2950 + [[package]] 2951 + name = "subset" 2952 + version = "0.10.0" 2953 + dependencies = [ 2954 + "dump-parser", 2955 + "md5", 2956 + "tempfile", 2957 + ] 2958 + 2959 + [[package]] 2960 + name = "subtle" 2961 + version = "2.4.1" 2962 + source = "registry+https://github.com/rust-lang/crates.io-index" 2963 + checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 2964 + 2965 + [[package]] 2966 + name = "syn" 2967 + version = "1.0.109" 2968 + source = "registry+https://github.com/rust-lang/crates.io-index" 2969 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 2970 + dependencies = [ 2971 + "proc-macro2", 2972 + "quote", 2973 + "unicode-ident", 2974 + ] 2975 + 2976 + [[package]] 2977 + name = "syn" 2978 + version = "2.0.52" 2979 + source = "registry+https://github.com/rust-lang/crates.io-index" 2980 + checksum = "b699d15b36d1f02c3e7c69f8ffef53de37aefae075d8488d4ba1a7788d574a07" 2981 + dependencies = [ 2982 + "proc-macro2", 2983 + "quote", 2984 + "unicode-ident", 2985 + ] 2986 + 2987 + [[package]] 2988 + name = "sync_wrapper" 2989 + version = "0.1.2" 2990 + source = "registry+https://github.com/rust-lang/crates.io-index" 2991 + checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 2992 + 2993 + [[package]] 2994 + name = "synstructure" 2995 + version = "0.12.6" 2996 + source = "registry+https://github.com/rust-lang/crates.io-index" 2997 + checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" 2998 + dependencies = [ 2999 + "proc-macro2", 3000 + "quote", 3001 + "syn 1.0.109", 3002 + "unicode-xid", 3003 + ] 3004 + 3005 + [[package]] 3006 + name = "system-configuration" 3007 + version = "0.6.0" 3008 + source = "registry+https://github.com/rust-lang/crates.io-index" 3009 + checksum = "658bc6ee10a9b4fcf576e9b0819d95ec16f4d2c02d39fd83ac1c8789785c4a42" 3010 + dependencies = [ 3011 + "bitflags 2.4.2", 3012 + "core-foundation", 3013 + "system-configuration-sys", 3014 + ] 3015 + 3016 + [[package]] 3017 + name = "system-configuration-sys" 3018 + version = "0.6.0" 3019 + source = "registry+https://github.com/rust-lang/crates.io-index" 3020 + checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" 3021 + dependencies = [ 3022 + "core-foundation-sys", 3023 + "libc", 3024 + ] 3025 + 3026 + [[package]] 3027 + name = "tap" 3028 + version = "1.0.1" 3029 + source = "registry+https://github.com/rust-lang/crates.io-index" 3030 + checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 3031 + 3032 + [[package]] 3033 + name = "target-lexicon" 3034 + version = "0.12.14" 3035 + source = "registry+https://github.com/rust-lang/crates.io-index" 3036 + checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f" 3037 + 3038 + [[package]] 3039 + name = "tempfile" 3040 + version = "3.10.1" 3041 + source = "registry+https://github.com/rust-lang/crates.io-index" 3042 + checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" 3043 + dependencies = [ 3044 + "cfg-if 1.0.0", 3045 + "fastrand 2.0.1", 3046 + "rustix", 3047 + "windows-sys 0.52.0", 3048 + ] 3049 + 3050 + [[package]] 3051 + name = "term" 3052 + version = "0.5.2" 3053 + source = "registry+https://github.com/rust-lang/crates.io-index" 3054 + checksum = "edd106a334b7657c10b7c540a0106114feadeb4dc314513e97df481d5d966f42" 3055 + dependencies = [ 3056 + "byteorder", 3057 + "dirs", 3058 + "winapi", 3059 + ] 3060 + 3061 + [[package]] 3062 + name = "termcolor" 3063 + version = "1.4.1" 3064 + source = "registry+https://github.com/rust-lang/crates.io-index" 3065 + checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 3066 + dependencies = [ 3067 + "winapi-util", 3068 + ] 3069 + 3070 + [[package]] 3071 + name = "textwrap" 3072 + version = "0.16.1" 3073 + source = "registry+https://github.com/rust-lang/crates.io-index" 3074 + checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9" 3075 + 3076 + [[package]] 3077 + name = "thiserror" 3078 + version = "1.0.57" 3079 + source = "registry+https://github.com/rust-lang/crates.io-index" 3080 + checksum = "1e45bcbe8ed29775f228095caf2cd67af7a4ccf756ebff23a306bf3e8b47b24b" 3081 + dependencies = [ 3082 + "thiserror-impl", 3083 + ] 3084 + 3085 + [[package]] 3086 + name = "thiserror-impl" 3087 + version = "1.0.57" 3088 + source = "registry+https://github.com/rust-lang/crates.io-index" 3089 + checksum = "a953cb265bef375dae3de6663da4d3804eee9682ea80d8e2542529b73c531c81" 3090 + dependencies = [ 3091 + "proc-macro2", 3092 + "quote", 3093 + "syn 2.0.52", 3094 + ] 3095 + 3096 + [[package]] 3097 + name = "time" 3098 + version = "0.2.27" 3099 + source = "registry+https://github.com/rust-lang/crates.io-index" 3100 + checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242" 3101 + dependencies = [ 3102 + "const_fn", 3103 + "libc", 3104 + "standback", 3105 + "stdweb", 3106 + "time-macros 0.1.1", 3107 + "version_check", 3108 + "winapi", 3109 + ] 3110 + 3111 + [[package]] 3112 + name = "time" 3113 + version = "0.3.34" 3114 + source = "registry+https://github.com/rust-lang/crates.io-index" 3115 + checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749" 3116 + dependencies = [ 3117 + "deranged", 3118 + "itoa", 3119 + "num-conv", 3120 + "powerfmt", 3121 + "serde", 3122 + "time-core", 3123 + "time-macros 0.2.17", 3124 + ] 3125 + 3126 + [[package]] 3127 + name = "time-core" 3128 + version = "0.1.2" 3129 + source = "registry+https://github.com/rust-lang/crates.io-index" 3130 + checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 3131 + 3132 + [[package]] 3133 + name = "time-macros" 3134 + version = "0.1.1" 3135 + source = "registry+https://github.com/rust-lang/crates.io-index" 3136 + checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1" 3137 + dependencies = [ 3138 + "proc-macro-hack", 3139 + "time-macros-impl", 3140 + ] 3141 + 3142 + [[package]] 3143 + name = "time-macros" 3144 + version = "0.2.17" 3145 + source = "registry+https://github.com/rust-lang/crates.io-index" 3146 + checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774" 3147 + dependencies = [ 3148 + "num-conv", 3149 + "time-core", 3150 + ] 3151 + 3152 + [[package]] 3153 + name = "time-macros-impl" 3154 + version = "0.1.2" 3155 + source = "registry+https://github.com/rust-lang/crates.io-index" 3156 + checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f" 3157 + dependencies = [ 3158 + "proc-macro-hack", 3159 + "proc-macro2", 3160 + "quote", 3161 + "standback", 3162 + "syn 1.0.109", 3163 + ] 3164 + 3165 + [[package]] 3166 + name = "timeago" 3167 + version = "0.3.1" 3168 + source = "registry+https://github.com/rust-lang/crates.io-index" 3169 + checksum = "6ec32dde57efb15c035ac074118d7f32820451395f28cb0524a01d4e94983b26" 3170 + dependencies = [ 3171 + "chrono", 3172 + "isolang", 3173 + ] 3174 + 3175 + [[package]] 3176 + name = "tinyvec" 3177 + version = "1.6.0" 3178 + source = "registry+https://github.com/rust-lang/crates.io-index" 3179 + checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 3180 + dependencies = [ 3181 + "tinyvec_macros", 3182 + ] 3183 + 3184 + [[package]] 3185 + name = "tinyvec_macros" 3186 + version = "0.1.1" 3187 + source = "registry+https://github.com/rust-lang/crates.io-index" 3188 + checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 3189 + 3190 + [[package]] 3191 + name = "tokio" 3192 + version = "1.36.0" 3193 + source = "registry+https://github.com/rust-lang/crates.io-index" 3194 + checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" 3195 + dependencies = [ 3196 + "backtrace", 3197 + "bytes", 3198 + "libc", 3199 + "mio", 3200 + "num_cpus", 3201 + "parking_lot", 3202 + "pin-project-lite", 3203 + "signal-hook-registry", 3204 + "socket2", 3205 + "tokio-macros", 3206 + "windows-sys 0.48.0", 3207 + ] 3208 + 3209 + [[package]] 3210 + name = "tokio-macros" 3211 + version = "2.2.0" 3212 + source = "registry+https://github.com/rust-lang/crates.io-index" 3213 + checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" 3214 + dependencies = [ 3215 + "proc-macro2", 3216 + "quote", 3217 + "syn 2.0.52", 3218 + ] 3219 + 3220 + [[package]] 3221 + name = "tokio-native-tls" 3222 + version = "0.3.1" 3223 + source = "registry+https://github.com/rust-lang/crates.io-index" 3224 + checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 3225 + dependencies = [ 3226 + "native-tls", 3227 + "tokio", 3228 + ] 3229 + 3230 + [[package]] 3231 + name = "tokio-rustls" 3232 + version = "0.22.0" 3233 + source = "registry+https://github.com/rust-lang/crates.io-index" 3234 + checksum = "bc6844de72e57df1980054b38be3a9f4702aba4858be64dd700181a8a6d0e1b6" 3235 + dependencies = [ 3236 + "rustls 0.19.1", 3237 + "tokio", 3238 + "webpki 0.21.4", 3239 + ] 3240 + 3241 + [[package]] 3242 + name = "tokio-stream" 3243 + version = "0.1.14" 3244 + source = "registry+https://github.com/rust-lang/crates.io-index" 3245 + checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" 3246 + dependencies = [ 3247 + "futures-core", 3248 + "pin-project-lite", 3249 + "tokio", 3250 + ] 3251 + 3252 + [[package]] 3253 + name = "tokio-util" 3254 + version = "0.6.10" 3255 + source = "registry+https://github.com/rust-lang/crates.io-index" 3256 + checksum = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507" 3257 + dependencies = [ 3258 + "bytes", 3259 + "futures-core", 3260 + "futures-sink", 3261 + "log", 3262 + "pin-project-lite", 3263 + "tokio", 3264 + ] 3265 + 3266 + [[package]] 3267 + name = "tokio-util" 3268 + version = "0.7.10" 3269 + source = "registry+https://github.com/rust-lang/crates.io-index" 3270 + checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" 3271 + dependencies = [ 3272 + "bytes", 3273 + "futures-core", 3274 + "futures-sink", 3275 + "pin-project-lite", 3276 + "tokio", 3277 + "tracing", 3278 + ] 3279 + 3280 + [[package]] 3281 + name = "tower" 3282 + version = "0.4.13" 3283 + source = "registry+https://github.com/rust-lang/crates.io-index" 3284 + checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 3285 + dependencies = [ 3286 + "futures-core", 3287 + "futures-util", 3288 + "pin-project", 3289 + "pin-project-lite", 3290 + "tokio", 3291 + "tower-layer", 3292 + "tower-service", 3293 + "tracing", 3294 + ] 3295 + 3296 + [[package]] 3297 + name = "tower-layer" 3298 + version = "0.3.2" 3299 + source = "registry+https://github.com/rust-lang/crates.io-index" 3300 + checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" 3301 + 3302 + [[package]] 3303 + name = "tower-service" 3304 + version = "0.3.2" 3305 + source = "registry+https://github.com/rust-lang/crates.io-index" 3306 + checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 3307 + 3308 + [[package]] 3309 + name = "tracing" 3310 + version = "0.1.40" 3311 + source = "registry+https://github.com/rust-lang/crates.io-index" 3312 + checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 3313 + dependencies = [ 3314 + "log", 3315 + "pin-project-lite", 3316 + "tracing-attributes", 3317 + "tracing-core", 3318 + ] 3319 + 3320 + [[package]] 3321 + name = "tracing-attributes" 3322 + version = "0.1.27" 3323 + source = "registry+https://github.com/rust-lang/crates.io-index" 3324 + checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 3325 + dependencies = [ 3326 + "proc-macro2", 3327 + "quote", 3328 + "syn 2.0.52", 3329 + ] 3330 + 3331 + [[package]] 3332 + name = "tracing-core" 3333 + version = "0.1.32" 3334 + source = "registry+https://github.com/rust-lang/crates.io-index" 3335 + checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 3336 + dependencies = [ 3337 + "once_cell", 3338 + ] 3339 + 3340 + [[package]] 3341 + name = "try-lock" 3342 + version = "0.2.5" 3343 + source = "registry+https://github.com/rust-lang/crates.io-index" 3344 + checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 3345 + 3346 + [[package]] 3347 + name = "typenum" 3348 + version = "1.17.0" 3349 + source = "registry+https://github.com/rust-lang/crates.io-index" 3350 + checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 3351 + 3352 + [[package]] 3353 + name = "unicode-bidi" 3354 + version = "0.3.15" 3355 + source = "registry+https://github.com/rust-lang/crates.io-index" 3356 + checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 3357 + 3358 + [[package]] 3359 + name = "unicode-ident" 3360 + version = "1.0.12" 3361 + source = "registry+https://github.com/rust-lang/crates.io-index" 3362 + checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 3363 + 3364 + [[package]] 3365 + name = "unicode-normalization" 3366 + version = "0.1.23" 3367 + source = "registry+https://github.com/rust-lang/crates.io-index" 3368 + checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 3369 + dependencies = [ 3370 + "tinyvec", 3371 + ] 3372 + 3373 + [[package]] 3374 + name = "unicode-width" 3375 + version = "0.1.11" 3376 + source = "registry+https://github.com/rust-lang/crates.io-index" 3377 + checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" 3378 + 3379 + [[package]] 3380 + name = "unicode-xid" 3381 + version = "0.2.4" 3382 + source = "registry+https://github.com/rust-lang/crates.io-index" 3383 + checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 3384 + 3385 + [[package]] 3386 + name = "universal-hash" 3387 + version = "0.4.1" 3388 + source = "registry+https://github.com/rust-lang/crates.io-index" 3389 + checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05" 3390 + dependencies = [ 3391 + "generic-array", 3392 + "subtle", 3393 + ] 3394 + 3395 + [[package]] 3396 + name = "untrusted" 3397 + version = "0.7.1" 3398 + source = "registry+https://github.com/rust-lang/crates.io-index" 3399 + checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 3400 + 3401 + [[package]] 3402 + name = "untrusted" 3403 + version = "0.9.0" 3404 + source = "registry+https://github.com/rust-lang/crates.io-index" 3405 + checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 3406 + 3407 + [[package]] 3408 + name = "url" 3409 + version = "2.5.0" 3410 + source = "registry+https://github.com/rust-lang/crates.io-index" 3411 + checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 3412 + dependencies = [ 3413 + "form_urlencoded", 3414 + "idna", 3415 + "percent-encoding", 3416 + ] 3417 + 3418 + [[package]] 3419 + name = "urlencoding" 3420 + version = "1.3.3" 3421 + source = "registry+https://github.com/rust-lang/crates.io-index" 3422 + checksum = "5a1f0175e03a0973cf4afd476bef05c26e228520400eb1fd473ad417b1c00ffb" 3423 + 3424 + [[package]] 3425 + name = "uuid" 3426 + version = "1.7.0" 3427 + source = "registry+https://github.com/rust-lang/crates.io-index" 3428 + checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a" 3429 + dependencies = [ 3430 + "getrandom 0.2.12", 3431 + "serde", 3432 + ] 3433 + 3434 + [[package]] 3435 + name = "vcpkg" 3436 + version = "0.2.15" 3437 + source = "registry+https://github.com/rust-lang/crates.io-index" 3438 + checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 3439 + 3440 + [[package]] 3441 + name = "version_check" 3442 + version = "0.9.4" 3443 + source = "registry+https://github.com/rust-lang/crates.io-index" 3444 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 3445 + 3446 + [[package]] 3447 + name = "want" 3448 + version = "0.3.1" 3449 + source = "registry+https://github.com/rust-lang/crates.io-index" 3450 + checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 3451 + dependencies = [ 3452 + "try-lock", 3453 + ] 3454 + 3455 + [[package]] 3456 + name = "wasi" 3457 + version = "0.9.0+wasi-snapshot-preview1" 3458 + source = "registry+https://github.com/rust-lang/crates.io-index" 3459 + checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 3460 + 3461 + [[package]] 3462 + name = "wasi" 3463 + version = "0.11.0+wasi-snapshot-preview1" 3464 + source = "registry+https://github.com/rust-lang/crates.io-index" 3465 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 3466 + 3467 + [[package]] 3468 + name = "wasm-bindgen" 3469 + version = "0.2.92" 3470 + source = "registry+https://github.com/rust-lang/crates.io-index" 3471 + checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 3472 + dependencies = [ 3473 + "cfg-if 1.0.0", 3474 + "serde", 3475 + "serde_json", 3476 + "wasm-bindgen-macro", 3477 + ] 3478 + 3479 + [[package]] 3480 + name = "wasm-bindgen-backend" 3481 + version = "0.2.92" 3482 + source = "registry+https://github.com/rust-lang/crates.io-index" 3483 + checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 3484 + dependencies = [ 3485 + "bumpalo", 3486 + "log", 3487 + "once_cell", 3488 + "proc-macro2", 3489 + "quote", 3490 + "syn 2.0.52", 3491 + "wasm-bindgen-shared", 3492 + ] 3493 + 3494 + [[package]] 3495 + name = "wasm-bindgen-futures" 3496 + version = "0.4.42" 3497 + source = "registry+https://github.com/rust-lang/crates.io-index" 3498 + checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" 3499 + dependencies = [ 3500 + "cfg-if 1.0.0", 3501 + "js-sys", 3502 + "wasm-bindgen", 3503 + "web-sys", 3504 + ] 3505 + 3506 + [[package]] 3507 + name = "wasm-bindgen-macro" 3508 + version = "0.2.92" 3509 + source = "registry+https://github.com/rust-lang/crates.io-index" 3510 + checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 3511 + dependencies = [ 3512 + "quote", 3513 + "wasm-bindgen-macro-support", 3514 + ] 3515 + 3516 + [[package]] 3517 + name = "wasm-bindgen-macro-support" 3518 + version = "0.2.92" 3519 + source = "registry+https://github.com/rust-lang/crates.io-index" 3520 + checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 3521 + dependencies = [ 3522 + "proc-macro2", 3523 + "quote", 3524 + "syn 2.0.52", 3525 + "wasm-bindgen-backend", 3526 + "wasm-bindgen-shared", 3527 + ] 3528 + 3529 + [[package]] 3530 + name = "wasm-bindgen-shared" 3531 + version = "0.2.92" 3532 + source = "registry+https://github.com/rust-lang/crates.io-index" 3533 + checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 3534 + 3535 + [[package]] 3536 + name = "wasm-bindgen-test" 3537 + version = "0.3.42" 3538 + source = "registry+https://github.com/rust-lang/crates.io-index" 3539 + checksum = "d9bf62a58e0780af3e852044583deee40983e5886da43a271dd772379987667b" 3540 + dependencies = [ 3541 + "console_error_panic_hook", 3542 + "js-sys", 3543 + "scoped-tls", 3544 + "wasm-bindgen", 3545 + "wasm-bindgen-futures", 3546 + "wasm-bindgen-test-macro", 3547 + ] 3548 + 3549 + [[package]] 3550 + name = "wasm-bindgen-test-macro" 3551 + version = "0.3.42" 3552 + source = "registry+https://github.com/rust-lang/crates.io-index" 3553 + checksum = "b7f89739351a2e03cb94beb799d47fb2cac01759b40ec441f7de39b00cbf7ef0" 3554 + dependencies = [ 3555 + "proc-macro2", 3556 + "quote", 3557 + "syn 2.0.52", 3558 + ] 3559 + 3560 + [[package]] 3561 + name = "wasm-encoder" 3562 + version = "0.201.0" 3563 + source = "registry+https://github.com/rust-lang/crates.io-index" 3564 + checksum = "b9c7d2731df60006819b013f64ccc2019691deccf6e11a1804bc850cd6748f1a" 3565 + dependencies = [ 3566 + "leb128", 3567 + ] 3568 + 3569 + [[package]] 3570 + name = "wasmer" 3571 + version = "2.3.0" 3572 + source = "registry+https://github.com/rust-lang/crates.io-index" 3573 + checksum = "ea8d8361c9d006ea3d7797de7bd6b1492ffd0f91a22430cfda6c1658ad57bedf" 3574 + dependencies = [ 3575 + "cfg-if 1.0.0", 3576 + "indexmap 1.9.3", 3577 + "js-sys", 3578 + "loupe", 3579 + "more-asserts", 3580 + "target-lexicon", 3581 + "thiserror", 3582 + "wasm-bindgen", 3583 + "wasmer-artifact", 3584 + "wasmer-compiler", 3585 + "wasmer-compiler-cranelift", 3586 + "wasmer-derive", 3587 + "wasmer-engine", 3588 + "wasmer-engine-dylib", 3589 + "wasmer-engine-universal", 3590 + "wasmer-types", 3591 + "wasmer-vm", 3592 + "wat", 3593 + "winapi", 3594 + ] 3595 + 3596 + [[package]] 3597 + name = "wasmer-artifact" 3598 + version = "2.3.0" 3599 + source = "registry+https://github.com/rust-lang/crates.io-index" 3600 + checksum = "7aaf9428c29c1d8ad2ac0e45889ba8a568a835e33fd058964e5e500f2f7ce325" 3601 + dependencies = [ 3602 + "enumset", 3603 + "loupe", 3604 + "thiserror", 3605 + "wasmer-compiler", 3606 + "wasmer-types", 3607 + ] 3608 + 3609 + [[package]] 3610 + name = "wasmer-compiler" 3611 + version = "2.3.0" 3612 + source = "registry+https://github.com/rust-lang/crates.io-index" 3613 + checksum = "e67a6cd866aed456656db2cfea96c18baabbd33f676578482b85c51e1ee19d2c" 3614 + dependencies = [ 3615 + "enumset", 3616 + "loupe", 3617 + "rkyv", 3618 + "serde", 3619 + "serde_bytes", 3620 + "smallvec", 3621 + "target-lexicon", 3622 + "thiserror", 3623 + "wasmer-types", 3624 + "wasmparser", 3625 + ] 3626 + 3627 + [[package]] 3628 + name = "wasmer-compiler-cranelift" 3629 + version = "2.3.0" 3630 + source = "registry+https://github.com/rust-lang/crates.io-index" 3631 + checksum = "48be2f9f6495f08649e4f8b946a2cbbe119faf5a654aa1457f9504a99d23dae0" 3632 + dependencies = [ 3633 + "cranelift-codegen", 3634 + "cranelift-entity", 3635 + "cranelift-frontend", 3636 + "gimli 0.26.2", 3637 + "loupe", 3638 + "more-asserts", 3639 + "rayon", 3640 + "smallvec", 3641 + "target-lexicon", 3642 + "tracing", 3643 + "wasmer-compiler", 3644 + "wasmer-types", 3645 + ] 3646 + 3647 + [[package]] 3648 + name = "wasmer-derive" 3649 + version = "2.3.0" 3650 + source = "registry+https://github.com/rust-lang/crates.io-index" 3651 + checksum = "00e50405cc2a2f74ff574584710a5f2c1d5c93744acce2ca0866084739284b51" 3652 + dependencies = [ 3653 + "proc-macro-error", 3654 + "proc-macro2", 3655 + "quote", 3656 + "syn 1.0.109", 3657 + ] 3658 + 3659 + [[package]] 3660 + name = "wasmer-engine" 3661 + version = "2.3.0" 3662 + source = "registry+https://github.com/rust-lang/crates.io-index" 3663 + checksum = "3f98f010978c244db431b392aeab0661df7ea0822343334f8f2a920763548e45" 3664 + dependencies = [ 3665 + "backtrace", 3666 + "enumset", 3667 + "lazy_static", 3668 + "loupe", 3669 + "memmap2", 3670 + "more-asserts", 3671 + "rustc-demangle", 3672 + "serde", 3673 + "serde_bytes", 3674 + "target-lexicon", 3675 + "thiserror", 3676 + "wasmer-artifact", 3677 + "wasmer-compiler", 3678 + "wasmer-types", 3679 + "wasmer-vm", 3680 + ] 3681 + 3682 + [[package]] 3683 + name = "wasmer-engine-dylib" 3684 + version = "2.3.0" 3685 + source = "registry+https://github.com/rust-lang/crates.io-index" 3686 + checksum = "ad0358af9c154724587731175553805648d9acb8f6657880d165e378672b7e53" 3687 + dependencies = [ 3688 + "cfg-if 1.0.0", 3689 + "enum-iterator", 3690 + "enumset", 3691 + "leb128", 3692 + "libloading", 3693 + "loupe", 3694 + "object 0.28.4", 3695 + "rkyv", 3696 + "serde", 3697 + "tempfile", 3698 + "tracing", 3699 + "wasmer-artifact", 3700 + "wasmer-compiler", 3701 + "wasmer-engine", 3702 + "wasmer-object", 3703 + "wasmer-types", 3704 + "wasmer-vm", 3705 + "which", 3706 + ] 3707 + 3708 + [[package]] 3709 + name = "wasmer-engine-universal" 3710 + version = "2.3.0" 3711 + source = "registry+https://github.com/rust-lang/crates.io-index" 3712 + checksum = "440dc3d93c9ca47865a4f4edd037ea81bf983b5796b59b3d712d844b32dbef15" 3713 + dependencies = [ 3714 + "cfg-if 1.0.0", 3715 + "enumset", 3716 + "leb128", 3717 + "loupe", 3718 + "region", 3719 + "rkyv", 3720 + "wasmer-compiler", 3721 + "wasmer-engine", 3722 + "wasmer-engine-universal-artifact", 3723 + "wasmer-types", 3724 + "wasmer-vm", 3725 + "winapi", 3726 + ] 3727 + 3728 + [[package]] 3729 + name = "wasmer-engine-universal-artifact" 3730 + version = "2.3.0" 3731 + source = "registry+https://github.com/rust-lang/crates.io-index" 3732 + checksum = "68f1db3f54152657eb6e86c44b66525ff7801dad8328fe677da48dd06af9ad41" 3733 + dependencies = [ 3734 + "enum-iterator", 3735 + "enumset", 3736 + "loupe", 3737 + "rkyv", 3738 + "thiserror", 3739 + "wasmer-artifact", 3740 + "wasmer-compiler", 3741 + "wasmer-types", 3742 + ] 3743 + 3744 + [[package]] 3745 + name = "wasmer-object" 3746 + version = "2.3.0" 3747 + source = "registry+https://github.com/rust-lang/crates.io-index" 3748 + checksum = "8d831335ff3a44ecf451303f6f891175c642488036b92ceceb24ac8623a8fa8b" 3749 + dependencies = [ 3750 + "object 0.28.4", 3751 + "thiserror", 3752 + "wasmer-compiler", 3753 + "wasmer-types", 3754 + ] 3755 + 3756 + [[package]] 3757 + name = "wasmer-types" 3758 + version = "2.3.0" 3759 + source = "registry+https://github.com/rust-lang/crates.io-index" 3760 + checksum = "39df01ea05dc0a9bab67e054c7cb01521e53b35a7bb90bd02eca564ed0b2667f" 3761 + dependencies = [ 3762 + "backtrace", 3763 + "enum-iterator", 3764 + "indexmap 1.9.3", 3765 + "loupe", 3766 + "more-asserts", 3767 + "rkyv", 3768 + "serde", 3769 + "thiserror", 3770 + ] 3771 + 3772 + [[package]] 3773 + name = "wasmer-vfs" 3774 + version = "2.3.0" 3775 + source = "registry+https://github.com/rust-lang/crates.io-index" 3776 + checksum = "9302eae3edc53cb540c2d681e7f16d8274918c1ce207591f04fed351649e97c0" 3777 + dependencies = [ 3778 + "libc", 3779 + "thiserror", 3780 + "tracing", 3781 + ] 3782 + 3783 + [[package]] 3784 + name = "wasmer-vm" 3785 + version = "2.3.0" 3786 + source = "registry+https://github.com/rust-lang/crates.io-index" 3787 + checksum = "30d965fa61f4dc4cdb35a54daaf7ecec3563fbb94154a6c35433f879466247dd" 3788 + dependencies = [ 3789 + "backtrace", 3790 + "cc", 3791 + "cfg-if 1.0.0", 3792 + "corosensei", 3793 + "enum-iterator", 3794 + "indexmap 1.9.3", 3795 + "lazy_static", 3796 + "libc", 3797 + "loupe", 3798 + "mach", 3799 + "memoffset", 3800 + "more-asserts", 3801 + "region", 3802 + "rkyv", 3803 + "scopeguard", 3804 + "serde", 3805 + "thiserror", 3806 + "wasmer-artifact", 3807 + "wasmer-types", 3808 + "winapi", 3809 + ] 3810 + 3811 + [[package]] 3812 + name = "wasmer-wasi" 3813 + version = "2.3.0" 3814 + source = "registry+https://github.com/rust-lang/crates.io-index" 3815 + checksum = "fadbe31e3c1b6f3e398ad172b169152ae1a743ae6efd5f9ffb34019983319d99" 3816 + dependencies = [ 3817 + "cfg-if 1.0.0", 3818 + "generational-arena", 3819 + "getrandom 0.2.12", 3820 + "libc", 3821 + "thiserror", 3822 + "tracing", 3823 + "wasm-bindgen", 3824 + "wasmer", 3825 + "wasmer-vfs", 3826 + "wasmer-wasi-types", 3827 + "winapi", 3828 + ] 3829 + 3830 + [[package]] 3831 + name = "wasmer-wasi-types" 3832 + version = "2.3.0" 3833 + source = "registry+https://github.com/rust-lang/crates.io-index" 3834 + checksum = "22dc83aadbdf97388de3211cb6f105374f245a3cf2a5c65a16776e7a087a8468" 3835 + dependencies = [ 3836 + "byteorder", 3837 + "time 0.2.27", 3838 + "wasmer-types", 3839 + ] 3840 + 3841 + [[package]] 3842 + name = "wasmparser" 3843 + version = "0.83.0" 3844 + source = "registry+https://github.com/rust-lang/crates.io-index" 3845 + checksum = "718ed7c55c2add6548cca3ddd6383d738cd73b892df400e96b9aa876f0141d7a" 3846 + 3847 + [[package]] 3848 + name = "wast" 3849 + version = "201.0.0" 3850 + source = "registry+https://github.com/rust-lang/crates.io-index" 3851 + checksum = "1ef6e1ef34d7da3e2b374fd2b1a9c0227aff6cad596e1b24df9b58d0f6222faa" 3852 + dependencies = [ 3853 + "bumpalo", 3854 + "leb128", 3855 + "memchr", 3856 + "unicode-width", 3857 + "wasm-encoder", 3858 + ] 3859 + 3860 + [[package]] 3861 + name = "wat" 3862 + version = "1.201.0" 3863 + source = "registry+https://github.com/rust-lang/crates.io-index" 3864 + checksum = "453d5b37a45b98dee4f4cb68015fc73634d7883bbef1c65e6e9c78d454cf3f32" 3865 + dependencies = [ 3866 + "wast", 3867 + ] 3868 + 3869 + [[package]] 3870 + name = "web-sys" 3871 + version = "0.3.69" 3872 + source = "registry+https://github.com/rust-lang/crates.io-index" 3873 + checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" 3874 + dependencies = [ 3875 + "js-sys", 3876 + "wasm-bindgen", 3877 + ] 3878 + 3879 + [[package]] 3880 + name = "webpki" 3881 + version = "0.21.4" 3882 + source = "registry+https://github.com/rust-lang/crates.io-index" 3883 + checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea" 3884 + dependencies = [ 3885 + "ring 0.16.20", 3886 + "untrusted 0.7.1", 3887 + ] 3888 + 3889 + [[package]] 3890 + name = "webpki" 3891 + version = "0.22.4" 3892 + source = "registry+https://github.com/rust-lang/crates.io-index" 3893 + checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53" 3894 + dependencies = [ 3895 + "ring 0.17.8", 3896 + "untrusted 0.9.0", 3897 + ] 3898 + 3899 + [[package]] 3900 + name = "wee_alloc" 3901 + version = "0.4.5" 3902 + source = "registry+https://github.com/rust-lang/crates.io-index" 3903 + checksum = "dbb3b5a6b2bb17cb6ad44a2e68a43e8d2722c997da10e928665c72ec6c0a0b8e" 3904 + dependencies = [ 3905 + "cfg-if 0.1.10", 3906 + "libc", 3907 + "memory_units", 3908 + "winapi", 3909 + ] 3910 + 3911 + [[package]] 3912 + name = "which" 3913 + version = "4.4.2" 3914 + source = "registry+https://github.com/rust-lang/crates.io-index" 3915 + checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" 3916 + dependencies = [ 3917 + "either", 3918 + "home", 3919 + "once_cell", 3920 + "rustix", 3921 + ] 3922 + 3923 + [[package]] 3924 + name = "winapi" 3925 + version = "0.3.9" 3926 + source = "registry+https://github.com/rust-lang/crates.io-index" 3927 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 3928 + dependencies = [ 3929 + "winapi-i686-pc-windows-gnu", 3930 + "winapi-x86_64-pc-windows-gnu", 3931 + ] 3932 + 3933 + [[package]] 3934 + name = "winapi-i686-pc-windows-gnu" 3935 + version = "0.4.0" 3936 + source = "registry+https://github.com/rust-lang/crates.io-index" 3937 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 3938 + 3939 + [[package]] 3940 + name = "winapi-util" 3941 + version = "0.1.6" 3942 + source = "registry+https://github.com/rust-lang/crates.io-index" 3943 + checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 3944 + dependencies = [ 3945 + "winapi", 3946 + ] 3947 + 3948 + [[package]] 3949 + name = "winapi-x86_64-pc-windows-gnu" 3950 + version = "0.4.0" 3951 + source = "registry+https://github.com/rust-lang/crates.io-index" 3952 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3953 + 3954 + [[package]] 3955 + name = "windows-core" 3956 + version = "0.52.0" 3957 + source = "registry+https://github.com/rust-lang/crates.io-index" 3958 + checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 3959 + dependencies = [ 3960 + "windows-targets 0.52.4", 3961 + ] 3962 + 3963 + [[package]] 3964 + name = "windows-sys" 3965 + version = "0.33.0" 3966 + source = "registry+https://github.com/rust-lang/crates.io-index" 3967 + checksum = "43dbb096663629518eb1dfa72d80243ca5a6aca764cae62a2df70af760a9be75" 3968 + dependencies = [ 3969 + "windows_aarch64_msvc 0.33.0", 3970 + "windows_i686_gnu 0.33.0", 3971 + "windows_i686_msvc 0.33.0", 3972 + "windows_x86_64_gnu 0.33.0", 3973 + "windows_x86_64_msvc 0.33.0", 3974 + ] 3975 + 3976 + [[package]] 3977 + name = "windows-sys" 3978 + version = "0.48.0" 3979 + source = "registry+https://github.com/rust-lang/crates.io-index" 3980 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 3981 + dependencies = [ 3982 + "windows-targets 0.48.5", 3983 + ] 3984 + 3985 + [[package]] 3986 + name = "windows-sys" 3987 + version = "0.52.0" 3988 + source = "registry+https://github.com/rust-lang/crates.io-index" 3989 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 3990 + dependencies = [ 3991 + "windows-targets 0.52.4", 3992 + ] 3993 + 3994 + [[package]] 3995 + name = "windows-targets" 3996 + version = "0.48.5" 3997 + source = "registry+https://github.com/rust-lang/crates.io-index" 3998 + checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 3999 + dependencies = [ 4000 + "windows_aarch64_gnullvm 0.48.5", 4001 + "windows_aarch64_msvc 0.48.5", 4002 + "windows_i686_gnu 0.48.5", 4003 + "windows_i686_msvc 0.48.5", 4004 + "windows_x86_64_gnu 0.48.5", 4005 + "windows_x86_64_gnullvm 0.48.5", 4006 + "windows_x86_64_msvc 0.48.5", 4007 + ] 4008 + 4009 + [[package]] 4010 + name = "windows-targets" 4011 + version = "0.52.4" 4012 + source = "registry+https://github.com/rust-lang/crates.io-index" 4013 + checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b" 4014 + dependencies = [ 4015 + "windows_aarch64_gnullvm 0.52.4", 4016 + "windows_aarch64_msvc 0.52.4", 4017 + "windows_i686_gnu 0.52.4", 4018 + "windows_i686_msvc 0.52.4", 4019 + "windows_x86_64_gnu 0.52.4", 4020 + "windows_x86_64_gnullvm 0.52.4", 4021 + "windows_x86_64_msvc 0.52.4", 4022 + ] 4023 + 4024 + [[package]] 4025 + name = "windows_aarch64_gnullvm" 4026 + version = "0.48.5" 4027 + source = "registry+https://github.com/rust-lang/crates.io-index" 4028 + checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 4029 + 4030 + [[package]] 4031 + name = "windows_aarch64_gnullvm" 4032 + version = "0.52.4" 4033 + source = "registry+https://github.com/rust-lang/crates.io-index" 4034 + checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9" 4035 + 4036 + [[package]] 4037 + name = "windows_aarch64_msvc" 4038 + version = "0.33.0" 4039 + source = "registry+https://github.com/rust-lang/crates.io-index" 4040 + checksum = "cd761fd3eb9ab8cc1ed81e56e567f02dd82c4c837e48ac3b2181b9ffc5060807" 4041 + 4042 + [[package]] 4043 + name = "windows_aarch64_msvc" 4044 + version = "0.48.5" 4045 + source = "registry+https://github.com/rust-lang/crates.io-index" 4046 + checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 4047 + 4048 + [[package]] 4049 + name = "windows_aarch64_msvc" 4050 + version = "0.52.4" 4051 + source = "registry+https://github.com/rust-lang/crates.io-index" 4052 + checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675" 4053 + 4054 + [[package]] 4055 + name = "windows_i686_gnu" 4056 + version = "0.33.0" 4057 + source = "registry+https://github.com/rust-lang/crates.io-index" 4058 + checksum = "cab0cf703a96bab2dc0c02c0fa748491294bf9b7feb27e1f4f96340f208ada0e" 4059 + 4060 + [[package]] 4061 + name = "windows_i686_gnu" 4062 + version = "0.48.5" 4063 + source = "registry+https://github.com/rust-lang/crates.io-index" 4064 + checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 4065 + 4066 + [[package]] 4067 + name = "windows_i686_gnu" 4068 + version = "0.52.4" 4069 + source = "registry+https://github.com/rust-lang/crates.io-index" 4070 + checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3" 4071 + 4072 + [[package]] 4073 + name = "windows_i686_msvc" 4074 + version = "0.33.0" 4075 + source = "registry+https://github.com/rust-lang/crates.io-index" 4076 + checksum = "8cfdbe89cc9ad7ce618ba34abc34bbb6c36d99e96cae2245b7943cd75ee773d0" 4077 + 4078 + [[package]] 4079 + name = "windows_i686_msvc" 4080 + version = "0.48.5" 4081 + source = "registry+https://github.com/rust-lang/crates.io-index" 4082 + checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 4083 + 4084 + [[package]] 4085 + name = "windows_i686_msvc" 4086 + version = "0.52.4" 4087 + source = "registry+https://github.com/rust-lang/crates.io-index" 4088 + checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02" 4089 + 4090 + [[package]] 4091 + name = "windows_x86_64_gnu" 4092 + version = "0.33.0" 4093 + source = "registry+https://github.com/rust-lang/crates.io-index" 4094 + checksum = "b4dd9b0c0e9ece7bb22e84d70d01b71c6d6248b81a3c60d11869451b4cb24784" 4095 + 4096 + [[package]] 4097 + name = "windows_x86_64_gnu" 4098 + version = "0.48.5" 4099 + source = "registry+https://github.com/rust-lang/crates.io-index" 4100 + checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 4101 + 4102 + [[package]] 4103 + name = "windows_x86_64_gnu" 4104 + version = "0.52.4" 4105 + source = "registry+https://github.com/rust-lang/crates.io-index" 4106 + checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03" 4107 + 4108 + [[package]] 4109 + name = "windows_x86_64_gnullvm" 4110 + version = "0.48.5" 4111 + source = "registry+https://github.com/rust-lang/crates.io-index" 4112 + checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 4113 + 4114 + [[package]] 4115 + name = "windows_x86_64_gnullvm" 4116 + version = "0.52.4" 4117 + source = "registry+https://github.com/rust-lang/crates.io-index" 4118 + checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177" 4119 + 4120 + [[package]] 4121 + name = "windows_x86_64_msvc" 4122 + version = "0.33.0" 4123 + source = "registry+https://github.com/rust-lang/crates.io-index" 4124 + checksum = "ff1e4aa646495048ec7f3ffddc411e1d829c026a2ec62b39da15c1055e406eaa" 4125 + 4126 + [[package]] 4127 + name = "windows_x86_64_msvc" 4128 + version = "0.48.5" 4129 + source = "registry+https://github.com/rust-lang/crates.io-index" 4130 + checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 4131 + 4132 + [[package]] 4133 + name = "windows_x86_64_msvc" 4134 + version = "0.52.4" 4135 + source = "registry+https://github.com/rust-lang/crates.io-index" 4136 + checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8" 4137 + 4138 + [[package]] 4139 + name = "winreg" 4140 + version = "0.6.2" 4141 + source = "registry+https://github.com/rust-lang/crates.io-index" 4142 + checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9" 4143 + dependencies = [ 4144 + "winapi", 4145 + ] 4146 + 4147 + [[package]] 4148 + name = "winreg" 4149 + version = "0.50.0" 4150 + source = "registry+https://github.com/rust-lang/crates.io-index" 4151 + checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 4152 + dependencies = [ 4153 + "cfg-if 1.0.0", 4154 + "windows-sys 0.48.0", 4155 + ] 4156 + 4157 + [[package]] 4158 + name = "wyz" 4159 + version = "0.5.1" 4160 + source = "registry+https://github.com/rust-lang/crates.io-index" 4161 + checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 4162 + dependencies = [ 4163 + "tap", 4164 + ] 4165 + 4166 + [[package]] 4167 + name = "xmlparser" 4168 + version = "0.13.3" 4169 + source = "registry+https://github.com/rust-lang/crates.io-index" 4170 + checksum = "114ba2b24d2167ef6d67d7d04c8cc86522b87f490025f39f0303b7db5bf5e3d8" 4171 + 4172 + [[package]] 4173 + name = "yaml-rust" 4174 + version = "0.4.5" 4175 + source = "registry+https://github.com/rust-lang/crates.io-index" 4176 + checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 4177 + dependencies = [ 4178 + "linked-hash-map", 4179 + ] 4180 + 4181 + [[package]] 4182 + name = "zerocopy" 4183 + version = "0.7.32" 4184 + source = "registry+https://github.com/rust-lang/crates.io-index" 4185 + checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" 4186 + dependencies = [ 4187 + "zerocopy-derive", 4188 + ] 4189 + 4190 + [[package]] 4191 + name = "zerocopy-derive" 4192 + version = "0.7.32" 4193 + source = "registry+https://github.com/rust-lang/crates.io-index" 4194 + checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" 4195 + dependencies = [ 4196 + "proc-macro2", 4197 + "quote", 4198 + "syn 2.0.52", 4199 + ] 4200 + 4201 + [[package]] 4202 + name = "zeroize" 4203 + version = "1.7.0" 4204 + source = "registry+https://github.com/rust-lang/crates.io-index" 4205 + checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
+13 -12
pkgs/development/tools/database/replibyte/default.nix
··· 2 , stdenv 3 , rustPlatform 4 , fetchFromGitHub 5 - , fetchpatch 6 , pkg-config 7 , openssl 8 , Security 9 }: 10 11 rustPlatform.buildRustPackage rec { 12 pname = "replibyte"; 13 - version = "0.9.7"; 14 15 src = fetchFromGitHub { 16 owner = "Qovery"; 17 repo = pname; 18 rev = "v${version}"; 19 - sha256 = "02bdz0464d6gbkgbvn67sgn6cc6p6pjqacblh8nimy0r8b13x2ki"; 20 }; 21 22 - # Lockfile was updated in a commit after the release 23 - cargoPatches = [ 24 - (fetchpatch { 25 - url = "https://github.com/Qovery/Replibyte/commit/15f122cc83fff03ae410be705779ab964fa7b375.patch"; 26 - sha256 = "sha256-v95V4pl/2WN2do2SLVTJIO+5J7esqhC2BZaGBEtDhe0="; 27 - }) 28 - ]; 29 30 - cargoSha256 = "sha256-Y9CXpJTY/uszAVAbafa2+FumWKWFGaOLhK1FY+Nc+EU="; 31 32 nativeBuildInputs = [ pkg-config ]; 33 34 - buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ]; 35 36 cargoBuildFlags = [ "--all-features" ]; 37
··· 2 , stdenv 3 , rustPlatform 4 , fetchFromGitHub 5 , pkg-config 6 , openssl 7 , Security 8 + , SystemConfiguration 9 }: 10 11 rustPlatform.buildRustPackage rec { 12 pname = "replibyte"; 13 + version = "0.10.0"; 14 15 src = fetchFromGitHub { 16 owner = "Qovery"; 17 repo = pname; 18 rev = "v${version}"; 19 + hash = "sha256-VExA92g+1y65skxLKU62ZPUPOwdm9N73Ne9xW7Q0Sic="; 20 }; 21 22 + cargoLock = { 23 + lockFile = ./Cargo.lock; 24 + outputHashes = { 25 + "mongodb-schema-parser-0.5.0" = "sha256-P3srDY4bEDDYyic7Am2Cg+75j/kETf0uC7ui61TUJQA="; 26 + }; 27 + }; 28 29 + postPatch = '' 30 + cp ${./Cargo.lock} Cargo.lock 31 + ''; 32 33 nativeBuildInputs = [ pkg-config ]; 34 35 + buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration ]; 36 37 cargoBuildFlags = [ "--all-features" ]; 38
+1 -1
pkgs/top-level/all-packages.nix
··· 16751 rasm = callPackage ../development/compilers/rasm { }; 16752 16753 replibyte = callPackage ../development/tools/database/replibyte { 16754 - inherit (darwin.apple_sdk.frameworks) Security; 16755 }; 16756 16757 rgbds = callPackage ../development/compilers/rgbds { };
··· 16751 rasm = callPackage ../development/compilers/rasm { }; 16752 16753 replibyte = callPackage ../development/tools/database/replibyte { 16754 + inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration; 16755 }; 16756 16757 rgbds = callPackage ../development/compilers/rgbds { };