Subscriptions panel
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Initial commit

j0.lol b1d01e91

+3100
+4
.gitignore
··· 1 + /target 2 + 3 + *.db3* 4 + rustypipe_cache.json
+2823
Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 4 4 + 5 + [[package]] 6 + name = "adler2" 7 + version = "2.0.1" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" 10 + 11 + [[package]] 12 + name = "aead" 13 + version = "0.5.2" 14 + source = "registry+https://github.com/rust-lang/crates.io-index" 15 + checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" 16 + dependencies = [ 17 + "crypto-common", 18 + "generic-array", 19 + ] 20 + 21 + [[package]] 22 + name = "aes" 23 + version = "0.8.4" 24 + source = "registry+https://github.com/rust-lang/crates.io-index" 25 + checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" 26 + dependencies = [ 27 + "cfg-if", 28 + "cipher", 29 + "cpufeatures", 30 + ] 31 + 32 + [[package]] 33 + name = "aes-gcm" 34 + version = "0.10.3" 35 + source = "registry+https://github.com/rust-lang/crates.io-index" 36 + checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" 37 + dependencies = [ 38 + "aead", 39 + "aes", 40 + "cipher", 41 + "ctr", 42 + "ghash", 43 + "subtle", 44 + ] 45 + 46 + [[package]] 47 + name = "aho-corasick" 48 + version = "1.1.4" 49 + source = "registry+https://github.com/rust-lang/crates.io-index" 50 + checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" 51 + dependencies = [ 52 + "memchr", 53 + ] 54 + 55 + [[package]] 56 + name = "alloc-no-stdlib" 57 + version = "2.0.4" 58 + source = "registry+https://github.com/rust-lang/crates.io-index" 59 + checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 60 + 61 + [[package]] 62 + name = "alloc-stdlib" 63 + version = "0.2.2" 64 + source = "registry+https://github.com/rust-lang/crates.io-index" 65 + checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 66 + dependencies = [ 67 + "alloc-no-stdlib", 68 + ] 69 + 70 + [[package]] 71 + name = "android_system_properties" 72 + version = "0.1.5" 73 + source = "registry+https://github.com/rust-lang/crates.io-index" 74 + checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 75 + dependencies = [ 76 + "libc", 77 + ] 78 + 79 + [[package]] 80 + name = "anstream" 81 + version = "0.6.21" 82 + source = "registry+https://github.com/rust-lang/crates.io-index" 83 + checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a" 84 + dependencies = [ 85 + "anstyle", 86 + "anstyle-parse", 87 + "anstyle-query", 88 + "anstyle-wincon", 89 + "colorchoice", 90 + "is_terminal_polyfill", 91 + "utf8parse", 92 + ] 93 + 94 + [[package]] 95 + name = "anstyle" 96 + version = "1.0.13" 97 + source = "registry+https://github.com/rust-lang/crates.io-index" 98 + checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78" 99 + 100 + [[package]] 101 + name = "anstyle-parse" 102 + version = "0.2.7" 103 + source = "registry+https://github.com/rust-lang/crates.io-index" 104 + checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" 105 + dependencies = [ 106 + "utf8parse", 107 + ] 108 + 109 + [[package]] 110 + name = "anstyle-query" 111 + version = "1.1.5" 112 + source = "registry+https://github.com/rust-lang/crates.io-index" 113 + checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" 114 + dependencies = [ 115 + "windows-sys 0.61.2", 116 + ] 117 + 118 + [[package]] 119 + name = "anstyle-wincon" 120 + version = "3.0.11" 121 + source = "registry+https://github.com/rust-lang/crates.io-index" 122 + checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" 123 + dependencies = [ 124 + "anstyle", 125 + "once_cell_polyfill", 126 + "windows-sys 0.61.2", 127 + ] 128 + 129 + [[package]] 130 + name = "async-compression" 131 + version = "0.4.36" 132 + source = "registry+https://github.com/rust-lang/crates.io-index" 133 + checksum = "98ec5f6c2f8bc326c994cb9e241cc257ddaba9afa8555a43cffbb5dd86efaa37" 134 + dependencies = [ 135 + "compression-codecs", 136 + "compression-core", 137 + "futures-core", 138 + "pin-project-lite", 139 + "tokio", 140 + ] 141 + 142 + [[package]] 143 + name = "atomic-waker" 144 + version = "1.1.2" 145 + source = "registry+https://github.com/rust-lang/crates.io-index" 146 + checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 147 + 148 + [[package]] 149 + name = "autocfg" 150 + version = "1.5.0" 151 + source = "registry+https://github.com/rust-lang/crates.io-index" 152 + checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 153 + 154 + [[package]] 155 + name = "base64" 156 + version = "0.22.1" 157 + source = "registry+https://github.com/rust-lang/crates.io-index" 158 + checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 159 + 160 + [[package]] 161 + name = "bit-set" 162 + version = "0.8.0" 163 + source = "registry+https://github.com/rust-lang/crates.io-index" 164 + checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" 165 + dependencies = [ 166 + "bit-vec", 167 + ] 168 + 169 + [[package]] 170 + name = "bit-vec" 171 + version = "0.8.0" 172 + source = "registry+https://github.com/rust-lang/crates.io-index" 173 + checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" 174 + 175 + [[package]] 176 + name = "bitflags" 177 + version = "2.10.0" 178 + source = "registry+https://github.com/rust-lang/crates.io-index" 179 + checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" 180 + 181 + [[package]] 182 + name = "block-buffer" 183 + version = "0.10.4" 184 + source = "registry+https://github.com/rust-lang/crates.io-index" 185 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 186 + dependencies = [ 187 + "generic-array", 188 + ] 189 + 190 + [[package]] 191 + name = "brotli" 192 + version = "8.0.2" 193 + source = "registry+https://github.com/rust-lang/crates.io-index" 194 + checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560" 195 + dependencies = [ 196 + "alloc-no-stdlib", 197 + "alloc-stdlib", 198 + "brotli-decompressor", 199 + ] 200 + 201 + [[package]] 202 + name = "brotli-decompressor" 203 + version = "5.0.0" 204 + source = "registry+https://github.com/rust-lang/crates.io-index" 205 + checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03" 206 + dependencies = [ 207 + "alloc-no-stdlib", 208 + "alloc-stdlib", 209 + ] 210 + 211 + [[package]] 212 + name = "bumpalo" 213 + version = "3.19.1" 214 + source = "registry+https://github.com/rust-lang/crates.io-index" 215 + checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510" 216 + 217 + [[package]] 218 + name = "bytes" 219 + version = "1.11.0" 220 + source = "registry+https://github.com/rust-lang/crates.io-index" 221 + checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3" 222 + 223 + [[package]] 224 + name = "cc" 225 + version = "1.2.49" 226 + source = "registry+https://github.com/rust-lang/crates.io-index" 227 + checksum = "90583009037521a116abf44494efecd645ba48b6622457080f080b85544e2215" 228 + dependencies = [ 229 + "find-msvc-tools", 230 + "shlex", 231 + ] 232 + 233 + [[package]] 234 + name = "cfg-if" 235 + version = "1.0.4" 236 + source = "registry+https://github.com/rust-lang/crates.io-index" 237 + checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 238 + 239 + [[package]] 240 + name = "cfg_aliases" 241 + version = "0.2.1" 242 + source = "registry+https://github.com/rust-lang/crates.io-index" 243 + checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 244 + 245 + [[package]] 246 + name = "chrono" 247 + version = "0.4.42" 248 + source = "registry+https://github.com/rust-lang/crates.io-index" 249 + checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" 250 + dependencies = [ 251 + "iana-time-zone", 252 + "num-traits", 253 + "serde", 254 + "windows-link", 255 + ] 256 + 257 + [[package]] 258 + name = "cipher" 259 + version = "0.4.4" 260 + source = "registry+https://github.com/rust-lang/crates.io-index" 261 + checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 262 + dependencies = [ 263 + "crypto-common", 264 + "inout", 265 + ] 266 + 267 + [[package]] 268 + name = "colorchoice" 269 + version = "1.0.4" 270 + source = "registry+https://github.com/rust-lang/crates.io-index" 271 + checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" 272 + 273 + [[package]] 274 + name = "compression-codecs" 275 + version = "0.4.35" 276 + source = "registry+https://github.com/rust-lang/crates.io-index" 277 + checksum = "b0f7ac3e5b97fdce45e8922fb05cae2c37f7bbd63d30dd94821dacfd8f3f2bf2" 278 + dependencies = [ 279 + "brotli", 280 + "compression-core", 281 + "flate2", 282 + "memchr", 283 + ] 284 + 285 + [[package]] 286 + name = "compression-core" 287 + version = "0.4.31" 288 + source = "registry+https://github.com/rust-lang/crates.io-index" 289 + checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d" 290 + 291 + [[package]] 292 + name = "cookie" 293 + version = "0.18.1" 294 + source = "registry+https://github.com/rust-lang/crates.io-index" 295 + checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" 296 + dependencies = [ 297 + "aes-gcm", 298 + "base64", 299 + "hkdf", 300 + "hmac", 301 + "percent-encoding", 302 + "rand 0.8.5", 303 + "sha2", 304 + "subtle", 305 + "time", 306 + "version_check", 307 + ] 308 + 309 + [[package]] 310 + name = "core-foundation-sys" 311 + version = "0.8.7" 312 + source = "registry+https://github.com/rust-lang/crates.io-index" 313 + checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 314 + 315 + [[package]] 316 + name = "cpufeatures" 317 + version = "0.2.17" 318 + source = "registry+https://github.com/rust-lang/crates.io-index" 319 + checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 320 + dependencies = [ 321 + "libc", 322 + ] 323 + 324 + [[package]] 325 + name = "crc32fast" 326 + version = "1.5.0" 327 + source = "registry+https://github.com/rust-lang/crates.io-index" 328 + checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" 329 + dependencies = [ 330 + "cfg-if", 331 + ] 332 + 333 + [[package]] 334 + name = "crypto-common" 335 + version = "0.1.7" 336 + source = "registry+https://github.com/rust-lang/crates.io-index" 337 + checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" 338 + dependencies = [ 339 + "generic-array", 340 + "rand_core 0.6.4", 341 + "typenum", 342 + ] 343 + 344 + [[package]] 345 + name = "ctr" 346 + version = "0.9.2" 347 + source = "registry+https://github.com/rust-lang/crates.io-index" 348 + checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" 349 + dependencies = [ 350 + "cipher", 351 + ] 352 + 353 + [[package]] 354 + name = "darling" 355 + version = "0.21.3" 356 + source = "registry+https://github.com/rust-lang/crates.io-index" 357 + checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0" 358 + dependencies = [ 359 + "darling_core", 360 + "darling_macro", 361 + ] 362 + 363 + [[package]] 364 + name = "darling_core" 365 + version = "0.21.3" 366 + source = "registry+https://github.com/rust-lang/crates.io-index" 367 + checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4" 368 + dependencies = [ 369 + "fnv", 370 + "ident_case", 371 + "proc-macro2", 372 + "quote", 373 + "strsim", 374 + "syn", 375 + ] 376 + 377 + [[package]] 378 + name = "darling_macro" 379 + version = "0.21.3" 380 + source = "registry+https://github.com/rust-lang/crates.io-index" 381 + checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81" 382 + dependencies = [ 383 + "darling_core", 384 + "quote", 385 + "syn", 386 + ] 387 + 388 + [[package]] 389 + name = "data-encoding" 390 + version = "2.9.0" 391 + source = "registry+https://github.com/rust-lang/crates.io-index" 392 + checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" 393 + 394 + [[package]] 395 + name = "deranged" 396 + version = "0.5.5" 397 + source = "registry+https://github.com/rust-lang/crates.io-index" 398 + checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587" 399 + dependencies = [ 400 + "powerfmt", 401 + "serde_core", 402 + ] 403 + 404 + [[package]] 405 + name = "digest" 406 + version = "0.10.7" 407 + source = "registry+https://github.com/rust-lang/crates.io-index" 408 + checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 409 + dependencies = [ 410 + "block-buffer", 411 + "crypto-common", 412 + "subtle", 413 + ] 414 + 415 + [[package]] 416 + name = "displaydoc" 417 + version = "0.2.5" 418 + source = "registry+https://github.com/rust-lang/crates.io-index" 419 + checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 420 + dependencies = [ 421 + "proc-macro2", 422 + "quote", 423 + "syn", 424 + ] 425 + 426 + [[package]] 427 + name = "env_filter" 428 + version = "0.1.4" 429 + source = "registry+https://github.com/rust-lang/crates.io-index" 430 + checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2" 431 + dependencies = [ 432 + "log", 433 + "regex", 434 + ] 435 + 436 + [[package]] 437 + name = "env_logger" 438 + version = "0.11.8" 439 + source = "registry+https://github.com/rust-lang/crates.io-index" 440 + checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f" 441 + dependencies = [ 442 + "anstream", 443 + "anstyle", 444 + "env_filter", 445 + "jiff", 446 + "log", 447 + ] 448 + 449 + [[package]] 450 + name = "equivalent" 451 + version = "1.0.2" 452 + source = "registry+https://github.com/rust-lang/crates.io-index" 453 + checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 454 + 455 + [[package]] 456 + name = "fallible-iterator" 457 + version = "0.3.0" 458 + source = "registry+https://github.com/rust-lang/crates.io-index" 459 + checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649" 460 + 461 + [[package]] 462 + name = "fallible-streaming-iterator" 463 + version = "0.1.9" 464 + source = "registry+https://github.com/rust-lang/crates.io-index" 465 + checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" 466 + 467 + [[package]] 468 + name = "fancy-regex" 469 + version = "0.14.0" 470 + source = "registry+https://github.com/rust-lang/crates.io-index" 471 + checksum = "6e24cb5a94bcae1e5408b0effca5cd7172ea3c5755049c5f3af4cd283a165298" 472 + dependencies = [ 473 + "bit-set", 474 + "regex-automata", 475 + "regex-syntax", 476 + ] 477 + 478 + [[package]] 479 + name = "find-msvc-tools" 480 + version = "0.1.5" 481 + source = "registry+https://github.com/rust-lang/crates.io-index" 482 + checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844" 483 + 484 + [[package]] 485 + name = "flate2" 486 + version = "1.1.5" 487 + source = "registry+https://github.com/rust-lang/crates.io-index" 488 + checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb" 489 + dependencies = [ 490 + "crc32fast", 491 + "miniz_oxide", 492 + ] 493 + 494 + [[package]] 495 + name = "fnv" 496 + version = "1.0.7" 497 + source = "registry+https://github.com/rust-lang/crates.io-index" 498 + checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 499 + 500 + [[package]] 501 + name = "foldhash" 502 + version = "0.1.5" 503 + source = "registry+https://github.com/rust-lang/crates.io-index" 504 + checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" 505 + 506 + [[package]] 507 + name = "form_urlencoded" 508 + version = "1.2.2" 509 + source = "registry+https://github.com/rust-lang/crates.io-index" 510 + checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 511 + dependencies = [ 512 + "percent-encoding", 513 + ] 514 + 515 + [[package]] 516 + name = "futures-channel" 517 + version = "0.3.31" 518 + source = "registry+https://github.com/rust-lang/crates.io-index" 519 + checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 520 + dependencies = [ 521 + "futures-core", 522 + ] 523 + 524 + [[package]] 525 + name = "futures-core" 526 + version = "0.3.31" 527 + source = "registry+https://github.com/rust-lang/crates.io-index" 528 + checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 529 + 530 + [[package]] 531 + name = "futures-macro" 532 + version = "0.3.31" 533 + source = "registry+https://github.com/rust-lang/crates.io-index" 534 + checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 535 + dependencies = [ 536 + "proc-macro2", 537 + "quote", 538 + "syn", 539 + ] 540 + 541 + [[package]] 542 + name = "futures-sink" 543 + version = "0.3.31" 544 + source = "registry+https://github.com/rust-lang/crates.io-index" 545 + checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 546 + 547 + [[package]] 548 + name = "futures-task" 549 + version = "0.3.31" 550 + source = "registry+https://github.com/rust-lang/crates.io-index" 551 + checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 552 + 553 + [[package]] 554 + name = "futures-util" 555 + version = "0.3.31" 556 + source = "registry+https://github.com/rust-lang/crates.io-index" 557 + checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 558 + dependencies = [ 559 + "futures-core", 560 + "futures-macro", 561 + "futures-sink", 562 + "futures-task", 563 + "pin-project-lite", 564 + "pin-utils", 565 + "slab", 566 + ] 567 + 568 + [[package]] 569 + name = "generic-array" 570 + version = "0.14.7" 571 + source = "registry+https://github.com/rust-lang/crates.io-index" 572 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 573 + dependencies = [ 574 + "typenum", 575 + "version_check", 576 + ] 577 + 578 + [[package]] 579 + name = "getrandom" 580 + version = "0.2.16" 581 + source = "registry+https://github.com/rust-lang/crates.io-index" 582 + checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" 583 + dependencies = [ 584 + "cfg-if", 585 + "js-sys", 586 + "libc", 587 + "wasi", 588 + "wasm-bindgen", 589 + ] 590 + 591 + [[package]] 592 + name = "getrandom" 593 + version = "0.3.4" 594 + source = "registry+https://github.com/rust-lang/crates.io-index" 595 + checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 596 + dependencies = [ 597 + "cfg-if", 598 + "js-sys", 599 + "libc", 600 + "r-efi", 601 + "wasip2", 602 + "wasm-bindgen", 603 + ] 604 + 605 + [[package]] 606 + name = "ghash" 607 + version = "0.5.1" 608 + source = "registry+https://github.com/rust-lang/crates.io-index" 609 + checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" 610 + dependencies = [ 611 + "opaque-debug", 612 + "polyval", 613 + ] 614 + 615 + [[package]] 616 + name = "h2" 617 + version = "0.4.12" 618 + source = "registry+https://github.com/rust-lang/crates.io-index" 619 + checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386" 620 + dependencies = [ 621 + "atomic-waker", 622 + "bytes", 623 + "fnv", 624 + "futures-core", 625 + "futures-sink", 626 + "http", 627 + "indexmap", 628 + "slab", 629 + "tokio", 630 + "tokio-util", 631 + "tracing", 632 + ] 633 + 634 + [[package]] 635 + name = "hashbrown" 636 + version = "0.15.5" 637 + source = "registry+https://github.com/rust-lang/crates.io-index" 638 + checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" 639 + dependencies = [ 640 + "foldhash", 641 + ] 642 + 643 + [[package]] 644 + name = "hashbrown" 645 + version = "0.16.1" 646 + source = "registry+https://github.com/rust-lang/crates.io-index" 647 + checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" 648 + 649 + [[package]] 650 + name = "hashlink" 651 + version = "0.10.0" 652 + source = "registry+https://github.com/rust-lang/crates.io-index" 653 + checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1" 654 + dependencies = [ 655 + "hashbrown 0.15.5", 656 + ] 657 + 658 + [[package]] 659 + name = "headers" 660 + version = "0.4.1" 661 + source = "registry+https://github.com/rust-lang/crates.io-index" 662 + checksum = "b3314d5adb5d94bcdf56771f2e50dbbc80bb4bdf88967526706205ac9eff24eb" 663 + dependencies = [ 664 + "base64", 665 + "bytes", 666 + "headers-core", 667 + "http", 668 + "httpdate", 669 + "mime", 670 + "sha1", 671 + ] 672 + 673 + [[package]] 674 + name = "headers-core" 675 + version = "0.3.0" 676 + source = "registry+https://github.com/rust-lang/crates.io-index" 677 + checksum = "54b4a22553d4242c49fddb9ba998a99962b5cc6f22cb5a3482bec22522403ce4" 678 + dependencies = [ 679 + "http", 680 + ] 681 + 682 + [[package]] 683 + name = "hex" 684 + version = "0.4.3" 685 + source = "registry+https://github.com/rust-lang/crates.io-index" 686 + checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 687 + 688 + [[package]] 689 + name = "hkdf" 690 + version = "0.12.4" 691 + source = "registry+https://github.com/rust-lang/crates.io-index" 692 + checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 693 + dependencies = [ 694 + "hmac", 695 + ] 696 + 697 + [[package]] 698 + name = "hmac" 699 + version = "0.12.1" 700 + source = "registry+https://github.com/rust-lang/crates.io-index" 701 + checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 702 + dependencies = [ 703 + "digest", 704 + ] 705 + 706 + [[package]] 707 + name = "http" 708 + version = "1.4.0" 709 + source = "registry+https://github.com/rust-lang/crates.io-index" 710 + checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" 711 + dependencies = [ 712 + "bytes", 713 + "itoa", 714 + ] 715 + 716 + [[package]] 717 + name = "http-body" 718 + version = "1.0.1" 719 + source = "registry+https://github.com/rust-lang/crates.io-index" 720 + checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 721 + dependencies = [ 722 + "bytes", 723 + "http", 724 + ] 725 + 726 + [[package]] 727 + name = "http-body-util" 728 + version = "0.1.3" 729 + source = "registry+https://github.com/rust-lang/crates.io-index" 730 + checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 731 + dependencies = [ 732 + "bytes", 733 + "futures-core", 734 + "http", 735 + "http-body", 736 + "pin-project-lite", 737 + ] 738 + 739 + [[package]] 740 + name = "httparse" 741 + version = "1.10.1" 742 + source = "registry+https://github.com/rust-lang/crates.io-index" 743 + checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 744 + 745 + [[package]] 746 + name = "httpdate" 747 + version = "1.0.3" 748 + source = "registry+https://github.com/rust-lang/crates.io-index" 749 + checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 750 + 751 + [[package]] 752 + name = "hyper" 753 + version = "1.8.1" 754 + source = "registry+https://github.com/rust-lang/crates.io-index" 755 + checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" 756 + dependencies = [ 757 + "atomic-waker", 758 + "bytes", 759 + "futures-channel", 760 + "futures-core", 761 + "h2", 762 + "http", 763 + "http-body", 764 + "httparse", 765 + "httpdate", 766 + "itoa", 767 + "pin-project-lite", 768 + "pin-utils", 769 + "smallvec", 770 + "tokio", 771 + "want", 772 + ] 773 + 774 + [[package]] 775 + name = "hyper-rustls" 776 + version = "0.27.7" 777 + source = "registry+https://github.com/rust-lang/crates.io-index" 778 + checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" 779 + dependencies = [ 780 + "http", 781 + "hyper", 782 + "hyper-util", 783 + "rustls", 784 + "rustls-pki-types", 785 + "tokio", 786 + "tokio-rustls", 787 + "tower-service", 788 + "webpki-roots", 789 + ] 790 + 791 + [[package]] 792 + name = "hyper-util" 793 + version = "0.1.19" 794 + source = "registry+https://github.com/rust-lang/crates.io-index" 795 + checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f" 796 + dependencies = [ 797 + "base64", 798 + "bytes", 799 + "futures-channel", 800 + "futures-core", 801 + "futures-util", 802 + "http", 803 + "http-body", 804 + "hyper", 805 + "ipnet", 806 + "libc", 807 + "percent-encoding", 808 + "pin-project-lite", 809 + "socket2", 810 + "tokio", 811 + "tower-service", 812 + "tracing", 813 + ] 814 + 815 + [[package]] 816 + name = "iana-time-zone" 817 + version = "0.1.64" 818 + source = "registry+https://github.com/rust-lang/crates.io-index" 819 + checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" 820 + dependencies = [ 821 + "android_system_properties", 822 + "core-foundation-sys", 823 + "iana-time-zone-haiku", 824 + "js-sys", 825 + "log", 826 + "wasm-bindgen", 827 + "windows-core 0.62.2", 828 + ] 829 + 830 + [[package]] 831 + name = "iana-time-zone-haiku" 832 + version = "0.1.2" 833 + source = "registry+https://github.com/rust-lang/crates.io-index" 834 + checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 835 + dependencies = [ 836 + "cc", 837 + ] 838 + 839 + [[package]] 840 + name = "icu_collections" 841 + version = "2.1.1" 842 + source = "registry+https://github.com/rust-lang/crates.io-index" 843 + checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" 844 + dependencies = [ 845 + "displaydoc", 846 + "potential_utf", 847 + "yoke", 848 + "zerofrom", 849 + "zerovec", 850 + ] 851 + 852 + [[package]] 853 + name = "icu_locale_core" 854 + version = "2.1.1" 855 + source = "registry+https://github.com/rust-lang/crates.io-index" 856 + checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" 857 + dependencies = [ 858 + "displaydoc", 859 + "litemap", 860 + "tinystr", 861 + "writeable", 862 + "zerovec", 863 + ] 864 + 865 + [[package]] 866 + name = "icu_normalizer" 867 + version = "2.1.1" 868 + source = "registry+https://github.com/rust-lang/crates.io-index" 869 + checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" 870 + dependencies = [ 871 + "icu_collections", 872 + "icu_normalizer_data", 873 + "icu_properties", 874 + "icu_provider", 875 + "smallvec", 876 + "zerovec", 877 + ] 878 + 879 + [[package]] 880 + name = "icu_normalizer_data" 881 + version = "2.1.1" 882 + source = "registry+https://github.com/rust-lang/crates.io-index" 883 + checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" 884 + 885 + [[package]] 886 + name = "icu_properties" 887 + version = "2.1.2" 888 + source = "registry+https://github.com/rust-lang/crates.io-index" 889 + checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" 890 + dependencies = [ 891 + "icu_collections", 892 + "icu_locale_core", 893 + "icu_properties_data", 894 + "icu_provider", 895 + "zerotrie", 896 + "zerovec", 897 + ] 898 + 899 + [[package]] 900 + name = "icu_properties_data" 901 + version = "2.1.2" 902 + source = "registry+https://github.com/rust-lang/crates.io-index" 903 + checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" 904 + 905 + [[package]] 906 + name = "icu_provider" 907 + version = "2.1.1" 908 + source = "registry+https://github.com/rust-lang/crates.io-index" 909 + checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" 910 + dependencies = [ 911 + "displaydoc", 912 + "icu_locale_core", 913 + "writeable", 914 + "yoke", 915 + "zerofrom", 916 + "zerotrie", 917 + "zerovec", 918 + ] 919 + 920 + [[package]] 921 + name = "ident_case" 922 + version = "1.0.1" 923 + source = "registry+https://github.com/rust-lang/crates.io-index" 924 + checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 925 + 926 + [[package]] 927 + name = "idna" 928 + version = "1.1.0" 929 + source = "registry+https://github.com/rust-lang/crates.io-index" 930 + checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 931 + dependencies = [ 932 + "idna_adapter", 933 + "smallvec", 934 + "utf8_iter", 935 + ] 936 + 937 + [[package]] 938 + name = "idna_adapter" 939 + version = "1.2.1" 940 + source = "registry+https://github.com/rust-lang/crates.io-index" 941 + checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 942 + dependencies = [ 943 + "icu_normalizer", 944 + "icu_properties", 945 + ] 946 + 947 + [[package]] 948 + name = "indexmap" 949 + version = "2.12.1" 950 + source = "registry+https://github.com/rust-lang/crates.io-index" 951 + checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2" 952 + dependencies = [ 953 + "equivalent", 954 + "hashbrown 0.16.1", 955 + ] 956 + 957 + [[package]] 958 + name = "inout" 959 + version = "0.1.4" 960 + source = "registry+https://github.com/rust-lang/crates.io-index" 961 + checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" 962 + dependencies = [ 963 + "generic-array", 964 + ] 965 + 966 + [[package]] 967 + name = "ipnet" 968 + version = "2.11.0" 969 + source = "registry+https://github.com/rust-lang/crates.io-index" 970 + checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" 971 + 972 + [[package]] 973 + name = "iri-string" 974 + version = "0.7.10" 975 + source = "registry+https://github.com/rust-lang/crates.io-index" 976 + checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" 977 + dependencies = [ 978 + "memchr", 979 + "serde", 980 + ] 981 + 982 + [[package]] 983 + name = "is_terminal_polyfill" 984 + version = "1.70.2" 985 + source = "registry+https://github.com/rust-lang/crates.io-index" 986 + checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" 987 + 988 + [[package]] 989 + name = "itoa" 990 + version = "1.0.15" 991 + source = "registry+https://github.com/rust-lang/crates.io-index" 992 + checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 993 + 994 + [[package]] 995 + name = "jiff" 996 + version = "0.2.16" 997 + source = "registry+https://github.com/rust-lang/crates.io-index" 998 + checksum = "49cce2b81f2098e7e3efc35bc2e0a6b7abec9d34128283d7a26fa8f32a6dbb35" 999 + dependencies = [ 1000 + "jiff-static", 1001 + "log", 1002 + "portable-atomic", 1003 + "portable-atomic-util", 1004 + "serde_core", 1005 + ] 1006 + 1007 + [[package]] 1008 + name = "jiff-static" 1009 + version = "0.2.16" 1010 + source = "registry+https://github.com/rust-lang/crates.io-index" 1011 + checksum = "980af8b43c3ad5d8d349ace167ec8170839f753a42d233ba19e08afe1850fa69" 1012 + dependencies = [ 1013 + "proc-macro2", 1014 + "quote", 1015 + "syn", 1016 + ] 1017 + 1018 + [[package]] 1019 + name = "js-sys" 1020 + version = "0.3.83" 1021 + source = "registry+https://github.com/rust-lang/crates.io-index" 1022 + checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8" 1023 + dependencies = [ 1024 + "once_cell", 1025 + "wasm-bindgen", 1026 + ] 1027 + 1028 + [[package]] 1029 + name = "libc" 1030 + version = "0.2.178" 1031 + source = "registry+https://github.com/rust-lang/crates.io-index" 1032 + checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091" 1033 + 1034 + [[package]] 1035 + name = "libsqlite3-sys" 1036 + version = "0.35.0" 1037 + source = "registry+https://github.com/rust-lang/crates.io-index" 1038 + checksum = "133c182a6a2c87864fe97778797e46c7e999672690dc9fa3ee8e241aa4a9c13f" 1039 + dependencies = [ 1040 + "cc", 1041 + "pkg-config", 1042 + "vcpkg", 1043 + ] 1044 + 1045 + [[package]] 1046 + name = "litemap" 1047 + version = "0.8.1" 1048 + source = "registry+https://github.com/rust-lang/crates.io-index" 1049 + checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" 1050 + 1051 + [[package]] 1052 + name = "localzone" 1053 + version = "0.3.1" 1054 + source = "registry+https://github.com/rust-lang/crates.io-index" 1055 + checksum = "718530aa7b3842752f82224791ea1db5e6b7260513b8ab45706937dbf54f7b4d" 1056 + dependencies = [ 1057 + "js-sys", 1058 + "windows", 1059 + ] 1060 + 1061 + [[package]] 1062 + name = "lock_api" 1063 + version = "0.4.14" 1064 + source = "registry+https://github.com/rust-lang/crates.io-index" 1065 + checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 1066 + dependencies = [ 1067 + "scopeguard", 1068 + ] 1069 + 1070 + [[package]] 1071 + name = "log" 1072 + version = "0.4.29" 1073 + source = "registry+https://github.com/rust-lang/crates.io-index" 1074 + checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" 1075 + 1076 + [[package]] 1077 + name = "lru-slab" 1078 + version = "0.1.2" 1079 + source = "registry+https://github.com/rust-lang/crates.io-index" 1080 + checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" 1081 + 1082 + [[package]] 1083 + name = "maud" 1084 + version = "0.27.0" 1085 + source = "registry+https://github.com/rust-lang/crates.io-index" 1086 + checksum = "8156733e27020ea5c684db5beac5d1d611e1272ab17901a49466294b84fc217e" 1087 + dependencies = [ 1088 + "itoa", 1089 + "maud_macros", 1090 + "poem", 1091 + ] 1092 + 1093 + [[package]] 1094 + name = "maud_macros" 1095 + version = "0.27.0" 1096 + source = "registry+https://github.com/rust-lang/crates.io-index" 1097 + checksum = "7261b00f3952f617899bc012e3dbd56e4f0110a038175929fa5d18e5a19913ca" 1098 + dependencies = [ 1099 + "proc-macro2", 1100 + "proc-macro2-diagnostics", 1101 + "quote", 1102 + "syn", 1103 + ] 1104 + 1105 + [[package]] 1106 + name = "memchr" 1107 + version = "2.7.6" 1108 + source = "registry+https://github.com/rust-lang/crates.io-index" 1109 + checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" 1110 + 1111 + [[package]] 1112 + name = "mime" 1113 + version = "0.3.17" 1114 + source = "registry+https://github.com/rust-lang/crates.io-index" 1115 + checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1116 + 1117 + [[package]] 1118 + name = "mime_guess" 1119 + version = "2.0.5" 1120 + source = "registry+https://github.com/rust-lang/crates.io-index" 1121 + checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" 1122 + dependencies = [ 1123 + "mime", 1124 + "unicase", 1125 + ] 1126 + 1127 + [[package]] 1128 + name = "miniz_oxide" 1129 + version = "0.8.9" 1130 + source = "registry+https://github.com/rust-lang/crates.io-index" 1131 + checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 1132 + dependencies = [ 1133 + "adler2", 1134 + "simd-adler32", 1135 + ] 1136 + 1137 + [[package]] 1138 + name = "mio" 1139 + version = "1.1.1" 1140 + source = "registry+https://github.com/rust-lang/crates.io-index" 1141 + checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" 1142 + dependencies = [ 1143 + "libc", 1144 + "wasi", 1145 + "windows-sys 0.61.2", 1146 + ] 1147 + 1148 + [[package]] 1149 + name = "nix" 1150 + version = "0.30.1" 1151 + source = "registry+https://github.com/rust-lang/crates.io-index" 1152 + checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" 1153 + dependencies = [ 1154 + "bitflags", 1155 + "cfg-if", 1156 + "cfg_aliases", 1157 + "libc", 1158 + ] 1159 + 1160 + [[package]] 1161 + name = "num-conv" 1162 + version = "0.1.0" 1163 + source = "registry+https://github.com/rust-lang/crates.io-index" 1164 + checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 1165 + 1166 + [[package]] 1167 + name = "num-traits" 1168 + version = "0.2.19" 1169 + source = "registry+https://github.com/rust-lang/crates.io-index" 1170 + checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 1171 + dependencies = [ 1172 + "autocfg", 1173 + ] 1174 + 1175 + [[package]] 1176 + name = "num_threads" 1177 + version = "0.1.7" 1178 + source = "registry+https://github.com/rust-lang/crates.io-index" 1179 + checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" 1180 + dependencies = [ 1181 + "libc", 1182 + ] 1183 + 1184 + [[package]] 1185 + name = "once_cell" 1186 + version = "1.21.3" 1187 + source = "registry+https://github.com/rust-lang/crates.io-index" 1188 + checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 1189 + 1190 + [[package]] 1191 + name = "once_cell_polyfill" 1192 + version = "1.70.2" 1193 + source = "registry+https://github.com/rust-lang/crates.io-index" 1194 + checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" 1195 + 1196 + [[package]] 1197 + name = "opaque-debug" 1198 + version = "0.3.1" 1199 + source = "registry+https://github.com/rust-lang/crates.io-index" 1200 + checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" 1201 + 1202 + [[package]] 1203 + name = "parking_lot" 1204 + version = "0.12.5" 1205 + source = "registry+https://github.com/rust-lang/crates.io-index" 1206 + checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 1207 + dependencies = [ 1208 + "lock_api", 1209 + "parking_lot_core", 1210 + ] 1211 + 1212 + [[package]] 1213 + name = "parking_lot_core" 1214 + version = "0.9.12" 1215 + source = "registry+https://github.com/rust-lang/crates.io-index" 1216 + checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 1217 + dependencies = [ 1218 + "cfg-if", 1219 + "libc", 1220 + "redox_syscall", 1221 + "smallvec", 1222 + "windows-link", 1223 + ] 1224 + 1225 + [[package]] 1226 + name = "percent-encoding" 1227 + version = "2.3.2" 1228 + source = "registry+https://github.com/rust-lang/crates.io-index" 1229 + checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 1230 + 1231 + [[package]] 1232 + name = "phf" 1233 + version = "0.11.3" 1234 + source = "registry+https://github.com/rust-lang/crates.io-index" 1235 + checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" 1236 + dependencies = [ 1237 + "phf_shared", 1238 + ] 1239 + 1240 + [[package]] 1241 + name = "phf_shared" 1242 + version = "0.11.3" 1243 + source = "registry+https://github.com/rust-lang/crates.io-index" 1244 + checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" 1245 + dependencies = [ 1246 + "siphasher", 1247 + ] 1248 + 1249 + [[package]] 1250 + name = "pin-project-lite" 1251 + version = "0.2.16" 1252 + source = "registry+https://github.com/rust-lang/crates.io-index" 1253 + checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 1254 + 1255 + [[package]] 1256 + name = "pin-utils" 1257 + version = "0.1.0" 1258 + source = "registry+https://github.com/rust-lang/crates.io-index" 1259 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1260 + 1261 + [[package]] 1262 + name = "pkg-config" 1263 + version = "0.3.32" 1264 + source = "registry+https://github.com/rust-lang/crates.io-index" 1265 + checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 1266 + 1267 + [[package]] 1268 + name = "poem" 1269 + version = "3.1.12" 1270 + source = "registry+https://github.com/rust-lang/crates.io-index" 1271 + checksum = "9f977080932c87287147dca052951c3e2696f8759863f6b4e4c0c9ffe7a4cc8b" 1272 + dependencies = [ 1273 + "bytes", 1274 + "chrono", 1275 + "cookie", 1276 + "futures-util", 1277 + "headers", 1278 + "http", 1279 + "http-body-util", 1280 + "httpdate", 1281 + "hyper", 1282 + "hyper-util", 1283 + "mime", 1284 + "mime_guess", 1285 + "nix", 1286 + "parking_lot", 1287 + "percent-encoding", 1288 + "pin-project-lite", 1289 + "poem-derive", 1290 + "regex", 1291 + "rfc7239", 1292 + "serde", 1293 + "serde_json", 1294 + "serde_urlencoded", 1295 + "smallvec", 1296 + "sync_wrapper", 1297 + "thiserror", 1298 + "time", 1299 + "tokio", 1300 + "tokio-util", 1301 + "tracing", 1302 + "wildmatch", 1303 + ] 1304 + 1305 + [[package]] 1306 + name = "poem-derive" 1307 + version = "3.1.12" 1308 + source = "registry+https://github.com/rust-lang/crates.io-index" 1309 + checksum = "056e2fea6de1cb240ffe23cfc4fc370b629f8be83b5f27e16b7acd5231a72de4" 1310 + dependencies = [ 1311 + "proc-macro-crate", 1312 + "proc-macro2", 1313 + "quote", 1314 + "syn", 1315 + ] 1316 + 1317 + [[package]] 1318 + name = "polyval" 1319 + version = "0.6.2" 1320 + source = "registry+https://github.com/rust-lang/crates.io-index" 1321 + checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" 1322 + dependencies = [ 1323 + "cfg-if", 1324 + "cpufeatures", 1325 + "opaque-debug", 1326 + "universal-hash", 1327 + ] 1328 + 1329 + [[package]] 1330 + name = "portable-atomic" 1331 + version = "1.11.1" 1332 + source = "registry+https://github.com/rust-lang/crates.io-index" 1333 + checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" 1334 + 1335 + [[package]] 1336 + name = "portable-atomic-util" 1337 + version = "0.2.4" 1338 + source = "registry+https://github.com/rust-lang/crates.io-index" 1339 + checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507" 1340 + dependencies = [ 1341 + "portable-atomic", 1342 + ] 1343 + 1344 + [[package]] 1345 + name = "potential_utf" 1346 + version = "0.1.4" 1347 + source = "registry+https://github.com/rust-lang/crates.io-index" 1348 + checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" 1349 + dependencies = [ 1350 + "zerovec", 1351 + ] 1352 + 1353 + [[package]] 1354 + name = "powerfmt" 1355 + version = "0.2.0" 1356 + source = "registry+https://github.com/rust-lang/crates.io-index" 1357 + checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 1358 + 1359 + [[package]] 1360 + name = "ppv-lite86" 1361 + version = "0.2.21" 1362 + source = "registry+https://github.com/rust-lang/crates.io-index" 1363 + checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 1364 + dependencies = [ 1365 + "zerocopy", 1366 + ] 1367 + 1368 + [[package]] 1369 + name = "proc-macro-crate" 1370 + version = "3.4.0" 1371 + source = "registry+https://github.com/rust-lang/crates.io-index" 1372 + checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983" 1373 + dependencies = [ 1374 + "toml_edit", 1375 + ] 1376 + 1377 + [[package]] 1378 + name = "proc-macro2" 1379 + version = "1.0.103" 1380 + source = "registry+https://github.com/rust-lang/crates.io-index" 1381 + checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8" 1382 + dependencies = [ 1383 + "unicode-ident", 1384 + ] 1385 + 1386 + [[package]] 1387 + name = "proc-macro2-diagnostics" 1388 + version = "0.10.1" 1389 + source = "registry+https://github.com/rust-lang/crates.io-index" 1390 + checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8" 1391 + dependencies = [ 1392 + "proc-macro2", 1393 + "quote", 1394 + "syn", 1395 + "version_check", 1396 + ] 1397 + 1398 + [[package]] 1399 + name = "quinn" 1400 + version = "0.11.9" 1401 + source = "registry+https://github.com/rust-lang/crates.io-index" 1402 + checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" 1403 + dependencies = [ 1404 + "bytes", 1405 + "cfg_aliases", 1406 + "pin-project-lite", 1407 + "quinn-proto", 1408 + "quinn-udp", 1409 + "rustc-hash", 1410 + "rustls", 1411 + "socket2", 1412 + "thiserror", 1413 + "tokio", 1414 + "tracing", 1415 + "web-time", 1416 + ] 1417 + 1418 + [[package]] 1419 + name = "quinn-proto" 1420 + version = "0.11.13" 1421 + source = "registry+https://github.com/rust-lang/crates.io-index" 1422 + checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" 1423 + dependencies = [ 1424 + "bytes", 1425 + "getrandom 0.3.4", 1426 + "lru-slab", 1427 + "rand 0.9.2", 1428 + "ring", 1429 + "rustc-hash", 1430 + "rustls", 1431 + "rustls-pki-types", 1432 + "slab", 1433 + "thiserror", 1434 + "tinyvec", 1435 + "tracing", 1436 + "web-time", 1437 + ] 1438 + 1439 + [[package]] 1440 + name = "quinn-udp" 1441 + version = "0.5.14" 1442 + source = "registry+https://github.com/rust-lang/crates.io-index" 1443 + checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" 1444 + dependencies = [ 1445 + "cfg_aliases", 1446 + "libc", 1447 + "once_cell", 1448 + "socket2", 1449 + "tracing", 1450 + "windows-sys 0.60.2", 1451 + ] 1452 + 1453 + [[package]] 1454 + name = "quote" 1455 + version = "1.0.42" 1456 + source = "registry+https://github.com/rust-lang/crates.io-index" 1457 + checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" 1458 + dependencies = [ 1459 + "proc-macro2", 1460 + ] 1461 + 1462 + [[package]] 1463 + name = "r-efi" 1464 + version = "5.3.0" 1465 + source = "registry+https://github.com/rust-lang/crates.io-index" 1466 + checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 1467 + 1468 + [[package]] 1469 + name = "rand" 1470 + version = "0.8.5" 1471 + source = "registry+https://github.com/rust-lang/crates.io-index" 1472 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1473 + dependencies = [ 1474 + "libc", 1475 + "rand_chacha 0.3.1", 1476 + "rand_core 0.6.4", 1477 + ] 1478 + 1479 + [[package]] 1480 + name = "rand" 1481 + version = "0.9.2" 1482 + source = "registry+https://github.com/rust-lang/crates.io-index" 1483 + checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 1484 + dependencies = [ 1485 + "rand_chacha 0.9.0", 1486 + "rand_core 0.9.3", 1487 + ] 1488 + 1489 + [[package]] 1490 + name = "rand_chacha" 1491 + version = "0.3.1" 1492 + source = "registry+https://github.com/rust-lang/crates.io-index" 1493 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1494 + dependencies = [ 1495 + "ppv-lite86", 1496 + "rand_core 0.6.4", 1497 + ] 1498 + 1499 + [[package]] 1500 + name = "rand_chacha" 1501 + version = "0.9.0" 1502 + source = "registry+https://github.com/rust-lang/crates.io-index" 1503 + checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 1504 + dependencies = [ 1505 + "ppv-lite86", 1506 + "rand_core 0.9.3", 1507 + ] 1508 + 1509 + [[package]] 1510 + name = "rand_core" 1511 + version = "0.6.4" 1512 + source = "registry+https://github.com/rust-lang/crates.io-index" 1513 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1514 + dependencies = [ 1515 + "getrandom 0.2.16", 1516 + ] 1517 + 1518 + [[package]] 1519 + name = "rand_core" 1520 + version = "0.9.3" 1521 + source = "registry+https://github.com/rust-lang/crates.io-index" 1522 + checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" 1523 + dependencies = [ 1524 + "getrandom 0.3.4", 1525 + ] 1526 + 1527 + [[package]] 1528 + name = "redox_syscall" 1529 + version = "0.5.18" 1530 + source = "registry+https://github.com/rust-lang/crates.io-index" 1531 + checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 1532 + dependencies = [ 1533 + "bitflags", 1534 + ] 1535 + 1536 + [[package]] 1537 + name = "regex" 1538 + version = "1.12.2" 1539 + source = "registry+https://github.com/rust-lang/crates.io-index" 1540 + checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" 1541 + dependencies = [ 1542 + "aho-corasick", 1543 + "memchr", 1544 + "regex-automata", 1545 + "regex-syntax", 1546 + ] 1547 + 1548 + [[package]] 1549 + name = "regex-automata" 1550 + version = "0.4.13" 1551 + source = "registry+https://github.com/rust-lang/crates.io-index" 1552 + checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" 1553 + dependencies = [ 1554 + "aho-corasick", 1555 + "memchr", 1556 + "regex-syntax", 1557 + ] 1558 + 1559 + [[package]] 1560 + name = "regex-syntax" 1561 + version = "0.8.8" 1562 + source = "registry+https://github.com/rust-lang/crates.io-index" 1563 + checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" 1564 + 1565 + [[package]] 1566 + name = "reqwest" 1567 + version = "0.12.28" 1568 + source = "registry+https://github.com/rust-lang/crates.io-index" 1569 + checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" 1570 + dependencies = [ 1571 + "base64", 1572 + "bytes", 1573 + "futures-core", 1574 + "http", 1575 + "http-body", 1576 + "http-body-util", 1577 + "hyper", 1578 + "hyper-rustls", 1579 + "hyper-util", 1580 + "js-sys", 1581 + "log", 1582 + "percent-encoding", 1583 + "pin-project-lite", 1584 + "quinn", 1585 + "rustls", 1586 + "rustls-pki-types", 1587 + "serde", 1588 + "serde_json", 1589 + "serde_urlencoded", 1590 + "sync_wrapper", 1591 + "tokio", 1592 + "tokio-rustls", 1593 + "tower", 1594 + "tower-http", 1595 + "tower-service", 1596 + "url", 1597 + "wasm-bindgen", 1598 + "wasm-bindgen-futures", 1599 + "web-sys", 1600 + "webpki-roots", 1601 + ] 1602 + 1603 + [[package]] 1604 + name = "ress" 1605 + version = "0.11.7" 1606 + source = "registry+https://github.com/rust-lang/crates.io-index" 1607 + checksum = "0d77111a94ef694bb2fe9867a93e21007e2151943c9a48b2ed72734bde41875a" 1608 + dependencies = [ 1609 + "log", 1610 + "unicode-xid", 1611 + ] 1612 + 1613 + [[package]] 1614 + name = "rfc7239" 1615 + version = "0.1.3" 1616 + source = "registry+https://github.com/rust-lang/crates.io-index" 1617 + checksum = "4a82f1d1e38e9a85bb58ffcfadf22ed6f2c94e8cd8581ec2b0f80a2a6858350f" 1618 + dependencies = [ 1619 + "uncased", 1620 + ] 1621 + 1622 + [[package]] 1623 + name = "ring" 1624 + version = "0.17.14" 1625 + source = "registry+https://github.com/rust-lang/crates.io-index" 1626 + checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 1627 + dependencies = [ 1628 + "cc", 1629 + "cfg-if", 1630 + "getrandom 0.2.16", 1631 + "libc", 1632 + "untrusted", 1633 + "windows-sys 0.52.0", 1634 + ] 1635 + 1636 + [[package]] 1637 + name = "rquickjs" 1638 + version = "0.9.0" 1639 + source = "registry+https://github.com/rust-lang/crates.io-index" 1640 + checksum = "5c5227859c4dfc83f428e58f9569bf439e628c8d139020e7faff437e6f5abaa0" 1641 + dependencies = [ 1642 + "rquickjs-core", 1643 + ] 1644 + 1645 + [[package]] 1646 + name = "rquickjs-core" 1647 + version = "0.9.0" 1648 + source = "registry+https://github.com/rust-lang/crates.io-index" 1649 + checksum = "e82e0ca83028ad5b533b53b96c395bbaab905a5774de4aaf1004eeacafa3d85d" 1650 + dependencies = [ 1651 + "rquickjs-sys", 1652 + ] 1653 + 1654 + [[package]] 1655 + name = "rquickjs-sys" 1656 + version = "0.9.0" 1657 + source = "registry+https://github.com/rust-lang/crates.io-index" 1658 + checksum = "7fed0097b0b4fbb2a87f6dd3b995a7c64ca56de30007eb7e867dfdfc78324ba5" 1659 + dependencies = [ 1660 + "cc", 1661 + ] 1662 + 1663 + [[package]] 1664 + name = "rusqlite" 1665 + version = "0.37.0" 1666 + source = "registry+https://github.com/rust-lang/crates.io-index" 1667 + checksum = "165ca6e57b20e1351573e3729b958bc62f0e48025386970b6e4d29e7a7e71f3f" 1668 + dependencies = [ 1669 + "bitflags", 1670 + "chrono", 1671 + "fallible-iterator", 1672 + "fallible-streaming-iterator", 1673 + "hashlink", 1674 + "libsqlite3-sys", 1675 + "smallvec", 1676 + ] 1677 + 1678 + [[package]] 1679 + name = "rusqlite_migration" 1680 + version = "2.3.0" 1681 + source = "registry+https://github.com/rust-lang/crates.io-index" 1682 + checksum = "3fc9767ae49274bafd3e55be9d30405a033b7a59548327d87fd4971fbb58e264" 1683 + dependencies = [ 1684 + "log", 1685 + "rusqlite", 1686 + ] 1687 + 1688 + [[package]] 1689 + name = "rustc-hash" 1690 + version = "2.1.1" 1691 + source = "registry+https://github.com/rust-lang/crates.io-index" 1692 + checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" 1693 + 1694 + [[package]] 1695 + name = "rustls" 1696 + version = "0.23.35" 1697 + source = "registry+https://github.com/rust-lang/crates.io-index" 1698 + checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f" 1699 + dependencies = [ 1700 + "once_cell", 1701 + "ring", 1702 + "rustls-pki-types", 1703 + "rustls-webpki", 1704 + "subtle", 1705 + "zeroize", 1706 + ] 1707 + 1708 + [[package]] 1709 + name = "rustls-pki-types" 1710 + version = "1.13.2" 1711 + source = "registry+https://github.com/rust-lang/crates.io-index" 1712 + checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282" 1713 + dependencies = [ 1714 + "web-time", 1715 + "zeroize", 1716 + ] 1717 + 1718 + [[package]] 1719 + name = "rustls-webpki" 1720 + version = "0.103.8" 1721 + source = "registry+https://github.com/rust-lang/crates.io-index" 1722 + checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52" 1723 + dependencies = [ 1724 + "ring", 1725 + "rustls-pki-types", 1726 + "untrusted", 1727 + ] 1728 + 1729 + [[package]] 1730 + name = "rustversion" 1731 + version = "1.0.22" 1732 + source = "registry+https://github.com/rust-lang/crates.io-index" 1733 + checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 1734 + 1735 + [[package]] 1736 + name = "rustypipe" 1737 + version = "0.11.4" 1738 + source = "registry+https://github.com/rust-lang/crates.io-index" 1739 + checksum = "3bf8d7c42ac7860a078f63f90d6513dd3833585337e65b5fca9f74ddba2d59ef" 1740 + dependencies = [ 1741 + "data-encoding", 1742 + "fancy-regex", 1743 + "localzone", 1744 + "once_cell", 1745 + "phf", 1746 + "rand 0.9.2", 1747 + "regex", 1748 + "reqwest", 1749 + "ress", 1750 + "rquickjs", 1751 + "serde", 1752 + "serde_json", 1753 + "serde_plain", 1754 + "serde_with", 1755 + "sha1", 1756 + "thiserror", 1757 + "time", 1758 + "tokio", 1759 + "tracing", 1760 + "url", 1761 + "urlencoding", 1762 + ] 1763 + 1764 + [[package]] 1765 + name = "ryu" 1766 + version = "1.0.20" 1767 + source = "registry+https://github.com/rust-lang/crates.io-index" 1768 + checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 1769 + 1770 + [[package]] 1771 + name = "scopeguard" 1772 + version = "1.2.0" 1773 + source = "registry+https://github.com/rust-lang/crates.io-index" 1774 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1775 + 1776 + [[package]] 1777 + name = "serde" 1778 + version = "1.0.228" 1779 + source = "registry+https://github.com/rust-lang/crates.io-index" 1780 + checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 1781 + dependencies = [ 1782 + "serde_core", 1783 + "serde_derive", 1784 + ] 1785 + 1786 + [[package]] 1787 + name = "serde_core" 1788 + version = "1.0.228" 1789 + source = "registry+https://github.com/rust-lang/crates.io-index" 1790 + checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 1791 + dependencies = [ 1792 + "serde_derive", 1793 + ] 1794 + 1795 + [[package]] 1796 + name = "serde_derive" 1797 + version = "1.0.228" 1798 + source = "registry+https://github.com/rust-lang/crates.io-index" 1799 + checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 1800 + dependencies = [ 1801 + "proc-macro2", 1802 + "quote", 1803 + "syn", 1804 + ] 1805 + 1806 + [[package]] 1807 + name = "serde_json" 1808 + version = "1.0.145" 1809 + source = "registry+https://github.com/rust-lang/crates.io-index" 1810 + checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" 1811 + dependencies = [ 1812 + "itoa", 1813 + "memchr", 1814 + "ryu", 1815 + "serde", 1816 + "serde_core", 1817 + ] 1818 + 1819 + [[package]] 1820 + name = "serde_plain" 1821 + version = "1.0.2" 1822 + source = "registry+https://github.com/rust-lang/crates.io-index" 1823 + checksum = "9ce1fc6db65a611022b23a0dec6975d63fb80a302cb3388835ff02c097258d50" 1824 + dependencies = [ 1825 + "serde", 1826 + ] 1827 + 1828 + [[package]] 1829 + name = "serde_urlencoded" 1830 + version = "0.7.1" 1831 + source = "registry+https://github.com/rust-lang/crates.io-index" 1832 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1833 + dependencies = [ 1834 + "form_urlencoded", 1835 + "itoa", 1836 + "ryu", 1837 + "serde", 1838 + ] 1839 + 1840 + [[package]] 1841 + name = "serde_with" 1842 + version = "3.16.1" 1843 + source = "registry+https://github.com/rust-lang/crates.io-index" 1844 + checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7" 1845 + dependencies = [ 1846 + "base64", 1847 + "chrono", 1848 + "hex", 1849 + "serde_core", 1850 + "serde_json", 1851 + "serde_with_macros", 1852 + "time", 1853 + ] 1854 + 1855 + [[package]] 1856 + name = "serde_with_macros" 1857 + version = "3.16.1" 1858 + source = "registry+https://github.com/rust-lang/crates.io-index" 1859 + checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c" 1860 + dependencies = [ 1861 + "darling", 1862 + "proc-macro2", 1863 + "quote", 1864 + "syn", 1865 + ] 1866 + 1867 + [[package]] 1868 + name = "sha1" 1869 + version = "0.10.6" 1870 + source = "registry+https://github.com/rust-lang/crates.io-index" 1871 + checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 1872 + dependencies = [ 1873 + "cfg-if", 1874 + "cpufeatures", 1875 + "digest", 1876 + ] 1877 + 1878 + [[package]] 1879 + name = "sha2" 1880 + version = "0.10.9" 1881 + source = "registry+https://github.com/rust-lang/crates.io-index" 1882 + checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 1883 + dependencies = [ 1884 + "cfg-if", 1885 + "cpufeatures", 1886 + "digest", 1887 + ] 1888 + 1889 + [[package]] 1890 + name = "shlex" 1891 + version = "1.3.0" 1892 + source = "registry+https://github.com/rust-lang/crates.io-index" 1893 + checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 1894 + 1895 + [[package]] 1896 + name = "signal-hook-registry" 1897 + version = "1.4.7" 1898 + source = "registry+https://github.com/rust-lang/crates.io-index" 1899 + checksum = "7664a098b8e616bdfcc2dc0e9ac44eb231eedf41db4e9fe95d8d32ec728dedad" 1900 + dependencies = [ 1901 + "libc", 1902 + ] 1903 + 1904 + [[package]] 1905 + name = "simd-adler32" 1906 + version = "0.3.8" 1907 + source = "registry+https://github.com/rust-lang/crates.io-index" 1908 + checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" 1909 + 1910 + [[package]] 1911 + name = "siphasher" 1912 + version = "1.0.1" 1913 + source = "registry+https://github.com/rust-lang/crates.io-index" 1914 + checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" 1915 + 1916 + [[package]] 1917 + name = "slab" 1918 + version = "0.4.11" 1919 + source = "registry+https://github.com/rust-lang/crates.io-index" 1920 + checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" 1921 + 1922 + [[package]] 1923 + name = "smallvec" 1924 + version = "1.15.1" 1925 + source = "registry+https://github.com/rust-lang/crates.io-index" 1926 + checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 1927 + 1928 + [[package]] 1929 + name = "socket2" 1930 + version = "0.6.1" 1931 + source = "registry+https://github.com/rust-lang/crates.io-index" 1932 + checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" 1933 + dependencies = [ 1934 + "libc", 1935 + "windows-sys 0.60.2", 1936 + ] 1937 + 1938 + [[package]] 1939 + name = "stable_deref_trait" 1940 + version = "1.2.1" 1941 + source = "registry+https://github.com/rust-lang/crates.io-index" 1942 + checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" 1943 + 1944 + [[package]] 1945 + name = "strsim" 1946 + version = "0.11.1" 1947 + source = "registry+https://github.com/rust-lang/crates.io-index" 1948 + checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 1949 + 1950 + [[package]] 1951 + name = "subs" 1952 + version = "0.1.0" 1953 + dependencies = [ 1954 + "env_logger", 1955 + "log", 1956 + "maud", 1957 + "poem", 1958 + "rusqlite", 1959 + "rusqlite_migration", 1960 + "rustypipe", 1961 + "serde", 1962 + "serde_json", 1963 + "tokio", 1964 + ] 1965 + 1966 + [[package]] 1967 + name = "subtle" 1968 + version = "2.6.1" 1969 + source = "registry+https://github.com/rust-lang/crates.io-index" 1970 + checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 1971 + 1972 + [[package]] 1973 + name = "syn" 1974 + version = "2.0.111" 1975 + source = "registry+https://github.com/rust-lang/crates.io-index" 1976 + checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87" 1977 + dependencies = [ 1978 + "proc-macro2", 1979 + "quote", 1980 + "unicode-ident", 1981 + ] 1982 + 1983 + [[package]] 1984 + name = "sync_wrapper" 1985 + version = "1.0.2" 1986 + source = "registry+https://github.com/rust-lang/crates.io-index" 1987 + checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 1988 + dependencies = [ 1989 + "futures-core", 1990 + ] 1991 + 1992 + [[package]] 1993 + name = "synstructure" 1994 + version = "0.13.2" 1995 + source = "registry+https://github.com/rust-lang/crates.io-index" 1996 + checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 1997 + dependencies = [ 1998 + "proc-macro2", 1999 + "quote", 2000 + "syn", 2001 + ] 2002 + 2003 + [[package]] 2004 + name = "thiserror" 2005 + version = "2.0.17" 2006 + source = "registry+https://github.com/rust-lang/crates.io-index" 2007 + checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" 2008 + dependencies = [ 2009 + "thiserror-impl", 2010 + ] 2011 + 2012 + [[package]] 2013 + name = "thiserror-impl" 2014 + version = "2.0.17" 2015 + source = "registry+https://github.com/rust-lang/crates.io-index" 2016 + checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" 2017 + dependencies = [ 2018 + "proc-macro2", 2019 + "quote", 2020 + "syn", 2021 + ] 2022 + 2023 + [[package]] 2024 + name = "time" 2025 + version = "0.3.44" 2026 + source = "registry+https://github.com/rust-lang/crates.io-index" 2027 + checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" 2028 + dependencies = [ 2029 + "deranged", 2030 + "itoa", 2031 + "libc", 2032 + "num-conv", 2033 + "num_threads", 2034 + "powerfmt", 2035 + "serde", 2036 + "time-core", 2037 + "time-macros", 2038 + ] 2039 + 2040 + [[package]] 2041 + name = "time-core" 2042 + version = "0.1.6" 2043 + source = "registry+https://github.com/rust-lang/crates.io-index" 2044 + checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" 2045 + 2046 + [[package]] 2047 + name = "time-macros" 2048 + version = "0.2.24" 2049 + source = "registry+https://github.com/rust-lang/crates.io-index" 2050 + checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" 2051 + dependencies = [ 2052 + "num-conv", 2053 + "time-core", 2054 + ] 2055 + 2056 + [[package]] 2057 + name = "tinystr" 2058 + version = "0.8.2" 2059 + source = "registry+https://github.com/rust-lang/crates.io-index" 2060 + checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" 2061 + dependencies = [ 2062 + "displaydoc", 2063 + "zerovec", 2064 + ] 2065 + 2066 + [[package]] 2067 + name = "tinyvec" 2068 + version = "1.10.0" 2069 + source = "registry+https://github.com/rust-lang/crates.io-index" 2070 + checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" 2071 + dependencies = [ 2072 + "tinyvec_macros", 2073 + ] 2074 + 2075 + [[package]] 2076 + name = "tinyvec_macros" 2077 + version = "0.1.1" 2078 + source = "registry+https://github.com/rust-lang/crates.io-index" 2079 + checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2080 + 2081 + [[package]] 2082 + name = "tokio" 2083 + version = "1.48.0" 2084 + source = "registry+https://github.com/rust-lang/crates.io-index" 2085 + checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408" 2086 + dependencies = [ 2087 + "bytes", 2088 + "libc", 2089 + "mio", 2090 + "pin-project-lite", 2091 + "signal-hook-registry", 2092 + "socket2", 2093 + "tokio-macros", 2094 + "windows-sys 0.61.2", 2095 + ] 2096 + 2097 + [[package]] 2098 + name = "tokio-macros" 2099 + version = "2.6.0" 2100 + source = "registry+https://github.com/rust-lang/crates.io-index" 2101 + checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" 2102 + dependencies = [ 2103 + "proc-macro2", 2104 + "quote", 2105 + "syn", 2106 + ] 2107 + 2108 + [[package]] 2109 + name = "tokio-rustls" 2110 + version = "0.26.4" 2111 + source = "registry+https://github.com/rust-lang/crates.io-index" 2112 + checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" 2113 + dependencies = [ 2114 + "rustls", 2115 + "tokio", 2116 + ] 2117 + 2118 + [[package]] 2119 + name = "tokio-util" 2120 + version = "0.7.17" 2121 + source = "registry+https://github.com/rust-lang/crates.io-index" 2122 + checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594" 2123 + dependencies = [ 2124 + "bytes", 2125 + "futures-core", 2126 + "futures-sink", 2127 + "pin-project-lite", 2128 + "tokio", 2129 + ] 2130 + 2131 + [[package]] 2132 + name = "toml_datetime" 2133 + version = "0.7.4+spec-1.0.0" 2134 + source = "registry+https://github.com/rust-lang/crates.io-index" 2135 + checksum = "fe3cea6b2aa3b910092f6abd4053ea464fab5f9c170ba5e9a6aead16ec4af2b6" 2136 + dependencies = [ 2137 + "serde_core", 2138 + ] 2139 + 2140 + [[package]] 2141 + name = "toml_edit" 2142 + version = "0.23.10+spec-1.0.0" 2143 + source = "registry+https://github.com/rust-lang/crates.io-index" 2144 + checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269" 2145 + dependencies = [ 2146 + "indexmap", 2147 + "toml_datetime", 2148 + "toml_parser", 2149 + "winnow", 2150 + ] 2151 + 2152 + [[package]] 2153 + name = "toml_parser" 2154 + version = "1.0.5+spec-1.0.0" 2155 + source = "registry+https://github.com/rust-lang/crates.io-index" 2156 + checksum = "4c03bee5ce3696f31250db0bbaff18bc43301ce0e8db2ed1f07cbb2acf89984c" 2157 + dependencies = [ 2158 + "winnow", 2159 + ] 2160 + 2161 + [[package]] 2162 + name = "tower" 2163 + version = "0.5.2" 2164 + source = "registry+https://github.com/rust-lang/crates.io-index" 2165 + checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" 2166 + dependencies = [ 2167 + "futures-core", 2168 + "futures-util", 2169 + "pin-project-lite", 2170 + "sync_wrapper", 2171 + "tokio", 2172 + "tower-layer", 2173 + "tower-service", 2174 + ] 2175 + 2176 + [[package]] 2177 + name = "tower-http" 2178 + version = "0.6.8" 2179 + source = "registry+https://github.com/rust-lang/crates.io-index" 2180 + checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" 2181 + dependencies = [ 2182 + "async-compression", 2183 + "bitflags", 2184 + "bytes", 2185 + "futures-core", 2186 + "futures-util", 2187 + "http", 2188 + "http-body", 2189 + "http-body-util", 2190 + "iri-string", 2191 + "pin-project-lite", 2192 + "tokio", 2193 + "tokio-util", 2194 + "tower", 2195 + "tower-layer", 2196 + "tower-service", 2197 + ] 2198 + 2199 + [[package]] 2200 + name = "tower-layer" 2201 + version = "0.3.3" 2202 + source = "registry+https://github.com/rust-lang/crates.io-index" 2203 + checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 2204 + 2205 + [[package]] 2206 + name = "tower-service" 2207 + version = "0.3.3" 2208 + source = "registry+https://github.com/rust-lang/crates.io-index" 2209 + checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 2210 + 2211 + [[package]] 2212 + name = "tracing" 2213 + version = "0.1.43" 2214 + source = "registry+https://github.com/rust-lang/crates.io-index" 2215 + checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647" 2216 + dependencies = [ 2217 + "log", 2218 + "pin-project-lite", 2219 + "tracing-attributes", 2220 + "tracing-core", 2221 + ] 2222 + 2223 + [[package]] 2224 + name = "tracing-attributes" 2225 + version = "0.1.31" 2226 + source = "registry+https://github.com/rust-lang/crates.io-index" 2227 + checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" 2228 + dependencies = [ 2229 + "proc-macro2", 2230 + "quote", 2231 + "syn", 2232 + ] 2233 + 2234 + [[package]] 2235 + name = "tracing-core" 2236 + version = "0.1.35" 2237 + source = "registry+https://github.com/rust-lang/crates.io-index" 2238 + checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c" 2239 + dependencies = [ 2240 + "once_cell", 2241 + ] 2242 + 2243 + [[package]] 2244 + name = "try-lock" 2245 + version = "0.2.5" 2246 + source = "registry+https://github.com/rust-lang/crates.io-index" 2247 + checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 2248 + 2249 + [[package]] 2250 + name = "typenum" 2251 + version = "1.19.0" 2252 + source = "registry+https://github.com/rust-lang/crates.io-index" 2253 + checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" 2254 + 2255 + [[package]] 2256 + name = "uncased" 2257 + version = "0.9.10" 2258 + source = "registry+https://github.com/rust-lang/crates.io-index" 2259 + checksum = "e1b88fcfe09e89d3866a5c11019378088af2d24c3fbd4f0543f96b479ec90697" 2260 + dependencies = [ 2261 + "version_check", 2262 + ] 2263 + 2264 + [[package]] 2265 + name = "unicase" 2266 + version = "2.8.1" 2267 + source = "registry+https://github.com/rust-lang/crates.io-index" 2268 + checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" 2269 + 2270 + [[package]] 2271 + name = "unicode-ident" 2272 + version = "1.0.22" 2273 + source = "registry+https://github.com/rust-lang/crates.io-index" 2274 + checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" 2275 + 2276 + [[package]] 2277 + name = "unicode-xid" 2278 + version = "0.2.6" 2279 + source = "registry+https://github.com/rust-lang/crates.io-index" 2280 + checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 2281 + 2282 + [[package]] 2283 + name = "universal-hash" 2284 + version = "0.5.1" 2285 + source = "registry+https://github.com/rust-lang/crates.io-index" 2286 + checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" 2287 + dependencies = [ 2288 + "crypto-common", 2289 + "subtle", 2290 + ] 2291 + 2292 + [[package]] 2293 + name = "untrusted" 2294 + version = "0.9.0" 2295 + source = "registry+https://github.com/rust-lang/crates.io-index" 2296 + checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 2297 + 2298 + [[package]] 2299 + name = "url" 2300 + version = "2.5.7" 2301 + source = "registry+https://github.com/rust-lang/crates.io-index" 2302 + checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" 2303 + dependencies = [ 2304 + "form_urlencoded", 2305 + "idna", 2306 + "percent-encoding", 2307 + "serde", 2308 + ] 2309 + 2310 + [[package]] 2311 + name = "urlencoding" 2312 + version = "2.1.3" 2313 + source = "registry+https://github.com/rust-lang/crates.io-index" 2314 + checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" 2315 + 2316 + [[package]] 2317 + name = "utf8_iter" 2318 + version = "1.0.4" 2319 + source = "registry+https://github.com/rust-lang/crates.io-index" 2320 + checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 2321 + 2322 + [[package]] 2323 + name = "utf8parse" 2324 + version = "0.2.2" 2325 + source = "registry+https://github.com/rust-lang/crates.io-index" 2326 + checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 2327 + 2328 + [[package]] 2329 + name = "vcpkg" 2330 + version = "0.2.15" 2331 + source = "registry+https://github.com/rust-lang/crates.io-index" 2332 + checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 2333 + 2334 + [[package]] 2335 + name = "version_check" 2336 + version = "0.9.5" 2337 + source = "registry+https://github.com/rust-lang/crates.io-index" 2338 + checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 2339 + 2340 + [[package]] 2341 + name = "want" 2342 + version = "0.3.1" 2343 + source = "registry+https://github.com/rust-lang/crates.io-index" 2344 + checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 2345 + dependencies = [ 2346 + "try-lock", 2347 + ] 2348 + 2349 + [[package]] 2350 + name = "wasi" 2351 + version = "0.11.1+wasi-snapshot-preview1" 2352 + source = "registry+https://github.com/rust-lang/crates.io-index" 2353 + checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 2354 + 2355 + [[package]] 2356 + name = "wasip2" 2357 + version = "1.0.1+wasi-0.2.4" 2358 + source = "registry+https://github.com/rust-lang/crates.io-index" 2359 + checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" 2360 + dependencies = [ 2361 + "wit-bindgen", 2362 + ] 2363 + 2364 + [[package]] 2365 + name = "wasm-bindgen" 2366 + version = "0.2.106" 2367 + source = "registry+https://github.com/rust-lang/crates.io-index" 2368 + checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd" 2369 + dependencies = [ 2370 + "cfg-if", 2371 + "once_cell", 2372 + "rustversion", 2373 + "wasm-bindgen-macro", 2374 + "wasm-bindgen-shared", 2375 + ] 2376 + 2377 + [[package]] 2378 + name = "wasm-bindgen-futures" 2379 + version = "0.4.56" 2380 + source = "registry+https://github.com/rust-lang/crates.io-index" 2381 + checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c" 2382 + dependencies = [ 2383 + "cfg-if", 2384 + "js-sys", 2385 + "once_cell", 2386 + "wasm-bindgen", 2387 + "web-sys", 2388 + ] 2389 + 2390 + [[package]] 2391 + name = "wasm-bindgen-macro" 2392 + version = "0.2.106" 2393 + source = "registry+https://github.com/rust-lang/crates.io-index" 2394 + checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3" 2395 + dependencies = [ 2396 + "quote", 2397 + "wasm-bindgen-macro-support", 2398 + ] 2399 + 2400 + [[package]] 2401 + name = "wasm-bindgen-macro-support" 2402 + version = "0.2.106" 2403 + source = "registry+https://github.com/rust-lang/crates.io-index" 2404 + checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40" 2405 + dependencies = [ 2406 + "bumpalo", 2407 + "proc-macro2", 2408 + "quote", 2409 + "syn", 2410 + "wasm-bindgen-shared", 2411 + ] 2412 + 2413 + [[package]] 2414 + name = "wasm-bindgen-shared" 2415 + version = "0.2.106" 2416 + source = "registry+https://github.com/rust-lang/crates.io-index" 2417 + checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4" 2418 + dependencies = [ 2419 + "unicode-ident", 2420 + ] 2421 + 2422 + [[package]] 2423 + name = "web-sys" 2424 + version = "0.3.83" 2425 + source = "registry+https://github.com/rust-lang/crates.io-index" 2426 + checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac" 2427 + dependencies = [ 2428 + "js-sys", 2429 + "wasm-bindgen", 2430 + ] 2431 + 2432 + [[package]] 2433 + name = "web-time" 2434 + version = "1.1.0" 2435 + source = "registry+https://github.com/rust-lang/crates.io-index" 2436 + checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 2437 + dependencies = [ 2438 + "js-sys", 2439 + "wasm-bindgen", 2440 + ] 2441 + 2442 + [[package]] 2443 + name = "webpki-roots" 2444 + version = "1.0.4" 2445 + source = "registry+https://github.com/rust-lang/crates.io-index" 2446 + checksum = "b2878ef029c47c6e8cf779119f20fcf52bde7ad42a731b2a304bc221df17571e" 2447 + dependencies = [ 2448 + "rustls-pki-types", 2449 + ] 2450 + 2451 + [[package]] 2452 + name = "wildmatch" 2453 + version = "2.6.1" 2454 + source = "registry+https://github.com/rust-lang/crates.io-index" 2455 + checksum = "29333c3ea1ba8b17211763463ff24ee84e41c78224c16b001cd907e663a38c68" 2456 + 2457 + [[package]] 2458 + name = "windows" 2459 + version = "0.54.0" 2460 + source = "registry+https://github.com/rust-lang/crates.io-index" 2461 + checksum = "9252e5725dbed82865af151df558e754e4a3c2c30818359eb17465f1346a1b49" 2462 + dependencies = [ 2463 + "windows-core 0.54.0", 2464 + "windows-targets 0.52.6", 2465 + ] 2466 + 2467 + [[package]] 2468 + name = "windows-core" 2469 + version = "0.54.0" 2470 + source = "registry+https://github.com/rust-lang/crates.io-index" 2471 + checksum = "12661b9c89351d684a50a8a643ce5f608e20243b9fb84687800163429f161d65" 2472 + dependencies = [ 2473 + "windows-result 0.1.2", 2474 + "windows-targets 0.52.6", 2475 + ] 2476 + 2477 + [[package]] 2478 + name = "windows-core" 2479 + version = "0.62.2" 2480 + source = "registry+https://github.com/rust-lang/crates.io-index" 2481 + checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" 2482 + dependencies = [ 2483 + "windows-implement", 2484 + "windows-interface", 2485 + "windows-link", 2486 + "windows-result 0.4.1", 2487 + "windows-strings", 2488 + ] 2489 + 2490 + [[package]] 2491 + name = "windows-implement" 2492 + version = "0.60.2" 2493 + source = "registry+https://github.com/rust-lang/crates.io-index" 2494 + checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" 2495 + dependencies = [ 2496 + "proc-macro2", 2497 + "quote", 2498 + "syn", 2499 + ] 2500 + 2501 + [[package]] 2502 + name = "windows-interface" 2503 + version = "0.59.3" 2504 + source = "registry+https://github.com/rust-lang/crates.io-index" 2505 + checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" 2506 + dependencies = [ 2507 + "proc-macro2", 2508 + "quote", 2509 + "syn", 2510 + ] 2511 + 2512 + [[package]] 2513 + name = "windows-link" 2514 + version = "0.2.1" 2515 + source = "registry+https://github.com/rust-lang/crates.io-index" 2516 + checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 2517 + 2518 + [[package]] 2519 + name = "windows-result" 2520 + version = "0.1.2" 2521 + source = "registry+https://github.com/rust-lang/crates.io-index" 2522 + checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8" 2523 + dependencies = [ 2524 + "windows-targets 0.52.6", 2525 + ] 2526 + 2527 + [[package]] 2528 + name = "windows-result" 2529 + version = "0.4.1" 2530 + source = "registry+https://github.com/rust-lang/crates.io-index" 2531 + checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" 2532 + dependencies = [ 2533 + "windows-link", 2534 + ] 2535 + 2536 + [[package]] 2537 + name = "windows-strings" 2538 + version = "0.5.1" 2539 + source = "registry+https://github.com/rust-lang/crates.io-index" 2540 + checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" 2541 + dependencies = [ 2542 + "windows-link", 2543 + ] 2544 + 2545 + [[package]] 2546 + name = "windows-sys" 2547 + version = "0.52.0" 2548 + source = "registry+https://github.com/rust-lang/crates.io-index" 2549 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 2550 + dependencies = [ 2551 + "windows-targets 0.52.6", 2552 + ] 2553 + 2554 + [[package]] 2555 + name = "windows-sys" 2556 + version = "0.60.2" 2557 + source = "registry+https://github.com/rust-lang/crates.io-index" 2558 + checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 2559 + dependencies = [ 2560 + "windows-targets 0.53.5", 2561 + ] 2562 + 2563 + [[package]] 2564 + name = "windows-sys" 2565 + version = "0.61.2" 2566 + source = "registry+https://github.com/rust-lang/crates.io-index" 2567 + checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 2568 + dependencies = [ 2569 + "windows-link", 2570 + ] 2571 + 2572 + [[package]] 2573 + name = "windows-targets" 2574 + version = "0.52.6" 2575 + source = "registry+https://github.com/rust-lang/crates.io-index" 2576 + checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 2577 + dependencies = [ 2578 + "windows_aarch64_gnullvm 0.52.6", 2579 + "windows_aarch64_msvc 0.52.6", 2580 + "windows_i686_gnu 0.52.6", 2581 + "windows_i686_gnullvm 0.52.6", 2582 + "windows_i686_msvc 0.52.6", 2583 + "windows_x86_64_gnu 0.52.6", 2584 + "windows_x86_64_gnullvm 0.52.6", 2585 + "windows_x86_64_msvc 0.52.6", 2586 + ] 2587 + 2588 + [[package]] 2589 + name = "windows-targets" 2590 + version = "0.53.5" 2591 + source = "registry+https://github.com/rust-lang/crates.io-index" 2592 + checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 2593 + dependencies = [ 2594 + "windows-link", 2595 + "windows_aarch64_gnullvm 0.53.1", 2596 + "windows_aarch64_msvc 0.53.1", 2597 + "windows_i686_gnu 0.53.1", 2598 + "windows_i686_gnullvm 0.53.1", 2599 + "windows_i686_msvc 0.53.1", 2600 + "windows_x86_64_gnu 0.53.1", 2601 + "windows_x86_64_gnullvm 0.53.1", 2602 + "windows_x86_64_msvc 0.53.1", 2603 + ] 2604 + 2605 + [[package]] 2606 + name = "windows_aarch64_gnullvm" 2607 + version = "0.52.6" 2608 + source = "registry+https://github.com/rust-lang/crates.io-index" 2609 + checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 2610 + 2611 + [[package]] 2612 + name = "windows_aarch64_gnullvm" 2613 + version = "0.53.1" 2614 + source = "registry+https://github.com/rust-lang/crates.io-index" 2615 + checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" 2616 + 2617 + [[package]] 2618 + name = "windows_aarch64_msvc" 2619 + version = "0.52.6" 2620 + source = "registry+https://github.com/rust-lang/crates.io-index" 2621 + checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 2622 + 2623 + [[package]] 2624 + name = "windows_aarch64_msvc" 2625 + version = "0.53.1" 2626 + source = "registry+https://github.com/rust-lang/crates.io-index" 2627 + checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 2628 + 2629 + [[package]] 2630 + name = "windows_i686_gnu" 2631 + version = "0.52.6" 2632 + source = "registry+https://github.com/rust-lang/crates.io-index" 2633 + checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 2634 + 2635 + [[package]] 2636 + name = "windows_i686_gnu" 2637 + version = "0.53.1" 2638 + source = "registry+https://github.com/rust-lang/crates.io-index" 2639 + checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" 2640 + 2641 + [[package]] 2642 + name = "windows_i686_gnullvm" 2643 + version = "0.52.6" 2644 + source = "registry+https://github.com/rust-lang/crates.io-index" 2645 + checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 2646 + 2647 + [[package]] 2648 + name = "windows_i686_gnullvm" 2649 + version = "0.53.1" 2650 + source = "registry+https://github.com/rust-lang/crates.io-index" 2651 + checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" 2652 + 2653 + [[package]] 2654 + name = "windows_i686_msvc" 2655 + version = "0.52.6" 2656 + source = "registry+https://github.com/rust-lang/crates.io-index" 2657 + checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 2658 + 2659 + [[package]] 2660 + name = "windows_i686_msvc" 2661 + version = "0.53.1" 2662 + source = "registry+https://github.com/rust-lang/crates.io-index" 2663 + checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 2664 + 2665 + [[package]] 2666 + name = "windows_x86_64_gnu" 2667 + version = "0.52.6" 2668 + source = "registry+https://github.com/rust-lang/crates.io-index" 2669 + checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 2670 + 2671 + [[package]] 2672 + name = "windows_x86_64_gnu" 2673 + version = "0.53.1" 2674 + source = "registry+https://github.com/rust-lang/crates.io-index" 2675 + checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" 2676 + 2677 + [[package]] 2678 + name = "windows_x86_64_gnullvm" 2679 + version = "0.52.6" 2680 + source = "registry+https://github.com/rust-lang/crates.io-index" 2681 + checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 2682 + 2683 + [[package]] 2684 + name = "windows_x86_64_gnullvm" 2685 + version = "0.53.1" 2686 + source = "registry+https://github.com/rust-lang/crates.io-index" 2687 + checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" 2688 + 2689 + [[package]] 2690 + name = "windows_x86_64_msvc" 2691 + version = "0.52.6" 2692 + source = "registry+https://github.com/rust-lang/crates.io-index" 2693 + checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 2694 + 2695 + [[package]] 2696 + name = "windows_x86_64_msvc" 2697 + version = "0.53.1" 2698 + source = "registry+https://github.com/rust-lang/crates.io-index" 2699 + checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" 2700 + 2701 + [[package]] 2702 + name = "winnow" 2703 + version = "0.7.14" 2704 + source = "registry+https://github.com/rust-lang/crates.io-index" 2705 + checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829" 2706 + dependencies = [ 2707 + "memchr", 2708 + ] 2709 + 2710 + [[package]] 2711 + name = "wit-bindgen" 2712 + version = "0.46.0" 2713 + source = "registry+https://github.com/rust-lang/crates.io-index" 2714 + checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" 2715 + 2716 + [[package]] 2717 + name = "writeable" 2718 + version = "0.6.2" 2719 + source = "registry+https://github.com/rust-lang/crates.io-index" 2720 + checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" 2721 + 2722 + [[package]] 2723 + name = "yoke" 2724 + version = "0.8.1" 2725 + source = "registry+https://github.com/rust-lang/crates.io-index" 2726 + checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" 2727 + dependencies = [ 2728 + "stable_deref_trait", 2729 + "yoke-derive", 2730 + "zerofrom", 2731 + ] 2732 + 2733 + [[package]] 2734 + name = "yoke-derive" 2735 + version = "0.8.1" 2736 + source = "registry+https://github.com/rust-lang/crates.io-index" 2737 + checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" 2738 + dependencies = [ 2739 + "proc-macro2", 2740 + "quote", 2741 + "syn", 2742 + "synstructure", 2743 + ] 2744 + 2745 + [[package]] 2746 + name = "zerocopy" 2747 + version = "0.8.31" 2748 + source = "registry+https://github.com/rust-lang/crates.io-index" 2749 + checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3" 2750 + dependencies = [ 2751 + "zerocopy-derive", 2752 + ] 2753 + 2754 + [[package]] 2755 + name = "zerocopy-derive" 2756 + version = "0.8.31" 2757 + source = "registry+https://github.com/rust-lang/crates.io-index" 2758 + checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a" 2759 + dependencies = [ 2760 + "proc-macro2", 2761 + "quote", 2762 + "syn", 2763 + ] 2764 + 2765 + [[package]] 2766 + name = "zerofrom" 2767 + version = "0.1.6" 2768 + source = "registry+https://github.com/rust-lang/crates.io-index" 2769 + checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 2770 + dependencies = [ 2771 + "zerofrom-derive", 2772 + ] 2773 + 2774 + [[package]] 2775 + name = "zerofrom-derive" 2776 + version = "0.1.6" 2777 + source = "registry+https://github.com/rust-lang/crates.io-index" 2778 + checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 2779 + dependencies = [ 2780 + "proc-macro2", 2781 + "quote", 2782 + "syn", 2783 + "synstructure", 2784 + ] 2785 + 2786 + [[package]] 2787 + name = "zeroize" 2788 + version = "1.8.2" 2789 + source = "registry+https://github.com/rust-lang/crates.io-index" 2790 + checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" 2791 + 2792 + [[package]] 2793 + name = "zerotrie" 2794 + version = "0.2.3" 2795 + source = "registry+https://github.com/rust-lang/crates.io-index" 2796 + checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" 2797 + dependencies = [ 2798 + "displaydoc", 2799 + "yoke", 2800 + "zerofrom", 2801 + ] 2802 + 2803 + [[package]] 2804 + name = "zerovec" 2805 + version = "0.11.5" 2806 + source = "registry+https://github.com/rust-lang/crates.io-index" 2807 + checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" 2808 + dependencies = [ 2809 + "yoke", 2810 + "zerofrom", 2811 + "zerovec-derive", 2812 + ] 2813 + 2814 + [[package]] 2815 + name = "zerovec-derive" 2816 + version = "0.11.2" 2817 + source = "registry+https://github.com/rust-lang/crates.io-index" 2818 + checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" 2819 + dependencies = [ 2820 + "proc-macro2", 2821 + "quote", 2822 + "syn", 2823 + ]
+20
Cargo.toml
··· 1 + [package] 2 + name = "subs" 3 + version = "0.1.0" 4 + edition = "2024" 5 + 6 + [dependencies] 7 + maud = { version = "0.27", features = ["poem"] } 8 + poem = { version = "3", features = ["static-files", "chrono", "cookie"] } 9 + 10 + rusqlite = { version = "0.37", features = ["chrono", "bundled"] } 11 + rusqlite_migration = "2.3" 12 + 13 + serde = "1" 14 + serde_json = "1" 15 + 16 + tokio = { version = "1", features = ["macros", "rt-multi-thread", "process"] } 17 + 18 + log = "0.4.28" 19 + env_logger = "0.11.8" 20 + rustypipe = { version = "0.11", features = ["rustls-tls-webpki-roots"], default-features = false}
+34
src/db.rs
··· 1 + use rusqlite::Connection; 2 + use rusqlite_migration::{M, Migrations}; 3 + 4 + // Define migrations 5 + const MIGRATIONS_SLICE: &[M<'_>] = &[ 6 + M::up( 7 + "CREATE TABLE subscription( 8 + channel_id TEXT NOT NULL UNIQUE, 9 + name TEXT NOT NULL, 10 + creation_datetime TEXT NOT NULL DEFAULT CURRENT_TIMESTAMP 11 + );", 12 + ), 13 + 14 + ]; 15 + 16 + const MIGRATIONS: Migrations<'_> = Migrations::from_slice(MIGRATIONS_SLICE); 17 + 18 + #[expect( 19 + clippy::expect_used, 20 + reason = "If we fail to get DB, we might as well panic." 21 + )] 22 + pub fn connect() -> Connection { 23 + let mut conn = Connection::open("./db.db3").expect("Failed to open database file"); 24 + 25 + // Apply some PRAGMA, often better to do it outside of migrations 26 + conn.pragma_update_and_check(None, "journal_mode", "WAL", |_| Ok(())) 27 + .expect("Failed to set WAL journal mode"); 28 + 29 + MIGRATIONS 30 + .to_latest(&mut conn) 31 + .expect("Failed to run database migrations"); 32 + 33 + conn 34 + }
+33
src/main.rs
··· 1 + use poem::{EndpointExt as _, Route, Server, endpoint::StaticFileEndpoint, get, listener::TcpListener, web::Data}; 2 + use rusqlite::Connection; 3 + use std::{env, sync::{Arc, Mutex}}; 4 + 5 + mod db; 6 + mod routes; 7 + 8 + // type WrappedConnection = Arc<Mutex<Connection>>; 9 + // type W = WrappedConnection; 10 + // type D<T> = Data<T>; 11 + type Db<'a> = Data<&'a Arc<Mutex<Connection>>>; 12 + 13 + #[tokio::main] 14 + async fn main() -> Result<(), std::io::Error> { 15 + env_logger::init(); 16 + 17 + let conn = Arc::new(Mutex::new(db::connect())); 18 + 19 + let app = Route::new() 20 + .at("/", poem::get(routes::index::get).post(routes::index::post)) 21 + 22 + .at("/style.css", StaticFileEndpoint::new("./style.css").no_cache(true)) 23 + //.with(CookieJarManager::new()) 24 + .data(conn.clone()); 25 + 26 + let port = env::var("PORT").unwrap_or("3000".to_owned()); 27 + 28 + println!("Listening on https://localhost:{port}"); 29 + Server::new(TcpListener::bind(format!("0.0.0.0:{port}"))) 30 + .name("hello-world") 31 + .run(app) 32 + .await 33 + }
+2
src/routes.rs
··· 1 + pub mod index; 2 + pub mod sub;
+123
src/routes/index.rs
··· 1 + use std::collections::HashMap; 2 + 3 + use maud::{Markup, html}; 4 + use poem::{IntoResponse as _, Response, handler, web::{Data, Form, Redirect}}; 5 + use rustypipe::{client::RustyPipe, model::{UrlTarget, VideoItem}}; 6 + 7 + use crate::Db; 8 + 9 + #[derive(Clone)] 10 + struct Subs { 11 + db_id: i32, 12 + channel_id: String, 13 + name: String, 14 + } 15 + 16 + 17 + #[handler] 18 + pub async fn post(Data(conn): Db<'_>, Form(form): Form<HashMap<String, String>>) { 19 + let channel = &form["channel"]; 20 + 21 + let rp = RustyPipe::new(); 22 + let UrlTarget::Channel { id } = rp.query().resolve_string(channel, false).await.unwrap() else { unreachable!() }; 23 + 24 + let channel = rp.query().channel_videos(&id).await.unwrap(); 25 + { 26 + let conn = conn.lock().unwrap(); 27 + let mut stmt = conn.prepare("INSERT INTO subscription (name, channel_id) VALUES (?1, ?2)").unwrap(); 28 + stmt.execute([channel.name, channel.id]).unwrap(); 29 + 30 + } 31 + } 32 + 33 + #[handler] 34 + pub async fn get(Data(conn): Db<'_>) -> Markup { 35 + 36 + let subscriptions: rusqlite::Result<Vec<Subs>> = { 37 + let conn = conn.lock().unwrap(); 38 + let mut stmt = conn.prepare("SELECT ROWID, channel_id, name FROM subscription").unwrap(); 39 + 40 + stmt 41 + .query_map([], |row| { 42 + Ok(Subs { 43 + db_id: row.get(0).unwrap(), 44 + channel_id: row.get(1).unwrap(), 45 + name: row.get(2).unwrap(), 46 + }) 47 + }).unwrap() 48 + .collect() 49 + }; 50 + let subscriptions = subscriptions.unwrap(); 51 + 52 + let rp = RustyPipe::new(); 53 + 54 + let mut videos = vec![]; 55 + for subscription in subscriptions.clone() { 56 + let vids = rp.query() 57 + .channel_videos_tab(subscription.channel_id, rustypipe::param::ChannelVideoTab::Videos).await.unwrap(); 58 + videos.extend(vids.content.items); 59 + } 60 + 61 + videos.sort_by(|a, b| { 62 + let make_timestamp = |e: &VideoItem| {e.publish_date.map(|t| t.unix_timestamp()).unwrap_or_default()}; 63 + make_timestamp(a).cmp(&make_timestamp(b)) 64 + }); 65 + 66 + videos.reverse(); 67 + 68 + html!{ 69 + link rel="stylesheet" href="/style.css"; 70 + 71 + form method="POST" { 72 + 73 + label { "sub" input name="channel"; } 74 + input type="submit"; 75 + } 76 + 77 + details { 78 + summary { "All subscriptions" } 79 + @for sub in subscriptions { 80 + ul { 81 + li { 82 + (sub.name) 83 + 84 + form action="/sub" method="DELETE" { 85 + input type="hidden" name="id" value=(sub.db_id); 86 + } 87 + } 88 + } 89 + } 90 + } 91 + 92 + ol .thumb-grid { 93 + @for vid in videos { 94 + @let channel = vid.channel.unwrap(); 95 + @let duration = vid.duration.unwrap_or_default(); 96 + li { 97 + vid-thumbnail { 98 + img src=(vid.thumbnail.first().unwrap().url); 99 + 100 + vid-timestamp { 101 + (duration / 60) 102 + ":" 103 + (duration % 60) 104 + } 105 + 106 + } 107 + 108 + vid-details-large { 109 + // @let avatar = channel.avatar.first().unwrap(); 110 + // img src=(avatar.url) width=(avatar.width) height=(avatar.height); 111 + vid-title { (vid.name) } 112 + } 113 + 114 + vid-details-small { 115 + vid-channel { (channel.name) } 116 + upload-date { (vid.publish_date_txt.unwrap_or_default())} 117 + } 118 + } 119 + } 120 + } 121 + 122 + } 123 + }
+7
src/routes/sub.rs
··· 1 + use poem::{handler, web::Data}; 2 + use crate::Db; 3 + 4 + #[handler] 5 + pub async fn delete(Data(conn): Db<'_>) { 6 + 7 + }
+54
style.css
··· 1 + /* Element | http://localhost:3000/ */ 2 + 3 + * { 4 + box-sizing: border-box; 5 + } 6 + 7 + ol.thumb-grid { 8 + display: grid; 9 + grid-template-columns: repeat(auto-fill, 16rem); 10 + gap: 1rem; 11 + 12 + li { 13 + display: flex; 14 + flex-flow: column; 15 + gap: 0.5rem; 16 + 17 + vid-thumbnail { 18 + position: relative; 19 + 20 + img { 21 + width: 100%; 22 + } 23 + 24 + vid-timestamp { 25 + position: absolute; 26 + bottom: 0; 27 + right: 0; 28 + background: hsla(from black h s l / 70%); 29 + color: white; 30 + font-family: "Courier New", Courier, monospace; 31 + } 32 + } 33 + vid-details-large { 34 + display: flex; 35 + gap: 0.5rem; 36 + flex-flow: row nowrap; 37 + 38 + img { 39 + width: 3rem; 40 + height: 3rem; 41 + border-radius: 999rem; 42 + } 43 + vid-title { 44 + font-weight: bold; 45 + } 46 + } 47 + 48 + vid-details-small { 49 + display: flex; 50 + gap: 0.5rem; 51 + font-style: italic; 52 + } 53 + } 54 + }