lol

Merge pull request #221229 from euank/anki-native

authored by

Sandro and committed by
GitHub
0754f149 a318c249

+5229 -176
+4849
pkgs/games/anki/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.19.0" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97" 10 + dependencies = [ 11 + "gimli", 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 = "aes" 22 + version = "0.7.5" 23 + source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8" 25 + dependencies = [ 26 + "cfg-if", 27 + "cipher 0.3.0", 28 + "cpufeatures", 29 + "opaque-debug", 30 + ] 31 + 32 + [[package]] 33 + name = "ahash" 34 + version = "0.7.6" 35 + source = "registry+https://github.com/rust-lang/crates.io-index" 36 + checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 37 + dependencies = [ 38 + "getrandom 0.2.8", 39 + "once_cell", 40 + "version_check", 41 + ] 42 + 43 + [[package]] 44 + name = "aho-corasick" 45 + version = "0.7.20" 46 + source = "registry+https://github.com/rust-lang/crates.io-index" 47 + checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" 48 + dependencies = [ 49 + "memchr", 50 + ] 51 + 52 + [[package]] 53 + name = "ammonia" 54 + version = "3.3.0" 55 + source = "registry+https://github.com/rust-lang/crates.io-index" 56 + checksum = "64e6d1c7838db705c9b756557ee27c384ce695a1c51a6fe528784cb1c6840170" 57 + dependencies = [ 58 + "html5ever 0.26.0", 59 + "maplit", 60 + "once_cell", 61 + "tendril", 62 + "url", 63 + ] 64 + 65 + [[package]] 66 + name = "android_system_properties" 67 + version = "0.1.5" 68 + source = "registry+https://github.com/rust-lang/crates.io-index" 69 + checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 70 + dependencies = [ 71 + "libc", 72 + ] 73 + 74 + [[package]] 75 + name = "anes" 76 + version = "0.1.6" 77 + source = "registry+https://github.com/rust-lang/crates.io-index" 78 + checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 79 + 80 + [[package]] 81 + name = "anki" 82 + version = "0.0.0" 83 + dependencies = [ 84 + "ammonia", 85 + "anki_i18n", 86 + "ascii_percent_encoding", 87 + "async-compression", 88 + "async-stream", 89 + "async-trait", 90 + "axum", 91 + "axum-client-ip", 92 + "blake3", 93 + "bytes", 94 + "chrono", 95 + "coarsetime", 96 + "convert_case 0.6.0", 97 + "criterion", 98 + "csv", 99 + "difflib", 100 + "env_logger", 101 + "flate2", 102 + "fluent", 103 + "fluent-bundle", 104 + "fnv", 105 + "futures", 106 + "hex", 107 + "htmlescape", 108 + "hyper", 109 + "id_tree", 110 + "itertools", 111 + "lazy_static", 112 + "nom", 113 + "num-integer", 114 + "num_cpus", 115 + "num_enum", 116 + "once_cell", 117 + "pin-project", 118 + "prost", 119 + "prost-build", 120 + "pulldown-cmark 0.9.2", 121 + "rand 0.8.5", 122 + "regex", 123 + "reqwest", 124 + "rusqlite", 125 + "scopeguard", 126 + "serde", 127 + "serde-aux", 128 + "serde_derive", 129 + "serde_json", 130 + "serde_repr", 131 + "serde_tuple", 132 + "sha1", 133 + "snafu", 134 + "strum", 135 + "tempfile", 136 + "tokio", 137 + "tokio-util", 138 + "tower-http", 139 + "tracing", 140 + "tracing-appender", 141 + "tracing-subscriber", 142 + "unic-ucd-category", 143 + "unicase", 144 + "unicode-normalization", 145 + "utime", 146 + "which", 147 + "windows", 148 + "wiremock", 149 + "workspace-hack", 150 + "zip", 151 + "zstd 0.12.2+zstd.1.5.2", 152 + ] 153 + 154 + [[package]] 155 + name = "anki_i18n" 156 + version = "0.0.0" 157 + dependencies = [ 158 + "fluent", 159 + "fluent-bundle", 160 + "fluent-syntax", 161 + "inflections", 162 + "intl-memoizer", 163 + "num-format", 164 + "phf 0.11.1", 165 + "serde", 166 + "serde_json", 167 + "unic-langid", 168 + "workspace-hack", 169 + ] 170 + 171 + [[package]] 172 + name = "anki_i18n_helpers" 173 + version = "0.0.0" 174 + dependencies = [ 175 + "fluent-syntax", 176 + "lazy_static", 177 + "regex", 178 + "serde_json", 179 + "walkdir", 180 + "workspace-hack", 181 + ] 182 + 183 + [[package]] 184 + name = "anyhow" 185 + version = "1.0.68" 186 + source = "registry+https://github.com/rust-lang/crates.io-index" 187 + checksum = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61" 188 + 189 + [[package]] 190 + name = "apple-bundles" 191 + version = "0.17.0" 192 + source = "registry+https://github.com/rust-lang/crates.io-index" 193 + checksum = "716b8a7bacf7325eb3e7a1a7f5ead4da91e1e16d9b56a25edea0e1e4ba21fd8e" 194 + dependencies = [ 195 + "anyhow", 196 + "plist", 197 + "simple-file-manifest", 198 + "walkdir", 199 + ] 200 + 201 + [[package]] 202 + name = "archives" 203 + version = "0.0.0" 204 + dependencies = [ 205 + "camino", 206 + "flate2", 207 + "reqwest", 208 + "sha2", 209 + "tar", 210 + "tokio", 211 + "workspace-hack", 212 + "xz2", 213 + "zip", 214 + "zstd 0.12.2+zstd.1.5.2", 215 + ] 216 + 217 + [[package]] 218 + name = "arrayref" 219 + version = "0.3.6" 220 + source = "registry+https://github.com/rust-lang/crates.io-index" 221 + checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544" 222 + 223 + [[package]] 224 + name = "arrayvec" 225 + version = "0.7.2" 226 + source = "registry+https://github.com/rust-lang/crates.io-index" 227 + checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" 228 + 229 + [[package]] 230 + name = "ascii_percent_encoding" 231 + version = "0.0.0" 232 + 233 + [[package]] 234 + name = "assert-json-diff" 235 + version = "2.0.2" 236 + source = "registry+https://github.com/rust-lang/crates.io-index" 237 + checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12" 238 + dependencies = [ 239 + "serde", 240 + "serde_json", 241 + ] 242 + 243 + [[package]] 244 + name = "async-channel" 245 + version = "1.8.0" 246 + source = "registry+https://github.com/rust-lang/crates.io-index" 247 + checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833" 248 + dependencies = [ 249 + "concurrent-queue", 250 + "event-listener", 251 + "futures-core", 252 + ] 253 + 254 + [[package]] 255 + name = "async-compression" 256 + version = "0.3.15" 257 + source = "registry+https://github.com/rust-lang/crates.io-index" 258 + checksum = "942c7cd7ae39e91bde4820d74132e9862e62c2f386c3aa90ccf55949f5bad63a" 259 + dependencies = [ 260 + "futures-core", 261 + "memchr", 262 + "pin-project-lite", 263 + "tokio", 264 + "zstd 0.11.2+zstd.1.5.2", 265 + "zstd-safe 5.0.2+zstd.1.5.2", 266 + ] 267 + 268 + [[package]] 269 + name = "async-stream" 270 + version = "0.3.3" 271 + source = "registry+https://github.com/rust-lang/crates.io-index" 272 + checksum = "dad5c83079eae9969be7fadefe640a1c566901f05ff91ab221de4b6f68d9507e" 273 + dependencies = [ 274 + "async-stream-impl", 275 + "futures-core", 276 + ] 277 + 278 + [[package]] 279 + name = "async-stream-impl" 280 + version = "0.3.3" 281 + source = "registry+https://github.com/rust-lang/crates.io-index" 282 + checksum = "10f203db73a71dfa2fb6dd22763990fa26f3d2625a6da2da900d23b87d26be27" 283 + dependencies = [ 284 + "proc-macro2", 285 + "quote", 286 + "syn", 287 + ] 288 + 289 + [[package]] 290 + name = "async-trait" 291 + version = "0.1.61" 292 + source = "registry+https://github.com/rust-lang/crates.io-index" 293 + checksum = "705339e0e4a9690e2908d2b3d049d85682cf19fbd5782494498fbf7003a6a282" 294 + dependencies = [ 295 + "proc-macro2", 296 + "quote", 297 + "syn", 298 + ] 299 + 300 + [[package]] 301 + name = "atty" 302 + version = "0.2.14" 303 + source = "registry+https://github.com/rust-lang/crates.io-index" 304 + checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 305 + dependencies = [ 306 + "hermit-abi 0.1.19", 307 + "libc", 308 + "winapi", 309 + ] 310 + 311 + [[package]] 312 + name = "autocfg" 313 + version = "1.1.0" 314 + source = "registry+https://github.com/rust-lang/crates.io-index" 315 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 316 + 317 + [[package]] 318 + name = "axum" 319 + version = "0.6.2" 320 + source = "registry+https://github.com/rust-lang/crates.io-index" 321 + checksum = "1304eab461cf02bd70b083ed8273388f9724c549b316ba3d1e213ce0e9e7fb7e" 322 + dependencies = [ 323 + "async-trait", 324 + "axum-core", 325 + "axum-macros", 326 + "bitflags", 327 + "bytes", 328 + "futures-util", 329 + "headers", 330 + "http", 331 + "http-body", 332 + "hyper", 333 + "itoa 1.0.5", 334 + "matchit", 335 + "memchr", 336 + "mime", 337 + "multer", 338 + "percent-encoding", 339 + "pin-project-lite", 340 + "rustversion", 341 + "serde", 342 + "serde_json", 343 + "serde_path_to_error", 344 + "serde_urlencoded", 345 + "sync_wrapper", 346 + "tokio", 347 + "tower", 348 + "tower-http", 349 + "tower-layer", 350 + "tower-service", 351 + ] 352 + 353 + [[package]] 354 + name = "axum-client-ip" 355 + version = "0.3.1" 356 + source = "registry+https://github.com/rust-lang/crates.io-index" 357 + checksum = "ddfb5a3ddd6367075d50629546fb46710584016ae7704cd03b6d41cb5be82e5a" 358 + dependencies = [ 359 + "axum", 360 + "forwarded-header-value", 361 + ] 362 + 363 + [[package]] 364 + name = "axum-core" 365 + version = "0.3.1" 366 + source = "registry+https://github.com/rust-lang/crates.io-index" 367 + checksum = "f487e40dc9daee24d8a1779df88522f159a54a980f99cfbe43db0be0bd3444a8" 368 + dependencies = [ 369 + "async-trait", 370 + "bytes", 371 + "futures-util", 372 + "http", 373 + "http-body", 374 + "mime", 375 + "rustversion", 376 + "tower-layer", 377 + "tower-service", 378 + ] 379 + 380 + [[package]] 381 + name = "axum-macros" 382 + version = "0.3.1" 383 + source = "registry+https://github.com/rust-lang/crates.io-index" 384 + checksum = "cc7d7c3e69f305217e317a28172aab29f275667f2e1c15b87451e134fe27c7b1" 385 + dependencies = [ 386 + "heck", 387 + "proc-macro2", 388 + "quote", 389 + "syn", 390 + ] 391 + 392 + [[package]] 393 + name = "backtrace" 394 + version = "0.3.67" 395 + source = "registry+https://github.com/rust-lang/crates.io-index" 396 + checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca" 397 + dependencies = [ 398 + "addr2line", 399 + "cc", 400 + "cfg-if", 401 + "libc", 402 + "miniz_oxide", 403 + "object", 404 + "rustc-demangle", 405 + ] 406 + 407 + [[package]] 408 + name = "base64" 409 + version = "0.13.1" 410 + source = "registry+https://github.com/rust-lang/crates.io-index" 411 + checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 412 + 413 + [[package]] 414 + name = "base64" 415 + version = "0.21.0" 416 + source = "registry+https://github.com/rust-lang/crates.io-index" 417 + checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" 418 + 419 + [[package]] 420 + name = "base64ct" 421 + version = "1.5.3" 422 + source = "registry+https://github.com/rust-lang/crates.io-index" 423 + checksum = "b645a089122eccb6111b4f81cbc1a49f5900ac4666bb93ac027feaecf15607bf" 424 + 425 + [[package]] 426 + name = "bitflags" 427 + version = "1.3.2" 428 + source = "registry+https://github.com/rust-lang/crates.io-index" 429 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 430 + 431 + [[package]] 432 + name = "blake3" 433 + version = "1.3.3" 434 + source = "registry+https://github.com/rust-lang/crates.io-index" 435 + checksum = "42ae2468a89544a466886840aa467a25b766499f4f04bf7d9fcd10ecee9fccef" 436 + dependencies = [ 437 + "arrayref", 438 + "arrayvec", 439 + "cc", 440 + "cfg-if", 441 + "constant_time_eq 0.2.4", 442 + "digest", 443 + ] 444 + 445 + [[package]] 446 + name = "block-buffer" 447 + version = "0.10.3" 448 + source = "registry+https://github.com/rust-lang/crates.io-index" 449 + checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e" 450 + dependencies = [ 451 + "generic-array", 452 + ] 453 + 454 + [[package]] 455 + name = "block-padding" 456 + version = "0.3.2" 457 + source = "registry+https://github.com/rust-lang/crates.io-index" 458 + checksum = "0a90ec2df9600c28a01c56c4784c9207a96d2451833aeceb8cc97e4c9548bb78" 459 + dependencies = [ 460 + "generic-array", 461 + ] 462 + 463 + [[package]] 464 + name = "bstr" 465 + version = "0.2.17" 466 + source = "registry+https://github.com/rust-lang/crates.io-index" 467 + checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" 468 + dependencies = [ 469 + "lazy_static", 470 + "memchr", 471 + "regex-automata", 472 + "serde", 473 + ] 474 + 475 + [[package]] 476 + name = "bstr" 477 + version = "1.1.0" 478 + source = "registry+https://github.com/rust-lang/crates.io-index" 479 + checksum = "b45ea9b00a7b3f2988e9a65ad3917e62123c38dba709b666506207be96d1790b" 480 + dependencies = [ 481 + "memchr", 482 + "serde", 483 + ] 484 + 485 + [[package]] 486 + name = "bumpalo" 487 + version = "3.12.0" 488 + source = "registry+https://github.com/rust-lang/crates.io-index" 489 + checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" 490 + 491 + [[package]] 492 + name = "byteorder" 493 + version = "1.4.3" 494 + source = "registry+https://github.com/rust-lang/crates.io-index" 495 + checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 496 + 497 + [[package]] 498 + name = "bytes" 499 + version = "1.3.0" 500 + source = "registry+https://github.com/rust-lang/crates.io-index" 501 + checksum = "dfb24e866b15a1af2a1b663f10c6b6b8f397a84aadb828f12e5b289ec23a3a3c" 502 + 503 + [[package]] 504 + name = "bzip2" 505 + version = "0.4.4" 506 + source = "registry+https://github.com/rust-lang/crates.io-index" 507 + checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" 508 + dependencies = [ 509 + "bzip2-sys", 510 + "libc", 511 + ] 512 + 513 + [[package]] 514 + name = "bzip2-sys" 515 + version = "0.1.11+1.0.8" 516 + source = "registry+https://github.com/rust-lang/crates.io-index" 517 + checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" 518 + dependencies = [ 519 + "cc", 520 + "libc", 521 + "pkg-config", 522 + ] 523 + 524 + [[package]] 525 + name = "camino" 526 + version = "1.1.2" 527 + source = "registry+https://github.com/rust-lang/crates.io-index" 528 + checksum = "c77df041dc383319cc661b428b6961a005db4d6808d5e12536931b1ca9556055" 529 + 530 + [[package]] 531 + name = "cast" 532 + version = "0.3.0" 533 + source = "registry+https://github.com/rust-lang/crates.io-index" 534 + checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 535 + 536 + [[package]] 537 + name = "cbc" 538 + version = "0.1.2" 539 + source = "registry+https://github.com/rust-lang/crates.io-index" 540 + checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6" 541 + dependencies = [ 542 + "cipher 0.4.3", 543 + ] 544 + 545 + [[package]] 546 + name = "cc" 547 + version = "1.0.78" 548 + source = "registry+https://github.com/rust-lang/crates.io-index" 549 + checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d" 550 + dependencies = [ 551 + "jobserver", 552 + ] 553 + 554 + [[package]] 555 + name = "cfg-if" 556 + version = "1.0.0" 557 + source = "registry+https://github.com/rust-lang/crates.io-index" 558 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 559 + 560 + [[package]] 561 + name = "chrono" 562 + version = "0.4.23" 563 + source = "registry+https://github.com/rust-lang/crates.io-index" 564 + checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f" 565 + dependencies = [ 566 + "iana-time-zone", 567 + "num-integer", 568 + "num-traits", 569 + "winapi", 570 + ] 571 + 572 + [[package]] 573 + name = "ciborium" 574 + version = "0.2.0" 575 + source = "registry+https://github.com/rust-lang/crates.io-index" 576 + checksum = "b0c137568cc60b904a7724001b35ce2630fd00d5d84805fbb608ab89509d788f" 577 + dependencies = [ 578 + "ciborium-io", 579 + "ciborium-ll", 580 + "serde", 581 + ] 582 + 583 + [[package]] 584 + name = "ciborium-io" 585 + version = "0.2.0" 586 + source = "registry+https://github.com/rust-lang/crates.io-index" 587 + checksum = "346de753af073cc87b52b2083a506b38ac176a44cfb05497b622e27be899b369" 588 + 589 + [[package]] 590 + name = "ciborium-ll" 591 + version = "0.2.0" 592 + source = "registry+https://github.com/rust-lang/crates.io-index" 593 + checksum = "213030a2b5a4e0c0892b6652260cf6ccac84827b83a85a534e178e3906c4cf1b" 594 + dependencies = [ 595 + "ciborium-io", 596 + "half", 597 + ] 598 + 599 + [[package]] 600 + name = "cipher" 601 + version = "0.3.0" 602 + source = "registry+https://github.com/rust-lang/crates.io-index" 603 + checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7" 604 + dependencies = [ 605 + "generic-array", 606 + ] 607 + 608 + [[package]] 609 + name = "cipher" 610 + version = "0.4.3" 611 + source = "registry+https://github.com/rust-lang/crates.io-index" 612 + checksum = "d1873270f8f7942c191139cb8a40fd228da6c3fd2fc376d7e92d47aa14aeb59e" 613 + dependencies = [ 614 + "crypto-common", 615 + "inout", 616 + ] 617 + 618 + [[package]] 619 + name = "clap" 620 + version = "3.2.23" 621 + source = "registry+https://github.com/rust-lang/crates.io-index" 622 + checksum = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5" 623 + dependencies = [ 624 + "bitflags", 625 + "clap_lex 0.2.4", 626 + "indexmap", 627 + "textwrap", 628 + ] 629 + 630 + [[package]] 631 + name = "clap" 632 + version = "4.1.1" 633 + source = "registry+https://github.com/rust-lang/crates.io-index" 634 + checksum = "4ec7a4128863c188deefe750ac1d1dfe66c236909f845af04beed823638dc1b2" 635 + dependencies = [ 636 + "bitflags", 637 + "clap_derive", 638 + "clap_lex 0.3.1", 639 + "is-terminal", 640 + "once_cell", 641 + "strsim", 642 + "termcolor", 643 + ] 644 + 645 + [[package]] 646 + name = "clap_derive" 647 + version = "4.1.0" 648 + source = "registry+https://github.com/rust-lang/crates.io-index" 649 + checksum = "684a277d672e91966334af371f1a7b5833f9aa00b07c84e92fbce95e00208ce8" 650 + dependencies = [ 651 + "heck", 652 + "proc-macro-error", 653 + "proc-macro2", 654 + "quote", 655 + "syn", 656 + ] 657 + 658 + [[package]] 659 + name = "clap_lex" 660 + version = "0.2.4" 661 + source = "registry+https://github.com/rust-lang/crates.io-index" 662 + checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 663 + dependencies = [ 664 + "os_str_bytes", 665 + ] 666 + 667 + [[package]] 668 + name = "clap_lex" 669 + version = "0.3.1" 670 + source = "registry+https://github.com/rust-lang/crates.io-index" 671 + checksum = "783fe232adfca04f90f56201b26d79682d4cd2625e0bc7290b95123afe558ade" 672 + dependencies = [ 673 + "os_str_bytes", 674 + ] 675 + 676 + [[package]] 677 + name = "coarsetime" 678 + version = "0.1.22" 679 + source = "registry+https://github.com/rust-lang/crates.io-index" 680 + checksum = "454038500439e141804c655b4cd1bc6a70bcb95cd2bc9463af5661b6956f0e46" 681 + dependencies = [ 682 + "libc", 683 + "once_cell", 684 + "wasi 0.11.0+wasi-snapshot-preview1", 685 + "wasm-bindgen", 686 + ] 687 + 688 + [[package]] 689 + name = "codespan" 690 + version = "0.11.1" 691 + source = "registry+https://github.com/rust-lang/crates.io-index" 692 + checksum = "3362992a0d9f1dd7c3d0e89e0ab2bb540b7a95fea8cd798090e758fda2899b5e" 693 + dependencies = [ 694 + "codespan-reporting", 695 + "serde", 696 + ] 697 + 698 + [[package]] 699 + name = "codespan-reporting" 700 + version = "0.11.1" 701 + source = "registry+https://github.com/rust-lang/crates.io-index" 702 + checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 703 + dependencies = [ 704 + "serde", 705 + "termcolor", 706 + "unicode-width", 707 + ] 708 + 709 + [[package]] 710 + name = "concurrent-queue" 711 + version = "2.1.0" 712 + source = "registry+https://github.com/rust-lang/crates.io-index" 713 + checksum = "c278839b831783b70278b14df4d45e1beb1aad306c07bb796637de9a0e323e8e" 714 + dependencies = [ 715 + "crossbeam-utils", 716 + ] 717 + 718 + [[package]] 719 + name = "configure" 720 + version = "0.0.0" 721 + dependencies = [ 722 + "ninja_gen", 723 + "workspace-hack", 724 + ] 725 + 726 + [[package]] 727 + name = "constant_time_eq" 728 + version = "0.1.5" 729 + source = "registry+https://github.com/rust-lang/crates.io-index" 730 + checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" 731 + 732 + [[package]] 733 + name = "constant_time_eq" 734 + version = "0.2.4" 735 + source = "registry+https://github.com/rust-lang/crates.io-index" 736 + checksum = "f3ad85c1f65dc7b37604eb0e89748faf0b9653065f2a8ef69f96a687ec1e9279" 737 + 738 + [[package]] 739 + name = "convert_case" 740 + version = "0.4.0" 741 + source = "registry+https://github.com/rust-lang/crates.io-index" 742 + checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 743 + 744 + [[package]] 745 + name = "convert_case" 746 + version = "0.6.0" 747 + source = "registry+https://github.com/rust-lang/crates.io-index" 748 + checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca" 749 + dependencies = [ 750 + "unicode-segmentation", 751 + ] 752 + 753 + [[package]] 754 + name = "core-foundation" 755 + version = "0.9.3" 756 + source = "registry+https://github.com/rust-lang/crates.io-index" 757 + checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 758 + dependencies = [ 759 + "core-foundation-sys", 760 + "libc", 761 + ] 762 + 763 + [[package]] 764 + name = "core-foundation-sys" 765 + version = "0.8.3" 766 + source = "registry+https://github.com/rust-lang/crates.io-index" 767 + checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 768 + 769 + [[package]] 770 + name = "cpufeatures" 771 + version = "0.2.5" 772 + source = "registry+https://github.com/rust-lang/crates.io-index" 773 + checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" 774 + dependencies = [ 775 + "libc", 776 + ] 777 + 778 + [[package]] 779 + name = "crc32fast" 780 + version = "1.3.2" 781 + source = "registry+https://github.com/rust-lang/crates.io-index" 782 + checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 783 + dependencies = [ 784 + "cfg-if", 785 + ] 786 + 787 + [[package]] 788 + name = "criterion" 789 + version = "0.4.0" 790 + source = "registry+https://github.com/rust-lang/crates.io-index" 791 + checksum = "e7c76e09c1aae2bc52b3d2f29e13c6572553b30c4aa1b8a49fd70de6412654cb" 792 + dependencies = [ 793 + "anes", 794 + "atty", 795 + "cast", 796 + "ciborium", 797 + "clap 3.2.23", 798 + "criterion-plot", 799 + "itertools", 800 + "lazy_static", 801 + "num-traits", 802 + "oorandom", 803 + "plotters", 804 + "rayon", 805 + "regex", 806 + "serde", 807 + "serde_derive", 808 + "serde_json", 809 + "tinytemplate", 810 + "walkdir", 811 + ] 812 + 813 + [[package]] 814 + name = "criterion-plot" 815 + version = "0.5.0" 816 + source = "registry+https://github.com/rust-lang/crates.io-index" 817 + checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 818 + dependencies = [ 819 + "cast", 820 + "itertools", 821 + ] 822 + 823 + [[package]] 824 + name = "crossbeam-channel" 825 + version = "0.5.6" 826 + source = "registry+https://github.com/rust-lang/crates.io-index" 827 + checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" 828 + dependencies = [ 829 + "cfg-if", 830 + "crossbeam-utils", 831 + ] 832 + 833 + [[package]] 834 + name = "crossbeam-deque" 835 + version = "0.8.2" 836 + source = "registry+https://github.com/rust-lang/crates.io-index" 837 + checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc" 838 + dependencies = [ 839 + "cfg-if", 840 + "crossbeam-epoch", 841 + "crossbeam-utils", 842 + ] 843 + 844 + [[package]] 845 + name = "crossbeam-epoch" 846 + version = "0.9.13" 847 + source = "registry+https://github.com/rust-lang/crates.io-index" 848 + checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a" 849 + dependencies = [ 850 + "autocfg", 851 + "cfg-if", 852 + "crossbeam-utils", 853 + "memoffset 0.7.1", 854 + "scopeguard", 855 + ] 856 + 857 + [[package]] 858 + name = "crossbeam-utils" 859 + version = "0.8.14" 860 + source = "registry+https://github.com/rust-lang/crates.io-index" 861 + checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f" 862 + dependencies = [ 863 + "cfg-if", 864 + ] 865 + 866 + [[package]] 867 + name = "crypto-common" 868 + version = "0.1.6" 869 + source = "registry+https://github.com/rust-lang/crates.io-index" 870 + checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 871 + dependencies = [ 872 + "generic-array", 873 + "typenum", 874 + ] 875 + 876 + [[package]] 877 + name = "cssparser" 878 + version = "0.27.2" 879 + source = "registry+https://github.com/rust-lang/crates.io-index" 880 + checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a" 881 + dependencies = [ 882 + "cssparser-macros", 883 + "dtoa-short", 884 + "itoa 0.4.8", 885 + "matches", 886 + "phf 0.8.0", 887 + "proc-macro2", 888 + "quote", 889 + "smallvec", 890 + "syn", 891 + ] 892 + 893 + [[package]] 894 + name = "cssparser-macros" 895 + version = "0.6.0" 896 + source = "registry+https://github.com/rust-lang/crates.io-index" 897 + checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e" 898 + dependencies = [ 899 + "quote", 900 + "syn", 901 + ] 902 + 903 + [[package]] 904 + name = "csv" 905 + version = "1.1.6" 906 + source = "git+https://github.com/ankitects/rust-csv.git?rev=1c9d3aab6f79a7d815c69f925a46a4590c115f90#1c9d3aab6f79a7d815c69f925a46a4590c115f90" 907 + dependencies = [ 908 + "bstr 0.2.17", 909 + "csv-core", 910 + "itoa 1.0.5", 911 + "ryu", 912 + "serde", 913 + ] 914 + 915 + [[package]] 916 + name = "csv-core" 917 + version = "0.1.10" 918 + source = "git+https://github.com/ankitects/rust-csv.git?rev=1c9d3aab6f79a7d815c69f925a46a4590c115f90#1c9d3aab6f79a7d815c69f925a46a4590c115f90" 919 + dependencies = [ 920 + "memchr", 921 + ] 922 + 923 + [[package]] 924 + name = "cxx" 925 + version = "1.0.86" 926 + source = "registry+https://github.com/rust-lang/crates.io-index" 927 + checksum = "51d1075c37807dcf850c379432f0df05ba52cc30f279c5cfc43cc221ce7f8579" 928 + dependencies = [ 929 + "cc", 930 + "cxxbridge-flags", 931 + "cxxbridge-macro", 932 + "link-cplusplus", 933 + ] 934 + 935 + [[package]] 936 + name = "cxx-build" 937 + version = "1.0.86" 938 + source = "registry+https://github.com/rust-lang/crates.io-index" 939 + checksum = "5044281f61b27bc598f2f6647d480aed48d2bf52d6eb0b627d84c0361b17aa70" 940 + dependencies = [ 941 + "cc", 942 + "codespan-reporting", 943 + "once_cell", 944 + "proc-macro2", 945 + "quote", 946 + "scratch", 947 + "syn", 948 + ] 949 + 950 + [[package]] 951 + name = "cxxbridge-flags" 952 + version = "1.0.86" 953 + source = "registry+https://github.com/rust-lang/crates.io-index" 954 + checksum = "61b50bc93ba22c27b0d31128d2d130a0a6b3d267ae27ef7e4fae2167dfe8781c" 955 + 956 + [[package]] 957 + name = "cxxbridge-macro" 958 + version = "1.0.86" 959 + source = "registry+https://github.com/rust-lang/crates.io-index" 960 + checksum = "39e61fda7e62115119469c7b3591fd913ecca96fb766cfd3f2e2502ab7bc87a5" 961 + dependencies = [ 962 + "proc-macro2", 963 + "quote", 964 + "syn", 965 + ] 966 + 967 + [[package]] 968 + name = "deadpool" 969 + version = "0.9.5" 970 + source = "registry+https://github.com/rust-lang/crates.io-index" 971 + checksum = "421fe0f90f2ab22016f32a9881be5134fdd71c65298917084b0c7477cbc3856e" 972 + dependencies = [ 973 + "async-trait", 974 + "deadpool-runtime", 975 + "num_cpus", 976 + "retain_mut", 977 + "tokio", 978 + ] 979 + 980 + [[package]] 981 + name = "deadpool-runtime" 982 + version = "0.1.2" 983 + source = "registry+https://github.com/rust-lang/crates.io-index" 984 + checksum = "eaa37046cc0f6c3cc6090fbdbf73ef0b8ef4cfcc37f6befc0020f63e8cf121e1" 985 + 986 + [[package]] 987 + name = "derive_more" 988 + version = "0.99.17" 989 + source = "registry+https://github.com/rust-lang/crates.io-index" 990 + checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 991 + dependencies = [ 992 + "convert_case 0.4.0", 993 + "proc-macro2", 994 + "quote", 995 + "rustc_version", 996 + "syn", 997 + ] 998 + 999 + [[package]] 1000 + name = "des" 1001 + version = "0.8.1" 1002 + source = "registry+https://github.com/rust-lang/crates.io-index" 1003 + checksum = "ffdd80ce8ce993de27e9f063a444a4d53ce8e8db4c1f00cc03af5ad5a9867a1e" 1004 + dependencies = [ 1005 + "cipher 0.4.3", 1006 + ] 1007 + 1008 + [[package]] 1009 + name = "difflib" 1010 + version = "0.4.0" 1011 + source = "registry+https://github.com/rust-lang/crates.io-index" 1012 + checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" 1013 + 1014 + [[package]] 1015 + name = "digest" 1016 + version = "0.10.6" 1017 + source = "registry+https://github.com/rust-lang/crates.io-index" 1018 + checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 1019 + dependencies = [ 1020 + "block-buffer", 1021 + "crypto-common", 1022 + "subtle", 1023 + ] 1024 + 1025 + [[package]] 1026 + name = "displaydoc" 1027 + version = "0.2.3" 1028 + source = "registry+https://github.com/rust-lang/crates.io-index" 1029 + checksum = "3bf95dc3f046b9da4f2d51833c0d3547d8564ef6910f5c1ed130306a75b92886" 1030 + dependencies = [ 1031 + "proc-macro2", 1032 + "quote", 1033 + "syn", 1034 + ] 1035 + 1036 + [[package]] 1037 + name = "doc-comment" 1038 + version = "0.3.3" 1039 + source = "registry+https://github.com/rust-lang/crates.io-index" 1040 + checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" 1041 + 1042 + [[package]] 1043 + name = "dtoa" 1044 + version = "0.4.8" 1045 + source = "registry+https://github.com/rust-lang/crates.io-index" 1046 + checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" 1047 + 1048 + [[package]] 1049 + name = "dtoa-short" 1050 + version = "0.3.3" 1051 + source = "registry+https://github.com/rust-lang/crates.io-index" 1052 + checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6" 1053 + dependencies = [ 1054 + "dtoa", 1055 + ] 1056 + 1057 + [[package]] 1058 + name = "duct" 1059 + version = "0.13.6" 1060 + source = "registry+https://github.com/rust-lang/crates.io-index" 1061 + checksum = "37ae3fc31835f74c2a7ceda3aeede378b0ae2e74c8f1c36559fcc9ae2a4e7d3e" 1062 + dependencies = [ 1063 + "libc", 1064 + "once_cell", 1065 + "os_pipe", 1066 + "shared_child", 1067 + ] 1068 + 1069 + [[package]] 1070 + name = "dunce" 1071 + version = "1.0.3" 1072 + source = "registry+https://github.com/rust-lang/crates.io-index" 1073 + checksum = "0bd4b30a6560bbd9b4620f4de34c3f14f60848e58a9b7216801afcb4c7b31c3c" 1074 + 1075 + [[package]] 1076 + name = "either" 1077 + version = "1.8.0" 1078 + source = "registry+https://github.com/rust-lang/crates.io-index" 1079 + checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797" 1080 + 1081 + [[package]] 1082 + name = "encoding_rs" 1083 + version = "0.8.31" 1084 + source = "registry+https://github.com/rust-lang/crates.io-index" 1085 + checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b" 1086 + dependencies = [ 1087 + "cfg-if", 1088 + ] 1089 + 1090 + [[package]] 1091 + name = "env_logger" 1092 + version = "0.10.0" 1093 + source = "registry+https://github.com/rust-lang/crates.io-index" 1094 + checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" 1095 + dependencies = [ 1096 + "humantime", 1097 + "is-terminal", 1098 + "log", 1099 + "regex", 1100 + "termcolor", 1101 + ] 1102 + 1103 + [[package]] 1104 + name = "errno" 1105 + version = "0.2.8" 1106 + source = "registry+https://github.com/rust-lang/crates.io-index" 1107 + checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 1108 + dependencies = [ 1109 + "errno-dragonfly", 1110 + "libc", 1111 + "winapi", 1112 + ] 1113 + 1114 + [[package]] 1115 + name = "errno-dragonfly" 1116 + version = "0.1.2" 1117 + source = "registry+https://github.com/rust-lang/crates.io-index" 1118 + checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 1119 + dependencies = [ 1120 + "cc", 1121 + "libc", 1122 + ] 1123 + 1124 + [[package]] 1125 + name = "event-listener" 1126 + version = "2.5.3" 1127 + source = "registry+https://github.com/rust-lang/crates.io-index" 1128 + checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1129 + 1130 + [[package]] 1131 + name = "fallible-iterator" 1132 + version = "0.2.0" 1133 + source = "registry+https://github.com/rust-lang/crates.io-index" 1134 + checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" 1135 + 1136 + [[package]] 1137 + name = "fallible-streaming-iterator" 1138 + version = "0.1.9" 1139 + source = "registry+https://github.com/rust-lang/crates.io-index" 1140 + checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" 1141 + 1142 + [[package]] 1143 + name = "fastrand" 1144 + version = "1.8.0" 1145 + source = "registry+https://github.com/rust-lang/crates.io-index" 1146 + checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" 1147 + dependencies = [ 1148 + "instant", 1149 + ] 1150 + 1151 + [[package]] 1152 + name = "filetime" 1153 + version = "0.2.19" 1154 + source = "registry+https://github.com/rust-lang/crates.io-index" 1155 + checksum = "4e884668cd0c7480504233e951174ddc3b382f7c2666e3b7310b5c4e7b0c37f9" 1156 + dependencies = [ 1157 + "cfg-if", 1158 + "libc", 1159 + "redox_syscall", 1160 + "windows-sys", 1161 + ] 1162 + 1163 + [[package]] 1164 + name = "find-winsdk" 1165 + version = "0.2.0" 1166 + source = "registry+https://github.com/rust-lang/crates.io-index" 1167 + checksum = "a8cbf17b871570c1f8612b763bac3e86290602bcf5dc3c5ce657e0e1e9071d9e" 1168 + dependencies = [ 1169 + "serde", 1170 + "serde_derive", 1171 + "winreg 0.5.1", 1172 + ] 1173 + 1174 + [[package]] 1175 + name = "fixedbitset" 1176 + version = "0.4.2" 1177 + source = "registry+https://github.com/rust-lang/crates.io-index" 1178 + checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" 1179 + 1180 + [[package]] 1181 + name = "flate2" 1182 + version = "1.0.25" 1183 + source = "registry+https://github.com/rust-lang/crates.io-index" 1184 + checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" 1185 + dependencies = [ 1186 + "crc32fast", 1187 + "miniz_oxide", 1188 + ] 1189 + 1190 + [[package]] 1191 + name = "fluent" 1192 + version = "0.16.0" 1193 + source = "registry+https://github.com/rust-lang/crates.io-index" 1194 + checksum = "61f69378194459db76abd2ce3952b790db103ceb003008d3d50d97c41ff847a7" 1195 + dependencies = [ 1196 + "fluent-bundle", 1197 + "unic-langid", 1198 + ] 1199 + 1200 + [[package]] 1201 + name = "fluent-bundle" 1202 + version = "0.15.2" 1203 + source = "registry+https://github.com/rust-lang/crates.io-index" 1204 + checksum = "e242c601dec9711505f6d5bbff5bedd4b61b2469f2e8bb8e57ee7c9747a87ffd" 1205 + dependencies = [ 1206 + "fluent-langneg", 1207 + "fluent-syntax", 1208 + "intl-memoizer", 1209 + "intl_pluralrules", 1210 + "rustc-hash", 1211 + "self_cell", 1212 + "smallvec", 1213 + "unic-langid", 1214 + ] 1215 + 1216 + [[package]] 1217 + name = "fluent-langneg" 1218 + version = "0.13.0" 1219 + source = "registry+https://github.com/rust-lang/crates.io-index" 1220 + checksum = "2c4ad0989667548f06ccd0e306ed56b61bd4d35458d54df5ec7587c0e8ed5e94" 1221 + dependencies = [ 1222 + "unic-langid", 1223 + ] 1224 + 1225 + [[package]] 1226 + name = "fluent-syntax" 1227 + version = "0.11.0" 1228 + source = "registry+https://github.com/rust-lang/crates.io-index" 1229 + checksum = "c0abed97648395c902868fee9026de96483933faa54ea3b40d652f7dfe61ca78" 1230 + dependencies = [ 1231 + "thiserror", 1232 + ] 1233 + 1234 + [[package]] 1235 + name = "fnv" 1236 + version = "1.0.7" 1237 + source = "registry+https://github.com/rust-lang/crates.io-index" 1238 + checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1239 + 1240 + [[package]] 1241 + name = "foreign-types" 1242 + version = "0.3.2" 1243 + source = "registry+https://github.com/rust-lang/crates.io-index" 1244 + checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 1245 + dependencies = [ 1246 + "foreign-types-shared", 1247 + ] 1248 + 1249 + [[package]] 1250 + name = "foreign-types-shared" 1251 + version = "0.1.1" 1252 + source = "registry+https://github.com/rust-lang/crates.io-index" 1253 + checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 1254 + 1255 + [[package]] 1256 + name = "form_urlencoded" 1257 + version = "1.1.0" 1258 + source = "registry+https://github.com/rust-lang/crates.io-index" 1259 + checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 1260 + dependencies = [ 1261 + "percent-encoding", 1262 + ] 1263 + 1264 + [[package]] 1265 + name = "forwarded-header-value" 1266 + version = "0.1.1" 1267 + source = "registry+https://github.com/rust-lang/crates.io-index" 1268 + checksum = "8835f84f38484cc86f110a805655697908257fb9a7af005234060891557198e9" 1269 + dependencies = [ 1270 + "nonempty", 1271 + "thiserror", 1272 + ] 1273 + 1274 + [[package]] 1275 + name = "fs2" 1276 + version = "0.4.3" 1277 + source = "registry+https://github.com/rust-lang/crates.io-index" 1278 + checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" 1279 + dependencies = [ 1280 + "libc", 1281 + "winapi", 1282 + ] 1283 + 1284 + [[package]] 1285 + name = "ftl" 1286 + version = "0.0.0" 1287 + dependencies = [ 1288 + "camino", 1289 + "snafu", 1290 + "workspace-hack", 1291 + ] 1292 + 1293 + [[package]] 1294 + name = "futf" 1295 + version = "0.1.5" 1296 + source = "registry+https://github.com/rust-lang/crates.io-index" 1297 + checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 1298 + dependencies = [ 1299 + "mac", 1300 + "new_debug_unreachable", 1301 + ] 1302 + 1303 + [[package]] 1304 + name = "futures" 1305 + version = "0.3.25" 1306 + source = "registry+https://github.com/rust-lang/crates.io-index" 1307 + checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0" 1308 + dependencies = [ 1309 + "futures-channel", 1310 + "futures-core", 1311 + "futures-executor", 1312 + "futures-io", 1313 + "futures-sink", 1314 + "futures-task", 1315 + "futures-util", 1316 + ] 1317 + 1318 + [[package]] 1319 + name = "futures-channel" 1320 + version = "0.3.25" 1321 + source = "registry+https://github.com/rust-lang/crates.io-index" 1322 + checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed" 1323 + dependencies = [ 1324 + "futures-core", 1325 + "futures-sink", 1326 + ] 1327 + 1328 + [[package]] 1329 + name = "futures-core" 1330 + version = "0.3.25" 1331 + source = "registry+https://github.com/rust-lang/crates.io-index" 1332 + checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac" 1333 + 1334 + [[package]] 1335 + name = "futures-executor" 1336 + version = "0.3.25" 1337 + source = "registry+https://github.com/rust-lang/crates.io-index" 1338 + checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2" 1339 + dependencies = [ 1340 + "futures-core", 1341 + "futures-task", 1342 + "futures-util", 1343 + ] 1344 + 1345 + [[package]] 1346 + name = "futures-io" 1347 + version = "0.3.25" 1348 + source = "registry+https://github.com/rust-lang/crates.io-index" 1349 + checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb" 1350 + 1351 + [[package]] 1352 + name = "futures-lite" 1353 + version = "1.12.0" 1354 + source = "registry+https://github.com/rust-lang/crates.io-index" 1355 + checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48" 1356 + dependencies = [ 1357 + "fastrand", 1358 + "futures-core", 1359 + "futures-io", 1360 + "memchr", 1361 + "parking", 1362 + "pin-project-lite", 1363 + "waker-fn", 1364 + ] 1365 + 1366 + [[package]] 1367 + name = "futures-macro" 1368 + version = "0.3.25" 1369 + source = "registry+https://github.com/rust-lang/crates.io-index" 1370 + checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d" 1371 + dependencies = [ 1372 + "proc-macro2", 1373 + "quote", 1374 + "syn", 1375 + ] 1376 + 1377 + [[package]] 1378 + name = "futures-sink" 1379 + version = "0.3.25" 1380 + source = "registry+https://github.com/rust-lang/crates.io-index" 1381 + checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9" 1382 + 1383 + [[package]] 1384 + name = "futures-task" 1385 + version = "0.3.25" 1386 + source = "registry+https://github.com/rust-lang/crates.io-index" 1387 + checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea" 1388 + 1389 + [[package]] 1390 + name = "futures-timer" 1391 + version = "3.0.2" 1392 + source = "registry+https://github.com/rust-lang/crates.io-index" 1393 + checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c" 1394 + 1395 + [[package]] 1396 + name = "futures-util" 1397 + version = "0.3.25" 1398 + source = "registry+https://github.com/rust-lang/crates.io-index" 1399 + checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6" 1400 + dependencies = [ 1401 + "futures-channel", 1402 + "futures-core", 1403 + "futures-io", 1404 + "futures-macro", 1405 + "futures-sink", 1406 + "futures-task", 1407 + "memchr", 1408 + "pin-project-lite", 1409 + "pin-utils", 1410 + "slab", 1411 + ] 1412 + 1413 + [[package]] 1414 + name = "fxhash" 1415 + version = "0.2.1" 1416 + source = "registry+https://github.com/rust-lang/crates.io-index" 1417 + checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 1418 + dependencies = [ 1419 + "byteorder", 1420 + ] 1421 + 1422 + [[package]] 1423 + name = "generic-array" 1424 + version = "0.14.6" 1425 + source = "registry+https://github.com/rust-lang/crates.io-index" 1426 + checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 1427 + dependencies = [ 1428 + "typenum", 1429 + "version_check", 1430 + ] 1431 + 1432 + [[package]] 1433 + name = "getopts" 1434 + version = "0.2.21" 1435 + source = "registry+https://github.com/rust-lang/crates.io-index" 1436 + checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5" 1437 + dependencies = [ 1438 + "unicode-width", 1439 + ] 1440 + 1441 + [[package]] 1442 + name = "getrandom" 1443 + version = "0.1.16" 1444 + source = "registry+https://github.com/rust-lang/crates.io-index" 1445 + checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 1446 + dependencies = [ 1447 + "cfg-if", 1448 + "libc", 1449 + "wasi 0.9.0+wasi-snapshot-preview1", 1450 + ] 1451 + 1452 + [[package]] 1453 + name = "getrandom" 1454 + version = "0.2.8" 1455 + source = "registry+https://github.com/rust-lang/crates.io-index" 1456 + checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 1457 + dependencies = [ 1458 + "cfg-if", 1459 + "libc", 1460 + "wasi 0.11.0+wasi-snapshot-preview1", 1461 + ] 1462 + 1463 + [[package]] 1464 + name = "gimli" 1465 + version = "0.27.0" 1466 + source = "registry+https://github.com/rust-lang/crates.io-index" 1467 + checksum = "dec7af912d60cdbd3677c1af9352ebae6fb8394d165568a2234df0fa00f87793" 1468 + 1469 + [[package]] 1470 + name = "glob" 1471 + version = "0.3.1" 1472 + source = "registry+https://github.com/rust-lang/crates.io-index" 1473 + checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 1474 + 1475 + [[package]] 1476 + name = "globset" 1477 + version = "0.4.10" 1478 + source = "registry+https://github.com/rust-lang/crates.io-index" 1479 + checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc" 1480 + dependencies = [ 1481 + "aho-corasick", 1482 + "bstr 1.1.0", 1483 + "fnv", 1484 + "log", 1485 + "regex", 1486 + ] 1487 + 1488 + [[package]] 1489 + name = "h2" 1490 + version = "0.3.15" 1491 + source = "registry+https://github.com/rust-lang/crates.io-index" 1492 + checksum = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4" 1493 + dependencies = [ 1494 + "bytes", 1495 + "fnv", 1496 + "futures-core", 1497 + "futures-sink", 1498 + "futures-util", 1499 + "http", 1500 + "indexmap", 1501 + "slab", 1502 + "tokio", 1503 + "tokio-util", 1504 + "tracing", 1505 + ] 1506 + 1507 + [[package]] 1508 + name = "half" 1509 + version = "1.8.2" 1510 + source = "registry+https://github.com/rust-lang/crates.io-index" 1511 + checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" 1512 + 1513 + [[package]] 1514 + name = "hashbrown" 1515 + version = "0.12.3" 1516 + source = "registry+https://github.com/rust-lang/crates.io-index" 1517 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1518 + dependencies = [ 1519 + "ahash", 1520 + ] 1521 + 1522 + [[package]] 1523 + name = "hashlink" 1524 + version = "0.8.1" 1525 + source = "registry+https://github.com/rust-lang/crates.io-index" 1526 + checksum = "69fe1fcf8b4278d860ad0548329f892a3631fb63f82574df68275f34cdbe0ffa" 1527 + dependencies = [ 1528 + "hashbrown", 1529 + ] 1530 + 1531 + [[package]] 1532 + name = "headers" 1533 + version = "0.3.8" 1534 + source = "registry+https://github.com/rust-lang/crates.io-index" 1535 + checksum = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584" 1536 + dependencies = [ 1537 + "base64 0.13.1", 1538 + "bitflags", 1539 + "bytes", 1540 + "headers-core", 1541 + "http", 1542 + "httpdate", 1543 + "mime", 1544 + "sha1", 1545 + ] 1546 + 1547 + [[package]] 1548 + name = "headers-core" 1549 + version = "0.2.0" 1550 + source = "registry+https://github.com/rust-lang/crates.io-index" 1551 + checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" 1552 + dependencies = [ 1553 + "http", 1554 + ] 1555 + 1556 + [[package]] 1557 + name = "heck" 1558 + version = "0.4.0" 1559 + source = "registry+https://github.com/rust-lang/crates.io-index" 1560 + checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" 1561 + 1562 + [[package]] 1563 + name = "hermit-abi" 1564 + version = "0.1.19" 1565 + source = "registry+https://github.com/rust-lang/crates.io-index" 1566 + checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 1567 + dependencies = [ 1568 + "libc", 1569 + ] 1570 + 1571 + [[package]] 1572 + name = "hermit-abi" 1573 + version = "0.2.6" 1574 + source = "registry+https://github.com/rust-lang/crates.io-index" 1575 + checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 1576 + dependencies = [ 1577 + "libc", 1578 + ] 1579 + 1580 + [[package]] 1581 + name = "hex" 1582 + version = "0.4.3" 1583 + source = "registry+https://github.com/rust-lang/crates.io-index" 1584 + checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1585 + 1586 + [[package]] 1587 + name = "hmac" 1588 + version = "0.12.1" 1589 + source = "registry+https://github.com/rust-lang/crates.io-index" 1590 + checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1591 + dependencies = [ 1592 + "digest", 1593 + ] 1594 + 1595 + [[package]] 1596 + name = "html5ever" 1597 + version = "0.25.2" 1598 + source = "registry+https://github.com/rust-lang/crates.io-index" 1599 + checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148" 1600 + dependencies = [ 1601 + "log", 1602 + "mac", 1603 + "markup5ever 0.10.1", 1604 + "proc-macro2", 1605 + "quote", 1606 + "syn", 1607 + ] 1608 + 1609 + [[package]] 1610 + name = "html5ever" 1611 + version = "0.26.0" 1612 + source = "registry+https://github.com/rust-lang/crates.io-index" 1613 + checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7" 1614 + dependencies = [ 1615 + "log", 1616 + "mac", 1617 + "markup5ever 0.11.0", 1618 + "proc-macro2", 1619 + "quote", 1620 + "syn", 1621 + ] 1622 + 1623 + [[package]] 1624 + name = "htmlescape" 1625 + version = "0.3.1" 1626 + source = "registry+https://github.com/rust-lang/crates.io-index" 1627 + checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163" 1628 + 1629 + [[package]] 1630 + name = "http" 1631 + version = "0.2.8" 1632 + source = "registry+https://github.com/rust-lang/crates.io-index" 1633 + checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" 1634 + dependencies = [ 1635 + "bytes", 1636 + "fnv", 1637 + "itoa 1.0.5", 1638 + ] 1639 + 1640 + [[package]] 1641 + name = "http-body" 1642 + version = "0.4.5" 1643 + source = "registry+https://github.com/rust-lang/crates.io-index" 1644 + checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 1645 + dependencies = [ 1646 + "bytes", 1647 + "http", 1648 + "pin-project-lite", 1649 + ] 1650 + 1651 + [[package]] 1652 + name = "http-range-header" 1653 + version = "0.3.0" 1654 + source = "registry+https://github.com/rust-lang/crates.io-index" 1655 + checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29" 1656 + 1657 + [[package]] 1658 + name = "http-types" 1659 + version = "2.12.0" 1660 + source = "registry+https://github.com/rust-lang/crates.io-index" 1661 + checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad" 1662 + dependencies = [ 1663 + "anyhow", 1664 + "async-channel", 1665 + "base64 0.13.1", 1666 + "futures-lite", 1667 + "http", 1668 + "infer", 1669 + "pin-project-lite", 1670 + "rand 0.7.3", 1671 + "serde", 1672 + "serde_json", 1673 + "serde_qs", 1674 + "serde_urlencoded", 1675 + "url", 1676 + ] 1677 + 1678 + [[package]] 1679 + name = "httparse" 1680 + version = "1.8.0" 1681 + source = "registry+https://github.com/rust-lang/crates.io-index" 1682 + checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 1683 + 1684 + [[package]] 1685 + name = "httpdate" 1686 + version = "1.0.2" 1687 + source = "registry+https://github.com/rust-lang/crates.io-index" 1688 + checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 1689 + 1690 + [[package]] 1691 + name = "humantime" 1692 + version = "2.1.0" 1693 + source = "registry+https://github.com/rust-lang/crates.io-index" 1694 + checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 1695 + 1696 + [[package]] 1697 + name = "hyper" 1698 + version = "0.14.23" 1699 + source = "registry+https://github.com/rust-lang/crates.io-index" 1700 + checksum = "034711faac9d2166cb1baf1a2fb0b60b1f277f8492fd72176c17f3515e1abd3c" 1701 + dependencies = [ 1702 + "bytes", 1703 + "futures-channel", 1704 + "futures-core", 1705 + "futures-util", 1706 + "h2", 1707 + "http", 1708 + "http-body", 1709 + "httparse", 1710 + "httpdate", 1711 + "itoa 1.0.5", 1712 + "pin-project-lite", 1713 + "socket2", 1714 + "tokio", 1715 + "tower-service", 1716 + "tracing", 1717 + "want", 1718 + ] 1719 + 1720 + [[package]] 1721 + name = "hyper-rustls" 1722 + version = "0.23.2" 1723 + source = "registry+https://github.com/rust-lang/crates.io-index" 1724 + checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c" 1725 + dependencies = [ 1726 + "http", 1727 + "hyper", 1728 + "rustls", 1729 + "tokio", 1730 + "tokio-rustls", 1731 + ] 1732 + 1733 + [[package]] 1734 + name = "hyper-tls" 1735 + version = "0.5.0" 1736 + source = "registry+https://github.com/rust-lang/crates.io-index" 1737 + checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 1738 + dependencies = [ 1739 + "bytes", 1740 + "hyper", 1741 + "native-tls", 1742 + "tokio", 1743 + "tokio-native-tls", 1744 + ] 1745 + 1746 + [[package]] 1747 + name = "iana-time-zone" 1748 + version = "0.1.53" 1749 + source = "registry+https://github.com/rust-lang/crates.io-index" 1750 + checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" 1751 + dependencies = [ 1752 + "android_system_properties", 1753 + "core-foundation-sys", 1754 + "iana-time-zone-haiku", 1755 + "js-sys", 1756 + "wasm-bindgen", 1757 + "winapi", 1758 + ] 1759 + 1760 + [[package]] 1761 + name = "iana-time-zone-haiku" 1762 + version = "0.1.1" 1763 + source = "registry+https://github.com/rust-lang/crates.io-index" 1764 + checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" 1765 + dependencies = [ 1766 + "cxx", 1767 + "cxx-build", 1768 + ] 1769 + 1770 + [[package]] 1771 + name = "id_tree" 1772 + version = "1.8.0" 1773 + source = "registry+https://github.com/rust-lang/crates.io-index" 1774 + checksum = "bcd9db8dd5be8bde5a2624ed4b2dfb74368fe7999eb9c4940fd3ca344b61071a" 1775 + dependencies = [ 1776 + "snowflake", 1777 + ] 1778 + 1779 + [[package]] 1780 + name = "idna" 1781 + version = "0.3.0" 1782 + source = "registry+https://github.com/rust-lang/crates.io-index" 1783 + checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 1784 + dependencies = [ 1785 + "unicode-bidi", 1786 + "unicode-normalization", 1787 + ] 1788 + 1789 + [[package]] 1790 + name = "indexmap" 1791 + version = "1.9.2" 1792 + source = "registry+https://github.com/rust-lang/crates.io-index" 1793 + checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" 1794 + dependencies = [ 1795 + "autocfg", 1796 + "hashbrown", 1797 + ] 1798 + 1799 + [[package]] 1800 + name = "indoc" 1801 + version = "1.0.8" 1802 + source = "registry+https://github.com/rust-lang/crates.io-index" 1803 + checksum = "da2d6f23ffea9d7e76c53eee25dfb67bcd8fde7f1198b0855350698c9f07c780" 1804 + 1805 + [[package]] 1806 + name = "infer" 1807 + version = "0.2.3" 1808 + source = "registry+https://github.com/rust-lang/crates.io-index" 1809 + checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac" 1810 + 1811 + [[package]] 1812 + name = "inflections" 1813 + version = "1.1.1" 1814 + source = "registry+https://github.com/rust-lang/crates.io-index" 1815 + checksum = "a257582fdcde896fd96463bf2d40eefea0580021c0712a0e2b028b60b47a837a" 1816 + 1817 + [[package]] 1818 + name = "inout" 1819 + version = "0.1.3" 1820 + source = "registry+https://github.com/rust-lang/crates.io-index" 1821 + checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 1822 + dependencies = [ 1823 + "block-padding", 1824 + "generic-array", 1825 + ] 1826 + 1827 + [[package]] 1828 + name = "instant" 1829 + version = "0.1.12" 1830 + source = "registry+https://github.com/rust-lang/crates.io-index" 1831 + checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1832 + dependencies = [ 1833 + "cfg-if", 1834 + ] 1835 + 1836 + [[package]] 1837 + name = "intl-memoizer" 1838 + version = "0.5.1" 1839 + source = "registry+https://github.com/rust-lang/crates.io-index" 1840 + checksum = "c310433e4a310918d6ed9243542a6b83ec1183df95dff8f23f87bb88a264a66f" 1841 + dependencies = [ 1842 + "type-map", 1843 + "unic-langid", 1844 + ] 1845 + 1846 + [[package]] 1847 + name = "intl_pluralrules" 1848 + version = "7.0.2" 1849 + source = "registry+https://github.com/rust-lang/crates.io-index" 1850 + checksum = "078ea7b7c29a2b4df841a7f6ac8775ff6074020c6776d48491ce2268e068f972" 1851 + dependencies = [ 1852 + "unic-langid", 1853 + ] 1854 + 1855 + [[package]] 1856 + name = "io-lifetimes" 1857 + version = "1.0.4" 1858 + source = "registry+https://github.com/rust-lang/crates.io-index" 1859 + checksum = "e7d6c6f8c91b4b9ed43484ad1a938e393caf35960fce7f82a040497207bd8e9e" 1860 + dependencies = [ 1861 + "libc", 1862 + "windows-sys", 1863 + ] 1864 + 1865 + [[package]] 1866 + name = "ipnet" 1867 + version = "2.7.1" 1868 + source = "registry+https://github.com/rust-lang/crates.io-index" 1869 + checksum = "30e22bd8629359895450b59ea7a776c850561b96a3b1d31321c1949d9e6c9146" 1870 + 1871 + [[package]] 1872 + name = "is-terminal" 1873 + version = "0.4.2" 1874 + source = "registry+https://github.com/rust-lang/crates.io-index" 1875 + checksum = "28dfb6c8100ccc63462345b67d1bbc3679177c75ee4bf59bf29c8b1d110b8189" 1876 + dependencies = [ 1877 + "hermit-abi 0.2.6", 1878 + "io-lifetimes", 1879 + "rustix", 1880 + "windows-sys", 1881 + ] 1882 + 1883 + [[package]] 1884 + name = "itertools" 1885 + version = "0.10.5" 1886 + source = "registry+https://github.com/rust-lang/crates.io-index" 1887 + checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 1888 + dependencies = [ 1889 + "either", 1890 + ] 1891 + 1892 + [[package]] 1893 + name = "itoa" 1894 + version = "0.4.8" 1895 + source = "registry+https://github.com/rust-lang/crates.io-index" 1896 + checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 1897 + 1898 + [[package]] 1899 + name = "itoa" 1900 + version = "1.0.5" 1901 + source = "registry+https://github.com/rust-lang/crates.io-index" 1902 + checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440" 1903 + 1904 + [[package]] 1905 + name = "jobserver" 1906 + version = "0.1.25" 1907 + source = "registry+https://github.com/rust-lang/crates.io-index" 1908 + checksum = "068b1ee6743e4d11fb9c6a1e6064b3693a1b600e7f5f5988047d98b3dc9fb90b" 1909 + dependencies = [ 1910 + "libc", 1911 + ] 1912 + 1913 + [[package]] 1914 + name = "js-sys" 1915 + version = "0.3.60" 1916 + source = "registry+https://github.com/rust-lang/crates.io-index" 1917 + checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" 1918 + dependencies = [ 1919 + "wasm-bindgen", 1920 + ] 1921 + 1922 + [[package]] 1923 + name = "junction" 1924 + version = "0.2.0" 1925 + source = "registry+https://github.com/rust-lang/crates.io-index" 1926 + checksum = "be39922b087cecaba4e2d5592dedfc8bda5d4a5a1231f143337cca207950b61d" 1927 + dependencies = [ 1928 + "scopeguard", 1929 + "winapi", 1930 + ] 1931 + 1932 + [[package]] 1933 + name = "kuchiki" 1934 + version = "0.8.1" 1935 + source = "registry+https://github.com/rust-lang/crates.io-index" 1936 + checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358" 1937 + dependencies = [ 1938 + "cssparser", 1939 + "html5ever 0.25.2", 1940 + "matches", 1941 + "selectors", 1942 + ] 1943 + 1944 + [[package]] 1945 + name = "lazy_static" 1946 + version = "1.4.0" 1947 + source = "registry+https://github.com/rust-lang/crates.io-index" 1948 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1949 + 1950 + [[package]] 1951 + name = "libc" 1952 + version = "0.2.139" 1953 + source = "registry+https://github.com/rust-lang/crates.io-index" 1954 + checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" 1955 + 1956 + [[package]] 1957 + name = "libsqlite3-sys" 1958 + version = "0.25.2" 1959 + source = "registry+https://github.com/rust-lang/crates.io-index" 1960 + checksum = "29f835d03d717946d28b1d1ed632eb6f0e24a299388ee623d0c23118d3e8a7fa" 1961 + dependencies = [ 1962 + "cc", 1963 + "pkg-config", 1964 + "vcpkg", 1965 + ] 1966 + 1967 + [[package]] 1968 + name = "line-wrap" 1969 + version = "0.1.1" 1970 + source = "registry+https://github.com/rust-lang/crates.io-index" 1971 + checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9" 1972 + dependencies = [ 1973 + "safemem", 1974 + ] 1975 + 1976 + [[package]] 1977 + name = "link-cplusplus" 1978 + version = "1.0.8" 1979 + source = "registry+https://github.com/rust-lang/crates.io-index" 1980 + checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5" 1981 + dependencies = [ 1982 + "cc", 1983 + ] 1984 + 1985 + [[package]] 1986 + name = "linkcheck" 1987 + version = "0.4.1-alpha.0" 1988 + source = "git+https://github.com/ankitects/linkcheck.git?rev=2f20798ce521cc594d510d4e417e76d5eac04d4b#2f20798ce521cc594d510d4e417e76d5eac04d4b" 1989 + dependencies = [ 1990 + "bytes", 1991 + "codespan", 1992 + "dunce", 1993 + "futures", 1994 + "http", 1995 + "kuchiki", 1996 + "lazy_static", 1997 + "linkify", 1998 + "log", 1999 + "pulldown-cmark 0.8.0", 2000 + "regex", 2001 + "reqwest", 2002 + "serde", 2003 + "thiserror", 2004 + "url", 2005 + ] 2006 + 2007 + [[package]] 2008 + name = "linkchecker" 2009 + version = "0.0.0" 2010 + dependencies = [ 2011 + "anki", 2012 + "futures", 2013 + "itertools", 2014 + "linkcheck", 2015 + "reqwest", 2016 + "strum", 2017 + "tokio", 2018 + "workspace-hack", 2019 + ] 2020 + 2021 + [[package]] 2022 + name = "linkify" 2023 + version = "0.5.0" 2024 + source = "registry+https://github.com/rust-lang/crates.io-index" 2025 + checksum = "78d59d732ba6d7eeefc418aab8057dc8e3da4374bd5802ffa95bebc04b4d1dfb" 2026 + dependencies = [ 2027 + "memchr", 2028 + ] 2029 + 2030 + [[package]] 2031 + name = "linux-raw-sys" 2032 + version = "0.1.4" 2033 + source = "registry+https://github.com/rust-lang/crates.io-index" 2034 + checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" 2035 + 2036 + [[package]] 2037 + name = "lock_api" 2038 + version = "0.4.9" 2039 + source = "registry+https://github.com/rust-lang/crates.io-index" 2040 + checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 2041 + dependencies = [ 2042 + "autocfg", 2043 + "scopeguard", 2044 + ] 2045 + 2046 + [[package]] 2047 + name = "log" 2048 + version = "0.4.17" 2049 + source = "registry+https://github.com/rust-lang/crates.io-index" 2050 + checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 2051 + dependencies = [ 2052 + "cfg-if", 2053 + ] 2054 + 2055 + [[package]] 2056 + name = "lzma-sys" 2057 + version = "0.1.20" 2058 + source = "registry+https://github.com/rust-lang/crates.io-index" 2059 + checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27" 2060 + dependencies = [ 2061 + "cc", 2062 + "libc", 2063 + "pkg-config", 2064 + ] 2065 + 2066 + [[package]] 2067 + name = "mac" 2068 + version = "0.1.1" 2069 + source = "registry+https://github.com/rust-lang/crates.io-index" 2070 + checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 2071 + 2072 + [[package]] 2073 + name = "makeapp" 2074 + version = "0.0.0" 2075 + dependencies = [ 2076 + "anyhow", 2077 + "apple-bundles", 2078 + "camino", 2079 + "clap 4.1.1", 2080 + "glob", 2081 + "lazy_static", 2082 + "plist", 2083 + "serde", 2084 + "serde_json", 2085 + "simple-file-manifest", 2086 + "walkdir", 2087 + "workspace-hack", 2088 + ] 2089 + 2090 + [[package]] 2091 + name = "makeinstall" 2092 + version = "0.0.0" 2093 + dependencies = [ 2094 + "anyhow", 2095 + "camino", 2096 + "clap 4.1.1", 2097 + "glob", 2098 + "tugger-windows-codesign", 2099 + "walkdir", 2100 + "workspace-hack", 2101 + ] 2102 + 2103 + [[package]] 2104 + name = "maplit" 2105 + version = "1.0.2" 2106 + source = "registry+https://github.com/rust-lang/crates.io-index" 2107 + checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" 2108 + 2109 + [[package]] 2110 + name = "markup5ever" 2111 + version = "0.10.1" 2112 + source = "registry+https://github.com/rust-lang/crates.io-index" 2113 + checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd" 2114 + dependencies = [ 2115 + "log", 2116 + "phf 0.8.0", 2117 + "phf_codegen 0.8.0", 2118 + "string_cache", 2119 + "string_cache_codegen", 2120 + "tendril", 2121 + ] 2122 + 2123 + [[package]] 2124 + name = "markup5ever" 2125 + version = "0.11.0" 2126 + source = "registry+https://github.com/rust-lang/crates.io-index" 2127 + checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016" 2128 + dependencies = [ 2129 + "log", 2130 + "phf 0.10.1", 2131 + "phf_codegen 0.10.0", 2132 + "string_cache", 2133 + "string_cache_codegen", 2134 + "tendril", 2135 + ] 2136 + 2137 + [[package]] 2138 + name = "matchers" 2139 + version = "0.1.0" 2140 + source = "registry+https://github.com/rust-lang/crates.io-index" 2141 + checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 2142 + dependencies = [ 2143 + "regex-automata", 2144 + ] 2145 + 2146 + [[package]] 2147 + name = "matches" 2148 + version = "0.1.9" 2149 + source = "registry+https://github.com/rust-lang/crates.io-index" 2150 + checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" 2151 + 2152 + [[package]] 2153 + name = "matchit" 2154 + version = "0.7.0" 2155 + source = "registry+https://github.com/rust-lang/crates.io-index" 2156 + checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40" 2157 + 2158 + [[package]] 2159 + name = "memchr" 2160 + version = "2.5.0" 2161 + source = "registry+https://github.com/rust-lang/crates.io-index" 2162 + checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 2163 + 2164 + [[package]] 2165 + name = "memoffset" 2166 + version = "0.7.1" 2167 + source = "registry+https://github.com/rust-lang/crates.io-index" 2168 + checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 2169 + dependencies = [ 2170 + "autocfg", 2171 + ] 2172 + 2173 + [[package]] 2174 + name = "memoffset" 2175 + version = "0.8.0" 2176 + source = "registry+https://github.com/rust-lang/crates.io-index" 2177 + checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 2178 + dependencies = [ 2179 + "autocfg", 2180 + ] 2181 + 2182 + [[package]] 2183 + name = "mime" 2184 + version = "0.3.16" 2185 + source = "registry+https://github.com/rust-lang/crates.io-index" 2186 + checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" 2187 + 2188 + [[package]] 2189 + name = "mime_guess" 2190 + version = "2.0.4" 2191 + source = "registry+https://github.com/rust-lang/crates.io-index" 2192 + checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" 2193 + dependencies = [ 2194 + "mime", 2195 + "unicase", 2196 + ] 2197 + 2198 + [[package]] 2199 + name = "minimal-lexical" 2200 + version = "0.2.1" 2201 + source = "registry+https://github.com/rust-lang/crates.io-index" 2202 + checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 2203 + 2204 + [[package]] 2205 + name = "miniz_oxide" 2206 + version = "0.6.2" 2207 + source = "registry+https://github.com/rust-lang/crates.io-index" 2208 + checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 2209 + dependencies = [ 2210 + "adler", 2211 + ] 2212 + 2213 + [[package]] 2214 + name = "mio" 2215 + version = "0.8.5" 2216 + source = "registry+https://github.com/rust-lang/crates.io-index" 2217 + checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de" 2218 + dependencies = [ 2219 + "libc", 2220 + "log", 2221 + "wasi 0.11.0+wasi-snapshot-preview1", 2222 + "windows-sys", 2223 + ] 2224 + 2225 + [[package]] 2226 + name = "multer" 2227 + version = "2.0.4" 2228 + source = "registry+https://github.com/rust-lang/crates.io-index" 2229 + checksum = "6ed4198ce7a4cbd2a57af78d28c6fbb57d81ac5f1d6ad79ac6c5587419cbdf22" 2230 + dependencies = [ 2231 + "bytes", 2232 + "encoding_rs", 2233 + "futures-util", 2234 + "http", 2235 + "httparse", 2236 + "log", 2237 + "memchr", 2238 + "mime", 2239 + "spin 0.9.4", 2240 + "version_check", 2241 + ] 2242 + 2243 + [[package]] 2244 + name = "multimap" 2245 + version = "0.8.3" 2246 + source = "registry+https://github.com/rust-lang/crates.io-index" 2247 + checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" 2248 + 2249 + [[package]] 2250 + name = "native-tls" 2251 + version = "0.2.11" 2252 + source = "registry+https://github.com/rust-lang/crates.io-index" 2253 + checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 2254 + dependencies = [ 2255 + "lazy_static", 2256 + "libc", 2257 + "log", 2258 + "openssl", 2259 + "openssl-probe", 2260 + "openssl-sys", 2261 + "schannel", 2262 + "security-framework", 2263 + "security-framework-sys", 2264 + "tempfile", 2265 + ] 2266 + 2267 + [[package]] 2268 + name = "new_debug_unreachable" 2269 + version = "1.0.4" 2270 + source = "registry+https://github.com/rust-lang/crates.io-index" 2271 + checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 2272 + 2273 + [[package]] 2274 + name = "ninja_gen" 2275 + version = "0.0.0" 2276 + dependencies = [ 2277 + "camino", 2278 + "globset", 2279 + "itertools", 2280 + "lazy_static", 2281 + "maplit", 2282 + "num_cpus", 2283 + "walkdir", 2284 + "which", 2285 + "workspace-hack", 2286 + ] 2287 + 2288 + [[package]] 2289 + name = "nodrop" 2290 + version = "0.1.14" 2291 + source = "registry+https://github.com/rust-lang/crates.io-index" 2292 + checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 2293 + 2294 + [[package]] 2295 + name = "nom" 2296 + version = "7.1.3" 2297 + source = "registry+https://github.com/rust-lang/crates.io-index" 2298 + checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 2299 + dependencies = [ 2300 + "memchr", 2301 + "minimal-lexical", 2302 + ] 2303 + 2304 + [[package]] 2305 + name = "nonempty" 2306 + version = "0.7.0" 2307 + source = "registry+https://github.com/rust-lang/crates.io-index" 2308 + checksum = "e9e591e719385e6ebaeb5ce5d3887f7d5676fceca6411d1925ccc95745f3d6f7" 2309 + 2310 + [[package]] 2311 + name = "nu-ansi-term" 2312 + version = "0.46.0" 2313 + source = "registry+https://github.com/rust-lang/crates.io-index" 2314 + checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 2315 + dependencies = [ 2316 + "overload", 2317 + "winapi", 2318 + ] 2319 + 2320 + [[package]] 2321 + name = "num-format" 2322 + version = "0.4.4" 2323 + source = "registry+https://github.com/rust-lang/crates.io-index" 2324 + checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" 2325 + dependencies = [ 2326 + "arrayvec", 2327 + "itoa 1.0.5", 2328 + ] 2329 + 2330 + [[package]] 2331 + name = "num-integer" 2332 + version = "0.1.45" 2333 + source = "registry+https://github.com/rust-lang/crates.io-index" 2334 + checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 2335 + dependencies = [ 2336 + "autocfg", 2337 + "num-traits", 2338 + ] 2339 + 2340 + [[package]] 2341 + name = "num-traits" 2342 + version = "0.2.15" 2343 + source = "registry+https://github.com/rust-lang/crates.io-index" 2344 + checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 2345 + dependencies = [ 2346 + "autocfg", 2347 + ] 2348 + 2349 + [[package]] 2350 + name = "num_cpus" 2351 + version = "1.15.0" 2352 + source = "registry+https://github.com/rust-lang/crates.io-index" 2353 + checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 2354 + dependencies = [ 2355 + "hermit-abi 0.2.6", 2356 + "libc", 2357 + ] 2358 + 2359 + [[package]] 2360 + name = "num_enum" 2361 + version = "0.5.7" 2362 + source = "registry+https://github.com/rust-lang/crates.io-index" 2363 + checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9" 2364 + dependencies = [ 2365 + "num_enum_derive", 2366 + ] 2367 + 2368 + [[package]] 2369 + name = "num_enum_derive" 2370 + version = "0.5.7" 2371 + source = "registry+https://github.com/rust-lang/crates.io-index" 2372 + checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce" 2373 + dependencies = [ 2374 + "proc-macro-crate", 2375 + "proc-macro2", 2376 + "quote", 2377 + "syn", 2378 + ] 2379 + 2380 + [[package]] 2381 + name = "object" 2382 + version = "0.30.2" 2383 + source = "registry+https://github.com/rust-lang/crates.io-index" 2384 + checksum = "2b8c786513eb403643f2a88c244c2aaa270ef2153f55094587d0c48a3cf22a83" 2385 + dependencies = [ 2386 + "memchr", 2387 + ] 2388 + 2389 + [[package]] 2390 + name = "once_cell" 2391 + version = "1.17.0" 2392 + source = "registry+https://github.com/rust-lang/crates.io-index" 2393 + checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66" 2394 + 2395 + [[package]] 2396 + name = "oorandom" 2397 + version = "11.1.3" 2398 + source = "registry+https://github.com/rust-lang/crates.io-index" 2399 + checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 2400 + 2401 + [[package]] 2402 + name = "opaque-debug" 2403 + version = "0.3.0" 2404 + source = "registry+https://github.com/rust-lang/crates.io-index" 2405 + checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 2406 + 2407 + [[package]] 2408 + name = "openssl" 2409 + version = "0.10.45" 2410 + source = "registry+https://github.com/rust-lang/crates.io-index" 2411 + checksum = "b102428fd03bc5edf97f62620f7298614c45cedf287c271e7ed450bbaf83f2e1" 2412 + dependencies = [ 2413 + "bitflags", 2414 + "cfg-if", 2415 + "foreign-types", 2416 + "libc", 2417 + "once_cell", 2418 + "openssl-macros", 2419 + "openssl-sys", 2420 + ] 2421 + 2422 + [[package]] 2423 + name = "openssl-macros" 2424 + version = "0.1.0" 2425 + source = "registry+https://github.com/rust-lang/crates.io-index" 2426 + checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 2427 + dependencies = [ 2428 + "proc-macro2", 2429 + "quote", 2430 + "syn", 2431 + ] 2432 + 2433 + [[package]] 2434 + name = "openssl-probe" 2435 + version = "0.1.5" 2436 + source = "registry+https://github.com/rust-lang/crates.io-index" 2437 + checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 2438 + 2439 + [[package]] 2440 + name = "openssl-sys" 2441 + version = "0.9.80" 2442 + source = "registry+https://github.com/rust-lang/crates.io-index" 2443 + checksum = "23bbbf7854cd45b83958ebe919f0e8e516793727652e27fda10a8384cfc790b7" 2444 + dependencies = [ 2445 + "autocfg", 2446 + "cc", 2447 + "libc", 2448 + "pkg-config", 2449 + "vcpkg", 2450 + ] 2451 + 2452 + [[package]] 2453 + name = "os_pipe" 2454 + version = "1.1.2" 2455 + source = "registry+https://github.com/rust-lang/crates.io-index" 2456 + checksum = "c6a252f1f8c11e84b3ab59d7a488e48e4478a93937e027076638c49536204639" 2457 + dependencies = [ 2458 + "libc", 2459 + "windows-sys", 2460 + ] 2461 + 2462 + [[package]] 2463 + name = "os_str_bytes" 2464 + version = "6.4.1" 2465 + source = "registry+https://github.com/rust-lang/crates.io-index" 2466 + checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee" 2467 + 2468 + [[package]] 2469 + name = "overload" 2470 + version = "0.1.1" 2471 + source = "registry+https://github.com/rust-lang/crates.io-index" 2472 + checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 2473 + 2474 + [[package]] 2475 + name = "p12" 2476 + version = "0.6.3" 2477 + source = "registry+https://github.com/rust-lang/crates.io-index" 2478 + checksum = "d4873306de53fe82e7e484df31e1e947d61514b6ea2ed6cd7b45d63006fd9224" 2479 + dependencies = [ 2480 + "cbc", 2481 + "cipher 0.4.3", 2482 + "des", 2483 + "getrandom 0.2.8", 2484 + "hmac", 2485 + "lazy_static", 2486 + "rc2", 2487 + "sha1", 2488 + "yasna", 2489 + ] 2490 + 2491 + [[package]] 2492 + name = "parking" 2493 + version = "2.0.0" 2494 + source = "registry+https://github.com/rust-lang/crates.io-index" 2495 + checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72" 2496 + 2497 + [[package]] 2498 + name = "parking_lot" 2499 + version = "0.12.1" 2500 + source = "registry+https://github.com/rust-lang/crates.io-index" 2501 + checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 2502 + dependencies = [ 2503 + "lock_api", 2504 + "parking_lot_core", 2505 + ] 2506 + 2507 + [[package]] 2508 + name = "parking_lot_core" 2509 + version = "0.9.6" 2510 + source = "registry+https://github.com/rust-lang/crates.io-index" 2511 + checksum = "ba1ef8814b5c993410bb3adfad7a5ed269563e4a2f90c41f5d85be7fb47133bf" 2512 + dependencies = [ 2513 + "cfg-if", 2514 + "libc", 2515 + "redox_syscall", 2516 + "smallvec", 2517 + "windows-sys", 2518 + ] 2519 + 2520 + [[package]] 2521 + name = "password-hash" 2522 + version = "0.4.2" 2523 + source = "registry+https://github.com/rust-lang/crates.io-index" 2524 + checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700" 2525 + dependencies = [ 2526 + "base64ct", 2527 + "rand_core 0.6.4", 2528 + "subtle", 2529 + ] 2530 + 2531 + [[package]] 2532 + name = "pbkdf2" 2533 + version = "0.11.0" 2534 + source = "registry+https://github.com/rust-lang/crates.io-index" 2535 + checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" 2536 + dependencies = [ 2537 + "digest", 2538 + "hmac", 2539 + "password-hash", 2540 + "sha2", 2541 + ] 2542 + 2543 + [[package]] 2544 + name = "pem" 2545 + version = "1.1.1" 2546 + source = "registry+https://github.com/rust-lang/crates.io-index" 2547 + checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8" 2548 + dependencies = [ 2549 + "base64 0.13.1", 2550 + ] 2551 + 2552 + [[package]] 2553 + name = "percent-encoding" 2554 + version = "2.2.0" 2555 + source = "registry+https://github.com/rust-lang/crates.io-index" 2556 + checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 2557 + 2558 + [[package]] 2559 + name = "petgraph" 2560 + version = "0.6.2" 2561 + source = "registry+https://github.com/rust-lang/crates.io-index" 2562 + checksum = "e6d5014253a1331579ce62aa67443b4a658c5e7dd03d4bc6d302b94474888143" 2563 + dependencies = [ 2564 + "fixedbitset", 2565 + "indexmap", 2566 + ] 2567 + 2568 + [[package]] 2569 + name = "phf" 2570 + version = "0.8.0" 2571 + source = "registry+https://github.com/rust-lang/crates.io-index" 2572 + checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 2573 + dependencies = [ 2574 + "phf_macros 0.8.0", 2575 + "phf_shared 0.8.0", 2576 + "proc-macro-hack", 2577 + ] 2578 + 2579 + [[package]] 2580 + name = "phf" 2581 + version = "0.10.1" 2582 + source = "registry+https://github.com/rust-lang/crates.io-index" 2583 + checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" 2584 + dependencies = [ 2585 + "phf_shared 0.10.0", 2586 + ] 2587 + 2588 + [[package]] 2589 + name = "phf" 2590 + version = "0.11.1" 2591 + source = "registry+https://github.com/rust-lang/crates.io-index" 2592 + checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c" 2593 + dependencies = [ 2594 + "phf_macros 0.11.1", 2595 + "phf_shared 0.11.1", 2596 + ] 2597 + 2598 + [[package]] 2599 + name = "phf_codegen" 2600 + version = "0.8.0" 2601 + source = "registry+https://github.com/rust-lang/crates.io-index" 2602 + checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 2603 + dependencies = [ 2604 + "phf_generator 0.8.0", 2605 + "phf_shared 0.8.0", 2606 + ] 2607 + 2608 + [[package]] 2609 + name = "phf_codegen" 2610 + version = "0.10.0" 2611 + source = "registry+https://github.com/rust-lang/crates.io-index" 2612 + checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd" 2613 + dependencies = [ 2614 + "phf_generator 0.10.0", 2615 + "phf_shared 0.10.0", 2616 + ] 2617 + 2618 + [[package]] 2619 + name = "phf_generator" 2620 + version = "0.8.0" 2621 + source = "registry+https://github.com/rust-lang/crates.io-index" 2622 + checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 2623 + dependencies = [ 2624 + "phf_shared 0.8.0", 2625 + "rand 0.7.3", 2626 + ] 2627 + 2628 + [[package]] 2629 + name = "phf_generator" 2630 + version = "0.10.0" 2631 + source = "registry+https://github.com/rust-lang/crates.io-index" 2632 + checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 2633 + dependencies = [ 2634 + "phf_shared 0.10.0", 2635 + "rand 0.8.5", 2636 + ] 2637 + 2638 + [[package]] 2639 + name = "phf_generator" 2640 + version = "0.11.1" 2641 + source = "registry+https://github.com/rust-lang/crates.io-index" 2642 + checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf" 2643 + dependencies = [ 2644 + "phf_shared 0.11.1", 2645 + "rand 0.8.5", 2646 + ] 2647 + 2648 + [[package]] 2649 + name = "phf_macros" 2650 + version = "0.8.0" 2651 + source = "registry+https://github.com/rust-lang/crates.io-index" 2652 + checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c" 2653 + dependencies = [ 2654 + "phf_generator 0.8.0", 2655 + "phf_shared 0.8.0", 2656 + "proc-macro-hack", 2657 + "proc-macro2", 2658 + "quote", 2659 + "syn", 2660 + ] 2661 + 2662 + [[package]] 2663 + name = "phf_macros" 2664 + version = "0.11.1" 2665 + source = "registry+https://github.com/rust-lang/crates.io-index" 2666 + checksum = "92aacdc5f16768709a569e913f7451034034178b05bdc8acda226659a3dccc66" 2667 + dependencies = [ 2668 + "phf_generator 0.11.1", 2669 + "phf_shared 0.11.1", 2670 + "proc-macro2", 2671 + "quote", 2672 + "syn", 2673 + ] 2674 + 2675 + [[package]] 2676 + name = "phf_shared" 2677 + version = "0.8.0" 2678 + source = "registry+https://github.com/rust-lang/crates.io-index" 2679 + checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 2680 + dependencies = [ 2681 + "siphasher", 2682 + ] 2683 + 2684 + [[package]] 2685 + name = "phf_shared" 2686 + version = "0.10.0" 2687 + source = "registry+https://github.com/rust-lang/crates.io-index" 2688 + checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 2689 + dependencies = [ 2690 + "siphasher", 2691 + ] 2692 + 2693 + [[package]] 2694 + name = "phf_shared" 2695 + version = "0.11.1" 2696 + source = "registry+https://github.com/rust-lang/crates.io-index" 2697 + checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676" 2698 + dependencies = [ 2699 + "siphasher", 2700 + ] 2701 + 2702 + [[package]] 2703 + name = "pin-project" 2704 + version = "1.0.12" 2705 + source = "registry+https://github.com/rust-lang/crates.io-index" 2706 + checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" 2707 + dependencies = [ 2708 + "pin-project-internal", 2709 + ] 2710 + 2711 + [[package]] 2712 + name = "pin-project-internal" 2713 + version = "1.0.12" 2714 + source = "registry+https://github.com/rust-lang/crates.io-index" 2715 + checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" 2716 + dependencies = [ 2717 + "proc-macro2", 2718 + "quote", 2719 + "syn", 2720 + ] 2721 + 2722 + [[package]] 2723 + name = "pin-project-lite" 2724 + version = "0.2.9" 2725 + source = "registry+https://github.com/rust-lang/crates.io-index" 2726 + checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 2727 + 2728 + [[package]] 2729 + name = "pin-utils" 2730 + version = "0.1.0" 2731 + source = "registry+https://github.com/rust-lang/crates.io-index" 2732 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2733 + 2734 + [[package]] 2735 + name = "pkg-config" 2736 + version = "0.3.26" 2737 + source = "registry+https://github.com/rust-lang/crates.io-index" 2738 + checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 2739 + 2740 + [[package]] 2741 + name = "plist" 2742 + version = "1.4.0" 2743 + source = "registry+https://github.com/rust-lang/crates.io-index" 2744 + checksum = "5329b8f106a176ab0dce4aae5da86bfcb139bb74fb00882859e03745011f3635" 2745 + dependencies = [ 2746 + "base64 0.13.1", 2747 + "indexmap", 2748 + "line-wrap", 2749 + "quick-xml", 2750 + "serde", 2751 + "time", 2752 + ] 2753 + 2754 + [[package]] 2755 + name = "plotters" 2756 + version = "0.3.4" 2757 + source = "registry+https://github.com/rust-lang/crates.io-index" 2758 + checksum = "2538b639e642295546c50fcd545198c9d64ee2a38620a628724a3b266d5fbf97" 2759 + dependencies = [ 2760 + "num-traits", 2761 + "plotters-backend", 2762 + "plotters-svg", 2763 + "wasm-bindgen", 2764 + "web-sys", 2765 + ] 2766 + 2767 + [[package]] 2768 + name = "plotters-backend" 2769 + version = "0.3.4" 2770 + source = "registry+https://github.com/rust-lang/crates.io-index" 2771 + checksum = "193228616381fecdc1224c62e96946dfbc73ff4384fba576e052ff8c1bea8142" 2772 + 2773 + [[package]] 2774 + name = "plotters-svg" 2775 + version = "0.3.3" 2776 + source = "registry+https://github.com/rust-lang/crates.io-index" 2777 + checksum = "f9a81d2759aae1dae668f783c308bc5c8ebd191ff4184aaa1b37f65a6ae5a56f" 2778 + dependencies = [ 2779 + "plotters-backend", 2780 + ] 2781 + 2782 + [[package]] 2783 + name = "ppv-lite86" 2784 + version = "0.2.17" 2785 + source = "registry+https://github.com/rust-lang/crates.io-index" 2786 + checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 2787 + 2788 + [[package]] 2789 + name = "precomputed-hash" 2790 + version = "0.1.1" 2791 + source = "registry+https://github.com/rust-lang/crates.io-index" 2792 + checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 2793 + 2794 + [[package]] 2795 + name = "prettyplease" 2796 + version = "0.1.23" 2797 + source = "registry+https://github.com/rust-lang/crates.io-index" 2798 + checksum = "e97e3215779627f01ee256d2fad52f3d95e8e1c11e9fc6fd08f7cd455d5d5c78" 2799 + dependencies = [ 2800 + "proc-macro2", 2801 + "syn", 2802 + ] 2803 + 2804 + [[package]] 2805 + name = "proc-macro-crate" 2806 + version = "1.2.1" 2807 + source = "registry+https://github.com/rust-lang/crates.io-index" 2808 + checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9" 2809 + dependencies = [ 2810 + "once_cell", 2811 + "thiserror", 2812 + "toml", 2813 + ] 2814 + 2815 + [[package]] 2816 + name = "proc-macro-error" 2817 + version = "1.0.4" 2818 + source = "registry+https://github.com/rust-lang/crates.io-index" 2819 + checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 2820 + dependencies = [ 2821 + "proc-macro-error-attr", 2822 + "proc-macro2", 2823 + "quote", 2824 + "syn", 2825 + "version_check", 2826 + ] 2827 + 2828 + [[package]] 2829 + name = "proc-macro-error-attr" 2830 + version = "1.0.4" 2831 + source = "registry+https://github.com/rust-lang/crates.io-index" 2832 + checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 2833 + dependencies = [ 2834 + "proc-macro2", 2835 + "quote", 2836 + "version_check", 2837 + ] 2838 + 2839 + [[package]] 2840 + name = "proc-macro-hack" 2841 + version = "0.5.20+deprecated" 2842 + source = "registry+https://github.com/rust-lang/crates.io-index" 2843 + checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 2844 + 2845 + [[package]] 2846 + name = "proc-macro2" 2847 + version = "1.0.50" 2848 + source = "registry+https://github.com/rust-lang/crates.io-index" 2849 + checksum = "6ef7d57beacfaf2d8aee5937dab7b7f28de3cb8b1828479bb5de2a7106f2bae2" 2850 + dependencies = [ 2851 + "unicode-ident", 2852 + ] 2853 + 2854 + [[package]] 2855 + name = "prost" 2856 + version = "0.11.6" 2857 + source = "registry+https://github.com/rust-lang/crates.io-index" 2858 + checksum = "21dc42e00223fc37204bd4aa177e69420c604ca4a183209a8f9de30c6d934698" 2859 + dependencies = [ 2860 + "bytes", 2861 + "prost-derive", 2862 + ] 2863 + 2864 + [[package]] 2865 + name = "prost-build" 2866 + version = "0.11.6" 2867 + source = "registry+https://github.com/rust-lang/crates.io-index" 2868 + checksum = "a3f8ad728fb08fe212df3c05169e940fbb6d9d16a877ddde14644a983ba2012e" 2869 + dependencies = [ 2870 + "bytes", 2871 + "heck", 2872 + "itertools", 2873 + "lazy_static", 2874 + "log", 2875 + "multimap", 2876 + "petgraph", 2877 + "prettyplease", 2878 + "prost", 2879 + "prost-types", 2880 + "regex", 2881 + "syn", 2882 + "tempfile", 2883 + "which", 2884 + ] 2885 + 2886 + [[package]] 2887 + name = "prost-derive" 2888 + version = "0.11.6" 2889 + source = "registry+https://github.com/rust-lang/crates.io-index" 2890 + checksum = "8bda8c0881ea9f722eb9629376db3d0b903b462477c1aafcb0566610ac28ac5d" 2891 + dependencies = [ 2892 + "anyhow", 2893 + "itertools", 2894 + "proc-macro2", 2895 + "quote", 2896 + "syn", 2897 + ] 2898 + 2899 + [[package]] 2900 + name = "prost-types" 2901 + version = "0.11.6" 2902 + source = "registry+https://github.com/rust-lang/crates.io-index" 2903 + checksum = "a5e0526209433e96d83d750dd81a99118edbc55739e7e61a46764fd2ad537788" 2904 + dependencies = [ 2905 + "bytes", 2906 + "prost", 2907 + ] 2908 + 2909 + [[package]] 2910 + name = "pulldown-cmark" 2911 + version = "0.8.0" 2912 + source = "registry+https://github.com/rust-lang/crates.io-index" 2913 + checksum = "ffade02495f22453cd593159ea2f59827aae7f53fa8323f756799b670881dcf8" 2914 + dependencies = [ 2915 + "bitflags", 2916 + "getopts", 2917 + "memchr", 2918 + "unicase", 2919 + ] 2920 + 2921 + [[package]] 2922 + name = "pulldown-cmark" 2923 + version = "0.9.2" 2924 + source = "registry+https://github.com/rust-lang/crates.io-index" 2925 + checksum = "2d9cc634bc78768157b5cbfe988ffcd1dcba95cd2b2f03a88316c08c6d00ed63" 2926 + dependencies = [ 2927 + "bitflags", 2928 + "getopts", 2929 + "memchr", 2930 + "unicase", 2931 + ] 2932 + 2933 + [[package]] 2934 + name = "pyo3" 2935 + version = "0.18.0" 2936 + source = "registry+https://github.com/rust-lang/crates.io-index" 2937 + checksum = "ccd4149c8c3975099622b4e1962dac27565cf5663b76452c3e2b66e0b6824277" 2938 + dependencies = [ 2939 + "cfg-if", 2940 + "indoc", 2941 + "libc", 2942 + "memoffset 0.8.0", 2943 + "parking_lot", 2944 + "pyo3-build-config", 2945 + "pyo3-ffi", 2946 + "pyo3-macros", 2947 + "unindent", 2948 + ] 2949 + 2950 + [[package]] 2951 + name = "pyo3-build-config" 2952 + version = "0.18.0" 2953 + source = "registry+https://github.com/rust-lang/crates.io-index" 2954 + checksum = "9cd09fe469834db21ee60e0051030339e5d361293d8cb5ec02facf7fdcf52dbf" 2955 + dependencies = [ 2956 + "once_cell", 2957 + "target-lexicon", 2958 + ] 2959 + 2960 + [[package]] 2961 + name = "pyo3-ffi" 2962 + version = "0.18.0" 2963 + source = "registry+https://github.com/rust-lang/crates.io-index" 2964 + checksum = "0c427c9a96b9c5b12156dbc11f76b14f49e9aae8905ca783ea87c249044ef137" 2965 + dependencies = [ 2966 + "libc", 2967 + "pyo3-build-config", 2968 + ] 2969 + 2970 + [[package]] 2971 + name = "pyo3-macros" 2972 + version = "0.18.0" 2973 + source = "registry+https://github.com/rust-lang/crates.io-index" 2974 + checksum = "16b822bbba9d60630a44d2109bc410489bb2f439b33e3a14ddeb8a40b378a7c4" 2975 + dependencies = [ 2976 + "proc-macro2", 2977 + "pyo3-macros-backend", 2978 + "quote", 2979 + "syn", 2980 + ] 2981 + 2982 + [[package]] 2983 + name = "pyo3-macros-backend" 2984 + version = "0.18.0" 2985 + source = "registry+https://github.com/rust-lang/crates.io-index" 2986 + checksum = "84ae898104f7c99db06231160770f3e40dad6eb9021daddc0fedfa3e41dff10a" 2987 + dependencies = [ 2988 + "proc-macro2", 2989 + "quote", 2990 + "syn", 2991 + ] 2992 + 2993 + [[package]] 2994 + name = "quick-xml" 2995 + version = "0.26.0" 2996 + source = "registry+https://github.com/rust-lang/crates.io-index" 2997 + checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd" 2998 + dependencies = [ 2999 + "memchr", 3000 + ] 3001 + 3002 + [[package]] 3003 + name = "quote" 3004 + version = "1.0.23" 3005 + source = "registry+https://github.com/rust-lang/crates.io-index" 3006 + checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" 3007 + dependencies = [ 3008 + "proc-macro2", 3009 + ] 3010 + 3011 + [[package]] 3012 + name = "rand" 3013 + version = "0.7.3" 3014 + source = "registry+https://github.com/rust-lang/crates.io-index" 3015 + checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 3016 + dependencies = [ 3017 + "getrandom 0.1.16", 3018 + "libc", 3019 + "rand_chacha 0.2.2", 3020 + "rand_core 0.5.1", 3021 + "rand_hc", 3022 + "rand_pcg", 3023 + ] 3024 + 3025 + [[package]] 3026 + name = "rand" 3027 + version = "0.8.5" 3028 + source = "registry+https://github.com/rust-lang/crates.io-index" 3029 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 3030 + dependencies = [ 3031 + "libc", 3032 + "rand_chacha 0.3.1", 3033 + "rand_core 0.6.4", 3034 + ] 3035 + 3036 + [[package]] 3037 + name = "rand_chacha" 3038 + version = "0.2.2" 3039 + source = "registry+https://github.com/rust-lang/crates.io-index" 3040 + checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 3041 + dependencies = [ 3042 + "ppv-lite86", 3043 + "rand_core 0.5.1", 3044 + ] 3045 + 3046 + [[package]] 3047 + name = "rand_chacha" 3048 + version = "0.3.1" 3049 + source = "registry+https://github.com/rust-lang/crates.io-index" 3050 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 3051 + dependencies = [ 3052 + "ppv-lite86", 3053 + "rand_core 0.6.4", 3054 + ] 3055 + 3056 + [[package]] 3057 + name = "rand_core" 3058 + version = "0.5.1" 3059 + source = "registry+https://github.com/rust-lang/crates.io-index" 3060 + checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 3061 + dependencies = [ 3062 + "getrandom 0.1.16", 3063 + ] 3064 + 3065 + [[package]] 3066 + name = "rand_core" 3067 + version = "0.6.4" 3068 + source = "registry+https://github.com/rust-lang/crates.io-index" 3069 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 3070 + dependencies = [ 3071 + "getrandom 0.2.8", 3072 + ] 3073 + 3074 + [[package]] 3075 + name = "rand_hc" 3076 + version = "0.2.0" 3077 + source = "registry+https://github.com/rust-lang/crates.io-index" 3078 + checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 3079 + dependencies = [ 3080 + "rand_core 0.5.1", 3081 + ] 3082 + 3083 + [[package]] 3084 + name = "rand_pcg" 3085 + version = "0.2.1" 3086 + source = "registry+https://github.com/rust-lang/crates.io-index" 3087 + checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 3088 + dependencies = [ 3089 + "rand_core 0.5.1", 3090 + ] 3091 + 3092 + [[package]] 3093 + name = "rayon" 3094 + version = "1.6.1" 3095 + source = "registry+https://github.com/rust-lang/crates.io-index" 3096 + checksum = "6db3a213adf02b3bcfd2d3846bb41cb22857d131789e01df434fb7e7bc0759b7" 3097 + dependencies = [ 3098 + "either", 3099 + "rayon-core", 3100 + ] 3101 + 3102 + [[package]] 3103 + name = "rayon-core" 3104 + version = "1.10.1" 3105 + source = "registry+https://github.com/rust-lang/crates.io-index" 3106 + checksum = "cac410af5d00ab6884528b4ab69d1e8e146e8d471201800fa1b4524126de6ad3" 3107 + dependencies = [ 3108 + "crossbeam-channel", 3109 + "crossbeam-deque", 3110 + "crossbeam-utils", 3111 + "num_cpus", 3112 + ] 3113 + 3114 + [[package]] 3115 + name = "rc2" 3116 + version = "0.8.1" 3117 + source = "registry+https://github.com/rust-lang/crates.io-index" 3118 + checksum = "62c64daa8e9438b84aaae55010a93f396f8e60e3911590fcba770d04643fc1dd" 3119 + dependencies = [ 3120 + "cipher 0.4.3", 3121 + ] 3122 + 3123 + [[package]] 3124 + name = "rcgen" 3125 + version = "0.10.0" 3126 + source = "registry+https://github.com/rust-lang/crates.io-index" 3127 + checksum = "ffbe84efe2f38dea12e9bfc1f65377fdf03e53a18cb3b995faedf7934c7e785b" 3128 + dependencies = [ 3129 + "pem", 3130 + "ring", 3131 + "time", 3132 + "yasna", 3133 + ] 3134 + 3135 + [[package]] 3136 + name = "redox_syscall" 3137 + version = "0.2.16" 3138 + source = "registry+https://github.com/rust-lang/crates.io-index" 3139 + checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 3140 + dependencies = [ 3141 + "bitflags", 3142 + ] 3143 + 3144 + [[package]] 3145 + name = "regex" 3146 + version = "1.7.1" 3147 + source = "registry+https://github.com/rust-lang/crates.io-index" 3148 + checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733" 3149 + dependencies = [ 3150 + "aho-corasick", 3151 + "memchr", 3152 + "regex-syntax", 3153 + ] 3154 + 3155 + [[package]] 3156 + name = "regex-automata" 3157 + version = "0.1.10" 3158 + source = "registry+https://github.com/rust-lang/crates.io-index" 3159 + checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 3160 + dependencies = [ 3161 + "regex-syntax", 3162 + ] 3163 + 3164 + [[package]] 3165 + name = "regex-syntax" 3166 + version = "0.6.28" 3167 + source = "registry+https://github.com/rust-lang/crates.io-index" 3168 + checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" 3169 + 3170 + [[package]] 3171 + name = "remove_dir_all" 3172 + version = "0.5.3" 3173 + source = "registry+https://github.com/rust-lang/crates.io-index" 3174 + checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 3175 + dependencies = [ 3176 + "winapi", 3177 + ] 3178 + 3179 + [[package]] 3180 + name = "reqwest" 3181 + version = "0.11.13" 3182 + source = "registry+https://github.com/rust-lang/crates.io-index" 3183 + checksum = "68cc60575865c7831548863cc02356512e3f1dc2f3f82cb837d7fc4cc8f3c97c" 3184 + dependencies = [ 3185 + "base64 0.13.1", 3186 + "bytes", 3187 + "encoding_rs", 3188 + "futures-core", 3189 + "futures-util", 3190 + "h2", 3191 + "http", 3192 + "http-body", 3193 + "hyper", 3194 + "hyper-rustls", 3195 + "hyper-tls", 3196 + "ipnet", 3197 + "js-sys", 3198 + "log", 3199 + "mime", 3200 + "mime_guess", 3201 + "native-tls", 3202 + "once_cell", 3203 + "percent-encoding", 3204 + "pin-project-lite", 3205 + "rustls", 3206 + "rustls-native-certs", 3207 + "rustls-pemfile", 3208 + "serde", 3209 + "serde_json", 3210 + "serde_urlencoded", 3211 + "tokio", 3212 + "tokio-native-tls", 3213 + "tokio-rustls", 3214 + "tokio-socks", 3215 + "tokio-util", 3216 + "tower-service", 3217 + "url", 3218 + "wasm-bindgen", 3219 + "wasm-bindgen-futures", 3220 + "web-sys", 3221 + "webpki-roots", 3222 + "winreg 0.10.1", 3223 + ] 3224 + 3225 + [[package]] 3226 + name = "retain_mut" 3227 + version = "0.1.9" 3228 + source = "registry+https://github.com/rust-lang/crates.io-index" 3229 + checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0" 3230 + 3231 + [[package]] 3232 + name = "ring" 3233 + version = "0.16.20" 3234 + source = "registry+https://github.com/rust-lang/crates.io-index" 3235 + checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 3236 + dependencies = [ 3237 + "cc", 3238 + "libc", 3239 + "once_cell", 3240 + "spin 0.5.2", 3241 + "untrusted", 3242 + "web-sys", 3243 + "winapi", 3244 + ] 3245 + 3246 + [[package]] 3247 + name = "rsbridge" 3248 + version = "0.0.0" 3249 + dependencies = [ 3250 + "anki", 3251 + "pyo3", 3252 + "workspace-hack", 3253 + ] 3254 + 3255 + [[package]] 3256 + name = "runner" 3257 + version = "0.0.0" 3258 + dependencies = [ 3259 + "camino", 3260 + "clap 4.1.1", 3261 + "junction", 3262 + "termcolor", 3263 + "workspace-hack", 3264 + ] 3265 + 3266 + [[package]] 3267 + name = "rusqlite" 3268 + version = "0.28.0" 3269 + source = "registry+https://github.com/rust-lang/crates.io-index" 3270 + checksum = "01e213bc3ecb39ac32e81e51ebe31fd888a940515173e3a18a35f8c6e896422a" 3271 + dependencies = [ 3272 + "bitflags", 3273 + "fallible-iterator", 3274 + "fallible-streaming-iterator", 3275 + "hashlink", 3276 + "libsqlite3-sys", 3277 + "smallvec", 3278 + ] 3279 + 3280 + [[package]] 3281 + name = "rustc-demangle" 3282 + version = "0.1.21" 3283 + source = "registry+https://github.com/rust-lang/crates.io-index" 3284 + checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342" 3285 + 3286 + [[package]] 3287 + name = "rustc-hash" 3288 + version = "1.1.0" 3289 + source = "registry+https://github.com/rust-lang/crates.io-index" 3290 + checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 3291 + 3292 + [[package]] 3293 + name = "rustc_version" 3294 + version = "0.4.0" 3295 + source = "registry+https://github.com/rust-lang/crates.io-index" 3296 + checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 3297 + dependencies = [ 3298 + "semver", 3299 + ] 3300 + 3301 + [[package]] 3302 + name = "rustix" 3303 + version = "0.36.6" 3304 + source = "registry+https://github.com/rust-lang/crates.io-index" 3305 + checksum = "4feacf7db682c6c329c4ede12649cd36ecab0f3be5b7d74e6a20304725db4549" 3306 + dependencies = [ 3307 + "bitflags", 3308 + "errno", 3309 + "io-lifetimes", 3310 + "libc", 3311 + "linux-raw-sys", 3312 + "windows-sys", 3313 + ] 3314 + 3315 + [[package]] 3316 + name = "rustls" 3317 + version = "0.20.8" 3318 + source = "registry+https://github.com/rust-lang/crates.io-index" 3319 + checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" 3320 + dependencies = [ 3321 + "log", 3322 + "ring", 3323 + "sct", 3324 + "webpki", 3325 + ] 3326 + 3327 + [[package]] 3328 + name = "rustls-native-certs" 3329 + version = "0.6.2" 3330 + source = "registry+https://github.com/rust-lang/crates.io-index" 3331 + checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50" 3332 + dependencies = [ 3333 + "openssl-probe", 3334 + "rustls-pemfile", 3335 + "schannel", 3336 + "security-framework", 3337 + ] 3338 + 3339 + [[package]] 3340 + name = "rustls-pemfile" 3341 + version = "1.0.2" 3342 + source = "registry+https://github.com/rust-lang/crates.io-index" 3343 + checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b" 3344 + dependencies = [ 3345 + "base64 0.21.0", 3346 + ] 3347 + 3348 + [[package]] 3349 + name = "rustversion" 3350 + version = "1.0.11" 3351 + source = "registry+https://github.com/rust-lang/crates.io-index" 3352 + checksum = "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70" 3353 + 3354 + [[package]] 3355 + name = "ryu" 3356 + version = "1.0.12" 3357 + source = "registry+https://github.com/rust-lang/crates.io-index" 3358 + checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde" 3359 + 3360 + [[package]] 3361 + name = "safemem" 3362 + version = "0.3.3" 3363 + source = "registry+https://github.com/rust-lang/crates.io-index" 3364 + checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 3365 + 3366 + [[package]] 3367 + name = "same-file" 3368 + version = "1.0.6" 3369 + source = "registry+https://github.com/rust-lang/crates.io-index" 3370 + checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 3371 + dependencies = [ 3372 + "winapi-util", 3373 + ] 3374 + 3375 + [[package]] 3376 + name = "schannel" 3377 + version = "0.1.21" 3378 + source = "registry+https://github.com/rust-lang/crates.io-index" 3379 + checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" 3380 + dependencies = [ 3381 + "windows-sys", 3382 + ] 3383 + 3384 + [[package]] 3385 + name = "scopeguard" 3386 + version = "1.1.0" 3387 + source = "registry+https://github.com/rust-lang/crates.io-index" 3388 + checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 3389 + 3390 + [[package]] 3391 + name = "scratch" 3392 + version = "1.0.3" 3393 + source = "registry+https://github.com/rust-lang/crates.io-index" 3394 + checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2" 3395 + 3396 + [[package]] 3397 + name = "sct" 3398 + version = "0.7.0" 3399 + source = "registry+https://github.com/rust-lang/crates.io-index" 3400 + checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 3401 + dependencies = [ 3402 + "ring", 3403 + "untrusted", 3404 + ] 3405 + 3406 + [[package]] 3407 + name = "security-framework" 3408 + version = "2.7.0" 3409 + source = "registry+https://github.com/rust-lang/crates.io-index" 3410 + checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c" 3411 + dependencies = [ 3412 + "bitflags", 3413 + "core-foundation", 3414 + "core-foundation-sys", 3415 + "libc", 3416 + "security-framework-sys", 3417 + ] 3418 + 3419 + [[package]] 3420 + name = "security-framework-sys" 3421 + version = "2.6.1" 3422 + source = "registry+https://github.com/rust-lang/crates.io-index" 3423 + checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556" 3424 + dependencies = [ 3425 + "core-foundation-sys", 3426 + "libc", 3427 + ] 3428 + 3429 + [[package]] 3430 + name = "selectors" 3431 + version = "0.22.0" 3432 + source = "registry+https://github.com/rust-lang/crates.io-index" 3433 + checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe" 3434 + dependencies = [ 3435 + "bitflags", 3436 + "cssparser", 3437 + "derive_more", 3438 + "fxhash", 3439 + "log", 3440 + "matches", 3441 + "phf 0.8.0", 3442 + "phf_codegen 0.8.0", 3443 + "precomputed-hash", 3444 + "servo_arc", 3445 + "smallvec", 3446 + "thin-slice", 3447 + ] 3448 + 3449 + [[package]] 3450 + name = "self_cell" 3451 + version = "0.10.2" 3452 + source = "registry+https://github.com/rust-lang/crates.io-index" 3453 + checksum = "1ef965a420fe14fdac7dd018862966a4c14094f900e1650bbc71ddd7d580c8af" 3454 + 3455 + [[package]] 3456 + name = "semver" 3457 + version = "1.0.16" 3458 + source = "registry+https://github.com/rust-lang/crates.io-index" 3459 + checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a" 3460 + 3461 + [[package]] 3462 + name = "serde" 3463 + version = "1.0.152" 3464 + source = "registry+https://github.com/rust-lang/crates.io-index" 3465 + checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" 3466 + dependencies = [ 3467 + "serde_derive", 3468 + ] 3469 + 3470 + [[package]] 3471 + name = "serde-aux" 3472 + version = "4.1.2" 3473 + source = "registry+https://github.com/rust-lang/crates.io-index" 3474 + checksum = "c599b3fd89a75e0c18d6d2be693ddb12cccaf771db4ff9e39097104808a014c0" 3475 + dependencies = [ 3476 + "chrono", 3477 + "serde", 3478 + "serde_json", 3479 + ] 3480 + 3481 + [[package]] 3482 + name = "serde_derive" 3483 + version = "1.0.152" 3484 + source = "registry+https://github.com/rust-lang/crates.io-index" 3485 + checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" 3486 + dependencies = [ 3487 + "proc-macro2", 3488 + "quote", 3489 + "syn", 3490 + ] 3491 + 3492 + [[package]] 3493 + name = "serde_json" 3494 + version = "1.0.91" 3495 + source = "registry+https://github.com/rust-lang/crates.io-index" 3496 + checksum = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883" 3497 + dependencies = [ 3498 + "itoa 1.0.5", 3499 + "ryu", 3500 + "serde", 3501 + ] 3502 + 3503 + [[package]] 3504 + name = "serde_path_to_error" 3505 + version = "0.1.9" 3506 + source = "registry+https://github.com/rust-lang/crates.io-index" 3507 + checksum = "26b04f22b563c91331a10074bda3dd5492e3cc39d56bd557e91c0af42b6c7341" 3508 + dependencies = [ 3509 + "serde", 3510 + ] 3511 + 3512 + [[package]] 3513 + name = "serde_qs" 3514 + version = "0.8.5" 3515 + source = "registry+https://github.com/rust-lang/crates.io-index" 3516 + checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6" 3517 + dependencies = [ 3518 + "percent-encoding", 3519 + "serde", 3520 + "thiserror", 3521 + ] 3522 + 3523 + [[package]] 3524 + name = "serde_repr" 3525 + version = "0.1.10" 3526 + source = "registry+https://github.com/rust-lang/crates.io-index" 3527 + checksum = "9a5ec9fa74a20ebbe5d9ac23dac1fc96ba0ecfe9f50f2843b52e537b10fbcb4e" 3528 + dependencies = [ 3529 + "proc-macro2", 3530 + "quote", 3531 + "syn", 3532 + ] 3533 + 3534 + [[package]] 3535 + name = "serde_tuple" 3536 + version = "0.5.0" 3537 + source = "registry+https://github.com/rust-lang/crates.io-index" 3538 + checksum = "f4f025b91216f15a2a32aa39669329a475733590a015835d1783549a56d09427" 3539 + dependencies = [ 3540 + "serde", 3541 + "serde_tuple_macros", 3542 + ] 3543 + 3544 + [[package]] 3545 + name = "serde_tuple_macros" 3546 + version = "0.5.0" 3547 + source = "registry+https://github.com/rust-lang/crates.io-index" 3548 + checksum = "4076151d1a2b688e25aaf236997933c66e18b870d0369f8b248b8ab2be630d7e" 3549 + dependencies = [ 3550 + "proc-macro2", 3551 + "quote", 3552 + "syn", 3553 + ] 3554 + 3555 + [[package]] 3556 + name = "serde_urlencoded" 3557 + version = "0.7.1" 3558 + source = "registry+https://github.com/rust-lang/crates.io-index" 3559 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 3560 + dependencies = [ 3561 + "form_urlencoded", 3562 + "itoa 1.0.5", 3563 + "ryu", 3564 + "serde", 3565 + ] 3566 + 3567 + [[package]] 3568 + name = "servo_arc" 3569 + version = "0.1.1" 3570 + source = "registry+https://github.com/rust-lang/crates.io-index" 3571 + checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432" 3572 + dependencies = [ 3573 + "nodrop", 3574 + "stable_deref_trait", 3575 + ] 3576 + 3577 + [[package]] 3578 + name = "sha1" 3579 + version = "0.10.5" 3580 + source = "registry+https://github.com/rust-lang/crates.io-index" 3581 + checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" 3582 + dependencies = [ 3583 + "cfg-if", 3584 + "cpufeatures", 3585 + "digest", 3586 + ] 3587 + 3588 + [[package]] 3589 + name = "sha2" 3590 + version = "0.10.6" 3591 + source = "registry+https://github.com/rust-lang/crates.io-index" 3592 + checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 3593 + dependencies = [ 3594 + "cfg-if", 3595 + "cpufeatures", 3596 + "digest", 3597 + ] 3598 + 3599 + [[package]] 3600 + name = "sharded-slab" 3601 + version = "0.1.4" 3602 + source = "registry+https://github.com/rust-lang/crates.io-index" 3603 + checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 3604 + dependencies = [ 3605 + "lazy_static", 3606 + ] 3607 + 3608 + [[package]] 3609 + name = "shared_child" 3610 + version = "1.0.0" 3611 + source = "registry+https://github.com/rust-lang/crates.io-index" 3612 + checksum = "b0d94659ad3c2137fef23ae75b03d5241d633f8acded53d672decfa0e6e0caef" 3613 + dependencies = [ 3614 + "libc", 3615 + "winapi", 3616 + ] 3617 + 3618 + [[package]] 3619 + name = "signal-hook-registry" 3620 + version = "1.4.0" 3621 + source = "registry+https://github.com/rust-lang/crates.io-index" 3622 + checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0" 3623 + dependencies = [ 3624 + "libc", 3625 + ] 3626 + 3627 + [[package]] 3628 + name = "simple-file-manifest" 3629 + version = "0.11.0" 3630 + source = "registry+https://github.com/rust-lang/crates.io-index" 3631 + checksum = "5dd19be0257552dd56d1bb6946f89f193c6e5b9f13cc9327c4bc84a357507c74" 3632 + 3633 + [[package]] 3634 + name = "siphasher" 3635 + version = "0.3.10" 3636 + source = "registry+https://github.com/rust-lang/crates.io-index" 3637 + checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 3638 + 3639 + [[package]] 3640 + name = "slab" 3641 + version = "0.4.7" 3642 + source = "registry+https://github.com/rust-lang/crates.io-index" 3643 + checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" 3644 + dependencies = [ 3645 + "autocfg", 3646 + ] 3647 + 3648 + [[package]] 3649 + name = "smallvec" 3650 + version = "1.10.0" 3651 + source = "registry+https://github.com/rust-lang/crates.io-index" 3652 + checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 3653 + 3654 + [[package]] 3655 + name = "snafu" 3656 + version = "0.7.4" 3657 + source = "registry+https://github.com/rust-lang/crates.io-index" 3658 + checksum = "cb0656e7e3ffb70f6c39b3c2a86332bb74aa3c679da781642590f3c1118c5045" 3659 + dependencies = [ 3660 + "backtrace", 3661 + "doc-comment", 3662 + "snafu-derive", 3663 + ] 3664 + 3665 + [[package]] 3666 + name = "snafu-derive" 3667 + version = "0.7.4" 3668 + source = "registry+https://github.com/rust-lang/crates.io-index" 3669 + checksum = "475b3bbe5245c26f2d8a6f62d67c1f30eb9fffeccee721c45d162c3ebbdf81b2" 3670 + dependencies = [ 3671 + "heck", 3672 + "proc-macro2", 3673 + "quote", 3674 + "syn", 3675 + ] 3676 + 3677 + [[package]] 3678 + name = "snowflake" 3679 + version = "1.3.0" 3680 + source = "registry+https://github.com/rust-lang/crates.io-index" 3681 + checksum = "27207bb65232eda1f588cf46db2fee75c0808d557f6b3cf19a75f5d6d7c94df1" 3682 + 3683 + [[package]] 3684 + name = "socket2" 3685 + version = "0.4.7" 3686 + source = "registry+https://github.com/rust-lang/crates.io-index" 3687 + checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd" 3688 + dependencies = [ 3689 + "libc", 3690 + "winapi", 3691 + ] 3692 + 3693 + [[package]] 3694 + name = "spin" 3695 + version = "0.5.2" 3696 + source = "registry+https://github.com/rust-lang/crates.io-index" 3697 + checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 3698 + 3699 + [[package]] 3700 + name = "spin" 3701 + version = "0.9.4" 3702 + source = "registry+https://github.com/rust-lang/crates.io-index" 3703 + checksum = "7f6002a767bff9e83f8eeecf883ecb8011875a21ae8da43bffb817a57e78cc09" 3704 + 3705 + [[package]] 3706 + name = "stable_deref_trait" 3707 + version = "1.2.0" 3708 + source = "registry+https://github.com/rust-lang/crates.io-index" 3709 + checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 3710 + 3711 + [[package]] 3712 + name = "string_cache" 3713 + version = "0.8.4" 3714 + source = "registry+https://github.com/rust-lang/crates.io-index" 3715 + checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08" 3716 + dependencies = [ 3717 + "new_debug_unreachable", 3718 + "once_cell", 3719 + "parking_lot", 3720 + "phf_shared 0.10.0", 3721 + "precomputed-hash", 3722 + "serde", 3723 + ] 3724 + 3725 + [[package]] 3726 + name = "string_cache_codegen" 3727 + version = "0.5.2" 3728 + source = "registry+https://github.com/rust-lang/crates.io-index" 3729 + checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" 3730 + dependencies = [ 3731 + "phf_generator 0.10.0", 3732 + "phf_shared 0.10.0", 3733 + "proc-macro2", 3734 + "quote", 3735 + ] 3736 + 3737 + [[package]] 3738 + name = "strsim" 3739 + version = "0.10.0" 3740 + source = "registry+https://github.com/rust-lang/crates.io-index" 3741 + checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 3742 + 3743 + [[package]] 3744 + name = "strum" 3745 + version = "0.24.1" 3746 + source = "registry+https://github.com/rust-lang/crates.io-index" 3747 + checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" 3748 + dependencies = [ 3749 + "strum_macros", 3750 + ] 3751 + 3752 + [[package]] 3753 + name = "strum_macros" 3754 + version = "0.24.3" 3755 + source = "registry+https://github.com/rust-lang/crates.io-index" 3756 + checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59" 3757 + dependencies = [ 3758 + "heck", 3759 + "proc-macro2", 3760 + "quote", 3761 + "rustversion", 3762 + "syn", 3763 + ] 3764 + 3765 + [[package]] 3766 + name = "subtle" 3767 + version = "2.4.1" 3768 + source = "registry+https://github.com/rust-lang/crates.io-index" 3769 + checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 3770 + 3771 + [[package]] 3772 + name = "syn" 3773 + version = "1.0.107" 3774 + source = "registry+https://github.com/rust-lang/crates.io-index" 3775 + checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" 3776 + dependencies = [ 3777 + "proc-macro2", 3778 + "quote", 3779 + "unicode-ident", 3780 + ] 3781 + 3782 + [[package]] 3783 + name = "sync_wrapper" 3784 + version = "0.1.1" 3785 + source = "registry+https://github.com/rust-lang/crates.io-index" 3786 + checksum = "20518fe4a4c9acf048008599e464deb21beeae3d3578418951a189c235a7a9a8" 3787 + 3788 + [[package]] 3789 + name = "tar" 3790 + version = "0.4.38" 3791 + source = "registry+https://github.com/rust-lang/crates.io-index" 3792 + checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6" 3793 + dependencies = [ 3794 + "filetime", 3795 + "libc", 3796 + "xattr", 3797 + ] 3798 + 3799 + [[package]] 3800 + name = "target-lexicon" 3801 + version = "0.12.5" 3802 + source = "registry+https://github.com/rust-lang/crates.io-index" 3803 + checksum = "9410d0f6853b1d94f0e519fb95df60f29d2c1eff2d921ffdf01a4c8a3b54f12d" 3804 + 3805 + [[package]] 3806 + name = "tempfile" 3807 + version = "3.3.0" 3808 + source = "registry+https://github.com/rust-lang/crates.io-index" 3809 + checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 3810 + dependencies = [ 3811 + "cfg-if", 3812 + "fastrand", 3813 + "libc", 3814 + "redox_syscall", 3815 + "remove_dir_all", 3816 + "winapi", 3817 + ] 3818 + 3819 + [[package]] 3820 + name = "tendril" 3821 + version = "0.4.3" 3822 + source = "registry+https://github.com/rust-lang/crates.io-index" 3823 + checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 3824 + dependencies = [ 3825 + "futf", 3826 + "mac", 3827 + "utf-8", 3828 + ] 3829 + 3830 + [[package]] 3831 + name = "termcolor" 3832 + version = "1.2.0" 3833 + source = "registry+https://github.com/rust-lang/crates.io-index" 3834 + checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 3835 + dependencies = [ 3836 + "winapi-util", 3837 + ] 3838 + 3839 + [[package]] 3840 + name = "textwrap" 3841 + version = "0.16.0" 3842 + source = "registry+https://github.com/rust-lang/crates.io-index" 3843 + checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" 3844 + 3845 + [[package]] 3846 + name = "thin-slice" 3847 + version = "0.1.1" 3848 + source = "registry+https://github.com/rust-lang/crates.io-index" 3849 + checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c" 3850 + 3851 + [[package]] 3852 + name = "thiserror" 3853 + version = "1.0.38" 3854 + source = "registry+https://github.com/rust-lang/crates.io-index" 3855 + checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0" 3856 + dependencies = [ 3857 + "thiserror-impl", 3858 + ] 3859 + 3860 + [[package]] 3861 + name = "thiserror-impl" 3862 + version = "1.0.38" 3863 + source = "registry+https://github.com/rust-lang/crates.io-index" 3864 + checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f" 3865 + dependencies = [ 3866 + "proc-macro2", 3867 + "quote", 3868 + "syn", 3869 + ] 3870 + 3871 + [[package]] 3872 + name = "thread_local" 3873 + version = "1.1.4" 3874 + source = "registry+https://github.com/rust-lang/crates.io-index" 3875 + checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" 3876 + dependencies = [ 3877 + "once_cell", 3878 + ] 3879 + 3880 + [[package]] 3881 + name = "time" 3882 + version = "0.3.17" 3883 + source = "registry+https://github.com/rust-lang/crates.io-index" 3884 + checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376" 3885 + dependencies = [ 3886 + "itoa 1.0.5", 3887 + "serde", 3888 + "time-core", 3889 + "time-macros", 3890 + ] 3891 + 3892 + [[package]] 3893 + name = "time-core" 3894 + version = "0.1.0" 3895 + source = "registry+https://github.com/rust-lang/crates.io-index" 3896 + checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" 3897 + 3898 + [[package]] 3899 + name = "time-macros" 3900 + version = "0.2.6" 3901 + source = "registry+https://github.com/rust-lang/crates.io-index" 3902 + checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2" 3903 + dependencies = [ 3904 + "time-core", 3905 + ] 3906 + 3907 + [[package]] 3908 + name = "tinystr" 3909 + version = "0.7.0" 3910 + source = "registry+https://github.com/rust-lang/crates.io-index" 3911 + checksum = "f8aeafdfd935e4a7fe16a91ab711fa52d54df84f9c8f7ca5837a9d1d902ef4c2" 3912 + dependencies = [ 3913 + "displaydoc", 3914 + ] 3915 + 3916 + [[package]] 3917 + name = "tinytemplate" 3918 + version = "1.2.1" 3919 + source = "registry+https://github.com/rust-lang/crates.io-index" 3920 + checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 3921 + dependencies = [ 3922 + "serde", 3923 + "serde_json", 3924 + ] 3925 + 3926 + [[package]] 3927 + name = "tinyvec" 3928 + version = "1.6.0" 3929 + source = "registry+https://github.com/rust-lang/crates.io-index" 3930 + checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 3931 + dependencies = [ 3932 + "tinyvec_macros", 3933 + ] 3934 + 3935 + [[package]] 3936 + name = "tinyvec_macros" 3937 + version = "0.1.0" 3938 + source = "registry+https://github.com/rust-lang/crates.io-index" 3939 + checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 3940 + 3941 + [[package]] 3942 + name = "tokio" 3943 + version = "1.24.2" 3944 + source = "registry+https://github.com/rust-lang/crates.io-index" 3945 + checksum = "597a12a59981d9e3c38d216785b0c37399f6e415e8d0712047620f189371b0bb" 3946 + dependencies = [ 3947 + "autocfg", 3948 + "bytes", 3949 + "libc", 3950 + "memchr", 3951 + "mio", 3952 + "num_cpus", 3953 + "parking_lot", 3954 + "pin-project-lite", 3955 + "signal-hook-registry", 3956 + "socket2", 3957 + "tokio-macros", 3958 + "windows-sys", 3959 + ] 3960 + 3961 + [[package]] 3962 + name = "tokio-macros" 3963 + version = "1.8.2" 3964 + source = "registry+https://github.com/rust-lang/crates.io-index" 3965 + checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8" 3966 + dependencies = [ 3967 + "proc-macro2", 3968 + "quote", 3969 + "syn", 3970 + ] 3971 + 3972 + [[package]] 3973 + name = "tokio-native-tls" 3974 + version = "0.3.0" 3975 + source = "registry+https://github.com/rust-lang/crates.io-index" 3976 + checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b" 3977 + dependencies = [ 3978 + "native-tls", 3979 + "tokio", 3980 + ] 3981 + 3982 + [[package]] 3983 + name = "tokio-rustls" 3984 + version = "0.23.4" 3985 + source = "registry+https://github.com/rust-lang/crates.io-index" 3986 + checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" 3987 + dependencies = [ 3988 + "rustls", 3989 + "tokio", 3990 + "webpki", 3991 + ] 3992 + 3993 + [[package]] 3994 + name = "tokio-socks" 3995 + version = "0.5.1" 3996 + source = "registry+https://github.com/rust-lang/crates.io-index" 3997 + checksum = "51165dfa029d2a65969413a6cc96f354b86b464498702f174a4efa13608fd8c0" 3998 + dependencies = [ 3999 + "either", 4000 + "futures-util", 4001 + "thiserror", 4002 + "tokio", 4003 + ] 4004 + 4005 + [[package]] 4006 + name = "tokio-util" 4007 + version = "0.7.4" 4008 + source = "registry+https://github.com/rust-lang/crates.io-index" 4009 + checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740" 4010 + dependencies = [ 4011 + "bytes", 4012 + "futures-core", 4013 + "futures-sink", 4014 + "pin-project-lite", 4015 + "tokio", 4016 + "tracing", 4017 + ] 4018 + 4019 + [[package]] 4020 + name = "toml" 4021 + version = "0.5.10" 4022 + source = "registry+https://github.com/rust-lang/crates.io-index" 4023 + checksum = "1333c76748e868a4d9d1017b5ab53171dfd095f70c712fdb4653a406547f598f" 4024 + dependencies = [ 4025 + "serde", 4026 + ] 4027 + 4028 + [[package]] 4029 + name = "tower" 4030 + version = "0.4.13" 4031 + source = "registry+https://github.com/rust-lang/crates.io-index" 4032 + checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 4033 + dependencies = [ 4034 + "futures-core", 4035 + "futures-util", 4036 + "pin-project", 4037 + "pin-project-lite", 4038 + "tokio", 4039 + "tower-layer", 4040 + "tower-service", 4041 + "tracing", 4042 + ] 4043 + 4044 + [[package]] 4045 + name = "tower-http" 4046 + version = "0.3.5" 4047 + source = "registry+https://github.com/rust-lang/crates.io-index" 4048 + checksum = "f873044bf02dd1e8239e9c1293ea39dad76dc594ec16185d0a1bf31d8dc8d858" 4049 + dependencies = [ 4050 + "bitflags", 4051 + "bytes", 4052 + "futures-core", 4053 + "futures-util", 4054 + "http", 4055 + "http-body", 4056 + "http-range-header", 4057 + "pin-project-lite", 4058 + "tower", 4059 + "tower-layer", 4060 + "tower-service", 4061 + "tracing", 4062 + ] 4063 + 4064 + [[package]] 4065 + name = "tower-layer" 4066 + version = "0.3.2" 4067 + source = "registry+https://github.com/rust-lang/crates.io-index" 4068 + checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" 4069 + 4070 + [[package]] 4071 + name = "tower-service" 4072 + version = "0.3.2" 4073 + source = "registry+https://github.com/rust-lang/crates.io-index" 4074 + checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 4075 + 4076 + [[package]] 4077 + name = "tracing" 4078 + version = "0.1.37" 4079 + source = "registry+https://github.com/rust-lang/crates.io-index" 4080 + checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 4081 + dependencies = [ 4082 + "cfg-if", 4083 + "log", 4084 + "pin-project-lite", 4085 + "tracing-attributes", 4086 + "tracing-core", 4087 + ] 4088 + 4089 + [[package]] 4090 + name = "tracing-appender" 4091 + version = "0.2.2" 4092 + source = "registry+https://github.com/rust-lang/crates.io-index" 4093 + checksum = "09d48f71a791638519505cefafe162606f706c25592e4bde4d97600c0195312e" 4094 + dependencies = [ 4095 + "crossbeam-channel", 4096 + "time", 4097 + "tracing-subscriber", 4098 + ] 4099 + 4100 + [[package]] 4101 + name = "tracing-attributes" 4102 + version = "0.1.23" 4103 + source = "registry+https://github.com/rust-lang/crates.io-index" 4104 + checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" 4105 + dependencies = [ 4106 + "proc-macro2", 4107 + "quote", 4108 + "syn", 4109 + ] 4110 + 4111 + [[package]] 4112 + name = "tracing-core" 4113 + version = "0.1.30" 4114 + source = "registry+https://github.com/rust-lang/crates.io-index" 4115 + checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 4116 + dependencies = [ 4117 + "once_cell", 4118 + "valuable", 4119 + ] 4120 + 4121 + [[package]] 4122 + name = "tracing-log" 4123 + version = "0.1.3" 4124 + source = "registry+https://github.com/rust-lang/crates.io-index" 4125 + checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 4126 + dependencies = [ 4127 + "lazy_static", 4128 + "log", 4129 + "tracing-core", 4130 + ] 4131 + 4132 + [[package]] 4133 + name = "tracing-subscriber" 4134 + version = "0.3.16" 4135 + source = "registry+https://github.com/rust-lang/crates.io-index" 4136 + checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70" 4137 + dependencies = [ 4138 + "matchers", 4139 + "nu-ansi-term", 4140 + "once_cell", 4141 + "regex", 4142 + "sharded-slab", 4143 + "smallvec", 4144 + "thread_local", 4145 + "tracing", 4146 + "tracing-core", 4147 + "tracing-log", 4148 + ] 4149 + 4150 + [[package]] 4151 + name = "try-lock" 4152 + version = "0.2.4" 4153 + source = "registry+https://github.com/rust-lang/crates.io-index" 4154 + checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 4155 + 4156 + [[package]] 4157 + name = "tugger-common" 4158 + version = "0.10.0" 4159 + source = "registry+https://github.com/rust-lang/crates.io-index" 4160 + checksum = "f90d950380afdb1a6bbe74f29485a04e821869dfad11f5929ff1c5b1dac09d02" 4161 + dependencies = [ 4162 + "anyhow", 4163 + "fs2", 4164 + "glob", 4165 + "hex", 4166 + "log", 4167 + "once_cell", 4168 + "reqwest", 4169 + "sha2", 4170 + "tempfile", 4171 + "url", 4172 + "zip", 4173 + ] 4174 + 4175 + [[package]] 4176 + name = "tugger-windows" 4177 + version = "0.10.0" 4178 + source = "registry+https://github.com/rust-lang/crates.io-index" 4179 + checksum = "e9f181ac4fc7f8facfd418824d13045cd068ee73de44319a6116868c22789782" 4180 + dependencies = [ 4181 + "anyhow", 4182 + "duct", 4183 + "find-winsdk", 4184 + "glob", 4185 + "once_cell", 4186 + "semver", 4187 + "tugger-common", 4188 + "winapi", 4189 + ] 4190 + 4191 + [[package]] 4192 + name = "tugger-windows-codesign" 4193 + version = "0.10.0" 4194 + source = "registry+https://github.com/rust-lang/crates.io-index" 4195 + checksum = "ed3f09f8bdace495373cec3fc607bc39f00720a984ba82e310cc9382462fd364" 4196 + dependencies = [ 4197 + "anyhow", 4198 + "duct", 4199 + "log", 4200 + "p12", 4201 + "rcgen", 4202 + "time", 4203 + "tugger-common", 4204 + "tugger-windows", 4205 + "yasna", 4206 + ] 4207 + 4208 + [[package]] 4209 + name = "type-map" 4210 + version = "0.4.0" 4211 + source = "registry+https://github.com/rust-lang/crates.io-index" 4212 + checksum = "b6d3364c5e96cb2ad1603037ab253ddd34d7fb72a58bdddf4b7350760fc69a46" 4213 + dependencies = [ 4214 + "rustc-hash", 4215 + ] 4216 + 4217 + [[package]] 4218 + name = "typenum" 4219 + version = "1.16.0" 4220 + source = "registry+https://github.com/rust-lang/crates.io-index" 4221 + checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 4222 + 4223 + [[package]] 4224 + name = "unic-char-property" 4225 + version = "0.9.0" 4226 + source = "registry+https://github.com/rust-lang/crates.io-index" 4227 + checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221" 4228 + dependencies = [ 4229 + "unic-char-range", 4230 + ] 4231 + 4232 + [[package]] 4233 + name = "unic-char-range" 4234 + version = "0.9.0" 4235 + source = "registry+https://github.com/rust-lang/crates.io-index" 4236 + checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc" 4237 + 4238 + [[package]] 4239 + name = "unic-common" 4240 + version = "0.9.0" 4241 + source = "registry+https://github.com/rust-lang/crates.io-index" 4242 + checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc" 4243 + 4244 + [[package]] 4245 + name = "unic-langid" 4246 + version = "0.9.1" 4247 + source = "registry+https://github.com/rust-lang/crates.io-index" 4248 + checksum = "398f9ad7239db44fd0f80fe068d12ff22d78354080332a5077dc6f52f14dcf2f" 4249 + dependencies = [ 4250 + "unic-langid-impl", 4251 + "unic-langid-macros", 4252 + ] 4253 + 4254 + [[package]] 4255 + name = "unic-langid-impl" 4256 + version = "0.9.1" 4257 + source = "registry+https://github.com/rust-lang/crates.io-index" 4258 + checksum = "e35bfd2f2b8796545b55d7d3fd3e89a0613f68a0d1c8bc28cb7ff96b411a35ff" 4259 + dependencies = [ 4260 + "tinystr", 4261 + ] 4262 + 4263 + [[package]] 4264 + name = "unic-langid-macros" 4265 + version = "0.9.1" 4266 + source = "registry+https://github.com/rust-lang/crates.io-index" 4267 + checksum = "055e618bf694161ffff0466d95cef3e1a5edc59f6ba1888e97801f2b4ebdc4fe" 4268 + dependencies = [ 4269 + "proc-macro-hack", 4270 + "tinystr", 4271 + "unic-langid-impl", 4272 + "unic-langid-macros-impl", 4273 + ] 4274 + 4275 + [[package]] 4276 + name = "unic-langid-macros-impl" 4277 + version = "0.9.1" 4278 + source = "registry+https://github.com/rust-lang/crates.io-index" 4279 + checksum = "1f5cdec05b907f4e2f6843f4354f4ce6a5bebe1a56df320a49134944477ce4d8" 4280 + dependencies = [ 4281 + "proc-macro-hack", 4282 + "quote", 4283 + "syn", 4284 + "unic-langid-impl", 4285 + ] 4286 + 4287 + [[package]] 4288 + name = "unic-ucd-category" 4289 + version = "0.9.0" 4290 + source = "registry+https://github.com/rust-lang/crates.io-index" 4291 + checksum = "1b8d4591f5fcfe1bd4453baaf803c40e1b1e69ff8455c47620440b46efef91c0" 4292 + dependencies = [ 4293 + "matches", 4294 + "unic-char-property", 4295 + "unic-char-range", 4296 + "unic-ucd-version", 4297 + ] 4298 + 4299 + [[package]] 4300 + name = "unic-ucd-version" 4301 + version = "0.9.0" 4302 + source = "registry+https://github.com/rust-lang/crates.io-index" 4303 + checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4" 4304 + dependencies = [ 4305 + "unic-common", 4306 + ] 4307 + 4308 + [[package]] 4309 + name = "unicase" 4310 + version = "2.6.0" 4311 + source = "registry+https://github.com/rust-lang/crates.io-index" 4312 + checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" 4313 + dependencies = [ 4314 + "version_check", 4315 + ] 4316 + 4317 + [[package]] 4318 + name = "unicode-bidi" 4319 + version = "0.3.8" 4320 + source = "registry+https://github.com/rust-lang/crates.io-index" 4321 + checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" 4322 + 4323 + [[package]] 4324 + name = "unicode-ident" 4325 + version = "1.0.6" 4326 + source = "registry+https://github.com/rust-lang/crates.io-index" 4327 + checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" 4328 + 4329 + [[package]] 4330 + name = "unicode-normalization" 4331 + version = "0.1.22" 4332 + source = "registry+https://github.com/rust-lang/crates.io-index" 4333 + checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 4334 + dependencies = [ 4335 + "tinyvec", 4336 + ] 4337 + 4338 + [[package]] 4339 + name = "unicode-segmentation" 4340 + version = "1.10.0" 4341 + source = "registry+https://github.com/rust-lang/crates.io-index" 4342 + checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a" 4343 + 4344 + [[package]] 4345 + name = "unicode-width" 4346 + version = "0.1.10" 4347 + source = "registry+https://github.com/rust-lang/crates.io-index" 4348 + checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 4349 + 4350 + [[package]] 4351 + name = "unindent" 4352 + version = "0.1.11" 4353 + source = "registry+https://github.com/rust-lang/crates.io-index" 4354 + checksum = "e1766d682d402817b5ac4490b3c3002d91dfa0d22812f341609f97b08757359c" 4355 + 4356 + [[package]] 4357 + name = "untrusted" 4358 + version = "0.7.1" 4359 + source = "registry+https://github.com/rust-lang/crates.io-index" 4360 + checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 4361 + 4362 + [[package]] 4363 + name = "url" 4364 + version = "2.3.1" 4365 + source = "registry+https://github.com/rust-lang/crates.io-index" 4366 + checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 4367 + dependencies = [ 4368 + "form_urlencoded", 4369 + "idna", 4370 + "percent-encoding", 4371 + "serde", 4372 + ] 4373 + 4374 + [[package]] 4375 + name = "utf-8" 4376 + version = "0.7.6" 4377 + source = "registry+https://github.com/rust-lang/crates.io-index" 4378 + checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 4379 + 4380 + [[package]] 4381 + name = "utime" 4382 + version = "0.3.1" 4383 + source = "registry+https://github.com/rust-lang/crates.io-index" 4384 + checksum = "91baa0c65eabd12fcbdac8cc35ff16159cab95cae96d0222d6d0271db6193cef" 4385 + dependencies = [ 4386 + "libc", 4387 + "winapi", 4388 + ] 4389 + 4390 + [[package]] 4391 + name = "valuable" 4392 + version = "0.1.0" 4393 + source = "registry+https://github.com/rust-lang/crates.io-index" 4394 + checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 4395 + 4396 + [[package]] 4397 + name = "vcpkg" 4398 + version = "0.2.15" 4399 + source = "registry+https://github.com/rust-lang/crates.io-index" 4400 + checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 4401 + 4402 + [[package]] 4403 + name = "version_check" 4404 + version = "0.9.4" 4405 + source = "registry+https://github.com/rust-lang/crates.io-index" 4406 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 4407 + 4408 + [[package]] 4409 + name = "waker-fn" 4410 + version = "1.1.0" 4411 + source = "registry+https://github.com/rust-lang/crates.io-index" 4412 + checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 4413 + 4414 + [[package]] 4415 + name = "walkdir" 4416 + version = "2.3.2" 4417 + source = "registry+https://github.com/rust-lang/crates.io-index" 4418 + checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 4419 + dependencies = [ 4420 + "same-file", 4421 + "winapi", 4422 + "winapi-util", 4423 + ] 4424 + 4425 + [[package]] 4426 + name = "want" 4427 + version = "0.3.0" 4428 + source = "registry+https://github.com/rust-lang/crates.io-index" 4429 + checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 4430 + dependencies = [ 4431 + "log", 4432 + "try-lock", 4433 + ] 4434 + 4435 + [[package]] 4436 + name = "wasi" 4437 + version = "0.9.0+wasi-snapshot-preview1" 4438 + source = "registry+https://github.com/rust-lang/crates.io-index" 4439 + checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 4440 + 4441 + [[package]] 4442 + name = "wasi" 4443 + version = "0.11.0+wasi-snapshot-preview1" 4444 + source = "registry+https://github.com/rust-lang/crates.io-index" 4445 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 4446 + 4447 + [[package]] 4448 + name = "wasm-bindgen" 4449 + version = "0.2.83" 4450 + source = "registry+https://github.com/rust-lang/crates.io-index" 4451 + checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" 4452 + dependencies = [ 4453 + "cfg-if", 4454 + "wasm-bindgen-macro", 4455 + ] 4456 + 4457 + [[package]] 4458 + name = "wasm-bindgen-backend" 4459 + version = "0.2.83" 4460 + source = "registry+https://github.com/rust-lang/crates.io-index" 4461 + checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" 4462 + dependencies = [ 4463 + "bumpalo", 4464 + "log", 4465 + "once_cell", 4466 + "proc-macro2", 4467 + "quote", 4468 + "syn", 4469 + "wasm-bindgen-shared", 4470 + ] 4471 + 4472 + [[package]] 4473 + name = "wasm-bindgen-futures" 4474 + version = "0.4.33" 4475 + source = "registry+https://github.com/rust-lang/crates.io-index" 4476 + checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d" 4477 + dependencies = [ 4478 + "cfg-if", 4479 + "js-sys", 4480 + "wasm-bindgen", 4481 + "web-sys", 4482 + ] 4483 + 4484 + [[package]] 4485 + name = "wasm-bindgen-macro" 4486 + version = "0.2.83" 4487 + source = "registry+https://github.com/rust-lang/crates.io-index" 4488 + checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" 4489 + dependencies = [ 4490 + "quote", 4491 + "wasm-bindgen-macro-support", 4492 + ] 4493 + 4494 + [[package]] 4495 + name = "wasm-bindgen-macro-support" 4496 + version = "0.2.83" 4497 + source = "registry+https://github.com/rust-lang/crates.io-index" 4498 + checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" 4499 + dependencies = [ 4500 + "proc-macro2", 4501 + "quote", 4502 + "syn", 4503 + "wasm-bindgen-backend", 4504 + "wasm-bindgen-shared", 4505 + ] 4506 + 4507 + [[package]] 4508 + name = "wasm-bindgen-shared" 4509 + version = "0.2.83" 4510 + source = "registry+https://github.com/rust-lang/crates.io-index" 4511 + checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" 4512 + 4513 + [[package]] 4514 + name = "web-sys" 4515 + version = "0.3.60" 4516 + source = "registry+https://github.com/rust-lang/crates.io-index" 4517 + checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f" 4518 + dependencies = [ 4519 + "js-sys", 4520 + "wasm-bindgen", 4521 + ] 4522 + 4523 + [[package]] 4524 + name = "webpki" 4525 + version = "0.22.0" 4526 + source = "registry+https://github.com/rust-lang/crates.io-index" 4527 + checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" 4528 + dependencies = [ 4529 + "ring", 4530 + "untrusted", 4531 + ] 4532 + 4533 + [[package]] 4534 + name = "webpki-roots" 4535 + version = "0.22.6" 4536 + source = "registry+https://github.com/rust-lang/crates.io-index" 4537 + checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" 4538 + dependencies = [ 4539 + "webpki", 4540 + ] 4541 + 4542 + [[package]] 4543 + name = "which" 4544 + version = "4.3.0" 4545 + source = "registry+https://github.com/rust-lang/crates.io-index" 4546 + checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b" 4547 + dependencies = [ 4548 + "either", 4549 + "libc", 4550 + "once_cell", 4551 + ] 4552 + 4553 + [[package]] 4554 + name = "winapi" 4555 + version = "0.3.9" 4556 + source = "registry+https://github.com/rust-lang/crates.io-index" 4557 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 4558 + dependencies = [ 4559 + "winapi-i686-pc-windows-gnu", 4560 + "winapi-x86_64-pc-windows-gnu", 4561 + ] 4562 + 4563 + [[package]] 4564 + name = "winapi-i686-pc-windows-gnu" 4565 + version = "0.4.0" 4566 + source = "registry+https://github.com/rust-lang/crates.io-index" 4567 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 4568 + 4569 + [[package]] 4570 + name = "winapi-util" 4571 + version = "0.1.5" 4572 + source = "registry+https://github.com/rust-lang/crates.io-index" 4573 + checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 4574 + dependencies = [ 4575 + "winapi", 4576 + ] 4577 + 4578 + [[package]] 4579 + name = "winapi-x86_64-pc-windows-gnu" 4580 + version = "0.4.0" 4581 + source = "registry+https://github.com/rust-lang/crates.io-index" 4582 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 4583 + 4584 + [[package]] 4585 + name = "windows" 4586 + version = "0.44.0" 4587 + source = "registry+https://github.com/rust-lang/crates.io-index" 4588 + checksum = "9e745dab35a0c4c77aa3ce42d595e13d2003d6902d6b08c9ef5fc326d08da12b" 4589 + dependencies = [ 4590 + "windows-targets", 4591 + ] 4592 + 4593 + [[package]] 4594 + name = "windows-sys" 4595 + version = "0.42.0" 4596 + source = "registry+https://github.com/rust-lang/crates.io-index" 4597 + checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 4598 + dependencies = [ 4599 + "windows_aarch64_gnullvm", 4600 + "windows_aarch64_msvc", 4601 + "windows_i686_gnu", 4602 + "windows_i686_msvc", 4603 + "windows_x86_64_gnu", 4604 + "windows_x86_64_gnullvm", 4605 + "windows_x86_64_msvc", 4606 + ] 4607 + 4608 + [[package]] 4609 + name = "windows-targets" 4610 + version = "0.42.1" 4611 + source = "registry+https://github.com/rust-lang/crates.io-index" 4612 + checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" 4613 + dependencies = [ 4614 + "windows_aarch64_gnullvm", 4615 + "windows_aarch64_msvc", 4616 + "windows_i686_gnu", 4617 + "windows_i686_msvc", 4618 + "windows_x86_64_gnu", 4619 + "windows_x86_64_gnullvm", 4620 + "windows_x86_64_msvc", 4621 + ] 4622 + 4623 + [[package]] 4624 + name = "windows_aarch64_gnullvm" 4625 + version = "0.42.1" 4626 + source = "registry+https://github.com/rust-lang/crates.io-index" 4627 + checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" 4628 + 4629 + [[package]] 4630 + name = "windows_aarch64_msvc" 4631 + version = "0.42.1" 4632 + source = "registry+https://github.com/rust-lang/crates.io-index" 4633 + checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" 4634 + 4635 + [[package]] 4636 + name = "windows_i686_gnu" 4637 + version = "0.42.1" 4638 + source = "registry+https://github.com/rust-lang/crates.io-index" 4639 + checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" 4640 + 4641 + [[package]] 4642 + name = "windows_i686_msvc" 4643 + version = "0.42.1" 4644 + source = "registry+https://github.com/rust-lang/crates.io-index" 4645 + checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" 4646 + 4647 + [[package]] 4648 + name = "windows_x86_64_gnu" 4649 + version = "0.42.1" 4650 + source = "registry+https://github.com/rust-lang/crates.io-index" 4651 + checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" 4652 + 4653 + [[package]] 4654 + name = "windows_x86_64_gnullvm" 4655 + version = "0.42.1" 4656 + source = "registry+https://github.com/rust-lang/crates.io-index" 4657 + checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" 4658 + 4659 + [[package]] 4660 + name = "windows_x86_64_msvc" 4661 + version = "0.42.1" 4662 + source = "registry+https://github.com/rust-lang/crates.io-index" 4663 + checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" 4664 + 4665 + [[package]] 4666 + name = "winreg" 4667 + version = "0.5.1" 4668 + source = "registry+https://github.com/rust-lang/crates.io-index" 4669 + checksum = "a27a759395c1195c4cc5cda607ef6f8f6498f64e78f7900f5de0a127a424704a" 4670 + dependencies = [ 4671 + "serde", 4672 + "winapi", 4673 + ] 4674 + 4675 + [[package]] 4676 + name = "winreg" 4677 + version = "0.10.1" 4678 + source = "registry+https://github.com/rust-lang/crates.io-index" 4679 + checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 4680 + dependencies = [ 4681 + "winapi", 4682 + ] 4683 + 4684 + [[package]] 4685 + name = "wiremock" 4686 + version = "0.5.17" 4687 + source = "registry+https://github.com/rust-lang/crates.io-index" 4688 + checksum = "12316b50eb725e22b2f6b9c4cbede5b7b89984274d113a7440c86e5c3fc6f99b" 4689 + dependencies = [ 4690 + "assert-json-diff", 4691 + "async-trait", 4692 + "base64 0.13.1", 4693 + "deadpool", 4694 + "futures", 4695 + "futures-timer", 4696 + "http-types", 4697 + "hyper", 4698 + "log", 4699 + "once_cell", 4700 + "regex", 4701 + "serde", 4702 + "serde_json", 4703 + "tokio", 4704 + ] 4705 + 4706 + [[package]] 4707 + name = "workspace-hack" 4708 + version = "0.1.0" 4709 + dependencies = [ 4710 + "bytes", 4711 + "cc", 4712 + "crossbeam-utils", 4713 + "either", 4714 + "flate2", 4715 + "futures-channel", 4716 + "futures-io", 4717 + "futures-task", 4718 + "futures-util", 4719 + "getrandom 0.2.8", 4720 + "hashbrown", 4721 + "hmac", 4722 + "hyper", 4723 + "indexmap", 4724 + "itertools", 4725 + "log", 4726 + "num-traits", 4727 + "phf_shared 0.11.1", 4728 + "prost", 4729 + "rand 0.7.3", 4730 + "rand 0.8.5", 4731 + "rand_core 0.6.4", 4732 + "regex", 4733 + "regex-syntax", 4734 + "scopeguard", 4735 + "serde", 4736 + "serde_json", 4737 + "sha2", 4738 + "snafu", 4739 + "syn", 4740 + "time", 4741 + "time-macros", 4742 + "tokio", 4743 + "tokio-util", 4744 + "tracing", 4745 + "tracing-core", 4746 + "url", 4747 + "zip", 4748 + "zstd 0.11.2+zstd.1.5.2", 4749 + "zstd 0.12.2+zstd.1.5.2", 4750 + "zstd-safe 5.0.2+zstd.1.5.2", 4751 + "zstd-safe 6.0.2+zstd.1.5.2", 4752 + "zstd-sys", 4753 + ] 4754 + 4755 + [[package]] 4756 + name = "xattr" 4757 + version = "0.2.3" 4758 + source = "registry+https://github.com/rust-lang/crates.io-index" 4759 + checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc" 4760 + dependencies = [ 4761 + "libc", 4762 + ] 4763 + 4764 + [[package]] 4765 + name = "xz2" 4766 + version = "0.1.7" 4767 + source = "registry+https://github.com/rust-lang/crates.io-index" 4768 + checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2" 4769 + dependencies = [ 4770 + "lzma-sys", 4771 + ] 4772 + 4773 + [[package]] 4774 + name = "yasna" 4775 + version = "0.5.1" 4776 + source = "registry+https://github.com/rust-lang/crates.io-index" 4777 + checksum = "aed2e7a52e3744ab4d0c05c20aa065258e84c49fd4226f5191b2ed29712710b4" 4778 + dependencies = [ 4779 + "time", 4780 + ] 4781 + 4782 + [[package]] 4783 + name = "zip" 4784 + version = "0.6.3" 4785 + source = "registry+https://github.com/rust-lang/crates.io-index" 4786 + checksum = "537ce7411d25e54e8ae21a7ce0b15840e7bfcff15b51d697ec3266cc76bdf080" 4787 + dependencies = [ 4788 + "aes", 4789 + "byteorder", 4790 + "bzip2", 4791 + "constant_time_eq 0.1.5", 4792 + "crc32fast", 4793 + "crossbeam-utils", 4794 + "flate2", 4795 + "hmac", 4796 + "pbkdf2", 4797 + "sha1", 4798 + "time", 4799 + "zstd 0.11.2+zstd.1.5.2", 4800 + ] 4801 + 4802 + [[package]] 4803 + name = "zstd" 4804 + version = "0.11.2+zstd.1.5.2" 4805 + source = "registry+https://github.com/rust-lang/crates.io-index" 4806 + checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" 4807 + dependencies = [ 4808 + "zstd-safe 5.0.2+zstd.1.5.2", 4809 + ] 4810 + 4811 + [[package]] 4812 + name = "zstd" 4813 + version = "0.12.2+zstd.1.5.2" 4814 + source = "registry+https://github.com/rust-lang/crates.io-index" 4815 + checksum = "e9262a83dc741c0b0ffec209881b45dbc232c21b02a2b9cb1adb93266e41303d" 4816 + dependencies = [ 4817 + "zstd-safe 6.0.2+zstd.1.5.2", 4818 + ] 4819 + 4820 + [[package]] 4821 + name = "zstd-safe" 4822 + version = "5.0.2+zstd.1.5.2" 4823 + source = "registry+https://github.com/rust-lang/crates.io-index" 4824 + checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" 4825 + dependencies = [ 4826 + "libc", 4827 + "zstd-sys", 4828 + ] 4829 + 4830 + [[package]] 4831 + name = "zstd-safe" 4832 + version = "6.0.2+zstd.1.5.2" 4833 + source = "registry+https://github.com/rust-lang/crates.io-index" 4834 + checksum = "a6cf39f730b440bab43da8fb5faf5f254574462f73f260f85f7987f32154ff17" 4835 + dependencies = [ 4836 + "libc", 4837 + "zstd-sys", 4838 + ] 4839 + 4840 + [[package]] 4841 + name = "zstd-sys" 4842 + version = "2.0.5+zstd.1.5.2" 4843 + source = "registry+https://github.com/rust-lang/crates.io-index" 4844 + checksum = "edc50ffce891ad571e9f9afe5039c4837bede781ac4bb13052ed7ae695518596" 4845 + dependencies = [ 4846 + "cc", 4847 + "libc", 4848 + "pkg-config", 4849 + ]
+219 -153
pkgs/games/anki/default.nix
··· 1 - { stdenv 2 - , buildPythonApplication 3 - , lib 4 - , python 5 - , fetchurl 1 + { lib 2 + , stdenv 3 + , buildEnv 6 4 , fetchFromGitHub 7 - , fetchpatch 5 + , fetchYarnDeps 6 + , fixup_yarn_lock 7 + , installShellFiles 8 8 , lame 9 9 , mpv-unwrapped 10 - , libpulseaudio 11 - , pyqtwebengine 12 - , decorator 13 - , beautifulsoup4 14 - , sqlalchemy 15 - , pyaudio 16 - , requests 17 - , markdown 18 - , matplotlib 19 - , mock 20 - , pytest 21 - , glibcLocales 22 - , nose 23 - , jsonschema 24 - , setuptools 25 - , send2trash 10 + , ninja 11 + , nodejs 12 + , nodejs-slim 13 + , protobuf 14 + , python3 15 + , qt6 16 + , rsync 17 + , rustPlatform 18 + , writeShellScriptBin 19 + , yarn 26 20 , CoreAudio 27 - # This little flag adds a huge number of dependencies, but we assume that 28 - # everyone wants Anki to draw plots with statistics by default. 29 - , plotsSupport ? true 30 - # manual 31 - , asciidoc 32 21 }: 33 22 34 23 let 35 - # when updating, also update rev-manual to a recent version of 36 - # https://github.com/ankitects/anki-docs 37 - # The manual is distributed independently of the software. 38 - version = "2.1.15"; 39 - sha256-pkg = "12dvyf3j9df4nrhhnqbzd9b21rpzkh4i6yhhangn2zf7ch0pclss"; 40 - rev-manual = "8f6387867ac37ef3fe9d0b986e70f898d1a49139"; 41 - sha256-manual = "0pm5slxn78r44ggvbksz7rv9hmlnsvn9z811r6f63dsc8vm6mfml"; 24 + pname = "anki"; 25 + version = "2.1.60"; 26 + rev = "76d8807315fcc2675e7fa44d9ddf3d4608efc487"; 27 + 28 + src = fetchFromGitHub { 29 + owner = "ankitects"; 30 + repo = "anki"; 31 + rev = version; 32 + hash = "sha256-hNrf6asxF7r7QK2XO150yiRjyHAYKN8OFCFYX0SAiwA="; 33 + fetchSubmodules = true; 34 + }; 35 + 42 36 43 - manual = stdenv.mkDerivation { 44 - pname = "anki-manual"; 45 - inherit version; 46 - src = fetchFromGitHub { 47 - owner = "ankitects"; 48 - repo = "anki-docs"; 49 - rev = rev-manual; 50 - sha256 = sha256-manual; 37 + cargoDeps = rustPlatform.importCargoLock { 38 + lockFile = ./Cargo.lock; 39 + outputHashes = { 40 + "csv-1.1.6" = "sha256-w728ffOVkI+IfK6FbmkGhr0CjuyqgJnPB1kutMJIUYg="; 41 + "linkcheck-0.4.1-alpha.0" = "sha256-Fiom8oHW9y7vV2RLXW0ClzHOdIlBq3Z9jLP+p6Sk4GI="; 51 42 }; 52 - dontInstall = true; 53 - nativeBuildInputs = [ asciidoc ]; 54 - patchPhase = '' 55 - # rsync isnt needed 56 - # WEB is the PREFIX 57 - # We remove any special ankiweb output generation 58 - # and rename every .mako to .html 59 - sed -e 's/rsync -a/cp -a/g' \ 60 - -e "s|\$(WEB)/docs|$out/share/doc/anki/html|" \ 61 - -e '/echo asciidoc/,/mv $@.tmp $@/c \\tasciidoc -b html5 -o $@ $<' \ 62 - -e 's/\.mako/.html/g' \ 63 - -i Makefile 64 - # patch absolute links to the other language manuals 65 - sed -e 's|https://apps.ankiweb.net/docs/|link:./|g' \ 66 - -i {manual.txt,manual.*.txt} 67 - # there’s an artifact in most input files 68 - sed -e '/<%def.*title.*/d' \ 69 - -i *.txt 70 - mkdir -p $out/share/doc/anki/html 71 - ''; 43 + }; 44 + 45 + anki-build-python = python3.withPackages (ps: with ps; [ 46 + pip 47 + mypy-protobuf 48 + ]); 49 + 50 + # anki shells out to git to check its revision, and also to update submodules 51 + # We don't actually need the submodules, so we stub that out 52 + fakeGit = writeShellScriptBin "git" '' 53 + case "$*" in 54 + "rev-parse --short=8 HEAD") 55 + echo ${builtins.substring 0 8 rev} 56 + ;; 57 + *"submodule update "*) 58 + exit 0 59 + ;; 60 + *) 61 + echo "Unrecognized git: $@" 62 + exit 1 63 + ;; 64 + esac 65 + ''; 66 + 67 + # We don't want to run pip-sync, it does network-io 68 + fakePipSync = writeShellScriptBin "pip-sync" '' 69 + exit 0 70 + ''; 71 + 72 + offlineYarn = writeShellScriptBin "yarn" '' 73 + [[ "$1" == "install" ]] && exit 0 74 + exec ${yarn}/bin/yarn --offline "$@" 75 + ''; 76 + 77 + pyEnv = buildEnv { 78 + name = "anki-pyenv-${version}"; 79 + paths = with python3.pkgs; [ 80 + pip 81 + fakePipSync 82 + anki-build-python 83 + ]; 84 + pathsToLink = [ "/bin" ]; 85 + }; 86 + 87 + yarnOfflineCache = fetchYarnDeps { 88 + yarnLock = "${src}/yarn.lock"; 89 + hash = "sha256-bAtmMGWi5ETIidFFnG3jzJg2mSBnH5ONO2/Lr9A3PpQ="; 72 90 }; 73 91 74 - in 75 - buildPythonApplication rec { 76 - pname = "anki"; 77 - inherit version; 78 - format = "other"; 92 + # https://discourse.nixos.org/t/mkyarnpackage-lockfile-has-incorrect-entry/21586/3 93 + anki-nodemodules = stdenv.mkDerivation { 94 + pname = "anki-nodemodules"; 95 + inherit version src yarnOfflineCache; 79 96 80 - src = fetchurl { 81 - urls = [ 82 - "https://apps.ankiweb.net/downloads/current/${pname}-${version}-source.tgz" 83 - # "https://apps.ankiweb.net/downloads/current/${name}-source.tgz" 84 - # "http://ankisrs.net/download/mirror/${name}.tgz" 85 - # "http://ankisrs.net/download/mirror/archive/${name}.tgz" 97 + nativeBuildInputs = [ 98 + fixup_yarn_lock 99 + yarn 100 + nodejs-slim 86 101 ]; 87 - sha256 = sha256-pkg; 102 + 103 + configurePhase = '' 104 + export HOME=$NIX_BUILD_TOP 105 + yarn config --offline set yarn-offline-mirror $yarnOfflineCache 106 + fixup_yarn_lock yarn.lock 107 + yarn install --offline --frozen-lockfile --ignore-scripts --no-progress --non-interactive 108 + patchShebangs node_modules/ 109 + yarn run postinstall --offline 110 + ''; 111 + 112 + installPhase = '' 113 + mv node_modules $out 114 + ''; 88 115 }; 116 + in 117 + python3.pkgs.buildPythonApplication { 118 + inherit pname version src; 89 119 90 120 outputs = [ "out" "doc" "man" ]; 91 121 92 - propagatedBuildInputs = [ 93 - pyqtwebengine 94 - sqlalchemy 122 + patches = [ 123 + ./patches/gl-fixup.patch 124 + ./patches/no-update-check.patch 125 + # Upstreamed in https://github.com/ankitects/anki/pull/2446 126 + # We can drop these once we update to an anki version that includes them 127 + # already 128 + ./patches/0001-Don-t-download-nodejs-if-NODE_BINARY-is-set.patch 129 + ./patches/0002-Allow-setting-YARN_BINARY-for-the-build-system.patch 130 + # Not upstreamed 131 + ./patches/0003-Skip-formatting-python-code.patch 132 + ]; 133 + 134 + inherit cargoDeps; 135 + 136 + nativeBuildInputs = [ 137 + fakeGit 138 + fixup_yarn_lock 139 + offlineYarn 140 + 141 + installShellFiles 142 + rustPlatform.rust.cargo 143 + rustPlatform.cargoSetupHook 144 + ninja 145 + qt6.wrapQtAppsHook 146 + rsync 147 + ]; 148 + nativeCheckInputs = with python3.pkgs; [ pytest mock astroid ]; 149 + 150 + buildInputs = [ 151 + qt6.qtbase 152 + ]; 153 + propagatedBuildInputs = with python3.pkgs; [ 154 + # This rather long list came from running: 155 + # grep --no-filename -oE "^[^ =]*" python/{requirements.base.txt,requirements.bundle.txt,requirements.qt6_4.txt} | \ 156 + # sort | uniq | grep -v "^#$" 157 + # in their repo at the git tag for this version 158 + # There's probably a more elegant way, but the above extracted all the 159 + # names, without version numbers, of their python dependencies. The hope is 160 + # that nixpkgs versions are "close enough" 161 + # I then removed the ones the check phase failed on (pythonCatchConflictsPhase) 95 162 beautifulsoup4 96 - send2trash 97 - pyaudio 98 - requests 163 + certifi 164 + charset-normalizer 165 + click 166 + colorama 99 167 decorator 168 + distro 169 + flask 170 + flask-cors 171 + idna 172 + importlib-metadata 173 + itsdangerous 174 + jinja2 175 + jsonschema 100 176 markdown 101 - jsonschema 102 - setuptools 103 - ] 104 - ++ lib.optional plotsSupport matplotlib 105 - ++ lib.optionals stdenv.isDarwin [ CoreAudio ] 106 - ; 177 + markupsafe 178 + orjson 179 + pep517 180 + python3.pkgs.protobuf 181 + pyparsing 182 + pyqt6 183 + pyqt6-sip 184 + pyqt6-webengine 185 + pyrsistent 186 + pysocks 187 + requests 188 + send2trash 189 + six 190 + soupsieve 191 + urllib3 192 + waitress 193 + werkzeug 194 + zipp 195 + ] ++ lib.optionals stdenv.isDarwin [ CoreAudio ]; 107 196 108 - nativeCheckInputs = [ pytest glibcLocales mock nose ]; 197 + # Activate optimizations 198 + RELEASE = true; 109 199 110 - nativeBuildInputs = [ pyqtwebengine.wrapQtAppsHook ]; 111 - buildInputs = [ lame mpv-unwrapped libpulseaudio ]; 200 + PROTOC_BINARY = lib.getExe protobuf; 201 + NODE_BINARY = lib.getExe nodejs; 202 + YARN_BINARY = lib.getExe offlineYarn; 203 + PYTHON_BINARY = lib.getExe python3; 112 204 113 - patches = [ 114 - # Disable updated version check. 115 - ./no-version-check.patch 116 - (fetchpatch { 117 - name = "fix-mpv-args.patch"; 118 - url = "https://sources.debian.org/data/main/a/anki/2.1.15+dfsg-3/debian/patches/fix-mpv-args.patch"; 119 - sha256 = "1dimnnawk64m5bbdbjrxw5k08q95l728n94cgkrrwxwavmmywaj2"; 120 - }) 121 - (fetchpatch { 122 - name = "anki-2.1.15-unescape.patch"; 123 - url = "https://795309.bugs.gentoo.org/attachment.cgi?id=715200"; 124 - sha256 = "14rz864kdaba4fd1marwkyz9n1jiqnbjy4al8bvwlhpvp0rm1qk6"; 125 - }) 126 - ]; 205 + inherit yarnOfflineCache; 206 + dontUseNinjaInstall = false; 127 207 128 - # Anki does not use setup.py 129 - dontBuild = true; 208 + buildPhase = '' 209 + export RUST_BACKTRACE=1 210 + export RUST_LOG=debug 130 211 131 - postPatch = '' 132 - # Remove QT translation files. We'll use the standard QT ones. 133 - rm "locale/"*.qm 212 + mkdir -p out/pylib/anki \ 213 + .git 214 + 215 + echo ${builtins.substring 0 8 rev} > out/buildhash 216 + touch out/env 217 + touch .git/HEAD 218 + 219 + ln -vsf ${pyEnv} ./out/pyenv 220 + rsync --chmod +w -avP ${anki-nodemodules}/ out/node_modules/ 221 + ln -vsf out/node_modules node_modules 222 + 223 + export HOME=$NIX_BUILD_TOP 224 + yarn config --offline set yarn-offline-mirror $yarnOfflineCache 225 + fixup_yarn_lock yarn.lock 134 226 135 - # hitting F1 should open the local manual 136 - substituteInPlace anki/consts.py \ 137 - --replace 'HELP_SITE="http://ankisrs.net/docs/manual.html"' \ 138 - 'HELP_SITE="${manual}/share/doc/anki/html/manual.html"' 227 + patchShebangs ./ninja 228 + PIP_USER=1 ./ninja build wheels 139 229 ''; 140 230 141 - # UTF-8 locale needed for testing 142 - LC_ALL = "en_US.UTF-8"; 143 - 144 231 # tests fail with to many open files 232 + # TODO: verify if this is still true (I can't, no mac) 145 233 doCheck = !stdenv.isDarwin; 146 - 147 - # - Anki writes some files to $HOME during tests 148 - # - Skip tests using network 234 + # mimic https://github.com/ankitects/anki/blob/76d8807315fcc2675e7fa44d9ddf3d4608efc487/build/ninja_gen/src/python.rs#L232-L250 149 235 checkPhase = '' 150 - HOME=$TMP pytest --ignore tests/test_sync.py 236 + HOME=$TMP ANKI_TEST_MODE=1 PYTHONPATH=$PYTHONPATH:$PWD/out/pylib \ 237 + pytest -p no:cacheprovider pylib/tests 238 + HOME=$TMP ANKI_TEST_MODE=1 PYTHONPATH=$PYTHONPATH:$PWD/out/pylib:$PWD/pylib:$PWD/out/qt \ 239 + pytest -p no:cacheprovider qt/tests 151 240 ''; 152 241 153 - installPhase = '' 154 - pp=$out/lib/${python.libPrefix}/site-packages 155 - 156 - mkdir -p $out/bin 157 - mkdir -p $out/share/applications 158 - mkdir -p $doc/share/doc/anki 159 - mkdir -p $man/share/man/man1 160 - mkdir -p $out/share/mime/packages 161 - mkdir -p $out/share/pixmaps 162 - mkdir -p $pp 163 - 164 - cat > $out/bin/anki <<EOF 165 - #!${python}/bin/python 166 - import aqt 167 - aqt.run() 168 - EOF 169 - chmod 755 $out/bin/anki 170 - 171 - cp -v anki.desktop $out/share/applications/ 172 - cp -v README* LICENSE* $doc/share/doc/anki/ 173 - cp -v anki.1 $man/share/man/man1/ 174 - cp -v anki.xml $out/share/mime/packages/ 175 - cp -v anki.{png,xpm} $out/share/pixmaps/ 176 - cp -rv locale $out/share/ 177 - cp -rv anki aqt web $pp/ 242 + preInstall = '' 243 + mkdir dist 244 + mv out/wheels/* dist 245 + ''; 178 246 179 - # copy the manual into $doc 180 - cp -r ${manual}/share/doc/anki/html $doc/share/doc/anki 247 + postInstall = '' 248 + install -D -t $out/share/applications qt/bundle/lin/anki.desktop 249 + install -D -t $doc/share/doc/anki README* LICENSE* 250 + install -D -t $out/share/mime/packages qt/bundle/lin/anki.xml 251 + install -D -t $out/share/pixmaps qt/bundle/lin/anki.{png,xpm} 252 + installManPage qt/bundle/lin/anki.1 181 253 ''; 182 254 183 - # now wrapPythonPrograms from postFixup will add both python and qt env variables 184 255 dontWrapQtApps = true; 185 - 186 256 preFixup = '' 187 257 makeWrapperArgs+=( 188 258 "''${qtWrapperArgs[@]}" 189 259 --prefix PATH ':' "${lame}/bin:${mpv-unwrapped}/bin" 190 260 ) 191 261 ''; 192 - 193 - passthru = { 194 - inherit manual; 195 - }; 196 262 197 263 meta = with lib; { 198 264 homepage = "https://apps.ankiweb.net/"; ··· 211 277 ''; 212 278 license = licenses.agpl3Plus; 213 279 platforms = platforms.mesaPlatforms; 214 - maintainers = with maintainers; [ oxij Profpatsch ]; 280 + maintainers = with maintainers; [ oxij Profpatsch euank ]; 215 281 }; 216 282 }
-13
pkgs/games/anki/no-version-check.patch
··· 1 - diff -Nurp anki-2.0.33.orig/aqt/main.py anki-2.0.33/aqt/main.py 2 - --- anki-2.0.33.orig/aqt/main.py 2016-01-05 21:37:53.904533750 +0100 3 - +++ anki-2.0.33/aqt/main.py 2016-01-05 21:39:11.469175976 +0100 4 - @@ -820,6 +820,9 @@ title="%s">%s</button>''' % ( 5 - ########################################################################## 6 - 7 - def setupAutoUpdate(self): 8 - + # Don't check for latest version since the versions are 9 - + # managed in Nixpkgs. 10 - + return 11 - import aqt.update 12 - self.autoUpdate = aqt.update.LatestVersionFinder(self) 13 - self.connect(self.autoUpdate, SIGNAL("newVerAvail"), self.newVerAvail)
+53
pkgs/games/anki/patches/0001-Don-t-download-nodejs-if-NODE_BINARY-is-set.patch
··· 1 + From 53740ca75d167fab5c403a462e21ecd717b1dafa Mon Sep 17 00:00:00 2001 2 + From: Euan Kemp <euank@euank.com> 3 + Date: Fri, 17 Mar 2023 22:38:04 +0900 4 + Subject: [PATCH 1/2] Don't download nodejs if NODE_BINARY is set 5 + 6 + Some build environments, such as nixpkgs, restrict network access and 7 + thus would prefer to not download anything at all. Setting PROTOC_BINARY 8 + and friends makes the build system not download stuff, and the same 9 + should be true for nodejs 10 + --- 11 + build/ninja_gen/src/node.rs | 19 +++++++++---------- 12 + 1 file changed, 9 insertions(+), 10 deletions(-) 13 + 14 + diff --git a/build/ninja_gen/src/node.rs b/build/ninja_gen/src/node.rs 15 + index df05e149d..d08c7011e 100644 16 + --- a/build/ninja_gen/src/node.rs 17 + +++ b/build/ninja_gen/src/node.rs 18 + @@ -105,16 +105,6 @@ pub fn setup_node( 19 + binary_exports: &[&'static str], 20 + mut data_exports: HashMap<&str, Vec<Cow<str>>>, 21 + ) -> Result<()> { 22 + - download_and_extract( 23 + - build, 24 + - "node", 25 + - archive, 26 + - hashmap! { 27 + - "bin" => vec![if cfg!(windows) { "node.exe" } else { "bin/node" }], 28 + - "npm" => vec![if cfg!(windows) { "npm.cmd " } else { "bin/npm" }] 29 + - }, 30 + - )?; 31 + - 32 + let node_binary = match std::env::var("NODE_BINARY") { 33 + Ok(path) => { 34 + assert!( 35 + @@ -124,6 +114,15 @@ pub fn setup_node( 36 + path.into() 37 + } 38 + Err(_) => { 39 + + download_and_extract( 40 + + build, 41 + + "node", 42 + + archive, 43 + + hashmap! { 44 + + "bin" => vec![if cfg!(windows) { "node.exe" } else { "bin/node" }], 45 + + "npm" => vec![if cfg!(windows) { "npm.cmd " } else { "bin/npm" }] 46 + + }, 47 + + )?; 48 + inputs![":extract:node:bin"] 49 + } 50 + }; 51 + -- 52 + 2.39.2 53 +
+36
pkgs/games/anki/patches/0002-Allow-setting-YARN_BINARY-for-the-build-system.patch
··· 1 + From 16af7d4cabcf10797bd110c905a9d7694bde0fb4 Mon Sep 17 00:00:00 2001 2 + From: Euan Kemp <euank@euank.com> 3 + Date: Fri, 17 Mar 2023 23:07:05 +0900 4 + Subject: [PATCH 2/2] Allow setting YARN_BINARY for the build system 5 + 6 + --- 7 + build/ninja_gen/src/node.rs | 13 ++++++++++++- 8 + 1 file changed, 12 insertions(+), 1 deletion(-) 9 + 10 + diff --git a/build/ninja_gen/src/node.rs b/build/ninja_gen/src/node.rs 11 + index d08c7011e..c1e2ce1b3 100644 12 + --- a/build/ninja_gen/src/node.rs 13 + +++ b/build/ninja_gen/src/node.rs 14 + @@ -129,7 +129,18 @@ pub fn setup_node( 15 + let node_binary = build.expand_inputs(node_binary); 16 + build.variable("node_binary", &node_binary[0]); 17 + 18 + - build.add("yarn", YarnSetup {})?; 19 + + match std::env::var("YARN_BINARY") { 20 + + Ok(path) => { 21 + + assert!( 22 + + Utf8Path::new(&path).is_absolute(), 23 + + "YARN_BINARY must be absolute" 24 + + ); 25 + + build.add_resolved_files_to_group("yarn:bin", &vec![path]); 26 + + }, 27 + + Err(_) => { 28 + + build.add("yarn", YarnSetup {})?; 29 + + }, 30 + + }; 31 + 32 + for binary in binary_exports { 33 + data_exports.insert( 34 + -- 35 + 2.39.2 36 +
+31
pkgs/games/anki/patches/0003-Skip-formatting-python-code.patch
··· 1 + From ed5090b237bca768dbf7dfc3b4414b955879f15e Mon Sep 17 00:00:00 2001 2 + From: Euan Kemp <euank@euank.com> 3 + Date: Fri, 7 Apr 2023 20:22:34 +0900 4 + Subject: [PATCH 3/3] Skip formatting python code 5 + 6 + --- 7 + pylib/tools/hookslib.py | 4 ++-- 8 + 1 file changed, 2 insertions(+), 2 deletions(-) 9 + 10 + diff --git a/pylib/tools/hookslib.py b/pylib/tools/hookslib.py 11 + index 6361c633e..95ecb64a2 100644 12 + --- a/pylib/tools/hookslib.py 13 + +++ b/pylib/tools/hookslib.py 14 + @@ -82,7 +82,7 @@ class Hook: 15 + code = f"""\ 16 + class {self.classname()}: 17 + {classdoc}{self.list_code()} 18 + - 19 + + 20 + def append(self, callback: {self.callable()}) -> None: 21 + '''{appenddoc}''' 22 + self._hooks.append(callback) 23 + @@ -208,4 +208,4 @@ def write_file(path: str, hooks: list[Hook], prefix: str, suffix: str): 24 + os.environ["USERPROFILE"] = os.environ["HOME"] 25 + with open(path, "wb") as file: 26 + file.write(code.encode("utf8")) 27 + - subprocess.run([sys.executable, "-m", "black", "-q", path], check=True) 28 + + # subprocess.run([sys.executable, "-m", "black", "-q", path], check=True) 29 + -- 30 + 2.39.2 31 +
+17
pkgs/games/anki/patches/gl-fixup.patch
··· 1 + diff --git a/qt/aqt/__init__.py b/qt/aqt/__init__.py 2 + index 352848cfd..3fd5d0769 100644 3 + --- a/qt/aqt/__init__.py 4 + +++ b/qt/aqt/__init__.py 5 + @@ -402,12 +402,6 @@ def parseArgs(argv: list[str]) -> tuple[argparse.Namespace, list[str]]: 6 + def setupGL(pm: aqt.profiles.ProfileManager) -> None: 7 + driver = pm.video_driver() 8 + 9 + - # work around pyqt loading wrong GL library 10 + - if is_lin: 11 + - import ctypes 12 + - 13 + - ctypes.CDLL("libGL.so.1", ctypes.RTLD_GLOBAL) 14 + - 15 + # catch opengl errors 16 + def msgHandler(category: Any, ctx: Any, msg: Any) -> None: 17 + if category == QtMsgType.QtDebugMsg:
+13
pkgs/games/anki/patches/no-update-check.patch
··· 1 + diff --git a/qt/aqt/main.py b/qt/aqt/main.py 2 + index 0f2764f66..c42a88402 100644 3 + --- a/qt/aqt/main.py 4 + +++ b/qt/aqt/main.py 5 + @@ -1395,6 +1395,8 @@ title="{}" {}>{}</button>""".format( 6 + ########################################################################## 7 + 8 + def setupAutoUpdate(self) -> None: 9 + + # nixpkgs patch; updates are managed by nix 10 + + return 11 + import aqt.update 12 + 13 + self.autoUpdate = aqt.update.LatestVersionFinder(self)
+10 -9
pkgs/servers/ankisyncd/default.nix
··· 1 1 { lib 2 2 , fetchFromGitHub 3 3 , python3 4 - , anki 5 4 }: 6 5 7 6 python3.pkgs.buildPythonApplication rec { ··· 11 10 owner = "ankicommunity"; 12 11 repo = "anki-sync-server"; 13 12 rev = version; 14 - sha256 = "196xhd6vzp1ncr3ahz0bv0gp1ap2s37j8v48dwmvaywzayakqdab"; 13 + hash = "sha256-RXrdJGJ+HMSpDGQBuVPPqsh3+uwAgE6f7ZJ0yFRMI8I="; 14 + fetchSubmodules = true; 15 15 }; 16 16 format = "other"; 17 17 ··· 21 21 mkdir -p $out/${python3.sitePackages} 22 22 23 23 cp -r ankisyncd utils ankisyncd.conf $out/${python3.sitePackages} 24 + cp -r anki-bundled/anki $out/${python3.sitePackages} 24 25 mkdir $out/share 25 26 cp ankisyncctl.py $out/share/ 26 27 ··· 28 29 ''; 29 30 30 31 fixupPhase = '' 31 - PYTHONPATH="$PYTHONPATH:$out/${python3.sitePackages}:${anki}" 32 + PYTHONPATH="$PYTHONPATH:$out/${python3.sitePackages}" 32 33 33 34 makeWrapper "${python3.interpreter}" "$out/bin/ankisyncd" \ 34 35 --set PYTHONPATH $PYTHONPATH \ ··· 46 47 47 48 buildInputs = [ ]; 48 49 49 - propagatedBuildInputs = [ anki ]; 50 + propagatedBuildInputs = with python3.pkgs; [ 51 + decorator 52 + requests 53 + ]; 50 54 51 55 checkPhase = '' 52 - # Exclude tests that require sqlite's sqldiff command, since 53 - # it isn't yet packaged for NixOS, although 2 PRs exist: 54 - # - https://github.com/NixOS/nixpkgs/pull/69112 55 - # - https://github.com/NixOS/nixpkgs/pull/75784 56 - # Once this is merged, these tests can be run as well. 56 + # skip these tests, our files are too young: 57 + # tests/test_web_media.py::SyncAppFunctionalMediaTest::test_sync_mediaChanges ValueError: ZIP does not support timestamps before 1980 57 58 pytest --ignore tests/test_web_media.py tests/ 58 59 ''; 59 60
+1 -1
pkgs/top-level/all-packages.nix
··· 35630 35630 35631 35631 angband = callPackage ../games/angband { }; 35632 35632 35633 - anki = python39Packages.callPackage ../games/anki { 35633 + anki = callPackage ../games/anki { 35634 35634 inherit (darwin.apple_sdk.frameworks) CoreAudio; 35635 35635 }; 35636 35636 anki-bin = callPackage ../games/anki/bin.nix { buildFHSUserEnv = buildFHSUserEnvBubblewrap; };