paperoni: update Cargo.lock and unpin openssl

figsoda 244cd96c 1e5e280d

+3039 -11
+3014
pkgs/tools/text/paperoni/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 = "aead" 22 + version = "0.3.2" 23 + source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "7fc95d1bdb8e6666b2b217308eeeb09f2d6728d104be3e31916cc74d15420331" 25 + dependencies = [ 26 + "generic-array", 27 + ] 28 + 29 + [[package]] 30 + name = "aes" 31 + version = "0.6.0" 32 + source = "registry+https://github.com/rust-lang/crates.io-index" 33 + checksum = "884391ef1066acaa41e766ba8f596341b96e93ce34f9a43e7d24bf0a0eaf0561" 34 + dependencies = [ 35 + "aes-soft", 36 + "aesni", 37 + "cipher", 38 + ] 39 + 40 + [[package]] 41 + name = "aes-gcm" 42 + version = "0.8.0" 43 + source = "registry+https://github.com/rust-lang/crates.io-index" 44 + checksum = "5278b5fabbb9bd46e24aa69b2fdea62c99088e0a950a9be40e3e0101298f88da" 45 + dependencies = [ 46 + "aead", 47 + "aes", 48 + "cipher", 49 + "ctr", 50 + "ghash", 51 + "subtle", 52 + ] 53 + 54 + [[package]] 55 + name = "aes-soft" 56 + version = "0.6.4" 57 + source = "registry+https://github.com/rust-lang/crates.io-index" 58 + checksum = "be14c7498ea50828a38d0e24a765ed2effe92a705885b57d029cd67d45744072" 59 + dependencies = [ 60 + "cipher", 61 + "opaque-debug", 62 + ] 63 + 64 + [[package]] 65 + name = "aesni" 66 + version = "0.10.0" 67 + source = "registry+https://github.com/rust-lang/crates.io-index" 68 + checksum = "ea2e11f5e94c2f7d386164cc2aa1f97823fed6f259e486940a71c174dd01b0ce" 69 + dependencies = [ 70 + "cipher", 71 + "opaque-debug", 72 + ] 73 + 74 + [[package]] 75 + name = "aho-corasick" 76 + version = "1.0.1" 77 + source = "registry+https://github.com/rust-lang/crates.io-index" 78 + checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04" 79 + dependencies = [ 80 + "memchr", 81 + ] 82 + 83 + [[package]] 84 + name = "android_system_properties" 85 + version = "0.1.5" 86 + source = "registry+https://github.com/rust-lang/crates.io-index" 87 + checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 88 + dependencies = [ 89 + "libc", 90 + ] 91 + 92 + [[package]] 93 + name = "ansi_term" 94 + version = "0.12.1" 95 + source = "registry+https://github.com/rust-lang/crates.io-index" 96 + checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 97 + dependencies = [ 98 + "winapi", 99 + ] 100 + 101 + [[package]] 102 + name = "anyhow" 103 + version = "1.0.71" 104 + source = "registry+https://github.com/rust-lang/crates.io-index" 105 + checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" 106 + 107 + [[package]] 108 + name = "async-channel" 109 + version = "1.8.0" 110 + source = "registry+https://github.com/rust-lang/crates.io-index" 111 + checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833" 112 + dependencies = [ 113 + "concurrent-queue", 114 + "event-listener", 115 + "futures-core", 116 + ] 117 + 118 + [[package]] 119 + name = "async-executor" 120 + version = "1.5.1" 121 + source = "registry+https://github.com/rust-lang/crates.io-index" 122 + checksum = "6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb" 123 + dependencies = [ 124 + "async-lock", 125 + "async-task", 126 + "concurrent-queue", 127 + "fastrand", 128 + "futures-lite", 129 + "slab", 130 + ] 131 + 132 + [[package]] 133 + name = "async-global-executor" 134 + version = "2.3.1" 135 + source = "registry+https://github.com/rust-lang/crates.io-index" 136 + checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776" 137 + dependencies = [ 138 + "async-channel", 139 + "async-executor", 140 + "async-io", 141 + "async-lock", 142 + "blocking", 143 + "futures-lite", 144 + "once_cell", 145 + ] 146 + 147 + [[package]] 148 + name = "async-io" 149 + version = "1.13.0" 150 + source = "registry+https://github.com/rust-lang/crates.io-index" 151 + checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" 152 + dependencies = [ 153 + "async-lock", 154 + "autocfg", 155 + "cfg-if", 156 + "concurrent-queue", 157 + "futures-lite", 158 + "log 0.4.17", 159 + "parking", 160 + "polling", 161 + "rustix", 162 + "slab", 163 + "socket2", 164 + "waker-fn", 165 + ] 166 + 167 + [[package]] 168 + name = "async-lock" 169 + version = "2.7.0" 170 + source = "registry+https://github.com/rust-lang/crates.io-index" 171 + checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7" 172 + dependencies = [ 173 + "event-listener", 174 + ] 175 + 176 + [[package]] 177 + name = "async-std" 178 + version = "1.12.0" 179 + source = "registry+https://github.com/rust-lang/crates.io-index" 180 + checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d" 181 + dependencies = [ 182 + "async-channel", 183 + "async-global-executor", 184 + "async-io", 185 + "async-lock", 186 + "crossbeam-utils", 187 + "futures-channel", 188 + "futures-core", 189 + "futures-io", 190 + "futures-lite", 191 + "gloo-timers", 192 + "kv-log-macro", 193 + "log 0.4.17", 194 + "memchr", 195 + "once_cell", 196 + "pin-project-lite", 197 + "pin-utils", 198 + "slab", 199 + "wasm-bindgen-futures", 200 + ] 201 + 202 + [[package]] 203 + name = "async-task" 204 + version = "4.4.0" 205 + source = "registry+https://github.com/rust-lang/crates.io-index" 206 + checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae" 207 + 208 + [[package]] 209 + name = "async-trait" 210 + version = "0.1.68" 211 + source = "registry+https://github.com/rust-lang/crates.io-index" 212 + checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" 213 + dependencies = [ 214 + "proc-macro2", 215 + "quote", 216 + "syn 2.0.15", 217 + ] 218 + 219 + [[package]] 220 + name = "atomic-waker" 221 + version = "1.1.1" 222 + source = "registry+https://github.com/rust-lang/crates.io-index" 223 + checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3" 224 + 225 + [[package]] 226 + name = "atty" 227 + version = "0.2.14" 228 + source = "registry+https://github.com/rust-lang/crates.io-index" 229 + checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 230 + dependencies = [ 231 + "hermit-abi 0.1.19", 232 + "libc", 233 + "winapi", 234 + ] 235 + 236 + [[package]] 237 + name = "autocfg" 238 + version = "1.1.0" 239 + source = "registry+https://github.com/rust-lang/crates.io-index" 240 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 241 + 242 + [[package]] 243 + name = "backtrace" 244 + version = "0.3.67" 245 + source = "registry+https://github.com/rust-lang/crates.io-index" 246 + checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca" 247 + dependencies = [ 248 + "addr2line", 249 + "cc", 250 + "cfg-if", 251 + "libc", 252 + "miniz_oxide", 253 + "object", 254 + "rustc-demangle", 255 + ] 256 + 257 + [[package]] 258 + name = "base-x" 259 + version = "0.2.11" 260 + source = "registry+https://github.com/rust-lang/crates.io-index" 261 + checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 262 + 263 + [[package]] 264 + name = "base64" 265 + version = "0.13.1" 266 + source = "registry+https://github.com/rust-lang/crates.io-index" 267 + checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 268 + 269 + [[package]] 270 + name = "bitflags" 271 + version = "1.3.2" 272 + source = "registry+https://github.com/rust-lang/crates.io-index" 273 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 274 + 275 + [[package]] 276 + name = "block-buffer" 277 + version = "0.9.0" 278 + source = "registry+https://github.com/rust-lang/crates.io-index" 279 + checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" 280 + dependencies = [ 281 + "generic-array", 282 + ] 283 + 284 + [[package]] 285 + name = "blocking" 286 + version = "1.3.1" 287 + source = "registry+https://github.com/rust-lang/crates.io-index" 288 + checksum = "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65" 289 + dependencies = [ 290 + "async-channel", 291 + "async-lock", 292 + "async-task", 293 + "atomic-waker", 294 + "fastrand", 295 + "futures-lite", 296 + "log 0.4.17", 297 + ] 298 + 299 + [[package]] 300 + name = "bumpalo" 301 + version = "3.12.2" 302 + source = "registry+https://github.com/rust-lang/crates.io-index" 303 + checksum = "3c6ed94e98ecff0c12dd1b04c15ec0d7d9458ca8fe806cea6f12954efe74c63b" 304 + 305 + [[package]] 306 + name = "byteorder" 307 + version = "1.4.3" 308 + source = "registry+https://github.com/rust-lang/crates.io-index" 309 + checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 310 + 311 + [[package]] 312 + name = "bytes" 313 + version = "0.5.6" 314 + source = "registry+https://github.com/rust-lang/crates.io-index" 315 + checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38" 316 + 317 + [[package]] 318 + name = "bytes" 319 + version = "1.4.0" 320 + source = "registry+https://github.com/rust-lang/crates.io-index" 321 + checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 322 + 323 + [[package]] 324 + name = "cc" 325 + version = "1.0.79" 326 + source = "registry+https://github.com/rust-lang/crates.io-index" 327 + checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 328 + 329 + [[package]] 330 + name = "cfg-if" 331 + version = "1.0.0" 332 + source = "registry+https://github.com/rust-lang/crates.io-index" 333 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 334 + 335 + [[package]] 336 + name = "chrono" 337 + version = "0.4.24" 338 + source = "registry+https://github.com/rust-lang/crates.io-index" 339 + checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b" 340 + dependencies = [ 341 + "iana-time-zone", 342 + "js-sys", 343 + "num-integer", 344 + "num-traits", 345 + "time 0.1.45", 346 + "wasm-bindgen", 347 + "winapi", 348 + ] 349 + 350 + [[package]] 351 + name = "cipher" 352 + version = "0.2.5" 353 + source = "registry+https://github.com/rust-lang/crates.io-index" 354 + checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801" 355 + dependencies = [ 356 + "generic-array", 357 + ] 358 + 359 + [[package]] 360 + name = "clap" 361 + version = "2.34.0" 362 + source = "registry+https://github.com/rust-lang/crates.io-index" 363 + checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" 364 + dependencies = [ 365 + "ansi_term", 366 + "atty", 367 + "bitflags", 368 + "strsim 0.8.0", 369 + "textwrap", 370 + "unicode-width", 371 + "vec_map", 372 + "yaml-rust", 373 + ] 374 + 375 + [[package]] 376 + name = "colored" 377 + version = "2.0.0" 378 + source = "registry+https://github.com/rust-lang/crates.io-index" 379 + checksum = "b3616f750b84d8f0de8a58bda93e08e2a81ad3f523089b05f1dffecab48c6cbd" 380 + dependencies = [ 381 + "atty", 382 + "lazy_static", 383 + "winapi", 384 + ] 385 + 386 + [[package]] 387 + name = "comfy-table" 388 + version = "3.0.0" 389 + source = "registry+https://github.com/rust-lang/crates.io-index" 390 + checksum = "c93d79ba722818d1a6aedfbe2cf4889330c856d0c6772951efbbf3dd283c070a" 391 + dependencies = [ 392 + "crossterm", 393 + "strum", 394 + "strum_macros", 395 + ] 396 + 397 + [[package]] 398 + name = "concurrent-queue" 399 + version = "2.2.0" 400 + source = "registry+https://github.com/rust-lang/crates.io-index" 401 + checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c" 402 + dependencies = [ 403 + "crossbeam-utils", 404 + ] 405 + 406 + [[package]] 407 + name = "console" 408 + version = "0.15.5" 409 + source = "registry+https://github.com/rust-lang/crates.io-index" 410 + checksum = "c3d79fbe8970a77e3e34151cc13d3b3e248aa0faaecb9f6091fa07ebefe5ad60" 411 + dependencies = [ 412 + "encode_unicode", 413 + "lazy_static", 414 + "libc", 415 + "windows-sys 0.42.0", 416 + ] 417 + 418 + [[package]] 419 + name = "const_fn" 420 + version = "0.4.9" 421 + source = "registry+https://github.com/rust-lang/crates.io-index" 422 + checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935" 423 + 424 + [[package]] 425 + name = "convert_case" 426 + version = "0.4.0" 427 + source = "registry+https://github.com/rust-lang/crates.io-index" 428 + checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 429 + 430 + [[package]] 431 + name = "cookie" 432 + version = "0.14.4" 433 + source = "registry+https://github.com/rust-lang/crates.io-index" 434 + checksum = "03a5d7b21829bc7b4bf4754a978a241ae54ea55a40f92bb20216e54096f4b951" 435 + dependencies = [ 436 + "aes-gcm", 437 + "base64", 438 + "hkdf", 439 + "hmac", 440 + "percent-encoding", 441 + "rand 0.8.5", 442 + "sha2", 443 + "time 0.2.27", 444 + "version_check", 445 + ] 446 + 447 + [[package]] 448 + name = "core-foundation-sys" 449 + version = "0.8.4" 450 + source = "registry+https://github.com/rust-lang/crates.io-index" 451 + checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 452 + 453 + [[package]] 454 + name = "cpufeatures" 455 + version = "0.2.7" 456 + source = "registry+https://github.com/rust-lang/crates.io-index" 457 + checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58" 458 + dependencies = [ 459 + "libc", 460 + ] 461 + 462 + [[package]] 463 + name = "cpuid-bool" 464 + version = "0.2.0" 465 + source = "registry+https://github.com/rust-lang/crates.io-index" 466 + checksum = "dcb25d077389e53838a8158c8e99174c5a9d902dee4904320db714f3c653ffba" 467 + 468 + [[package]] 469 + name = "crc32fast" 470 + version = "1.3.2" 471 + source = "registry+https://github.com/rust-lang/crates.io-index" 472 + checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 473 + dependencies = [ 474 + "cfg-if", 475 + ] 476 + 477 + [[package]] 478 + name = "crossbeam-utils" 479 + version = "0.8.15" 480 + source = "registry+https://github.com/rust-lang/crates.io-index" 481 + checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" 482 + dependencies = [ 483 + "cfg-if", 484 + ] 485 + 486 + [[package]] 487 + name = "crossterm" 488 + version = "0.20.0" 489 + source = "registry+https://github.com/rust-lang/crates.io-index" 490 + checksum = "c0ebde6a9dd5e331cd6c6f48253254d117642c31653baa475e394657c59c1f7d" 491 + dependencies = [ 492 + "bitflags", 493 + "crossterm_winapi", 494 + "libc", 495 + "mio", 496 + "parking_lot 0.11.2", 497 + "signal-hook", 498 + "signal-hook-mio", 499 + "winapi", 500 + ] 501 + 502 + [[package]] 503 + name = "crossterm_winapi" 504 + version = "0.8.0" 505 + source = "registry+https://github.com/rust-lang/crates.io-index" 506 + checksum = "3a6966607622438301997d3dac0d2f6e9a90c68bb6bc1785ea98456ab93c0507" 507 + dependencies = [ 508 + "winapi", 509 + ] 510 + 511 + [[package]] 512 + name = "crypto-mac" 513 + version = "0.10.1" 514 + source = "registry+https://github.com/rust-lang/crates.io-index" 515 + checksum = "bff07008ec701e8028e2ceb8f83f0e4274ee62bd2dbdc4fefff2e9a91824081a" 516 + dependencies = [ 517 + "generic-array", 518 + "subtle", 519 + ] 520 + 521 + [[package]] 522 + name = "cssparser" 523 + version = "0.27.2" 524 + source = "registry+https://github.com/rust-lang/crates.io-index" 525 + checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a" 526 + dependencies = [ 527 + "cssparser-macros", 528 + "dtoa-short", 529 + "itoa 0.4.8", 530 + "matches", 531 + "phf", 532 + "proc-macro2", 533 + "quote", 534 + "smallvec", 535 + "syn 1.0.109", 536 + ] 537 + 538 + [[package]] 539 + name = "cssparser-macros" 540 + version = "0.6.0" 541 + source = "registry+https://github.com/rust-lang/crates.io-index" 542 + checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e" 543 + dependencies = [ 544 + "quote", 545 + "syn 1.0.109", 546 + ] 547 + 548 + [[package]] 549 + name = "ctor" 550 + version = "0.1.26" 551 + source = "registry+https://github.com/rust-lang/crates.io-index" 552 + checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" 553 + dependencies = [ 554 + "quote", 555 + "syn 1.0.109", 556 + ] 557 + 558 + [[package]] 559 + name = "ctr" 560 + version = "0.6.0" 561 + source = "registry+https://github.com/rust-lang/crates.io-index" 562 + checksum = "fb4a30d54f7443bf3d6191dcd486aca19e67cb3c49fa7a06a319966346707e7f" 563 + dependencies = [ 564 + "cipher", 565 + ] 566 + 567 + [[package]] 568 + name = "curl" 569 + version = "0.4.44" 570 + source = "registry+https://github.com/rust-lang/crates.io-index" 571 + checksum = "509bd11746c7ac09ebd19f0b17782eae80aadee26237658a6b4808afb5c11a22" 572 + dependencies = [ 573 + "curl-sys", 574 + "libc", 575 + "openssl-probe", 576 + "openssl-sys", 577 + "schannel", 578 + "socket2", 579 + "winapi", 580 + ] 581 + 582 + [[package]] 583 + name = "curl-sys" 584 + version = "0.4.61+curl-8.0.1" 585 + source = "registry+https://github.com/rust-lang/crates.io-index" 586 + checksum = "14d05c10f541ae6f3bc5b3d923c20001f47db7d5f0b2bc6ad16490133842db79" 587 + dependencies = [ 588 + "cc", 589 + "libc", 590 + "libnghttp2-sys", 591 + "libz-sys", 592 + "openssl-sys", 593 + "pkg-config", 594 + "vcpkg", 595 + "winapi", 596 + ] 597 + 598 + [[package]] 599 + name = "darling" 600 + version = "0.12.4" 601 + source = "registry+https://github.com/rust-lang/crates.io-index" 602 + checksum = "5f2c43f534ea4b0b049015d00269734195e6d3f0f6635cb692251aca6f9f8b3c" 603 + dependencies = [ 604 + "darling_core", 605 + "darling_macro", 606 + ] 607 + 608 + [[package]] 609 + name = "darling_core" 610 + version = "0.12.4" 611 + source = "registry+https://github.com/rust-lang/crates.io-index" 612 + checksum = "8e91455b86830a1c21799d94524df0845183fa55bafd9aa137b01c7d1065fa36" 613 + dependencies = [ 614 + "fnv", 615 + "ident_case", 616 + "proc-macro2", 617 + "quote", 618 + "strsim 0.10.0", 619 + "syn 1.0.109", 620 + ] 621 + 622 + [[package]] 623 + name = "darling_macro" 624 + version = "0.12.4" 625 + source = "registry+https://github.com/rust-lang/crates.io-index" 626 + checksum = "29b5acf0dea37a7f66f7b25d2c5e93fd46f8f6968b1a5d7a3e02e97768afc95a" 627 + dependencies = [ 628 + "darling_core", 629 + "quote", 630 + "syn 1.0.109", 631 + ] 632 + 633 + [[package]] 634 + name = "derive_builder" 635 + version = "0.10.2" 636 + source = "registry+https://github.com/rust-lang/crates.io-index" 637 + checksum = "d13202debe11181040ae9063d739fa32cfcaaebe2275fe387703460ae2365b30" 638 + dependencies = [ 639 + "derive_builder_macro", 640 + ] 641 + 642 + [[package]] 643 + name = "derive_builder_core" 644 + version = "0.10.2" 645 + source = "registry+https://github.com/rust-lang/crates.io-index" 646 + checksum = "66e616858f6187ed828df7c64a6d71720d83767a7f19740b2d1b6fe6327b36e5" 647 + dependencies = [ 648 + "darling", 649 + "proc-macro2", 650 + "quote", 651 + "syn 1.0.109", 652 + ] 653 + 654 + [[package]] 655 + name = "derive_builder_macro" 656 + version = "0.10.2" 657 + source = "registry+https://github.com/rust-lang/crates.io-index" 658 + checksum = "58a94ace95092c5acb1e97a7e846b310cfbd499652f72297da7493f618a98d73" 659 + dependencies = [ 660 + "derive_builder_core", 661 + "syn 1.0.109", 662 + ] 663 + 664 + [[package]] 665 + name = "derive_more" 666 + version = "0.99.17" 667 + source = "registry+https://github.com/rust-lang/crates.io-index" 668 + checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 669 + dependencies = [ 670 + "convert_case", 671 + "proc-macro2", 672 + "quote", 673 + "rustc_version 0.4.0", 674 + "syn 1.0.109", 675 + ] 676 + 677 + [[package]] 678 + name = "digest" 679 + version = "0.9.0" 680 + source = "registry+https://github.com/rust-lang/crates.io-index" 681 + checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" 682 + dependencies = [ 683 + "generic-array", 684 + ] 685 + 686 + [[package]] 687 + name = "directories" 688 + version = "3.0.2" 689 + source = "registry+https://github.com/rust-lang/crates.io-index" 690 + checksum = "e69600ff1703123957937708eb27f7a564e48885c537782722ed0ba3189ce1d7" 691 + dependencies = [ 692 + "dirs-sys", 693 + ] 694 + 695 + [[package]] 696 + name = "dirs-sys" 697 + version = "0.3.7" 698 + source = "registry+https://github.com/rust-lang/crates.io-index" 699 + checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" 700 + dependencies = [ 701 + "libc", 702 + "redox_users", 703 + "winapi", 704 + ] 705 + 706 + [[package]] 707 + name = "discard" 708 + version = "1.0.4" 709 + source = "registry+https://github.com/rust-lang/crates.io-index" 710 + checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0" 711 + 712 + [[package]] 713 + name = "dtoa" 714 + version = "0.4.8" 715 + source = "registry+https://github.com/rust-lang/crates.io-index" 716 + checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" 717 + 718 + [[package]] 719 + name = "dtoa-short" 720 + version = "0.3.3" 721 + source = "registry+https://github.com/rust-lang/crates.io-index" 722 + checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6" 723 + dependencies = [ 724 + "dtoa", 725 + ] 726 + 727 + [[package]] 728 + name = "either" 729 + version = "1.8.1" 730 + source = "registry+https://github.com/rust-lang/crates.io-index" 731 + checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 732 + 733 + [[package]] 734 + name = "encode_unicode" 735 + version = "0.3.6" 736 + source = "registry+https://github.com/rust-lang/crates.io-index" 737 + checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 738 + 739 + [[package]] 740 + name = "encoding_rs" 741 + version = "0.8.32" 742 + source = "registry+https://github.com/rust-lang/crates.io-index" 743 + checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" 744 + dependencies = [ 745 + "cfg-if", 746 + ] 747 + 748 + [[package]] 749 + name = "epub-builder" 750 + version = "0.4.10" 751 + source = "registry+https://github.com/rust-lang/crates.io-index" 752 + checksum = "8d8b1b5059c4b990da60cb6fee785e49ea09d1ed8249d91e2dddfd92b74b7cbc" 753 + dependencies = [ 754 + "chrono", 755 + "error-chain", 756 + "html-escape", 757 + "lazy_static", 758 + "mustache", 759 + "regex", 760 + "tempdir", 761 + "uuid", 762 + "zip", 763 + ] 764 + 765 + [[package]] 766 + name = "errno" 767 + version = "0.3.1" 768 + source = "registry+https://github.com/rust-lang/crates.io-index" 769 + checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 770 + dependencies = [ 771 + "errno-dragonfly", 772 + "libc", 773 + "windows-sys 0.48.0", 774 + ] 775 + 776 + [[package]] 777 + name = "errno-dragonfly" 778 + version = "0.1.2" 779 + source = "registry+https://github.com/rust-lang/crates.io-index" 780 + checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 781 + dependencies = [ 782 + "cc", 783 + "libc", 784 + ] 785 + 786 + [[package]] 787 + name = "error-chain" 788 + version = "0.12.4" 789 + source = "registry+https://github.com/rust-lang/crates.io-index" 790 + checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc" 791 + dependencies = [ 792 + "backtrace", 793 + "version_check", 794 + ] 795 + 796 + [[package]] 797 + name = "event-listener" 798 + version = "2.5.3" 799 + source = "registry+https://github.com/rust-lang/crates.io-index" 800 + checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 801 + 802 + [[package]] 803 + name = "fastrand" 804 + version = "1.9.0" 805 + source = "registry+https://github.com/rust-lang/crates.io-index" 806 + checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 807 + dependencies = [ 808 + "instant", 809 + ] 810 + 811 + [[package]] 812 + name = "flexi_logger" 813 + version = "0.18.1" 814 + source = "registry+https://github.com/rust-lang/crates.io-index" 815 + checksum = "081e9563bb9600593f0f5d38c24f0e3dc550cd301b4872b986e20f1874104791" 816 + dependencies = [ 817 + "atty", 818 + "chrono", 819 + "glob", 820 + "lazy_static", 821 + "log 0.4.17", 822 + "regex", 823 + "thiserror", 824 + "yansi", 825 + ] 826 + 827 + [[package]] 828 + name = "flume" 829 + version = "0.9.2" 830 + source = "registry+https://github.com/rust-lang/crates.io-index" 831 + checksum = "1bebadab126f8120d410b677ed95eee4ba6eb7c6dd8e34a5ec88a08050e26132" 832 + dependencies = [ 833 + "futures-core", 834 + "futures-sink", 835 + "spinning_top", 836 + ] 837 + 838 + [[package]] 839 + name = "fnv" 840 + version = "1.0.7" 841 + source = "registry+https://github.com/rust-lang/crates.io-index" 842 + checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 843 + 844 + [[package]] 845 + name = "form_urlencoded" 846 + version = "1.1.0" 847 + source = "registry+https://github.com/rust-lang/crates.io-index" 848 + checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 849 + dependencies = [ 850 + "percent-encoding", 851 + ] 852 + 853 + [[package]] 854 + name = "fuchsia-cprng" 855 + version = "0.1.1" 856 + source = "registry+https://github.com/rust-lang/crates.io-index" 857 + checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" 858 + 859 + [[package]] 860 + name = "futf" 861 + version = "0.1.5" 862 + source = "registry+https://github.com/rust-lang/crates.io-index" 863 + checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 864 + dependencies = [ 865 + "mac", 866 + "new_debug_unreachable", 867 + ] 868 + 869 + [[package]] 870 + name = "futures" 871 + version = "0.3.28" 872 + source = "registry+https://github.com/rust-lang/crates.io-index" 873 + checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 874 + dependencies = [ 875 + "futures-channel", 876 + "futures-core", 877 + "futures-executor", 878 + "futures-io", 879 + "futures-sink", 880 + "futures-task", 881 + "futures-util", 882 + ] 883 + 884 + [[package]] 885 + name = "futures-channel" 886 + version = "0.3.28" 887 + source = "registry+https://github.com/rust-lang/crates.io-index" 888 + checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 889 + dependencies = [ 890 + "futures-core", 891 + "futures-sink", 892 + ] 893 + 894 + [[package]] 895 + name = "futures-core" 896 + version = "0.3.28" 897 + source = "registry+https://github.com/rust-lang/crates.io-index" 898 + checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 899 + 900 + [[package]] 901 + name = "futures-executor" 902 + version = "0.3.28" 903 + source = "registry+https://github.com/rust-lang/crates.io-index" 904 + checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 905 + dependencies = [ 906 + "futures-core", 907 + "futures-task", 908 + "futures-util", 909 + ] 910 + 911 + [[package]] 912 + name = "futures-io" 913 + version = "0.3.28" 914 + source = "registry+https://github.com/rust-lang/crates.io-index" 915 + checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 916 + 917 + [[package]] 918 + name = "futures-lite" 919 + version = "1.13.0" 920 + source = "registry+https://github.com/rust-lang/crates.io-index" 921 + checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 922 + dependencies = [ 923 + "fastrand", 924 + "futures-core", 925 + "futures-io", 926 + "memchr", 927 + "parking", 928 + "pin-project-lite", 929 + "waker-fn", 930 + ] 931 + 932 + [[package]] 933 + name = "futures-macro" 934 + version = "0.3.28" 935 + source = "registry+https://github.com/rust-lang/crates.io-index" 936 + checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 937 + dependencies = [ 938 + "proc-macro2", 939 + "quote", 940 + "syn 2.0.15", 941 + ] 942 + 943 + [[package]] 944 + name = "futures-sink" 945 + version = "0.3.28" 946 + source = "registry+https://github.com/rust-lang/crates.io-index" 947 + checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 948 + 949 + [[package]] 950 + name = "futures-task" 951 + version = "0.3.28" 952 + source = "registry+https://github.com/rust-lang/crates.io-index" 953 + checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 954 + 955 + [[package]] 956 + name = "futures-util" 957 + version = "0.3.28" 958 + source = "registry+https://github.com/rust-lang/crates.io-index" 959 + checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 960 + dependencies = [ 961 + "futures-channel", 962 + "futures-core", 963 + "futures-io", 964 + "futures-macro", 965 + "futures-sink", 966 + "futures-task", 967 + "memchr", 968 + "pin-project-lite", 969 + "pin-utils", 970 + "slab", 971 + ] 972 + 973 + [[package]] 974 + name = "fxhash" 975 + version = "0.2.1" 976 + source = "registry+https://github.com/rust-lang/crates.io-index" 977 + checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 978 + dependencies = [ 979 + "byteorder", 980 + ] 981 + 982 + [[package]] 983 + name = "generic-array" 984 + version = "0.14.7" 985 + source = "registry+https://github.com/rust-lang/crates.io-index" 986 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 987 + dependencies = [ 988 + "typenum", 989 + "version_check", 990 + ] 991 + 992 + [[package]] 993 + name = "getrandom" 994 + version = "0.1.16" 995 + source = "registry+https://github.com/rust-lang/crates.io-index" 996 + checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 997 + dependencies = [ 998 + "cfg-if", 999 + "libc", 1000 + "wasi 0.9.0+wasi-snapshot-preview1", 1001 + ] 1002 + 1003 + [[package]] 1004 + name = "getrandom" 1005 + version = "0.2.9" 1006 + source = "registry+https://github.com/rust-lang/crates.io-index" 1007 + checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" 1008 + dependencies = [ 1009 + "cfg-if", 1010 + "libc", 1011 + "wasi 0.11.0+wasi-snapshot-preview1", 1012 + ] 1013 + 1014 + [[package]] 1015 + name = "ghash" 1016 + version = "0.3.1" 1017 + source = "registry+https://github.com/rust-lang/crates.io-index" 1018 + checksum = "97304e4cd182c3846f7575ced3890c53012ce534ad9114046b0a9e00bb30a375" 1019 + dependencies = [ 1020 + "opaque-debug", 1021 + "polyval", 1022 + ] 1023 + 1024 + [[package]] 1025 + name = "gimli" 1026 + version = "0.27.2" 1027 + source = "registry+https://github.com/rust-lang/crates.io-index" 1028 + checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4" 1029 + 1030 + [[package]] 1031 + name = "glob" 1032 + version = "0.3.1" 1033 + source = "registry+https://github.com/rust-lang/crates.io-index" 1034 + checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 1035 + 1036 + [[package]] 1037 + name = "gloo-timers" 1038 + version = "0.2.6" 1039 + source = "registry+https://github.com/rust-lang/crates.io-index" 1040 + checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" 1041 + dependencies = [ 1042 + "futures-channel", 1043 + "futures-core", 1044 + "js-sys", 1045 + "wasm-bindgen", 1046 + ] 1047 + 1048 + [[package]] 1049 + name = "heck" 1050 + version = "0.3.3" 1051 + source = "registry+https://github.com/rust-lang/crates.io-index" 1052 + checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" 1053 + dependencies = [ 1054 + "unicode-segmentation", 1055 + ] 1056 + 1057 + [[package]] 1058 + name = "hermit-abi" 1059 + version = "0.1.19" 1060 + source = "registry+https://github.com/rust-lang/crates.io-index" 1061 + checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 1062 + dependencies = [ 1063 + "libc", 1064 + ] 1065 + 1066 + [[package]] 1067 + name = "hermit-abi" 1068 + version = "0.3.1" 1069 + source = "registry+https://github.com/rust-lang/crates.io-index" 1070 + checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 1071 + 1072 + [[package]] 1073 + name = "hkdf" 1074 + version = "0.10.0" 1075 + source = "registry+https://github.com/rust-lang/crates.io-index" 1076 + checksum = "51ab2f639c231793c5f6114bdb9bbe50a7dbbfcd7c7c6bd8475dec2d991e964f" 1077 + dependencies = [ 1078 + "digest", 1079 + "hmac", 1080 + ] 1081 + 1082 + [[package]] 1083 + name = "hmac" 1084 + version = "0.10.1" 1085 + source = "registry+https://github.com/rust-lang/crates.io-index" 1086 + checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15" 1087 + dependencies = [ 1088 + "crypto-mac", 1089 + "digest", 1090 + ] 1091 + 1092 + [[package]] 1093 + name = "html-escape" 1094 + version = "0.2.13" 1095 + source = "registry+https://github.com/rust-lang/crates.io-index" 1096 + checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476" 1097 + dependencies = [ 1098 + "utf8-width", 1099 + ] 1100 + 1101 + [[package]] 1102 + name = "html5ever" 1103 + version = "0.25.2" 1104 + source = "registry+https://github.com/rust-lang/crates.io-index" 1105 + checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148" 1106 + dependencies = [ 1107 + "log 0.4.17", 1108 + "mac", 1109 + "markup5ever", 1110 + "proc-macro2", 1111 + "quote", 1112 + "syn 1.0.109", 1113 + ] 1114 + 1115 + [[package]] 1116 + name = "http" 1117 + version = "0.2.9" 1118 + source = "registry+https://github.com/rust-lang/crates.io-index" 1119 + checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 1120 + dependencies = [ 1121 + "bytes 1.4.0", 1122 + "fnv", 1123 + "itoa 1.0.6", 1124 + ] 1125 + 1126 + [[package]] 1127 + name = "http-client" 1128 + version = "6.5.3" 1129 + source = "registry+https://github.com/rust-lang/crates.io-index" 1130 + checksum = "1947510dc91e2bf586ea5ffb412caad7673264e14bb39fb9078da114a94ce1a5" 1131 + dependencies = [ 1132 + "async-std", 1133 + "async-trait", 1134 + "cfg-if", 1135 + "http-types", 1136 + "isahc", 1137 + "log 0.4.17", 1138 + ] 1139 + 1140 + [[package]] 1141 + name = "http-types" 1142 + version = "2.12.0" 1143 + source = "registry+https://github.com/rust-lang/crates.io-index" 1144 + checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad" 1145 + dependencies = [ 1146 + "anyhow", 1147 + "async-channel", 1148 + "async-std", 1149 + "base64", 1150 + "cookie", 1151 + "futures-lite", 1152 + "infer", 1153 + "pin-project-lite", 1154 + "rand 0.7.3", 1155 + "serde", 1156 + "serde_json", 1157 + "serde_qs", 1158 + "serde_urlencoded", 1159 + "url", 1160 + ] 1161 + 1162 + [[package]] 1163 + name = "iana-time-zone" 1164 + version = "0.1.56" 1165 + source = "registry+https://github.com/rust-lang/crates.io-index" 1166 + checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c" 1167 + dependencies = [ 1168 + "android_system_properties", 1169 + "core-foundation-sys", 1170 + "iana-time-zone-haiku", 1171 + "js-sys", 1172 + "wasm-bindgen", 1173 + "windows", 1174 + ] 1175 + 1176 + [[package]] 1177 + name = "iana-time-zone-haiku" 1178 + version = "0.1.2" 1179 + source = "registry+https://github.com/rust-lang/crates.io-index" 1180 + checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1181 + dependencies = [ 1182 + "cc", 1183 + ] 1184 + 1185 + [[package]] 1186 + name = "ident_case" 1187 + version = "1.0.1" 1188 + source = "registry+https://github.com/rust-lang/crates.io-index" 1189 + checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1190 + 1191 + [[package]] 1192 + name = "idna" 1193 + version = "0.3.0" 1194 + source = "registry+https://github.com/rust-lang/crates.io-index" 1195 + checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 1196 + dependencies = [ 1197 + "unicode-bidi", 1198 + "unicode-normalization", 1199 + ] 1200 + 1201 + [[package]] 1202 + name = "indicatif" 1203 + version = "0.16.2" 1204 + source = "registry+https://github.com/rust-lang/crates.io-index" 1205 + checksum = "2d207dc617c7a380ab07ff572a6e52fa202a2a8f355860ac9c38e23f8196be1b" 1206 + dependencies = [ 1207 + "console", 1208 + "lazy_static", 1209 + "number_prefix", 1210 + "regex", 1211 + ] 1212 + 1213 + [[package]] 1214 + name = "infer" 1215 + version = "0.2.3" 1216 + source = "registry+https://github.com/rust-lang/crates.io-index" 1217 + checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac" 1218 + 1219 + [[package]] 1220 + name = "instant" 1221 + version = "0.1.12" 1222 + source = "registry+https://github.com/rust-lang/crates.io-index" 1223 + checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1224 + dependencies = [ 1225 + "cfg-if", 1226 + ] 1227 + 1228 + [[package]] 1229 + name = "io-lifetimes" 1230 + version = "1.0.10" 1231 + source = "registry+https://github.com/rust-lang/crates.io-index" 1232 + checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220" 1233 + dependencies = [ 1234 + "hermit-abi 0.3.1", 1235 + "libc", 1236 + "windows-sys 0.48.0", 1237 + ] 1238 + 1239 + [[package]] 1240 + name = "isahc" 1241 + version = "0.9.14" 1242 + source = "registry+https://github.com/rust-lang/crates.io-index" 1243 + checksum = "e2948a0ce43e2c2ef11d7edf6816508998d99e13badd1150be0914205df9388a" 1244 + dependencies = [ 1245 + "bytes 0.5.6", 1246 + "crossbeam-utils", 1247 + "curl", 1248 + "curl-sys", 1249 + "flume", 1250 + "futures-lite", 1251 + "http", 1252 + "log 0.4.17", 1253 + "once_cell", 1254 + "slab", 1255 + "sluice", 1256 + "tracing", 1257 + "tracing-futures", 1258 + "url", 1259 + "waker-fn", 1260 + ] 1261 + 1262 + [[package]] 1263 + name = "itertools" 1264 + version = "0.10.5" 1265 + source = "registry+https://github.com/rust-lang/crates.io-index" 1266 + checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 1267 + dependencies = [ 1268 + "either", 1269 + ] 1270 + 1271 + [[package]] 1272 + name = "itoa" 1273 + version = "0.4.8" 1274 + source = "registry+https://github.com/rust-lang/crates.io-index" 1275 + checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 1276 + 1277 + [[package]] 1278 + name = "itoa" 1279 + version = "1.0.6" 1280 + source = "registry+https://github.com/rust-lang/crates.io-index" 1281 + checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 1282 + 1283 + [[package]] 1284 + name = "js-sys" 1285 + version = "0.3.62" 1286 + source = "registry+https://github.com/rust-lang/crates.io-index" 1287 + checksum = "68c16e1bfd491478ab155fd8b4896b86f9ede344949b641e61501e07c2b8b4d5" 1288 + dependencies = [ 1289 + "wasm-bindgen", 1290 + ] 1291 + 1292 + [[package]] 1293 + name = "kuchiki" 1294 + version = "0.8.1" 1295 + source = "registry+https://github.com/rust-lang/crates.io-index" 1296 + checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358" 1297 + dependencies = [ 1298 + "cssparser", 1299 + "html5ever", 1300 + "matches", 1301 + "selectors", 1302 + ] 1303 + 1304 + [[package]] 1305 + name = "kv-log-macro" 1306 + version = "1.0.7" 1307 + source = "registry+https://github.com/rust-lang/crates.io-index" 1308 + checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f" 1309 + dependencies = [ 1310 + "log 0.4.17", 1311 + ] 1312 + 1313 + [[package]] 1314 + name = "lazy_static" 1315 + version = "1.4.0" 1316 + source = "registry+https://github.com/rust-lang/crates.io-index" 1317 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1318 + 1319 + [[package]] 1320 + name = "libc" 1321 + version = "0.2.144" 1322 + source = "registry+https://github.com/rust-lang/crates.io-index" 1323 + checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1" 1324 + 1325 + [[package]] 1326 + name = "libnghttp2-sys" 1327 + version = "0.1.7+1.45.0" 1328 + source = "registry+https://github.com/rust-lang/crates.io-index" 1329 + checksum = "57ed28aba195b38d5ff02b9170cbff627e336a20925e43b4945390401c5dc93f" 1330 + dependencies = [ 1331 + "cc", 1332 + "libc", 1333 + ] 1334 + 1335 + [[package]] 1336 + name = "libz-sys" 1337 + version = "1.1.9" 1338 + source = "registry+https://github.com/rust-lang/crates.io-index" 1339 + checksum = "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db" 1340 + dependencies = [ 1341 + "cc", 1342 + "libc", 1343 + "pkg-config", 1344 + "vcpkg", 1345 + ] 1346 + 1347 + [[package]] 1348 + name = "linux-raw-sys" 1349 + version = "0.3.7" 1350 + source = "registry+https://github.com/rust-lang/crates.io-index" 1351 + checksum = "ece97ea872ece730aed82664c424eb4c8291e1ff2480247ccf7409044bc6479f" 1352 + 1353 + [[package]] 1354 + name = "lock_api" 1355 + version = "0.4.9" 1356 + source = "registry+https://github.com/rust-lang/crates.io-index" 1357 + checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 1358 + dependencies = [ 1359 + "autocfg", 1360 + "scopeguard", 1361 + ] 1362 + 1363 + [[package]] 1364 + name = "log" 1365 + version = "0.3.9" 1366 + source = "registry+https://github.com/rust-lang/crates.io-index" 1367 + checksum = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" 1368 + dependencies = [ 1369 + "log 0.4.17", 1370 + ] 1371 + 1372 + [[package]] 1373 + name = "log" 1374 + version = "0.4.17" 1375 + source = "registry+https://github.com/rust-lang/crates.io-index" 1376 + checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 1377 + dependencies = [ 1378 + "cfg-if", 1379 + "value-bag", 1380 + ] 1381 + 1382 + [[package]] 1383 + name = "mac" 1384 + version = "0.1.1" 1385 + source = "registry+https://github.com/rust-lang/crates.io-index" 1386 + checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 1387 + 1388 + [[package]] 1389 + name = "markup5ever" 1390 + version = "0.10.1" 1391 + source = "registry+https://github.com/rust-lang/crates.io-index" 1392 + checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd" 1393 + dependencies = [ 1394 + "log 0.4.17", 1395 + "phf", 1396 + "phf_codegen", 1397 + "string_cache", 1398 + "string_cache_codegen", 1399 + "tendril", 1400 + ] 1401 + 1402 + [[package]] 1403 + name = "matches" 1404 + version = "0.1.10" 1405 + source = "registry+https://github.com/rust-lang/crates.io-index" 1406 + checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 1407 + 1408 + [[package]] 1409 + name = "md5" 1410 + version = "0.7.0" 1411 + source = "registry+https://github.com/rust-lang/crates.io-index" 1412 + checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771" 1413 + 1414 + [[package]] 1415 + name = "memchr" 1416 + version = "2.5.0" 1417 + source = "registry+https://github.com/rust-lang/crates.io-index" 1418 + checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1419 + 1420 + [[package]] 1421 + name = "mime" 1422 + version = "0.3.17" 1423 + source = "registry+https://github.com/rust-lang/crates.io-index" 1424 + checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1425 + 1426 + [[package]] 1427 + name = "mime_guess" 1428 + version = "2.0.4" 1429 + source = "registry+https://github.com/rust-lang/crates.io-index" 1430 + checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" 1431 + dependencies = [ 1432 + "mime", 1433 + "unicase", 1434 + ] 1435 + 1436 + [[package]] 1437 + name = "miniz_oxide" 1438 + version = "0.6.2" 1439 + source = "registry+https://github.com/rust-lang/crates.io-index" 1440 + checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 1441 + dependencies = [ 1442 + "adler", 1443 + ] 1444 + 1445 + [[package]] 1446 + name = "mio" 1447 + version = "0.7.14" 1448 + source = "registry+https://github.com/rust-lang/crates.io-index" 1449 + checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc" 1450 + dependencies = [ 1451 + "libc", 1452 + "log 0.4.17", 1453 + "miow", 1454 + "ntapi", 1455 + "winapi", 1456 + ] 1457 + 1458 + [[package]] 1459 + name = "miow" 1460 + version = "0.3.7" 1461 + source = "registry+https://github.com/rust-lang/crates.io-index" 1462 + checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21" 1463 + dependencies = [ 1464 + "winapi", 1465 + ] 1466 + 1467 + [[package]] 1468 + name = "mustache" 1469 + version = "0.9.0" 1470 + source = "registry+https://github.com/rust-lang/crates.io-index" 1471 + checksum = "51956ef1c5d20a1384524d91e616fb44dfc7d8f249bf696d49c97dd3289ecab5" 1472 + dependencies = [ 1473 + "log 0.3.9", 1474 + "serde", 1475 + ] 1476 + 1477 + [[package]] 1478 + name = "new_debug_unreachable" 1479 + version = "1.0.4" 1480 + source = "registry+https://github.com/rust-lang/crates.io-index" 1481 + checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 1482 + 1483 + [[package]] 1484 + name = "nodrop" 1485 + version = "0.1.14" 1486 + source = "registry+https://github.com/rust-lang/crates.io-index" 1487 + checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 1488 + 1489 + [[package]] 1490 + name = "ntapi" 1491 + version = "0.3.7" 1492 + source = "registry+https://github.com/rust-lang/crates.io-index" 1493 + checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f" 1494 + dependencies = [ 1495 + "winapi", 1496 + ] 1497 + 1498 + [[package]] 1499 + name = "num-integer" 1500 + version = "0.1.45" 1501 + source = "registry+https://github.com/rust-lang/crates.io-index" 1502 + checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1503 + dependencies = [ 1504 + "autocfg", 1505 + "num-traits", 1506 + ] 1507 + 1508 + [[package]] 1509 + name = "num-traits" 1510 + version = "0.2.15" 1511 + source = "registry+https://github.com/rust-lang/crates.io-index" 1512 + checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1513 + dependencies = [ 1514 + "autocfg", 1515 + ] 1516 + 1517 + [[package]] 1518 + name = "number_prefix" 1519 + version = "0.4.0" 1520 + source = "registry+https://github.com/rust-lang/crates.io-index" 1521 + checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" 1522 + 1523 + [[package]] 1524 + name = "object" 1525 + version = "0.30.3" 1526 + source = "registry+https://github.com/rust-lang/crates.io-index" 1527 + checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439" 1528 + dependencies = [ 1529 + "memchr", 1530 + ] 1531 + 1532 + [[package]] 1533 + name = "once_cell" 1534 + version = "1.17.1" 1535 + source = "registry+https://github.com/rust-lang/crates.io-index" 1536 + checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 1537 + 1538 + [[package]] 1539 + name = "opaque-debug" 1540 + version = "0.3.0" 1541 + source = "registry+https://github.com/rust-lang/crates.io-index" 1542 + checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 1543 + 1544 + [[package]] 1545 + name = "openssl-probe" 1546 + version = "0.1.5" 1547 + source = "registry+https://github.com/rust-lang/crates.io-index" 1548 + checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 1549 + 1550 + [[package]] 1551 + name = "openssl-sys" 1552 + version = "0.9.87" 1553 + source = "registry+https://github.com/rust-lang/crates.io-index" 1554 + checksum = "8e17f59264b2809d77ae94f0e1ebabc434773f370d6ca667bd223ea10e06cc7e" 1555 + dependencies = [ 1556 + "cc", 1557 + "libc", 1558 + "pkg-config", 1559 + "vcpkg", 1560 + ] 1561 + 1562 + [[package]] 1563 + name = "paperoni" 1564 + version = "0.6.1-alpha1" 1565 + dependencies = [ 1566 + "async-std", 1567 + "base64", 1568 + "chrono", 1569 + "clap", 1570 + "colored", 1571 + "comfy-table", 1572 + "derive_builder", 1573 + "directories", 1574 + "epub-builder", 1575 + "flexi_logger", 1576 + "futures", 1577 + "html5ever", 1578 + "indicatif", 1579 + "itertools", 1580 + "kuchiki", 1581 + "lazy_static", 1582 + "log 0.4.17", 1583 + "md5", 1584 + "regex", 1585 + "surf", 1586 + "thiserror", 1587 + "url", 1588 + ] 1589 + 1590 + [[package]] 1591 + name = "parking" 1592 + version = "2.1.0" 1593 + source = "registry+https://github.com/rust-lang/crates.io-index" 1594 + checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e" 1595 + 1596 + [[package]] 1597 + name = "parking_lot" 1598 + version = "0.11.2" 1599 + source = "registry+https://github.com/rust-lang/crates.io-index" 1600 + checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" 1601 + dependencies = [ 1602 + "instant", 1603 + "lock_api", 1604 + "parking_lot_core 0.8.6", 1605 + ] 1606 + 1607 + [[package]] 1608 + name = "parking_lot" 1609 + version = "0.12.1" 1610 + source = "registry+https://github.com/rust-lang/crates.io-index" 1611 + checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1612 + dependencies = [ 1613 + "lock_api", 1614 + "parking_lot_core 0.9.7", 1615 + ] 1616 + 1617 + [[package]] 1618 + name = "parking_lot_core" 1619 + version = "0.8.6" 1620 + source = "registry+https://github.com/rust-lang/crates.io-index" 1621 + checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" 1622 + dependencies = [ 1623 + "cfg-if", 1624 + "instant", 1625 + "libc", 1626 + "redox_syscall", 1627 + "smallvec", 1628 + "winapi", 1629 + ] 1630 + 1631 + [[package]] 1632 + name = "parking_lot_core" 1633 + version = "0.9.7" 1634 + source = "registry+https://github.com/rust-lang/crates.io-index" 1635 + checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" 1636 + dependencies = [ 1637 + "cfg-if", 1638 + "libc", 1639 + "redox_syscall", 1640 + "smallvec", 1641 + "windows-sys 0.45.0", 1642 + ] 1643 + 1644 + [[package]] 1645 + name = "percent-encoding" 1646 + version = "2.2.0" 1647 + source = "registry+https://github.com/rust-lang/crates.io-index" 1648 + checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 1649 + 1650 + [[package]] 1651 + name = "phf" 1652 + version = "0.8.0" 1653 + source = "registry+https://github.com/rust-lang/crates.io-index" 1654 + checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 1655 + dependencies = [ 1656 + "phf_macros", 1657 + "phf_shared 0.8.0", 1658 + "proc-macro-hack", 1659 + ] 1660 + 1661 + [[package]] 1662 + name = "phf_codegen" 1663 + version = "0.8.0" 1664 + source = "registry+https://github.com/rust-lang/crates.io-index" 1665 + checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 1666 + dependencies = [ 1667 + "phf_generator 0.8.0", 1668 + "phf_shared 0.8.0", 1669 + ] 1670 + 1671 + [[package]] 1672 + name = "phf_generator" 1673 + version = "0.8.0" 1674 + source = "registry+https://github.com/rust-lang/crates.io-index" 1675 + checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 1676 + dependencies = [ 1677 + "phf_shared 0.8.0", 1678 + "rand 0.7.3", 1679 + ] 1680 + 1681 + [[package]] 1682 + name = "phf_generator" 1683 + version = "0.10.0" 1684 + source = "registry+https://github.com/rust-lang/crates.io-index" 1685 + checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 1686 + dependencies = [ 1687 + "phf_shared 0.10.0", 1688 + "rand 0.8.5", 1689 + ] 1690 + 1691 + [[package]] 1692 + name = "phf_macros" 1693 + version = "0.8.0" 1694 + source = "registry+https://github.com/rust-lang/crates.io-index" 1695 + checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c" 1696 + dependencies = [ 1697 + "phf_generator 0.8.0", 1698 + "phf_shared 0.8.0", 1699 + "proc-macro-hack", 1700 + "proc-macro2", 1701 + "quote", 1702 + "syn 1.0.109", 1703 + ] 1704 + 1705 + [[package]] 1706 + name = "phf_shared" 1707 + version = "0.8.0" 1708 + source = "registry+https://github.com/rust-lang/crates.io-index" 1709 + checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 1710 + dependencies = [ 1711 + "siphasher", 1712 + ] 1713 + 1714 + [[package]] 1715 + name = "phf_shared" 1716 + version = "0.10.0" 1717 + source = "registry+https://github.com/rust-lang/crates.io-index" 1718 + checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 1719 + dependencies = [ 1720 + "siphasher", 1721 + ] 1722 + 1723 + [[package]] 1724 + name = "pin-project" 1725 + version = "1.0.12" 1726 + source = "registry+https://github.com/rust-lang/crates.io-index" 1727 + checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" 1728 + dependencies = [ 1729 + "pin-project-internal", 1730 + ] 1731 + 1732 + [[package]] 1733 + name = "pin-project-internal" 1734 + version = "1.0.12" 1735 + source = "registry+https://github.com/rust-lang/crates.io-index" 1736 + checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" 1737 + dependencies = [ 1738 + "proc-macro2", 1739 + "quote", 1740 + "syn 1.0.109", 1741 + ] 1742 + 1743 + [[package]] 1744 + name = "pin-project-lite" 1745 + version = "0.2.9" 1746 + source = "registry+https://github.com/rust-lang/crates.io-index" 1747 + checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 1748 + 1749 + [[package]] 1750 + name = "pin-utils" 1751 + version = "0.1.0" 1752 + source = "registry+https://github.com/rust-lang/crates.io-index" 1753 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1754 + 1755 + [[package]] 1756 + name = "pkg-config" 1757 + version = "0.3.27" 1758 + source = "registry+https://github.com/rust-lang/crates.io-index" 1759 + checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 1760 + 1761 + [[package]] 1762 + name = "polling" 1763 + version = "2.8.0" 1764 + source = "registry+https://github.com/rust-lang/crates.io-index" 1765 + checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" 1766 + dependencies = [ 1767 + "autocfg", 1768 + "bitflags", 1769 + "cfg-if", 1770 + "concurrent-queue", 1771 + "libc", 1772 + "log 0.4.17", 1773 + "pin-project-lite", 1774 + "windows-sys 0.48.0", 1775 + ] 1776 + 1777 + [[package]] 1778 + name = "polyval" 1779 + version = "0.4.5" 1780 + source = "registry+https://github.com/rust-lang/crates.io-index" 1781 + checksum = "eebcc4aa140b9abd2bc40d9c3f7ccec842679cd79045ac3a7ac698c1a064b7cd" 1782 + dependencies = [ 1783 + "cpuid-bool", 1784 + "opaque-debug", 1785 + "universal-hash", 1786 + ] 1787 + 1788 + [[package]] 1789 + name = "ppv-lite86" 1790 + version = "0.2.17" 1791 + source = "registry+https://github.com/rust-lang/crates.io-index" 1792 + checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 1793 + 1794 + [[package]] 1795 + name = "precomputed-hash" 1796 + version = "0.1.1" 1797 + source = "registry+https://github.com/rust-lang/crates.io-index" 1798 + checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 1799 + 1800 + [[package]] 1801 + name = "proc-macro-hack" 1802 + version = "0.5.20+deprecated" 1803 + source = "registry+https://github.com/rust-lang/crates.io-index" 1804 + checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 1805 + 1806 + [[package]] 1807 + name = "proc-macro2" 1808 + version = "1.0.56" 1809 + source = "registry+https://github.com/rust-lang/crates.io-index" 1810 + checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435" 1811 + dependencies = [ 1812 + "unicode-ident", 1813 + ] 1814 + 1815 + [[package]] 1816 + name = "quote" 1817 + version = "1.0.27" 1818 + source = "registry+https://github.com/rust-lang/crates.io-index" 1819 + checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500" 1820 + dependencies = [ 1821 + "proc-macro2", 1822 + ] 1823 + 1824 + [[package]] 1825 + name = "rand" 1826 + version = "0.4.6" 1827 + source = "registry+https://github.com/rust-lang/crates.io-index" 1828 + checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" 1829 + dependencies = [ 1830 + "fuchsia-cprng", 1831 + "libc", 1832 + "rand_core 0.3.1", 1833 + "rdrand", 1834 + "winapi", 1835 + ] 1836 + 1837 + [[package]] 1838 + name = "rand" 1839 + version = "0.7.3" 1840 + source = "registry+https://github.com/rust-lang/crates.io-index" 1841 + checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 1842 + dependencies = [ 1843 + "getrandom 0.1.16", 1844 + "libc", 1845 + "rand_chacha 0.2.2", 1846 + "rand_core 0.5.1", 1847 + "rand_hc", 1848 + "rand_pcg", 1849 + ] 1850 + 1851 + [[package]] 1852 + name = "rand" 1853 + version = "0.8.5" 1854 + source = "registry+https://github.com/rust-lang/crates.io-index" 1855 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1856 + dependencies = [ 1857 + "libc", 1858 + "rand_chacha 0.3.1", 1859 + "rand_core 0.6.4", 1860 + ] 1861 + 1862 + [[package]] 1863 + name = "rand_chacha" 1864 + version = "0.2.2" 1865 + source = "registry+https://github.com/rust-lang/crates.io-index" 1866 + checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 1867 + dependencies = [ 1868 + "ppv-lite86", 1869 + "rand_core 0.5.1", 1870 + ] 1871 + 1872 + [[package]] 1873 + name = "rand_chacha" 1874 + version = "0.3.1" 1875 + source = "registry+https://github.com/rust-lang/crates.io-index" 1876 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1877 + dependencies = [ 1878 + "ppv-lite86", 1879 + "rand_core 0.6.4", 1880 + ] 1881 + 1882 + [[package]] 1883 + name = "rand_core" 1884 + version = "0.3.1" 1885 + source = "registry+https://github.com/rust-lang/crates.io-index" 1886 + checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" 1887 + dependencies = [ 1888 + "rand_core 0.4.2", 1889 + ] 1890 + 1891 + [[package]] 1892 + name = "rand_core" 1893 + version = "0.4.2" 1894 + source = "registry+https://github.com/rust-lang/crates.io-index" 1895 + checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" 1896 + 1897 + [[package]] 1898 + name = "rand_core" 1899 + version = "0.5.1" 1900 + source = "registry+https://github.com/rust-lang/crates.io-index" 1901 + checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 1902 + dependencies = [ 1903 + "getrandom 0.1.16", 1904 + ] 1905 + 1906 + [[package]] 1907 + name = "rand_core" 1908 + version = "0.6.4" 1909 + source = "registry+https://github.com/rust-lang/crates.io-index" 1910 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1911 + dependencies = [ 1912 + "getrandom 0.2.9", 1913 + ] 1914 + 1915 + [[package]] 1916 + name = "rand_hc" 1917 + version = "0.2.0" 1918 + source = "registry+https://github.com/rust-lang/crates.io-index" 1919 + checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 1920 + dependencies = [ 1921 + "rand_core 0.5.1", 1922 + ] 1923 + 1924 + [[package]] 1925 + name = "rand_pcg" 1926 + version = "0.2.1" 1927 + source = "registry+https://github.com/rust-lang/crates.io-index" 1928 + checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 1929 + dependencies = [ 1930 + "rand_core 0.5.1", 1931 + ] 1932 + 1933 + [[package]] 1934 + name = "rdrand" 1935 + version = "0.4.0" 1936 + source = "registry+https://github.com/rust-lang/crates.io-index" 1937 + checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" 1938 + dependencies = [ 1939 + "rand_core 0.3.1", 1940 + ] 1941 + 1942 + [[package]] 1943 + name = "redox_syscall" 1944 + version = "0.2.16" 1945 + source = "registry+https://github.com/rust-lang/crates.io-index" 1946 + checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 1947 + dependencies = [ 1948 + "bitflags", 1949 + ] 1950 + 1951 + [[package]] 1952 + name = "redox_users" 1953 + version = "0.4.3" 1954 + source = "registry+https://github.com/rust-lang/crates.io-index" 1955 + checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 1956 + dependencies = [ 1957 + "getrandom 0.2.9", 1958 + "redox_syscall", 1959 + "thiserror", 1960 + ] 1961 + 1962 + [[package]] 1963 + name = "regex" 1964 + version = "1.8.1" 1965 + source = "registry+https://github.com/rust-lang/crates.io-index" 1966 + checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370" 1967 + dependencies = [ 1968 + "aho-corasick", 1969 + "memchr", 1970 + "regex-syntax", 1971 + ] 1972 + 1973 + [[package]] 1974 + name = "regex-syntax" 1975 + version = "0.7.1" 1976 + source = "registry+https://github.com/rust-lang/crates.io-index" 1977 + checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" 1978 + 1979 + [[package]] 1980 + name = "remove_dir_all" 1981 + version = "0.5.3" 1982 + source = "registry+https://github.com/rust-lang/crates.io-index" 1983 + checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 1984 + dependencies = [ 1985 + "winapi", 1986 + ] 1987 + 1988 + [[package]] 1989 + name = "rustc-demangle" 1990 + version = "0.1.23" 1991 + source = "registry+https://github.com/rust-lang/crates.io-index" 1992 + checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 1993 + 1994 + [[package]] 1995 + name = "rustc_version" 1996 + version = "0.2.3" 1997 + source = "registry+https://github.com/rust-lang/crates.io-index" 1998 + checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" 1999 + dependencies = [ 2000 + "semver 0.9.0", 2001 + ] 2002 + 2003 + [[package]] 2004 + name = "rustc_version" 2005 + version = "0.4.0" 2006 + source = "registry+https://github.com/rust-lang/crates.io-index" 2007 + checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 2008 + dependencies = [ 2009 + "semver 1.0.17", 2010 + ] 2011 + 2012 + [[package]] 2013 + name = "rustix" 2014 + version = "0.37.19" 2015 + source = "registry+https://github.com/rust-lang/crates.io-index" 2016 + checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d" 2017 + dependencies = [ 2018 + "bitflags", 2019 + "errno", 2020 + "io-lifetimes", 2021 + "libc", 2022 + "linux-raw-sys", 2023 + "windows-sys 0.48.0", 2024 + ] 2025 + 2026 + [[package]] 2027 + name = "ryu" 2028 + version = "1.0.13" 2029 + source = "registry+https://github.com/rust-lang/crates.io-index" 2030 + checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 2031 + 2032 + [[package]] 2033 + name = "schannel" 2034 + version = "0.1.21" 2035 + source = "registry+https://github.com/rust-lang/crates.io-index" 2036 + checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" 2037 + dependencies = [ 2038 + "windows-sys 0.42.0", 2039 + ] 2040 + 2041 + [[package]] 2042 + name = "scopeguard" 2043 + version = "1.1.0" 2044 + source = "registry+https://github.com/rust-lang/crates.io-index" 2045 + checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 2046 + 2047 + [[package]] 2048 + name = "selectors" 2049 + version = "0.22.0" 2050 + source = "registry+https://github.com/rust-lang/crates.io-index" 2051 + checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe" 2052 + dependencies = [ 2053 + "bitflags", 2054 + "cssparser", 2055 + "derive_more", 2056 + "fxhash", 2057 + "log 0.4.17", 2058 + "matches", 2059 + "phf", 2060 + "phf_codegen", 2061 + "precomputed-hash", 2062 + "servo_arc", 2063 + "smallvec", 2064 + "thin-slice", 2065 + ] 2066 + 2067 + [[package]] 2068 + name = "semver" 2069 + version = "0.9.0" 2070 + source = "registry+https://github.com/rust-lang/crates.io-index" 2071 + checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" 2072 + dependencies = [ 2073 + "semver-parser", 2074 + ] 2075 + 2076 + [[package]] 2077 + name = "semver" 2078 + version = "1.0.17" 2079 + source = "registry+https://github.com/rust-lang/crates.io-index" 2080 + checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" 2081 + 2082 + [[package]] 2083 + name = "semver-parser" 2084 + version = "0.7.0" 2085 + source = "registry+https://github.com/rust-lang/crates.io-index" 2086 + checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" 2087 + 2088 + [[package]] 2089 + name = "serde" 2090 + version = "1.0.163" 2091 + source = "registry+https://github.com/rust-lang/crates.io-index" 2092 + checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2" 2093 + dependencies = [ 2094 + "serde_derive", 2095 + ] 2096 + 2097 + [[package]] 2098 + name = "serde_derive" 2099 + version = "1.0.163" 2100 + source = "registry+https://github.com/rust-lang/crates.io-index" 2101 + checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e" 2102 + dependencies = [ 2103 + "proc-macro2", 2104 + "quote", 2105 + "syn 2.0.15", 2106 + ] 2107 + 2108 + [[package]] 2109 + name = "serde_json" 2110 + version = "1.0.96" 2111 + source = "registry+https://github.com/rust-lang/crates.io-index" 2112 + checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" 2113 + dependencies = [ 2114 + "itoa 1.0.6", 2115 + "ryu", 2116 + "serde", 2117 + ] 2118 + 2119 + [[package]] 2120 + name = "serde_qs" 2121 + version = "0.8.5" 2122 + source = "registry+https://github.com/rust-lang/crates.io-index" 2123 + checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6" 2124 + dependencies = [ 2125 + "percent-encoding", 2126 + "serde", 2127 + "thiserror", 2128 + ] 2129 + 2130 + [[package]] 2131 + name = "serde_urlencoded" 2132 + version = "0.7.1" 2133 + source = "registry+https://github.com/rust-lang/crates.io-index" 2134 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2135 + dependencies = [ 2136 + "form_urlencoded", 2137 + "itoa 1.0.6", 2138 + "ryu", 2139 + "serde", 2140 + ] 2141 + 2142 + [[package]] 2143 + name = "servo_arc" 2144 + version = "0.1.1" 2145 + source = "registry+https://github.com/rust-lang/crates.io-index" 2146 + checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432" 2147 + dependencies = [ 2148 + "nodrop", 2149 + "stable_deref_trait", 2150 + ] 2151 + 2152 + [[package]] 2153 + name = "sha1" 2154 + version = "0.6.1" 2155 + source = "registry+https://github.com/rust-lang/crates.io-index" 2156 + checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770" 2157 + dependencies = [ 2158 + "sha1_smol", 2159 + ] 2160 + 2161 + [[package]] 2162 + name = "sha1_smol" 2163 + version = "1.0.0" 2164 + source = "registry+https://github.com/rust-lang/crates.io-index" 2165 + checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012" 2166 + 2167 + [[package]] 2168 + name = "sha2" 2169 + version = "0.9.9" 2170 + source = "registry+https://github.com/rust-lang/crates.io-index" 2171 + checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800" 2172 + dependencies = [ 2173 + "block-buffer", 2174 + "cfg-if", 2175 + "cpufeatures", 2176 + "digest", 2177 + "opaque-debug", 2178 + ] 2179 + 2180 + [[package]] 2181 + name = "signal-hook" 2182 + version = "0.3.15" 2183 + source = "registry+https://github.com/rust-lang/crates.io-index" 2184 + checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9" 2185 + dependencies = [ 2186 + "libc", 2187 + "signal-hook-registry", 2188 + ] 2189 + 2190 + [[package]] 2191 + name = "signal-hook-mio" 2192 + version = "0.2.3" 2193 + source = "registry+https://github.com/rust-lang/crates.io-index" 2194 + checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af" 2195 + dependencies = [ 2196 + "libc", 2197 + "mio", 2198 + "signal-hook", 2199 + ] 2200 + 2201 + [[package]] 2202 + name = "signal-hook-registry" 2203 + version = "1.4.1" 2204 + source = "registry+https://github.com/rust-lang/crates.io-index" 2205 + checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 2206 + dependencies = [ 2207 + "libc", 2208 + ] 2209 + 2210 + [[package]] 2211 + name = "siphasher" 2212 + version = "0.3.10" 2213 + source = "registry+https://github.com/rust-lang/crates.io-index" 2214 + checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 2215 + 2216 + [[package]] 2217 + name = "slab" 2218 + version = "0.4.8" 2219 + source = "registry+https://github.com/rust-lang/crates.io-index" 2220 + checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 2221 + dependencies = [ 2222 + "autocfg", 2223 + ] 2224 + 2225 + [[package]] 2226 + name = "sluice" 2227 + version = "0.5.5" 2228 + source = "registry+https://github.com/rust-lang/crates.io-index" 2229 + checksum = "6d7400c0eff44aa2fcb5e31a5f24ba9716ed90138769e4977a2ba6014ae63eb5" 2230 + dependencies = [ 2231 + "async-channel", 2232 + "futures-core", 2233 + "futures-io", 2234 + ] 2235 + 2236 + [[package]] 2237 + name = "smallvec" 2238 + version = "1.10.0" 2239 + source = "registry+https://github.com/rust-lang/crates.io-index" 2240 + checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 2241 + 2242 + [[package]] 2243 + name = "socket2" 2244 + version = "0.4.9" 2245 + source = "registry+https://github.com/rust-lang/crates.io-index" 2246 + checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 2247 + dependencies = [ 2248 + "libc", 2249 + "winapi", 2250 + ] 2251 + 2252 + [[package]] 2253 + name = "spinning_top" 2254 + version = "0.2.5" 2255 + source = "registry+https://github.com/rust-lang/crates.io-index" 2256 + checksum = "5b9eb1a2f4c41445a3a0ff9abc5221c5fcd28e1f13cd7c0397706f9ac938ddb0" 2257 + dependencies = [ 2258 + "lock_api", 2259 + ] 2260 + 2261 + [[package]] 2262 + name = "stable_deref_trait" 2263 + version = "1.2.0" 2264 + source = "registry+https://github.com/rust-lang/crates.io-index" 2265 + checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 2266 + 2267 + [[package]] 2268 + name = "standback" 2269 + version = "0.2.17" 2270 + source = "registry+https://github.com/rust-lang/crates.io-index" 2271 + checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff" 2272 + dependencies = [ 2273 + "version_check", 2274 + ] 2275 + 2276 + [[package]] 2277 + name = "stdweb" 2278 + version = "0.4.20" 2279 + source = "registry+https://github.com/rust-lang/crates.io-index" 2280 + checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5" 2281 + dependencies = [ 2282 + "discard", 2283 + "rustc_version 0.2.3", 2284 + "stdweb-derive", 2285 + "stdweb-internal-macros", 2286 + "stdweb-internal-runtime", 2287 + "wasm-bindgen", 2288 + ] 2289 + 2290 + [[package]] 2291 + name = "stdweb-derive" 2292 + version = "0.5.3" 2293 + source = "registry+https://github.com/rust-lang/crates.io-index" 2294 + checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef" 2295 + dependencies = [ 2296 + "proc-macro2", 2297 + "quote", 2298 + "serde", 2299 + "serde_derive", 2300 + "syn 1.0.109", 2301 + ] 2302 + 2303 + [[package]] 2304 + name = "stdweb-internal-macros" 2305 + version = "0.2.9" 2306 + source = "registry+https://github.com/rust-lang/crates.io-index" 2307 + checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11" 2308 + dependencies = [ 2309 + "base-x", 2310 + "proc-macro2", 2311 + "quote", 2312 + "serde", 2313 + "serde_derive", 2314 + "serde_json", 2315 + "sha1", 2316 + "syn 1.0.109", 2317 + ] 2318 + 2319 + [[package]] 2320 + name = "stdweb-internal-runtime" 2321 + version = "0.1.5" 2322 + source = "registry+https://github.com/rust-lang/crates.io-index" 2323 + checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0" 2324 + 2325 + [[package]] 2326 + name = "string_cache" 2327 + version = "0.8.7" 2328 + source = "registry+https://github.com/rust-lang/crates.io-index" 2329 + checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b" 2330 + dependencies = [ 2331 + "new_debug_unreachable", 2332 + "once_cell", 2333 + "parking_lot 0.12.1", 2334 + "phf_shared 0.10.0", 2335 + "precomputed-hash", 2336 + "serde", 2337 + ] 2338 + 2339 + [[package]] 2340 + name = "string_cache_codegen" 2341 + version = "0.5.2" 2342 + source = "registry+https://github.com/rust-lang/crates.io-index" 2343 + checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" 2344 + dependencies = [ 2345 + "phf_generator 0.10.0", 2346 + "phf_shared 0.10.0", 2347 + "proc-macro2", 2348 + "quote", 2349 + ] 2350 + 2351 + [[package]] 2352 + name = "strsim" 2353 + version = "0.8.0" 2354 + source = "registry+https://github.com/rust-lang/crates.io-index" 2355 + checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 2356 + 2357 + [[package]] 2358 + name = "strsim" 2359 + version = "0.10.0" 2360 + source = "registry+https://github.com/rust-lang/crates.io-index" 2361 + checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 2362 + 2363 + [[package]] 2364 + name = "strum" 2365 + version = "0.21.0" 2366 + source = "registry+https://github.com/rust-lang/crates.io-index" 2367 + checksum = "aaf86bbcfd1fa9670b7a129f64fc0c9fcbbfe4f1bc4210e9e98fe71ffc12cde2" 2368 + 2369 + [[package]] 2370 + name = "strum_macros" 2371 + version = "0.21.1" 2372 + source = "registry+https://github.com/rust-lang/crates.io-index" 2373 + checksum = "d06aaeeee809dbc59eb4556183dd927df67db1540de5be8d3ec0b6636358a5ec" 2374 + dependencies = [ 2375 + "heck", 2376 + "proc-macro2", 2377 + "quote", 2378 + "syn 1.0.109", 2379 + ] 2380 + 2381 + [[package]] 2382 + name = "subtle" 2383 + version = "2.4.1" 2384 + source = "registry+https://github.com/rust-lang/crates.io-index" 2385 + checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 2386 + 2387 + [[package]] 2388 + name = "surf" 2389 + version = "2.3.2" 2390 + source = "registry+https://github.com/rust-lang/crates.io-index" 2391 + checksum = "718b1ae6b50351982dedff021db0def601677f2120938b070eadb10ba4038dd7" 2392 + dependencies = [ 2393 + "async-std", 2394 + "async-trait", 2395 + "cfg-if", 2396 + "encoding_rs", 2397 + "futures-util", 2398 + "getrandom 0.2.9", 2399 + "http-client", 2400 + "http-types", 2401 + "log 0.4.17", 2402 + "mime_guess", 2403 + "once_cell", 2404 + "pin-project-lite", 2405 + "serde", 2406 + "serde_json", 2407 + "web-sys", 2408 + ] 2409 + 2410 + [[package]] 2411 + name = "syn" 2412 + version = "1.0.109" 2413 + source = "registry+https://github.com/rust-lang/crates.io-index" 2414 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 2415 + dependencies = [ 2416 + "proc-macro2", 2417 + "quote", 2418 + "unicode-ident", 2419 + ] 2420 + 2421 + [[package]] 2422 + name = "syn" 2423 + version = "2.0.15" 2424 + source = "registry+https://github.com/rust-lang/crates.io-index" 2425 + checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822" 2426 + dependencies = [ 2427 + "proc-macro2", 2428 + "quote", 2429 + "unicode-ident", 2430 + ] 2431 + 2432 + [[package]] 2433 + name = "tempdir" 2434 + version = "0.3.7" 2435 + source = "registry+https://github.com/rust-lang/crates.io-index" 2436 + checksum = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8" 2437 + dependencies = [ 2438 + "rand 0.4.6", 2439 + "remove_dir_all", 2440 + ] 2441 + 2442 + [[package]] 2443 + name = "tendril" 2444 + version = "0.4.3" 2445 + source = "registry+https://github.com/rust-lang/crates.io-index" 2446 + checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 2447 + dependencies = [ 2448 + "futf", 2449 + "mac", 2450 + "utf-8", 2451 + ] 2452 + 2453 + [[package]] 2454 + name = "textwrap" 2455 + version = "0.11.0" 2456 + source = "registry+https://github.com/rust-lang/crates.io-index" 2457 + checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 2458 + dependencies = [ 2459 + "unicode-width", 2460 + ] 2461 + 2462 + [[package]] 2463 + name = "thin-slice" 2464 + version = "0.1.1" 2465 + source = "registry+https://github.com/rust-lang/crates.io-index" 2466 + checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c" 2467 + 2468 + [[package]] 2469 + name = "thiserror" 2470 + version = "1.0.40" 2471 + source = "registry+https://github.com/rust-lang/crates.io-index" 2472 + checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 2473 + dependencies = [ 2474 + "thiserror-impl", 2475 + ] 2476 + 2477 + [[package]] 2478 + name = "thiserror-impl" 2479 + version = "1.0.40" 2480 + source = "registry+https://github.com/rust-lang/crates.io-index" 2481 + checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 2482 + dependencies = [ 2483 + "proc-macro2", 2484 + "quote", 2485 + "syn 2.0.15", 2486 + ] 2487 + 2488 + [[package]] 2489 + name = "time" 2490 + version = "0.1.45" 2491 + source = "registry+https://github.com/rust-lang/crates.io-index" 2492 + checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" 2493 + dependencies = [ 2494 + "libc", 2495 + "wasi 0.10.0+wasi-snapshot-preview1", 2496 + "winapi", 2497 + ] 2498 + 2499 + [[package]] 2500 + name = "time" 2501 + version = "0.2.27" 2502 + source = "registry+https://github.com/rust-lang/crates.io-index" 2503 + checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242" 2504 + dependencies = [ 2505 + "const_fn", 2506 + "libc", 2507 + "standback", 2508 + "stdweb", 2509 + "time-macros", 2510 + "version_check", 2511 + "winapi", 2512 + ] 2513 + 2514 + [[package]] 2515 + name = "time-macros" 2516 + version = "0.1.1" 2517 + source = "registry+https://github.com/rust-lang/crates.io-index" 2518 + checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1" 2519 + dependencies = [ 2520 + "proc-macro-hack", 2521 + "time-macros-impl", 2522 + ] 2523 + 2524 + [[package]] 2525 + name = "time-macros-impl" 2526 + version = "0.1.2" 2527 + source = "registry+https://github.com/rust-lang/crates.io-index" 2528 + checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f" 2529 + dependencies = [ 2530 + "proc-macro-hack", 2531 + "proc-macro2", 2532 + "quote", 2533 + "standback", 2534 + "syn 1.0.109", 2535 + ] 2536 + 2537 + [[package]] 2538 + name = "tinyvec" 2539 + version = "1.6.0" 2540 + source = "registry+https://github.com/rust-lang/crates.io-index" 2541 + checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 2542 + dependencies = [ 2543 + "tinyvec_macros", 2544 + ] 2545 + 2546 + [[package]] 2547 + name = "tinyvec_macros" 2548 + version = "0.1.1" 2549 + source = "registry+https://github.com/rust-lang/crates.io-index" 2550 + checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2551 + 2552 + [[package]] 2553 + name = "tracing" 2554 + version = "0.1.37" 2555 + source = "registry+https://github.com/rust-lang/crates.io-index" 2556 + checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 2557 + dependencies = [ 2558 + "cfg-if", 2559 + "log 0.4.17", 2560 + "pin-project-lite", 2561 + "tracing-attributes", 2562 + "tracing-core", 2563 + ] 2564 + 2565 + [[package]] 2566 + name = "tracing-attributes" 2567 + version = "0.1.24" 2568 + source = "registry+https://github.com/rust-lang/crates.io-index" 2569 + checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74" 2570 + dependencies = [ 2571 + "proc-macro2", 2572 + "quote", 2573 + "syn 2.0.15", 2574 + ] 2575 + 2576 + [[package]] 2577 + name = "tracing-core" 2578 + version = "0.1.31" 2579 + source = "registry+https://github.com/rust-lang/crates.io-index" 2580 + checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 2581 + dependencies = [ 2582 + "once_cell", 2583 + ] 2584 + 2585 + [[package]] 2586 + name = "tracing-futures" 2587 + version = "0.2.5" 2588 + source = "registry+https://github.com/rust-lang/crates.io-index" 2589 + checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2" 2590 + dependencies = [ 2591 + "pin-project", 2592 + "tracing", 2593 + ] 2594 + 2595 + [[package]] 2596 + name = "typenum" 2597 + version = "1.16.0" 2598 + source = "registry+https://github.com/rust-lang/crates.io-index" 2599 + checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 2600 + 2601 + [[package]] 2602 + name = "unicase" 2603 + version = "2.6.0" 2604 + source = "registry+https://github.com/rust-lang/crates.io-index" 2605 + checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" 2606 + dependencies = [ 2607 + "version_check", 2608 + ] 2609 + 2610 + [[package]] 2611 + name = "unicode-bidi" 2612 + version = "0.3.13" 2613 + source = "registry+https://github.com/rust-lang/crates.io-index" 2614 + checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 2615 + 2616 + [[package]] 2617 + name = "unicode-ident" 2618 + version = "1.0.8" 2619 + source = "registry+https://github.com/rust-lang/crates.io-index" 2620 + checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 2621 + 2622 + [[package]] 2623 + name = "unicode-normalization" 2624 + version = "0.1.22" 2625 + source = "registry+https://github.com/rust-lang/crates.io-index" 2626 + checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 2627 + dependencies = [ 2628 + "tinyvec", 2629 + ] 2630 + 2631 + [[package]] 2632 + name = "unicode-segmentation" 2633 + version = "1.10.1" 2634 + source = "registry+https://github.com/rust-lang/crates.io-index" 2635 + checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 2636 + 2637 + [[package]] 2638 + name = "unicode-width" 2639 + version = "0.1.10" 2640 + source = "registry+https://github.com/rust-lang/crates.io-index" 2641 + checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 2642 + 2643 + [[package]] 2644 + name = "universal-hash" 2645 + version = "0.4.1" 2646 + source = "registry+https://github.com/rust-lang/crates.io-index" 2647 + checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05" 2648 + dependencies = [ 2649 + "generic-array", 2650 + "subtle", 2651 + ] 2652 + 2653 + [[package]] 2654 + name = "url" 2655 + version = "2.3.1" 2656 + source = "registry+https://github.com/rust-lang/crates.io-index" 2657 + checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 2658 + dependencies = [ 2659 + "form_urlencoded", 2660 + "idna", 2661 + "percent-encoding", 2662 + "serde", 2663 + ] 2664 + 2665 + [[package]] 2666 + name = "utf-8" 2667 + version = "0.7.6" 2668 + source = "registry+https://github.com/rust-lang/crates.io-index" 2669 + checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 2670 + 2671 + [[package]] 2672 + name = "utf8-width" 2673 + version = "0.1.6" 2674 + source = "registry+https://github.com/rust-lang/crates.io-index" 2675 + checksum = "5190c9442dcdaf0ddd50f37420417d219ae5261bbf5db120d0f9bab996c9cba1" 2676 + 2677 + [[package]] 2678 + name = "uuid" 2679 + version = "0.8.2" 2680 + source = "registry+https://github.com/rust-lang/crates.io-index" 2681 + checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" 2682 + dependencies = [ 2683 + "getrandom 0.2.9", 2684 + ] 2685 + 2686 + [[package]] 2687 + name = "value-bag" 2688 + version = "1.0.0-alpha.9" 2689 + source = "registry+https://github.com/rust-lang/crates.io-index" 2690 + checksum = "2209b78d1249f7e6f3293657c9779fe31ced465df091bbd433a1cf88e916ec55" 2691 + dependencies = [ 2692 + "ctor", 2693 + "version_check", 2694 + ] 2695 + 2696 + [[package]] 2697 + name = "vcpkg" 2698 + version = "0.2.15" 2699 + source = "registry+https://github.com/rust-lang/crates.io-index" 2700 + checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 2701 + 2702 + [[package]] 2703 + name = "vec_map" 2704 + version = "0.8.2" 2705 + source = "registry+https://github.com/rust-lang/crates.io-index" 2706 + checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 2707 + 2708 + [[package]] 2709 + name = "version_check" 2710 + version = "0.9.4" 2711 + source = "registry+https://github.com/rust-lang/crates.io-index" 2712 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 2713 + 2714 + [[package]] 2715 + name = "waker-fn" 2716 + version = "1.1.0" 2717 + source = "registry+https://github.com/rust-lang/crates.io-index" 2718 + checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 2719 + 2720 + [[package]] 2721 + name = "wasi" 2722 + version = "0.9.0+wasi-snapshot-preview1" 2723 + source = "registry+https://github.com/rust-lang/crates.io-index" 2724 + checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 2725 + 2726 + [[package]] 2727 + name = "wasi" 2728 + version = "0.10.0+wasi-snapshot-preview1" 2729 + source = "registry+https://github.com/rust-lang/crates.io-index" 2730 + checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 2731 + 2732 + [[package]] 2733 + name = "wasi" 2734 + version = "0.11.0+wasi-snapshot-preview1" 2735 + source = "registry+https://github.com/rust-lang/crates.io-index" 2736 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2737 + 2738 + [[package]] 2739 + name = "wasm-bindgen" 2740 + version = "0.2.85" 2741 + source = "registry+https://github.com/rust-lang/crates.io-index" 2742 + checksum = "5b6cb788c4e39112fbe1822277ef6fb3c55cd86b95cb3d3c4c1c9597e4ac74b4" 2743 + dependencies = [ 2744 + "cfg-if", 2745 + "wasm-bindgen-macro", 2746 + ] 2747 + 2748 + [[package]] 2749 + name = "wasm-bindgen-backend" 2750 + version = "0.2.85" 2751 + source = "registry+https://github.com/rust-lang/crates.io-index" 2752 + checksum = "35e522ed4105a9d626d885b35d62501b30d9666283a5c8be12c14a8bdafe7822" 2753 + dependencies = [ 2754 + "bumpalo", 2755 + "log 0.4.17", 2756 + "once_cell", 2757 + "proc-macro2", 2758 + "quote", 2759 + "syn 2.0.15", 2760 + "wasm-bindgen-shared", 2761 + ] 2762 + 2763 + [[package]] 2764 + name = "wasm-bindgen-futures" 2765 + version = "0.4.35" 2766 + source = "registry+https://github.com/rust-lang/crates.io-index" 2767 + checksum = "083abe15c5d88556b77bdf7aef403625be9e327ad37c62c4e4129af740168163" 2768 + dependencies = [ 2769 + "cfg-if", 2770 + "js-sys", 2771 + "wasm-bindgen", 2772 + "web-sys", 2773 + ] 2774 + 2775 + [[package]] 2776 + name = "wasm-bindgen-macro" 2777 + version = "0.2.85" 2778 + source = "registry+https://github.com/rust-lang/crates.io-index" 2779 + checksum = "358a79a0cb89d21db8120cbfb91392335913e4890665b1a7981d9e956903b434" 2780 + dependencies = [ 2781 + "quote", 2782 + "wasm-bindgen-macro-support", 2783 + ] 2784 + 2785 + [[package]] 2786 + name = "wasm-bindgen-macro-support" 2787 + version = "0.2.85" 2788 + source = "registry+https://github.com/rust-lang/crates.io-index" 2789 + checksum = "4783ce29f09b9d93134d41297aded3a712b7b979e9c6f28c32cb88c973a94869" 2790 + dependencies = [ 2791 + "proc-macro2", 2792 + "quote", 2793 + "syn 2.0.15", 2794 + "wasm-bindgen-backend", 2795 + "wasm-bindgen-shared", 2796 + ] 2797 + 2798 + [[package]] 2799 + name = "wasm-bindgen-shared" 2800 + version = "0.2.85" 2801 + source = "registry+https://github.com/rust-lang/crates.io-index" 2802 + checksum = "a901d592cafaa4d711bc324edfaff879ac700b19c3dfd60058d2b445be2691eb" 2803 + 2804 + [[package]] 2805 + name = "web-sys" 2806 + version = "0.3.62" 2807 + source = "registry+https://github.com/rust-lang/crates.io-index" 2808 + checksum = "16b5f940c7edfdc6d12126d98c9ef4d1b3d470011c47c76a6581df47ad9ba721" 2809 + dependencies = [ 2810 + "js-sys", 2811 + "wasm-bindgen", 2812 + ] 2813 + 2814 + [[package]] 2815 + name = "winapi" 2816 + version = "0.3.9" 2817 + source = "registry+https://github.com/rust-lang/crates.io-index" 2818 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2819 + dependencies = [ 2820 + "winapi-i686-pc-windows-gnu", 2821 + "winapi-x86_64-pc-windows-gnu", 2822 + ] 2823 + 2824 + [[package]] 2825 + name = "winapi-i686-pc-windows-gnu" 2826 + version = "0.4.0" 2827 + source = "registry+https://github.com/rust-lang/crates.io-index" 2828 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2829 + 2830 + [[package]] 2831 + name = "winapi-x86_64-pc-windows-gnu" 2832 + version = "0.4.0" 2833 + source = "registry+https://github.com/rust-lang/crates.io-index" 2834 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2835 + 2836 + [[package]] 2837 + name = "windows" 2838 + version = "0.48.0" 2839 + source = "registry+https://github.com/rust-lang/crates.io-index" 2840 + checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 2841 + dependencies = [ 2842 + "windows-targets 0.48.0", 2843 + ] 2844 + 2845 + [[package]] 2846 + name = "windows-sys" 2847 + version = "0.42.0" 2848 + source = "registry+https://github.com/rust-lang/crates.io-index" 2849 + checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 2850 + dependencies = [ 2851 + "windows_aarch64_gnullvm 0.42.2", 2852 + "windows_aarch64_msvc 0.42.2", 2853 + "windows_i686_gnu 0.42.2", 2854 + "windows_i686_msvc 0.42.2", 2855 + "windows_x86_64_gnu 0.42.2", 2856 + "windows_x86_64_gnullvm 0.42.2", 2857 + "windows_x86_64_msvc 0.42.2", 2858 + ] 2859 + 2860 + [[package]] 2861 + name = "windows-sys" 2862 + version = "0.45.0" 2863 + source = "registry+https://github.com/rust-lang/crates.io-index" 2864 + checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 2865 + dependencies = [ 2866 + "windows-targets 0.42.2", 2867 + ] 2868 + 2869 + [[package]] 2870 + name = "windows-sys" 2871 + version = "0.48.0" 2872 + source = "registry+https://github.com/rust-lang/crates.io-index" 2873 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 2874 + dependencies = [ 2875 + "windows-targets 0.48.0", 2876 + ] 2877 + 2878 + [[package]] 2879 + name = "windows-targets" 2880 + version = "0.42.2" 2881 + source = "registry+https://github.com/rust-lang/crates.io-index" 2882 + checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 2883 + dependencies = [ 2884 + "windows_aarch64_gnullvm 0.42.2", 2885 + "windows_aarch64_msvc 0.42.2", 2886 + "windows_i686_gnu 0.42.2", 2887 + "windows_i686_msvc 0.42.2", 2888 + "windows_x86_64_gnu 0.42.2", 2889 + "windows_x86_64_gnullvm 0.42.2", 2890 + "windows_x86_64_msvc 0.42.2", 2891 + ] 2892 + 2893 + [[package]] 2894 + name = "windows-targets" 2895 + version = "0.48.0" 2896 + source = "registry+https://github.com/rust-lang/crates.io-index" 2897 + checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 2898 + dependencies = [ 2899 + "windows_aarch64_gnullvm 0.48.0", 2900 + "windows_aarch64_msvc 0.48.0", 2901 + "windows_i686_gnu 0.48.0", 2902 + "windows_i686_msvc 0.48.0", 2903 + "windows_x86_64_gnu 0.48.0", 2904 + "windows_x86_64_gnullvm 0.48.0", 2905 + "windows_x86_64_msvc 0.48.0", 2906 + ] 2907 + 2908 + [[package]] 2909 + name = "windows_aarch64_gnullvm" 2910 + version = "0.42.2" 2911 + source = "registry+https://github.com/rust-lang/crates.io-index" 2912 + checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 2913 + 2914 + [[package]] 2915 + name = "windows_aarch64_gnullvm" 2916 + version = "0.48.0" 2917 + source = "registry+https://github.com/rust-lang/crates.io-index" 2918 + checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 2919 + 2920 + [[package]] 2921 + name = "windows_aarch64_msvc" 2922 + version = "0.42.2" 2923 + source = "registry+https://github.com/rust-lang/crates.io-index" 2924 + checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 2925 + 2926 + [[package]] 2927 + name = "windows_aarch64_msvc" 2928 + version = "0.48.0" 2929 + source = "registry+https://github.com/rust-lang/crates.io-index" 2930 + checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 2931 + 2932 + [[package]] 2933 + name = "windows_i686_gnu" 2934 + version = "0.42.2" 2935 + source = "registry+https://github.com/rust-lang/crates.io-index" 2936 + checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 2937 + 2938 + [[package]] 2939 + name = "windows_i686_gnu" 2940 + version = "0.48.0" 2941 + source = "registry+https://github.com/rust-lang/crates.io-index" 2942 + checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 2943 + 2944 + [[package]] 2945 + name = "windows_i686_msvc" 2946 + version = "0.42.2" 2947 + source = "registry+https://github.com/rust-lang/crates.io-index" 2948 + checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 2949 + 2950 + [[package]] 2951 + name = "windows_i686_msvc" 2952 + version = "0.48.0" 2953 + source = "registry+https://github.com/rust-lang/crates.io-index" 2954 + checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 2955 + 2956 + [[package]] 2957 + name = "windows_x86_64_gnu" 2958 + version = "0.42.2" 2959 + source = "registry+https://github.com/rust-lang/crates.io-index" 2960 + checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 2961 + 2962 + [[package]] 2963 + name = "windows_x86_64_gnu" 2964 + version = "0.48.0" 2965 + source = "registry+https://github.com/rust-lang/crates.io-index" 2966 + checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 2967 + 2968 + [[package]] 2969 + name = "windows_x86_64_gnullvm" 2970 + version = "0.42.2" 2971 + source = "registry+https://github.com/rust-lang/crates.io-index" 2972 + checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 2973 + 2974 + [[package]] 2975 + name = "windows_x86_64_gnullvm" 2976 + version = "0.48.0" 2977 + source = "registry+https://github.com/rust-lang/crates.io-index" 2978 + checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 2979 + 2980 + [[package]] 2981 + name = "windows_x86_64_msvc" 2982 + version = "0.42.2" 2983 + source = "registry+https://github.com/rust-lang/crates.io-index" 2984 + checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 2985 + 2986 + [[package]] 2987 + name = "windows_x86_64_msvc" 2988 + version = "0.48.0" 2989 + source = "registry+https://github.com/rust-lang/crates.io-index" 2990 + checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 2991 + 2992 + [[package]] 2993 + name = "yaml-rust" 2994 + version = "0.3.5" 2995 + source = "registry+https://github.com/rust-lang/crates.io-index" 2996 + checksum = "e66366e18dc58b46801afbf2ca7661a9f59cc8c5962c29892b6039b4f86fa992" 2997 + 2998 + [[package]] 2999 + name = "yansi" 3000 + version = "0.5.1" 3001 + source = "registry+https://github.com/rust-lang/crates.io-index" 3002 + checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" 3003 + 3004 + [[package]] 3005 + name = "zip" 3006 + version = "0.5.13" 3007 + source = "registry+https://github.com/rust-lang/crates.io-index" 3008 + checksum = "93ab48844d61251bb3835145c521d88aa4031d7139e8485990f60ca911fa0815" 3009 + dependencies = [ 3010 + "byteorder", 3011 + "crc32fast", 3012 + "thiserror", 3013 + "time 0.1.45", 3014 + ]
+24 -7
pkgs/tools/text/paperoni/default.nix
··· 1 1 { lib 2 - , stdenv 3 2 , rustPlatform 4 3 , fetchFromGitHub 4 + , curl 5 + , stdenv 5 6 , pkg-config 7 + , zlib 6 8 , openssl 7 - , Security 8 9 }: 9 10 10 11 rustPlatform.buildRustPackage rec { ··· 18 19 sha256 = "sha256-vTylnDtoPpiRtk/vew1hLq3g8pepWRVqBEBnvSif4Zw="; 19 20 }; 20 21 21 - cargoSha256 = "sha256-iLEIGuVB9ykNcwbXk/donDdBuMvitM54Ax6bszVGaO0="; 22 + cargoLock = { 23 + lockFile = ./Cargo.lock; 24 + }; 22 25 23 - nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ]; 26 + nativeBuildInputs = [ 27 + curl 28 + ] ++ lib.optionals stdenv.isLinux [ 29 + pkg-config 30 + ]; 31 + 32 + buildInputs = [ 33 + curl 34 + zlib 35 + ] ++ lib.optionals stdenv.isLinux [ 36 + openssl 37 + ]; 24 38 25 - buildInputs = lib.optionals stdenv.isLinux [ openssl ] 26 - ++ lib.optionals stdenv.isDarwin [ Security ]; 39 + # update Cargo.lock to work with openssl 3 40 + postPatch = '' 41 + ln -sf ${./Cargo.lock} Cargo.lock 42 + ''; 27 43 28 44 meta = with lib; { 29 45 description = "An article extractor in Rust"; 30 46 homepage = "https://github.com/hipstermojo/paperoni"; 47 + changelog = "https://github.com/hipstermojo/paperoni/releases/tag/${src.rev}"; 31 48 license = licenses.mit; 32 - maintainers = [ maintainers.marsam ]; 49 + maintainers = with maintainers; [ marsam ]; 33 50 }; 34 51 }
+1 -4
pkgs/top-level/all-packages.nix
··· 10961 10961 10962 10962 paperless-ngx = callPackage ../applications/office/paperless-ngx { }; 10963 10963 10964 - paperoni = callPackage ../tools/text/paperoni { 10965 - inherit (darwin.apple_sdk.frameworks) Security; 10966 - openssl = openssl_1_1; 10967 - }; 10964 + paperoni = callPackage ../tools/text/paperoni { }; 10968 10965 10969 10966 paperwork = callPackage ../applications/office/paperwork/paperwork-gtk.nix { }; 10970 10967