project to map out webrings

some

skoove 559e2103 8940b156

Changed files
+1893 -1
src
+1889
Cargo.lock
··· 3 3 version = 4 4 4 5 5 [[package]] 6 + name = "atomic-waker" 7 + version = "1.1.2" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 10 + 11 + [[package]] 12 + name = "base64" 13 + version = "0.22.1" 14 + source = "registry+https://github.com/rust-lang/crates.io-index" 15 + checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 16 + 17 + [[package]] 18 + name = "bitflags" 19 + version = "2.10.0" 20 + source = "registry+https://github.com/rust-lang/crates.io-index" 21 + checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" 22 + 23 + [[package]] 24 + name = "bumpalo" 25 + version = "3.19.0" 26 + source = "registry+https://github.com/rust-lang/crates.io-index" 27 + checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" 28 + 29 + [[package]] 30 + name = "byteorder" 31 + version = "1.5.0" 32 + source = "registry+https://github.com/rust-lang/crates.io-index" 33 + checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 34 + 35 + [[package]] 36 + name = "bytes" 37 + version = "1.10.1" 38 + source = "registry+https://github.com/rust-lang/crates.io-index" 39 + checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" 40 + 41 + [[package]] 42 + name = "cc" 43 + version = "1.2.44" 44 + source = "registry+https://github.com/rust-lang/crates.io-index" 45 + checksum = "37521ac7aabe3d13122dc382493e20c9416f299d2ccd5b3a5340a2570cdeb0f3" 46 + dependencies = [ 47 + "find-msvc-tools", 48 + "shlex", 49 + ] 50 + 51 + [[package]] 52 + name = "cfg-if" 53 + version = "1.0.4" 54 + source = "registry+https://github.com/rust-lang/crates.io-index" 55 + checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 56 + 57 + [[package]] 58 + name = "core-foundation" 59 + version = "0.9.4" 60 + source = "registry+https://github.com/rust-lang/crates.io-index" 61 + checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 62 + dependencies = [ 63 + "core-foundation-sys", 64 + "libc", 65 + ] 66 + 67 + [[package]] 68 + name = "core-foundation-sys" 69 + version = "0.8.7" 70 + source = "registry+https://github.com/rust-lang/crates.io-index" 71 + checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 72 + 73 + [[package]] 74 + name = "cssparser" 75 + version = "0.35.0" 76 + source = "registry+https://github.com/rust-lang/crates.io-index" 77 + checksum = "4e901edd733a1472f944a45116df3f846f54d37e67e68640ac8bb69689aca2aa" 78 + dependencies = [ 79 + "cssparser-macros", 80 + "dtoa-short", 81 + "itoa", 82 + "phf", 83 + "smallvec", 84 + ] 85 + 86 + [[package]] 87 + name = "cssparser-macros" 88 + version = "0.6.1" 89 + source = "registry+https://github.com/rust-lang/crates.io-index" 90 + checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" 91 + dependencies = [ 92 + "quote", 93 + "syn", 94 + ] 95 + 96 + [[package]] 97 + name = "derive_more" 98 + version = "2.0.1" 99 + source = "registry+https://github.com/rust-lang/crates.io-index" 100 + checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678" 101 + dependencies = [ 102 + "derive_more-impl", 103 + ] 104 + 105 + [[package]] 106 + name = "derive_more-impl" 107 + version = "2.0.1" 108 + source = "registry+https://github.com/rust-lang/crates.io-index" 109 + checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3" 110 + dependencies = [ 111 + "proc-macro2", 112 + "quote", 113 + "syn", 114 + ] 115 + 116 + [[package]] 117 + name = "displaydoc" 118 + version = "0.2.5" 119 + source = "registry+https://github.com/rust-lang/crates.io-index" 120 + checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 121 + dependencies = [ 122 + "proc-macro2", 123 + "quote", 124 + "syn", 125 + ] 126 + 127 + [[package]] 128 + name = "dtoa" 129 + version = "1.0.10" 130 + source = "registry+https://github.com/rust-lang/crates.io-index" 131 + checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04" 132 + 133 + [[package]] 134 + name = "dtoa-short" 135 + version = "0.3.5" 136 + source = "registry+https://github.com/rust-lang/crates.io-index" 137 + checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" 138 + dependencies = [ 139 + "dtoa", 140 + ] 141 + 142 + [[package]] 143 + name = "ego-tree" 144 + version = "0.10.0" 145 + source = "registry+https://github.com/rust-lang/crates.io-index" 146 + checksum = "b2972feb8dffe7bc8c5463b1dacda1b0dfbed3710e50f977d965429692d74cd8" 147 + 148 + [[package]] 149 + name = "encoding_rs" 150 + version = "0.8.35" 151 + source = "registry+https://github.com/rust-lang/crates.io-index" 152 + checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 153 + dependencies = [ 154 + "cfg-if", 155 + ] 156 + 157 + [[package]] 158 + name = "equivalent" 159 + version = "1.0.2" 160 + source = "registry+https://github.com/rust-lang/crates.io-index" 161 + checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 162 + 163 + [[package]] 164 + name = "errno" 165 + version = "0.3.14" 166 + source = "registry+https://github.com/rust-lang/crates.io-index" 167 + checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 168 + dependencies = [ 169 + "libc", 170 + "windows-sys 0.61.2", 171 + ] 172 + 173 + [[package]] 174 + name = "fastrand" 175 + version = "2.3.0" 176 + source = "registry+https://github.com/rust-lang/crates.io-index" 177 + checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 178 + 179 + [[package]] 180 + name = "find-msvc-tools" 181 + version = "0.1.4" 182 + source = "registry+https://github.com/rust-lang/crates.io-index" 183 + checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127" 184 + 185 + [[package]] 186 + name = "fnv" 187 + version = "1.0.7" 188 + source = "registry+https://github.com/rust-lang/crates.io-index" 189 + checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 190 + 191 + [[package]] 192 + name = "foreign-types" 193 + version = "0.3.2" 194 + source = "registry+https://github.com/rust-lang/crates.io-index" 195 + checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 196 + dependencies = [ 197 + "foreign-types-shared", 198 + ] 199 + 200 + [[package]] 201 + name = "foreign-types-shared" 202 + version = "0.1.1" 203 + source = "registry+https://github.com/rust-lang/crates.io-index" 204 + checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 205 + 206 + [[package]] 207 + name = "form_urlencoded" 208 + version = "1.2.2" 209 + source = "registry+https://github.com/rust-lang/crates.io-index" 210 + checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 211 + dependencies = [ 212 + "percent-encoding", 213 + ] 214 + 215 + [[package]] 216 + name = "futf" 217 + version = "0.1.5" 218 + source = "registry+https://github.com/rust-lang/crates.io-index" 219 + checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 220 + dependencies = [ 221 + "mac", 222 + "new_debug_unreachable", 223 + ] 224 + 225 + [[package]] 226 + name = "futures-channel" 227 + version = "0.3.31" 228 + source = "registry+https://github.com/rust-lang/crates.io-index" 229 + checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 230 + dependencies = [ 231 + "futures-core", 232 + ] 233 + 234 + [[package]] 235 + name = "futures-core" 236 + version = "0.3.31" 237 + source = "registry+https://github.com/rust-lang/crates.io-index" 238 + checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 239 + 240 + [[package]] 241 + name = "futures-sink" 242 + version = "0.3.31" 243 + source = "registry+https://github.com/rust-lang/crates.io-index" 244 + checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 245 + 246 + [[package]] 247 + name = "futures-task" 248 + version = "0.3.31" 249 + source = "registry+https://github.com/rust-lang/crates.io-index" 250 + checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 251 + 252 + [[package]] 253 + name = "futures-util" 254 + version = "0.3.31" 255 + source = "registry+https://github.com/rust-lang/crates.io-index" 256 + checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 257 + dependencies = [ 258 + "futures-core", 259 + "futures-task", 260 + "pin-project-lite", 261 + "pin-utils", 262 + ] 263 + 264 + [[package]] 265 + name = "fxhash" 266 + version = "0.2.1" 267 + source = "registry+https://github.com/rust-lang/crates.io-index" 268 + checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 269 + dependencies = [ 270 + "byteorder", 271 + ] 272 + 273 + [[package]] 274 + name = "getopts" 275 + version = "0.2.24" 276 + source = "registry+https://github.com/rust-lang/crates.io-index" 277 + checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df" 278 + dependencies = [ 279 + "unicode-width", 280 + ] 281 + 282 + [[package]] 283 + name = "getrandom" 284 + version = "0.2.16" 285 + source = "registry+https://github.com/rust-lang/crates.io-index" 286 + checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" 287 + dependencies = [ 288 + "cfg-if", 289 + "libc", 290 + "wasi", 291 + ] 292 + 293 + [[package]] 294 + name = "getrandom" 295 + version = "0.3.4" 296 + source = "registry+https://github.com/rust-lang/crates.io-index" 297 + checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 298 + dependencies = [ 299 + "cfg-if", 300 + "libc", 301 + "r-efi", 302 + "wasip2", 303 + ] 304 + 305 + [[package]] 306 + name = "h2" 307 + version = "0.4.12" 308 + source = "registry+https://github.com/rust-lang/crates.io-index" 309 + checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386" 310 + dependencies = [ 311 + "atomic-waker", 312 + "bytes", 313 + "fnv", 314 + "futures-core", 315 + "futures-sink", 316 + "http", 317 + "indexmap", 318 + "slab", 319 + "tokio", 320 + "tokio-util", 321 + "tracing", 322 + ] 323 + 324 + [[package]] 325 + name = "hashbrown" 326 + version = "0.16.0" 327 + source = "registry+https://github.com/rust-lang/crates.io-index" 328 + checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" 329 + 330 + [[package]] 331 + name = "html5ever" 332 + version = "0.35.0" 333 + source = "registry+https://github.com/rust-lang/crates.io-index" 334 + checksum = "55d958c2f74b664487a2035fe1dadb032c48718a03b63f3ab0b8537db8549ed4" 335 + dependencies = [ 336 + "log", 337 + "markup5ever", 338 + "match_token", 339 + ] 340 + 341 + [[package]] 342 + name = "http" 343 + version = "1.3.1" 344 + source = "registry+https://github.com/rust-lang/crates.io-index" 345 + checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" 346 + dependencies = [ 347 + "bytes", 348 + "fnv", 349 + "itoa", 350 + ] 351 + 352 + [[package]] 353 + name = "http-body" 354 + version = "1.0.1" 355 + source = "registry+https://github.com/rust-lang/crates.io-index" 356 + checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 357 + dependencies = [ 358 + "bytes", 359 + "http", 360 + ] 361 + 362 + [[package]] 363 + name = "http-body-util" 364 + version = "0.1.3" 365 + source = "registry+https://github.com/rust-lang/crates.io-index" 366 + checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 367 + dependencies = [ 368 + "bytes", 369 + "futures-core", 370 + "http", 371 + "http-body", 372 + "pin-project-lite", 373 + ] 374 + 375 + [[package]] 376 + name = "httparse" 377 + version = "1.10.1" 378 + source = "registry+https://github.com/rust-lang/crates.io-index" 379 + checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 380 + 381 + [[package]] 382 + name = "hyper" 383 + version = "1.7.0" 384 + source = "registry+https://github.com/rust-lang/crates.io-index" 385 + checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e" 386 + dependencies = [ 387 + "atomic-waker", 388 + "bytes", 389 + "futures-channel", 390 + "futures-core", 391 + "h2", 392 + "http", 393 + "http-body", 394 + "httparse", 395 + "itoa", 396 + "pin-project-lite", 397 + "pin-utils", 398 + "smallvec", 399 + "tokio", 400 + "want", 401 + ] 402 + 403 + [[package]] 404 + name = "hyper-rustls" 405 + version = "0.27.7" 406 + source = "registry+https://github.com/rust-lang/crates.io-index" 407 + checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" 408 + dependencies = [ 409 + "http", 410 + "hyper", 411 + "hyper-util", 412 + "rustls", 413 + "rustls-pki-types", 414 + "tokio", 415 + "tokio-rustls", 416 + "tower-service", 417 + ] 418 + 419 + [[package]] 420 + name = "hyper-tls" 421 + version = "0.6.0" 422 + source = "registry+https://github.com/rust-lang/crates.io-index" 423 + checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" 424 + dependencies = [ 425 + "bytes", 426 + "http-body-util", 427 + "hyper", 428 + "hyper-util", 429 + "native-tls", 430 + "tokio", 431 + "tokio-native-tls", 432 + "tower-service", 433 + ] 434 + 435 + [[package]] 436 + name = "hyper-util" 437 + version = "0.1.17" 438 + source = "registry+https://github.com/rust-lang/crates.io-index" 439 + checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8" 440 + dependencies = [ 441 + "base64", 442 + "bytes", 443 + "futures-channel", 444 + "futures-core", 445 + "futures-util", 446 + "http", 447 + "http-body", 448 + "hyper", 449 + "ipnet", 450 + "libc", 451 + "percent-encoding", 452 + "pin-project-lite", 453 + "socket2", 454 + "system-configuration", 455 + "tokio", 456 + "tower-service", 457 + "tracing", 458 + "windows-registry", 459 + ] 460 + 461 + [[package]] 462 + name = "icu_collections" 463 + version = "2.1.1" 464 + source = "registry+https://github.com/rust-lang/crates.io-index" 465 + checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" 466 + dependencies = [ 467 + "displaydoc", 468 + "potential_utf", 469 + "yoke", 470 + "zerofrom", 471 + "zerovec", 472 + ] 473 + 474 + [[package]] 475 + name = "icu_locale_core" 476 + version = "2.1.1" 477 + source = "registry+https://github.com/rust-lang/crates.io-index" 478 + checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" 479 + dependencies = [ 480 + "displaydoc", 481 + "litemap", 482 + "tinystr", 483 + "writeable", 484 + "zerovec", 485 + ] 486 + 487 + [[package]] 488 + name = "icu_normalizer" 489 + version = "2.1.1" 490 + source = "registry+https://github.com/rust-lang/crates.io-index" 491 + checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" 492 + dependencies = [ 493 + "icu_collections", 494 + "icu_normalizer_data", 495 + "icu_properties", 496 + "icu_provider", 497 + "smallvec", 498 + "zerovec", 499 + ] 500 + 501 + [[package]] 502 + name = "icu_normalizer_data" 503 + version = "2.1.1" 504 + source = "registry+https://github.com/rust-lang/crates.io-index" 505 + checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" 506 + 507 + [[package]] 508 + name = "icu_properties" 509 + version = "2.1.1" 510 + source = "registry+https://github.com/rust-lang/crates.io-index" 511 + checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99" 512 + dependencies = [ 513 + "icu_collections", 514 + "icu_locale_core", 515 + "icu_properties_data", 516 + "icu_provider", 517 + "zerotrie", 518 + "zerovec", 519 + ] 520 + 521 + [[package]] 522 + name = "icu_properties_data" 523 + version = "2.1.1" 524 + source = "registry+https://github.com/rust-lang/crates.io-index" 525 + checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899" 526 + 527 + [[package]] 528 + name = "icu_provider" 529 + version = "2.1.1" 530 + source = "registry+https://github.com/rust-lang/crates.io-index" 531 + checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" 532 + dependencies = [ 533 + "displaydoc", 534 + "icu_locale_core", 535 + "writeable", 536 + "yoke", 537 + "zerofrom", 538 + "zerotrie", 539 + "zerovec", 540 + ] 541 + 542 + [[package]] 543 + name = "idna" 544 + version = "1.1.0" 545 + source = "registry+https://github.com/rust-lang/crates.io-index" 546 + checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 547 + dependencies = [ 548 + "idna_adapter", 549 + "smallvec", 550 + "utf8_iter", 551 + ] 552 + 553 + [[package]] 554 + name = "idna_adapter" 555 + version = "1.2.1" 556 + source = "registry+https://github.com/rust-lang/crates.io-index" 557 + checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 558 + dependencies = [ 559 + "icu_normalizer", 560 + "icu_properties", 561 + ] 562 + 563 + [[package]] 564 + name = "indexmap" 565 + version = "2.12.0" 566 + source = "registry+https://github.com/rust-lang/crates.io-index" 567 + checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f" 568 + dependencies = [ 569 + "equivalent", 570 + "hashbrown", 571 + ] 572 + 573 + [[package]] 574 + name = "ipnet" 575 + version = "2.11.0" 576 + source = "registry+https://github.com/rust-lang/crates.io-index" 577 + checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" 578 + 579 + [[package]] 580 + name = "iri-string" 581 + version = "0.7.8" 582 + source = "registry+https://github.com/rust-lang/crates.io-index" 583 + checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2" 584 + dependencies = [ 585 + "memchr", 586 + "serde", 587 + ] 588 + 589 + [[package]] 590 + name = "itoa" 591 + version = "1.0.15" 592 + source = "registry+https://github.com/rust-lang/crates.io-index" 593 + checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 594 + 595 + [[package]] 596 + name = "js-sys" 597 + version = "0.3.82" 598 + source = "registry+https://github.com/rust-lang/crates.io-index" 599 + checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65" 600 + dependencies = [ 601 + "once_cell", 602 + "wasm-bindgen", 603 + ] 604 + 605 + [[package]] 606 + name = "libc" 607 + version = "0.2.177" 608 + source = "registry+https://github.com/rust-lang/crates.io-index" 609 + checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976" 610 + 611 + [[package]] 612 + name = "linux-raw-sys" 613 + version = "0.11.0" 614 + source = "registry+https://github.com/rust-lang/crates.io-index" 615 + checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" 616 + 617 + [[package]] 618 + name = "litemap" 619 + version = "0.8.1" 620 + source = "registry+https://github.com/rust-lang/crates.io-index" 621 + checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" 622 + 623 + [[package]] 624 + name = "lock_api" 625 + version = "0.4.14" 626 + source = "registry+https://github.com/rust-lang/crates.io-index" 627 + checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 628 + dependencies = [ 629 + "scopeguard", 630 + ] 631 + 632 + [[package]] 633 + name = "log" 634 + version = "0.4.28" 635 + source = "registry+https://github.com/rust-lang/crates.io-index" 636 + checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" 637 + 638 + [[package]] 639 + name = "mac" 640 + version = "0.1.1" 641 + source = "registry+https://github.com/rust-lang/crates.io-index" 642 + checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 643 + 644 + [[package]] 645 + name = "markup5ever" 646 + version = "0.35.0" 647 + source = "registry+https://github.com/rust-lang/crates.io-index" 648 + checksum = "311fe69c934650f8f19652b3946075f0fc41ad8757dbb68f1ca14e7900ecc1c3" 649 + dependencies = [ 650 + "log", 651 + "tendril", 652 + "web_atoms", 653 + ] 654 + 655 + [[package]] 656 + name = "match_token" 657 + version = "0.35.0" 658 + source = "registry+https://github.com/rust-lang/crates.io-index" 659 + checksum = "ac84fd3f360fcc43dc5f5d186f02a94192761a080e8bc58621ad4d12296a58cf" 660 + dependencies = [ 661 + "proc-macro2", 662 + "quote", 663 + "syn", 664 + ] 665 + 666 + [[package]] 667 + name = "memchr" 668 + version = "2.7.6" 669 + source = "registry+https://github.com/rust-lang/crates.io-index" 670 + checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" 671 + 672 + [[package]] 673 + name = "mime" 674 + version = "0.3.17" 675 + source = "registry+https://github.com/rust-lang/crates.io-index" 676 + checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 677 + 678 + [[package]] 679 + name = "mio" 680 + version = "1.1.0" 681 + source = "registry+https://github.com/rust-lang/crates.io-index" 682 + checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873" 683 + dependencies = [ 684 + "libc", 685 + "wasi", 686 + "windows-sys 0.61.2", 687 + ] 688 + 689 + [[package]] 690 + name = "native-tls" 691 + version = "0.2.14" 692 + source = "registry+https://github.com/rust-lang/crates.io-index" 693 + checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e" 694 + dependencies = [ 695 + "libc", 696 + "log", 697 + "openssl", 698 + "openssl-probe", 699 + "openssl-sys", 700 + "schannel", 701 + "security-framework", 702 + "security-framework-sys", 703 + "tempfile", 704 + ] 705 + 706 + [[package]] 707 + name = "new_debug_unreachable" 708 + version = "1.0.6" 709 + source = "registry+https://github.com/rust-lang/crates.io-index" 710 + checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" 711 + 712 + [[package]] 713 + name = "once_cell" 714 + version = "1.21.3" 715 + source = "registry+https://github.com/rust-lang/crates.io-index" 716 + checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 717 + 718 + [[package]] 719 + name = "openssl" 720 + version = "0.10.74" 721 + source = "registry+https://github.com/rust-lang/crates.io-index" 722 + checksum = "24ad14dd45412269e1a30f52ad8f0664f0f4f4a89ee8fe28c3b3527021ebb654" 723 + dependencies = [ 724 + "bitflags", 725 + "cfg-if", 726 + "foreign-types", 727 + "libc", 728 + "once_cell", 729 + "openssl-macros", 730 + "openssl-sys", 731 + ] 732 + 733 + [[package]] 734 + name = "openssl-macros" 735 + version = "0.1.1" 736 + source = "registry+https://github.com/rust-lang/crates.io-index" 737 + checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 738 + dependencies = [ 739 + "proc-macro2", 740 + "quote", 741 + "syn", 742 + ] 743 + 744 + [[package]] 745 + name = "openssl-probe" 746 + version = "0.1.6" 747 + source = "registry+https://github.com/rust-lang/crates.io-index" 748 + checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" 749 + 750 + [[package]] 751 + name = "openssl-sys" 752 + version = "0.9.110" 753 + source = "registry+https://github.com/rust-lang/crates.io-index" 754 + checksum = "0a9f0075ba3c21b09f8e8b2026584b1d18d49388648f2fbbf3c97ea8deced8e2" 755 + dependencies = [ 756 + "cc", 757 + "libc", 758 + "pkg-config", 759 + "vcpkg", 760 + ] 761 + 762 + [[package]] 763 + name = "parking_lot" 764 + version = "0.12.5" 765 + source = "registry+https://github.com/rust-lang/crates.io-index" 766 + checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 767 + dependencies = [ 768 + "lock_api", 769 + "parking_lot_core", 770 + ] 771 + 772 + [[package]] 773 + name = "parking_lot_core" 774 + version = "0.9.12" 775 + source = "registry+https://github.com/rust-lang/crates.io-index" 776 + checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 777 + dependencies = [ 778 + "cfg-if", 779 + "libc", 780 + "redox_syscall", 781 + "smallvec", 782 + "windows-link 0.2.1", 783 + ] 784 + 785 + [[package]] 786 + name = "percent-encoding" 787 + version = "2.3.2" 788 + source = "registry+https://github.com/rust-lang/crates.io-index" 789 + checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 790 + 791 + [[package]] 792 + name = "phf" 793 + version = "0.11.3" 794 + source = "registry+https://github.com/rust-lang/crates.io-index" 795 + checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" 796 + dependencies = [ 797 + "phf_macros", 798 + "phf_shared", 799 + ] 800 + 801 + [[package]] 802 + name = "phf_codegen" 803 + version = "0.11.3" 804 + source = "registry+https://github.com/rust-lang/crates.io-index" 805 + checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" 806 + dependencies = [ 807 + "phf_generator", 808 + "phf_shared", 809 + ] 810 + 811 + [[package]] 812 + name = "phf_generator" 813 + version = "0.11.3" 814 + source = "registry+https://github.com/rust-lang/crates.io-index" 815 + checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" 816 + dependencies = [ 817 + "phf_shared", 818 + "rand", 819 + ] 820 + 821 + [[package]] 822 + name = "phf_macros" 823 + version = "0.11.3" 824 + source = "registry+https://github.com/rust-lang/crates.io-index" 825 + checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" 826 + dependencies = [ 827 + "phf_generator", 828 + "phf_shared", 829 + "proc-macro2", 830 + "quote", 831 + "syn", 832 + ] 833 + 834 + [[package]] 835 + name = "phf_shared" 836 + version = "0.11.3" 837 + source = "registry+https://github.com/rust-lang/crates.io-index" 838 + checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" 839 + dependencies = [ 840 + "siphasher", 841 + ] 842 + 843 + [[package]] 844 + name = "pin-project-lite" 845 + version = "0.2.16" 846 + source = "registry+https://github.com/rust-lang/crates.io-index" 847 + checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 848 + 849 + [[package]] 850 + name = "pin-utils" 851 + version = "0.1.0" 852 + source = "registry+https://github.com/rust-lang/crates.io-index" 853 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 854 + 855 + [[package]] 856 + name = "pkg-config" 857 + version = "0.3.32" 858 + source = "registry+https://github.com/rust-lang/crates.io-index" 859 + checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 860 + 861 + [[package]] 862 + name = "potential_utf" 863 + version = "0.1.4" 864 + source = "registry+https://github.com/rust-lang/crates.io-index" 865 + checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" 866 + dependencies = [ 867 + "zerovec", 868 + ] 869 + 870 + [[package]] 871 + name = "precomputed-hash" 872 + version = "0.1.1" 873 + source = "registry+https://github.com/rust-lang/crates.io-index" 874 + checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 875 + 876 + [[package]] 877 + name = "proc-macro2" 878 + version = "1.0.103" 879 + source = "registry+https://github.com/rust-lang/crates.io-index" 880 + checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8" 881 + dependencies = [ 882 + "unicode-ident", 883 + ] 884 + 885 + [[package]] 886 + name = "quote" 887 + version = "1.0.41" 888 + source = "registry+https://github.com/rust-lang/crates.io-index" 889 + checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1" 890 + dependencies = [ 891 + "proc-macro2", 892 + ] 893 + 894 + [[package]] 895 + name = "r-efi" 896 + version = "5.3.0" 897 + source = "registry+https://github.com/rust-lang/crates.io-index" 898 + checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 899 + 900 + [[package]] 901 + name = "rand" 902 + version = "0.8.5" 903 + source = "registry+https://github.com/rust-lang/crates.io-index" 904 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 905 + dependencies = [ 906 + "rand_core", 907 + ] 908 + 909 + [[package]] 910 + name = "rand_core" 911 + version = "0.6.4" 912 + source = "registry+https://github.com/rust-lang/crates.io-index" 913 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 914 + 915 + [[package]] 916 + name = "redox_syscall" 917 + version = "0.5.18" 918 + source = "registry+https://github.com/rust-lang/crates.io-index" 919 + checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 920 + dependencies = [ 921 + "bitflags", 922 + ] 923 + 924 + [[package]] 925 + name = "reqwest" 926 + version = "0.12.24" 927 + source = "registry+https://github.com/rust-lang/crates.io-index" 928 + checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f" 929 + dependencies = [ 930 + "base64", 931 + "bytes", 932 + "encoding_rs", 933 + "futures-core", 934 + "h2", 935 + "http", 936 + "http-body", 937 + "http-body-util", 938 + "hyper", 939 + "hyper-rustls", 940 + "hyper-tls", 941 + "hyper-util", 942 + "js-sys", 943 + "log", 944 + "mime", 945 + "native-tls", 946 + "percent-encoding", 947 + "pin-project-lite", 948 + "rustls-pki-types", 949 + "serde", 950 + "serde_json", 951 + "serde_urlencoded", 952 + "sync_wrapper", 953 + "tokio", 954 + "tokio-native-tls", 955 + "tower", 956 + "tower-http", 957 + "tower-service", 958 + "url", 959 + "wasm-bindgen", 960 + "wasm-bindgen-futures", 961 + "web-sys", 962 + ] 963 + 964 + [[package]] 965 + name = "ring" 966 + version = "0.17.14" 967 + source = "registry+https://github.com/rust-lang/crates.io-index" 968 + checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 969 + dependencies = [ 970 + "cc", 971 + "cfg-if", 972 + "getrandom 0.2.16", 973 + "libc", 974 + "untrusted", 975 + "windows-sys 0.52.0", 976 + ] 977 + 978 + [[package]] 979 + name = "rustix" 980 + version = "1.1.2" 981 + source = "registry+https://github.com/rust-lang/crates.io-index" 982 + checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" 983 + dependencies = [ 984 + "bitflags", 985 + "errno", 986 + "libc", 987 + "linux-raw-sys", 988 + "windows-sys 0.61.2", 989 + ] 990 + 991 + [[package]] 992 + name = "rustls" 993 + version = "0.23.34" 994 + source = "registry+https://github.com/rust-lang/crates.io-index" 995 + checksum = "6a9586e9ee2b4f8fab52a0048ca7334d7024eef48e2cb9407e3497bb7cab7fa7" 996 + dependencies = [ 997 + "once_cell", 998 + "rustls-pki-types", 999 + "rustls-webpki", 1000 + "subtle", 1001 + "zeroize", 1002 + ] 1003 + 1004 + [[package]] 1005 + name = "rustls-pki-types" 1006 + version = "1.13.0" 1007 + source = "registry+https://github.com/rust-lang/crates.io-index" 1008 + checksum = "94182ad936a0c91c324cd46c6511b9510ed16af436d7b5bab34beab0afd55f7a" 1009 + dependencies = [ 1010 + "zeroize", 1011 + ] 1012 + 1013 + [[package]] 1014 + name = "rustls-webpki" 1015 + version = "0.103.8" 1016 + source = "registry+https://github.com/rust-lang/crates.io-index" 1017 + checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52" 1018 + dependencies = [ 1019 + "ring", 1020 + "rustls-pki-types", 1021 + "untrusted", 1022 + ] 1023 + 1024 + [[package]] 1025 + name = "rustversion" 1026 + version = "1.0.22" 1027 + source = "registry+https://github.com/rust-lang/crates.io-index" 1028 + checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 1029 + 1030 + [[package]] 1031 + name = "ryu" 1032 + version = "1.0.20" 1033 + source = "registry+https://github.com/rust-lang/crates.io-index" 1034 + checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 1035 + 1036 + [[package]] 1037 + name = "schannel" 1038 + version = "0.1.28" 1039 + source = "registry+https://github.com/rust-lang/crates.io-index" 1040 + checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1" 1041 + dependencies = [ 1042 + "windows-sys 0.61.2", 1043 + ] 1044 + 1045 + [[package]] 1046 + name = "scopeguard" 1047 + version = "1.2.0" 1048 + source = "registry+https://github.com/rust-lang/crates.io-index" 1049 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1050 + 1051 + [[package]] 1052 + name = "scraper" 1053 + version = "0.24.0" 1054 + source = "registry+https://github.com/rust-lang/crates.io-index" 1055 + checksum = "e5f3a24d916e78954af99281a455168d4a9515d65eca99a18da1b813689c4ad9" 1056 + dependencies = [ 1057 + "cssparser", 1058 + "ego-tree", 1059 + "getopts", 1060 + "html5ever", 1061 + "precomputed-hash", 1062 + "selectors", 1063 + "tendril", 1064 + ] 1065 + 1066 + [[package]] 1067 + name = "security-framework" 1068 + version = "2.11.1" 1069 + source = "registry+https://github.com/rust-lang/crates.io-index" 1070 + checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" 1071 + dependencies = [ 1072 + "bitflags", 1073 + "core-foundation", 1074 + "core-foundation-sys", 1075 + "libc", 1076 + "security-framework-sys", 1077 + ] 1078 + 1079 + [[package]] 1080 + name = "security-framework-sys" 1081 + version = "2.15.0" 1082 + source = "registry+https://github.com/rust-lang/crates.io-index" 1083 + checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0" 1084 + dependencies = [ 1085 + "core-foundation-sys", 1086 + "libc", 1087 + ] 1088 + 1089 + [[package]] 1090 + name = "selectors" 1091 + version = "0.31.0" 1092 + source = "registry+https://github.com/rust-lang/crates.io-index" 1093 + checksum = "5685b6ae43bfcf7d2e7dfcfb5d8e8f61b46442c902531e41a32a9a8bf0ee0fb6" 1094 + dependencies = [ 1095 + "bitflags", 1096 + "cssparser", 1097 + "derive_more", 1098 + "fxhash", 1099 + "log", 1100 + "new_debug_unreachable", 1101 + "phf", 1102 + "phf_codegen", 1103 + "precomputed-hash", 1104 + "servo_arc", 1105 + "smallvec", 1106 + ] 1107 + 1108 + [[package]] 1109 + name = "serde" 1110 + version = "1.0.228" 1111 + source = "registry+https://github.com/rust-lang/crates.io-index" 1112 + checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 1113 + dependencies = [ 1114 + "serde_core", 1115 + "serde_derive", 1116 + ] 1117 + 1118 + [[package]] 1119 + name = "serde_core" 1120 + version = "1.0.228" 1121 + source = "registry+https://github.com/rust-lang/crates.io-index" 1122 + checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 1123 + dependencies = [ 1124 + "serde_derive", 1125 + ] 1126 + 1127 + [[package]] 1128 + name = "serde_derive" 1129 + version = "1.0.228" 1130 + source = "registry+https://github.com/rust-lang/crates.io-index" 1131 + checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 1132 + dependencies = [ 1133 + "proc-macro2", 1134 + "quote", 1135 + "syn", 1136 + ] 1137 + 1138 + [[package]] 1139 + name = "serde_json" 1140 + version = "1.0.145" 1141 + source = "registry+https://github.com/rust-lang/crates.io-index" 1142 + checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" 1143 + dependencies = [ 1144 + "itoa", 1145 + "memchr", 1146 + "ryu", 1147 + "serde", 1148 + "serde_core", 1149 + ] 1150 + 1151 + [[package]] 1152 + name = "serde_urlencoded" 1153 + version = "0.7.1" 1154 + source = "registry+https://github.com/rust-lang/crates.io-index" 1155 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1156 + dependencies = [ 1157 + "form_urlencoded", 1158 + "itoa", 1159 + "ryu", 1160 + "serde", 1161 + ] 1162 + 1163 + [[package]] 1164 + name = "servo_arc" 1165 + version = "0.4.1" 1166 + source = "registry+https://github.com/rust-lang/crates.io-index" 1167 + checksum = "204ea332803bd95a0b60388590d59cf6468ec9becf626e2451f1d26a1d972de4" 1168 + dependencies = [ 1169 + "stable_deref_trait", 1170 + ] 1171 + 1172 + [[package]] 1173 + name = "shlex" 1174 + version = "1.3.0" 1175 + source = "registry+https://github.com/rust-lang/crates.io-index" 1176 + checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 1177 + 1178 + [[package]] 1179 + name = "siphasher" 1180 + version = "1.0.1" 1181 + source = "registry+https://github.com/rust-lang/crates.io-index" 1182 + checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" 1183 + 1184 + [[package]] 1185 + name = "slab" 1186 + version = "0.4.11" 1187 + source = "registry+https://github.com/rust-lang/crates.io-index" 1188 + checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" 1189 + 1190 + [[package]] 1191 + name = "smallvec" 1192 + version = "1.15.1" 1193 + source = "registry+https://github.com/rust-lang/crates.io-index" 1194 + checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 1195 + 1196 + [[package]] 1197 + name = "socket2" 1198 + version = "0.6.1" 1199 + source = "registry+https://github.com/rust-lang/crates.io-index" 1200 + checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" 1201 + dependencies = [ 1202 + "libc", 1203 + "windows-sys 0.60.2", 1204 + ] 1205 + 1206 + [[package]] 1207 + name = "stable_deref_trait" 1208 + version = "1.2.1" 1209 + source = "registry+https://github.com/rust-lang/crates.io-index" 1210 + checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" 1211 + 1212 + [[package]] 1213 + name = "string_cache" 1214 + version = "0.8.9" 1215 + source = "registry+https://github.com/rust-lang/crates.io-index" 1216 + checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f" 1217 + dependencies = [ 1218 + "new_debug_unreachable", 1219 + "parking_lot", 1220 + "phf_shared", 1221 + "precomputed-hash", 1222 + "serde", 1223 + ] 1224 + 1225 + [[package]] 1226 + name = "string_cache_codegen" 1227 + version = "0.5.4" 1228 + source = "registry+https://github.com/rust-lang/crates.io-index" 1229 + checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0" 1230 + dependencies = [ 1231 + "phf_generator", 1232 + "phf_shared", 1233 + "proc-macro2", 1234 + "quote", 1235 + ] 1236 + 1237 + [[package]] 1238 + name = "subtle" 1239 + version = "2.6.1" 1240 + source = "registry+https://github.com/rust-lang/crates.io-index" 1241 + checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 1242 + 1243 + [[package]] 1244 + name = "syn" 1245 + version = "2.0.108" 1246 + source = "registry+https://github.com/rust-lang/crates.io-index" 1247 + checksum = "da58917d35242480a05c2897064da0a80589a2a0476c9a3f2fdc83b53502e917" 1248 + dependencies = [ 1249 + "proc-macro2", 1250 + "quote", 1251 + "unicode-ident", 1252 + ] 1253 + 1254 + [[package]] 1255 + name = "sync_wrapper" 1256 + version = "1.0.2" 1257 + source = "registry+https://github.com/rust-lang/crates.io-index" 1258 + checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 1259 + dependencies = [ 1260 + "futures-core", 1261 + ] 1262 + 1263 + [[package]] 1264 + name = "synstructure" 1265 + version = "0.13.2" 1266 + source = "registry+https://github.com/rust-lang/crates.io-index" 1267 + checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 1268 + dependencies = [ 1269 + "proc-macro2", 1270 + "quote", 1271 + "syn", 1272 + ] 1273 + 1274 + [[package]] 1275 + name = "system-configuration" 1276 + version = "0.6.1" 1277 + source = "registry+https://github.com/rust-lang/crates.io-index" 1278 + checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" 1279 + dependencies = [ 1280 + "bitflags", 1281 + "core-foundation", 1282 + "system-configuration-sys", 1283 + ] 1284 + 1285 + [[package]] 1286 + name = "system-configuration-sys" 1287 + version = "0.6.0" 1288 + source = "registry+https://github.com/rust-lang/crates.io-index" 1289 + checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" 1290 + dependencies = [ 1291 + "core-foundation-sys", 1292 + "libc", 1293 + ] 1294 + 1295 + [[package]] 1296 + name = "tempfile" 1297 + version = "3.23.0" 1298 + source = "registry+https://github.com/rust-lang/crates.io-index" 1299 + checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16" 1300 + dependencies = [ 1301 + "fastrand", 1302 + "getrandom 0.3.4", 1303 + "once_cell", 1304 + "rustix", 1305 + "windows-sys 0.61.2", 1306 + ] 1307 + 1308 + [[package]] 1309 + name = "tendril" 1310 + version = "0.4.3" 1311 + source = "registry+https://github.com/rust-lang/crates.io-index" 1312 + checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 1313 + dependencies = [ 1314 + "futf", 1315 + "mac", 1316 + "utf-8", 1317 + ] 1318 + 1319 + [[package]] 1320 + name = "tinystr" 1321 + version = "0.8.2" 1322 + source = "registry+https://github.com/rust-lang/crates.io-index" 1323 + checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" 1324 + dependencies = [ 1325 + "displaydoc", 1326 + "zerovec", 1327 + ] 1328 + 1329 + [[package]] 1330 + name = "tokio" 1331 + version = "1.48.0" 1332 + source = "registry+https://github.com/rust-lang/crates.io-index" 1333 + checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408" 1334 + dependencies = [ 1335 + "bytes", 1336 + "libc", 1337 + "mio", 1338 + "pin-project-lite", 1339 + "socket2", 1340 + "windows-sys 0.61.2", 1341 + ] 1342 + 1343 + [[package]] 1344 + name = "tokio-native-tls" 1345 + version = "0.3.1" 1346 + source = "registry+https://github.com/rust-lang/crates.io-index" 1347 + checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 1348 + dependencies = [ 1349 + "native-tls", 1350 + "tokio", 1351 + ] 1352 + 1353 + [[package]] 1354 + name = "tokio-rustls" 1355 + version = "0.26.4" 1356 + source = "registry+https://github.com/rust-lang/crates.io-index" 1357 + checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" 1358 + dependencies = [ 1359 + "rustls", 1360 + "tokio", 1361 + ] 1362 + 1363 + [[package]] 1364 + name = "tokio-util" 1365 + version = "0.7.17" 1366 + source = "registry+https://github.com/rust-lang/crates.io-index" 1367 + checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594" 1368 + dependencies = [ 1369 + "bytes", 1370 + "futures-core", 1371 + "futures-sink", 1372 + "pin-project-lite", 1373 + "tokio", 1374 + ] 1375 + 1376 + [[package]] 1377 + name = "tower" 1378 + version = "0.5.2" 1379 + source = "registry+https://github.com/rust-lang/crates.io-index" 1380 + checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" 1381 + dependencies = [ 1382 + "futures-core", 1383 + "futures-util", 1384 + "pin-project-lite", 1385 + "sync_wrapper", 1386 + "tokio", 1387 + "tower-layer", 1388 + "tower-service", 1389 + ] 1390 + 1391 + [[package]] 1392 + name = "tower-http" 1393 + version = "0.6.6" 1394 + source = "registry+https://github.com/rust-lang/crates.io-index" 1395 + checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2" 1396 + dependencies = [ 1397 + "bitflags", 1398 + "bytes", 1399 + "futures-util", 1400 + "http", 1401 + "http-body", 1402 + "iri-string", 1403 + "pin-project-lite", 1404 + "tower", 1405 + "tower-layer", 1406 + "tower-service", 1407 + ] 1408 + 1409 + [[package]] 1410 + name = "tower-layer" 1411 + version = "0.3.3" 1412 + source = "registry+https://github.com/rust-lang/crates.io-index" 1413 + checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 1414 + 1415 + [[package]] 1416 + name = "tower-service" 1417 + version = "0.3.3" 1418 + source = "registry+https://github.com/rust-lang/crates.io-index" 1419 + checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 1420 + 1421 + [[package]] 1422 + name = "tracing" 1423 + version = "0.1.41" 1424 + source = "registry+https://github.com/rust-lang/crates.io-index" 1425 + checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 1426 + dependencies = [ 1427 + "pin-project-lite", 1428 + "tracing-core", 1429 + ] 1430 + 1431 + [[package]] 1432 + name = "tracing-core" 1433 + version = "0.1.34" 1434 + source = "registry+https://github.com/rust-lang/crates.io-index" 1435 + checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" 1436 + dependencies = [ 1437 + "once_cell", 1438 + ] 1439 + 1440 + [[package]] 1441 + name = "try-lock" 1442 + version = "0.2.5" 1443 + source = "registry+https://github.com/rust-lang/crates.io-index" 1444 + checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 1445 + 1446 + [[package]] 1447 + name = "unicode-ident" 1448 + version = "1.0.22" 1449 + source = "registry+https://github.com/rust-lang/crates.io-index" 1450 + checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" 1451 + 1452 + [[package]] 1453 + name = "unicode-width" 1454 + version = "0.2.2" 1455 + source = "registry+https://github.com/rust-lang/crates.io-index" 1456 + checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" 1457 + 1458 + [[package]] 1459 + name = "untrusted" 1460 + version = "0.9.0" 1461 + source = "registry+https://github.com/rust-lang/crates.io-index" 1462 + checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 1463 + 1464 + [[package]] 1465 + name = "url" 1466 + version = "2.5.7" 1467 + source = "registry+https://github.com/rust-lang/crates.io-index" 1468 + checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" 1469 + dependencies = [ 1470 + "form_urlencoded", 1471 + "idna", 1472 + "percent-encoding", 1473 + "serde", 1474 + ] 1475 + 1476 + [[package]] 1477 + name = "utf-8" 1478 + version = "0.7.6" 1479 + source = "registry+https://github.com/rust-lang/crates.io-index" 1480 + checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 1481 + 1482 + [[package]] 1483 + name = "utf8_iter" 1484 + version = "1.0.4" 1485 + source = "registry+https://github.com/rust-lang/crates.io-index" 1486 + checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 1487 + 1488 + [[package]] 1489 + name = "vcpkg" 1490 + version = "0.2.15" 1491 + source = "registry+https://github.com/rust-lang/crates.io-index" 1492 + checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 1493 + 1494 + [[package]] 1495 + name = "want" 1496 + version = "0.3.1" 1497 + source = "registry+https://github.com/rust-lang/crates.io-index" 1498 + checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 1499 + dependencies = [ 1500 + "try-lock", 1501 + ] 1502 + 1503 + [[package]] 1504 + name = "wasi" 1505 + version = "0.11.1+wasi-snapshot-preview1" 1506 + source = "registry+https://github.com/rust-lang/crates.io-index" 1507 + checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 1508 + 1509 + [[package]] 1510 + name = "wasip2" 1511 + version = "1.0.1+wasi-0.2.4" 1512 + source = "registry+https://github.com/rust-lang/crates.io-index" 1513 + checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" 1514 + dependencies = [ 1515 + "wit-bindgen", 1516 + ] 1517 + 1518 + [[package]] 1519 + name = "wasm-bindgen" 1520 + version = "0.2.105" 1521 + source = "registry+https://github.com/rust-lang/crates.io-index" 1522 + checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60" 1523 + dependencies = [ 1524 + "cfg-if", 1525 + "once_cell", 1526 + "rustversion", 1527 + "wasm-bindgen-macro", 1528 + "wasm-bindgen-shared", 1529 + ] 1530 + 1531 + [[package]] 1532 + name = "wasm-bindgen-futures" 1533 + version = "0.4.55" 1534 + source = "registry+https://github.com/rust-lang/crates.io-index" 1535 + checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0" 1536 + dependencies = [ 1537 + "cfg-if", 1538 + "js-sys", 1539 + "once_cell", 1540 + "wasm-bindgen", 1541 + "web-sys", 1542 + ] 1543 + 1544 + [[package]] 1545 + name = "wasm-bindgen-macro" 1546 + version = "0.2.105" 1547 + source = "registry+https://github.com/rust-lang/crates.io-index" 1548 + checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2" 1549 + dependencies = [ 1550 + "quote", 1551 + "wasm-bindgen-macro-support", 1552 + ] 1553 + 1554 + [[package]] 1555 + name = "wasm-bindgen-macro-support" 1556 + version = "0.2.105" 1557 + source = "registry+https://github.com/rust-lang/crates.io-index" 1558 + checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc" 1559 + dependencies = [ 1560 + "bumpalo", 1561 + "proc-macro2", 1562 + "quote", 1563 + "syn", 1564 + "wasm-bindgen-shared", 1565 + ] 1566 + 1567 + [[package]] 1568 + name = "wasm-bindgen-shared" 1569 + version = "0.2.105" 1570 + source = "registry+https://github.com/rust-lang/crates.io-index" 1571 + checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76" 1572 + dependencies = [ 1573 + "unicode-ident", 1574 + ] 1575 + 1576 + [[package]] 1577 + name = "web-sys" 1578 + version = "0.3.82" 1579 + source = "registry+https://github.com/rust-lang/crates.io-index" 1580 + checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1" 1581 + dependencies = [ 1582 + "js-sys", 1583 + "wasm-bindgen", 1584 + ] 1585 + 1586 + [[package]] 1587 + name = "web_atoms" 1588 + version = "0.1.3" 1589 + source = "registry+https://github.com/rust-lang/crates.io-index" 1590 + checksum = "57ffde1dc01240bdf9992e3205668b235e59421fd085e8a317ed98da0178d414" 1591 + dependencies = [ 1592 + "phf", 1593 + "phf_codegen", 1594 + "string_cache", 1595 + "string_cache_codegen", 1596 + ] 1597 + 1598 + [[package]] 6 1599 name = "webring_mapper" 7 1600 version = "0.1.0" 1601 + dependencies = [ 1602 + "reqwest", 1603 + "scraper", 1604 + ] 1605 + 1606 + [[package]] 1607 + name = "windows-link" 1608 + version = "0.1.3" 1609 + source = "registry+https://github.com/rust-lang/crates.io-index" 1610 + checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" 1611 + 1612 + [[package]] 1613 + name = "windows-link" 1614 + version = "0.2.1" 1615 + source = "registry+https://github.com/rust-lang/crates.io-index" 1616 + checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 1617 + 1618 + [[package]] 1619 + name = "windows-registry" 1620 + version = "0.5.3" 1621 + source = "registry+https://github.com/rust-lang/crates.io-index" 1622 + checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e" 1623 + dependencies = [ 1624 + "windows-link 0.1.3", 1625 + "windows-result", 1626 + "windows-strings", 1627 + ] 1628 + 1629 + [[package]] 1630 + name = "windows-result" 1631 + version = "0.3.4" 1632 + source = "registry+https://github.com/rust-lang/crates.io-index" 1633 + checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" 1634 + dependencies = [ 1635 + "windows-link 0.1.3", 1636 + ] 1637 + 1638 + [[package]] 1639 + name = "windows-strings" 1640 + version = "0.4.2" 1641 + source = "registry+https://github.com/rust-lang/crates.io-index" 1642 + checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" 1643 + dependencies = [ 1644 + "windows-link 0.1.3", 1645 + ] 1646 + 1647 + [[package]] 1648 + name = "windows-sys" 1649 + version = "0.52.0" 1650 + source = "registry+https://github.com/rust-lang/crates.io-index" 1651 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 1652 + dependencies = [ 1653 + "windows-targets 0.52.6", 1654 + ] 1655 + 1656 + [[package]] 1657 + name = "windows-sys" 1658 + version = "0.60.2" 1659 + source = "registry+https://github.com/rust-lang/crates.io-index" 1660 + checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 1661 + dependencies = [ 1662 + "windows-targets 0.53.5", 1663 + ] 1664 + 1665 + [[package]] 1666 + name = "windows-sys" 1667 + version = "0.61.2" 1668 + source = "registry+https://github.com/rust-lang/crates.io-index" 1669 + checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 1670 + dependencies = [ 1671 + "windows-link 0.2.1", 1672 + ] 1673 + 1674 + [[package]] 1675 + name = "windows-targets" 1676 + version = "0.52.6" 1677 + source = "registry+https://github.com/rust-lang/crates.io-index" 1678 + checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 1679 + dependencies = [ 1680 + "windows_aarch64_gnullvm 0.52.6", 1681 + "windows_aarch64_msvc 0.52.6", 1682 + "windows_i686_gnu 0.52.6", 1683 + "windows_i686_gnullvm 0.52.6", 1684 + "windows_i686_msvc 0.52.6", 1685 + "windows_x86_64_gnu 0.52.6", 1686 + "windows_x86_64_gnullvm 0.52.6", 1687 + "windows_x86_64_msvc 0.52.6", 1688 + ] 1689 + 1690 + [[package]] 1691 + name = "windows-targets" 1692 + version = "0.53.5" 1693 + source = "registry+https://github.com/rust-lang/crates.io-index" 1694 + checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 1695 + dependencies = [ 1696 + "windows-link 0.2.1", 1697 + "windows_aarch64_gnullvm 0.53.1", 1698 + "windows_aarch64_msvc 0.53.1", 1699 + "windows_i686_gnu 0.53.1", 1700 + "windows_i686_gnullvm 0.53.1", 1701 + "windows_i686_msvc 0.53.1", 1702 + "windows_x86_64_gnu 0.53.1", 1703 + "windows_x86_64_gnullvm 0.53.1", 1704 + "windows_x86_64_msvc 0.53.1", 1705 + ] 1706 + 1707 + [[package]] 1708 + name = "windows_aarch64_gnullvm" 1709 + version = "0.52.6" 1710 + source = "registry+https://github.com/rust-lang/crates.io-index" 1711 + checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 1712 + 1713 + [[package]] 1714 + name = "windows_aarch64_gnullvm" 1715 + version = "0.53.1" 1716 + source = "registry+https://github.com/rust-lang/crates.io-index" 1717 + checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" 1718 + 1719 + [[package]] 1720 + name = "windows_aarch64_msvc" 1721 + version = "0.52.6" 1722 + source = "registry+https://github.com/rust-lang/crates.io-index" 1723 + checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 1724 + 1725 + [[package]] 1726 + name = "windows_aarch64_msvc" 1727 + version = "0.53.1" 1728 + source = "registry+https://github.com/rust-lang/crates.io-index" 1729 + checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 1730 + 1731 + [[package]] 1732 + name = "windows_i686_gnu" 1733 + version = "0.52.6" 1734 + source = "registry+https://github.com/rust-lang/crates.io-index" 1735 + checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 1736 + 1737 + [[package]] 1738 + name = "windows_i686_gnu" 1739 + version = "0.53.1" 1740 + source = "registry+https://github.com/rust-lang/crates.io-index" 1741 + checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" 1742 + 1743 + [[package]] 1744 + name = "windows_i686_gnullvm" 1745 + version = "0.52.6" 1746 + source = "registry+https://github.com/rust-lang/crates.io-index" 1747 + checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 1748 + 1749 + [[package]] 1750 + name = "windows_i686_gnullvm" 1751 + version = "0.53.1" 1752 + source = "registry+https://github.com/rust-lang/crates.io-index" 1753 + checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" 1754 + 1755 + [[package]] 1756 + name = "windows_i686_msvc" 1757 + version = "0.52.6" 1758 + source = "registry+https://github.com/rust-lang/crates.io-index" 1759 + checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 1760 + 1761 + [[package]] 1762 + name = "windows_i686_msvc" 1763 + version = "0.53.1" 1764 + source = "registry+https://github.com/rust-lang/crates.io-index" 1765 + checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 1766 + 1767 + [[package]] 1768 + name = "windows_x86_64_gnu" 1769 + version = "0.52.6" 1770 + source = "registry+https://github.com/rust-lang/crates.io-index" 1771 + checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 1772 + 1773 + [[package]] 1774 + name = "windows_x86_64_gnu" 1775 + version = "0.53.1" 1776 + source = "registry+https://github.com/rust-lang/crates.io-index" 1777 + checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" 1778 + 1779 + [[package]] 1780 + name = "windows_x86_64_gnullvm" 1781 + version = "0.52.6" 1782 + source = "registry+https://github.com/rust-lang/crates.io-index" 1783 + checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 1784 + 1785 + [[package]] 1786 + name = "windows_x86_64_gnullvm" 1787 + version = "0.53.1" 1788 + source = "registry+https://github.com/rust-lang/crates.io-index" 1789 + checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" 1790 + 1791 + [[package]] 1792 + name = "windows_x86_64_msvc" 1793 + version = "0.52.6" 1794 + source = "registry+https://github.com/rust-lang/crates.io-index" 1795 + checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 1796 + 1797 + [[package]] 1798 + name = "windows_x86_64_msvc" 1799 + version = "0.53.1" 1800 + source = "registry+https://github.com/rust-lang/crates.io-index" 1801 + checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" 1802 + 1803 + [[package]] 1804 + name = "wit-bindgen" 1805 + version = "0.46.0" 1806 + source = "registry+https://github.com/rust-lang/crates.io-index" 1807 + checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" 1808 + 1809 + [[package]] 1810 + name = "writeable" 1811 + version = "0.6.2" 1812 + source = "registry+https://github.com/rust-lang/crates.io-index" 1813 + checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" 1814 + 1815 + [[package]] 1816 + name = "yoke" 1817 + version = "0.8.1" 1818 + source = "registry+https://github.com/rust-lang/crates.io-index" 1819 + checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" 1820 + dependencies = [ 1821 + "stable_deref_trait", 1822 + "yoke-derive", 1823 + "zerofrom", 1824 + ] 1825 + 1826 + [[package]] 1827 + name = "yoke-derive" 1828 + version = "0.8.1" 1829 + source = "registry+https://github.com/rust-lang/crates.io-index" 1830 + checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" 1831 + dependencies = [ 1832 + "proc-macro2", 1833 + "quote", 1834 + "syn", 1835 + "synstructure", 1836 + ] 1837 + 1838 + [[package]] 1839 + name = "zerofrom" 1840 + version = "0.1.6" 1841 + source = "registry+https://github.com/rust-lang/crates.io-index" 1842 + checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 1843 + dependencies = [ 1844 + "zerofrom-derive", 1845 + ] 1846 + 1847 + [[package]] 1848 + name = "zerofrom-derive" 1849 + version = "0.1.6" 1850 + source = "registry+https://github.com/rust-lang/crates.io-index" 1851 + checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 1852 + dependencies = [ 1853 + "proc-macro2", 1854 + "quote", 1855 + "syn", 1856 + "synstructure", 1857 + ] 1858 + 1859 + [[package]] 1860 + name = "zeroize" 1861 + version = "1.8.2" 1862 + source = "registry+https://github.com/rust-lang/crates.io-index" 1863 + checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" 1864 + 1865 + [[package]] 1866 + name = "zerotrie" 1867 + version = "0.2.3" 1868 + source = "registry+https://github.com/rust-lang/crates.io-index" 1869 + checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" 1870 + dependencies = [ 1871 + "displaydoc", 1872 + "yoke", 1873 + "zerofrom", 1874 + ] 1875 + 1876 + [[package]] 1877 + name = "zerovec" 1878 + version = "0.11.5" 1879 + source = "registry+https://github.com/rust-lang/crates.io-index" 1880 + checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" 1881 + dependencies = [ 1882 + "yoke", 1883 + "zerofrom", 1884 + "zerovec-derive", 1885 + ] 1886 + 1887 + [[package]] 1888 + name = "zerovec-derive" 1889 + version = "0.11.2" 1890 + source = "registry+https://github.com/rust-lang/crates.io-index" 1891 + checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" 1892 + dependencies = [ 1893 + "proc-macro2", 1894 + "quote", 1895 + "syn", 1896 + ]
+2
Cargo.toml
··· 4 4 edition = "2024" 5 5 6 6 [dependencies] 7 + reqwest = "0.12" 8 + scraper = "0.24"
+1
flake.nix
··· 17 17 fe_pkgs = fenix.packages.${system}; 18 18 19 19 librarys = with pkgs; [ 20 + openssl 20 21 ]; 21 22 in { 22 23 devShells.${system}.default = pkgs.mkShell {
+1 -1
src/main.rs
··· 1 1 fn main() { 2 - println!("Hello, world!"); 2 + println!("{}", webring_mapper::USER_AGENT); 3 3 }