dashboard for your PDS

chore: init project

ptr.pet 3380d75f

+12
.cargo/config.toml
···
··· 1 + [target.x86_64-unknown-linux-gnu] 2 + linker = "clang" 3 + rustflags = ["-C", "link-arg=-fuse-ld=lld"] 4 + 5 + [target.x86_64-pc-windows-msvc] 6 + linker = "rust-lld.exe" 7 + 8 + [unstable] 9 + codegen-backend = true 10 + 11 + [profile.dev] 12 + codegen-backend = "cranelift"
+1
.gitignore
···
··· 1 + /target
+2083
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 = "addr2line" 7 + version = "0.24.2" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" 10 + dependencies = [ 11 + "gimli", 12 + ] 13 + 14 + [[package]] 15 + name = "adler2" 16 + version = "2.0.1" 17 + source = "registry+https://github.com/rust-lang/crates.io-index" 18 + checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" 19 + 20 + [[package]] 21 + name = "ahash" 22 + version = "0.8.12" 23 + source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" 25 + dependencies = [ 26 + "cfg-if", 27 + "getrandom 0.3.3", 28 + "once_cell", 29 + "serde", 30 + "version_check", 31 + "zerocopy", 32 + ] 33 + 34 + [[package]] 35 + name = "aho-corasick" 36 + version = "1.1.3" 37 + source = "registry+https://github.com/rust-lang/crates.io-index" 38 + checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 39 + dependencies = [ 40 + "memchr", 41 + ] 42 + 43 + [[package]] 44 + name = "alloc-no-stdlib" 45 + version = "2.0.4" 46 + source = "registry+https://github.com/rust-lang/crates.io-index" 47 + checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 48 + 49 + [[package]] 50 + name = "alloc-stdlib" 51 + version = "0.2.2" 52 + source = "registry+https://github.com/rust-lang/crates.io-index" 53 + checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 54 + dependencies = [ 55 + "alloc-no-stdlib", 56 + ] 57 + 58 + [[package]] 59 + name = "anyhow" 60 + version = "1.0.99" 61 + source = "registry+https://github.com/rust-lang/crates.io-index" 62 + checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100" 63 + 64 + [[package]] 65 + name = "async-compression" 66 + version = "0.4.28" 67 + source = "registry+https://github.com/rust-lang/crates.io-index" 68 + checksum = "6448dfb3960f0b038e88c781ead1e7eb7929dfc3a71a1336ec9086c00f6d1e75" 69 + dependencies = [ 70 + "brotli", 71 + "compression-codecs", 72 + "compression-core", 73 + "flate2", 74 + "futures-core", 75 + "memchr", 76 + "pin-project-lite", 77 + "tokio", 78 + "zstd", 79 + "zstd-safe", 80 + ] 81 + 82 + [[package]] 83 + name = "atomic-waker" 84 + version = "1.1.2" 85 + source = "registry+https://github.com/rust-lang/crates.io-index" 86 + checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 87 + 88 + [[package]] 89 + name = "autocfg" 90 + version = "1.5.0" 91 + source = "registry+https://github.com/rust-lang/crates.io-index" 92 + checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 93 + 94 + [[package]] 95 + name = "axum" 96 + version = "0.8.4" 97 + source = "registry+https://github.com/rust-lang/crates.io-index" 98 + checksum = "021e862c184ae977658b36c4500f7feac3221ca5da43e3f25bd04ab6c79a29b5" 99 + dependencies = [ 100 + "axum-core", 101 + "bytes", 102 + "form_urlencoded", 103 + "futures-util", 104 + "http", 105 + "http-body", 106 + "http-body-util", 107 + "hyper", 108 + "hyper-util", 109 + "itoa", 110 + "matchit", 111 + "memchr", 112 + "mime", 113 + "percent-encoding", 114 + "pin-project-lite", 115 + "rustversion", 116 + "serde", 117 + "serde_path_to_error", 118 + "serde_urlencoded", 119 + "sync_wrapper", 120 + "tokio", 121 + "tower", 122 + "tower-layer", 123 + "tower-service", 124 + "tracing", 125 + ] 126 + 127 + [[package]] 128 + name = "axum-core" 129 + version = "0.5.2" 130 + source = "registry+https://github.com/rust-lang/crates.io-index" 131 + checksum = "68464cd0412f486726fb3373129ef5d2993f90c34bc2bc1c1e9943b2f4fc7ca6" 132 + dependencies = [ 133 + "bytes", 134 + "futures-core", 135 + "http", 136 + "http-body", 137 + "http-body-util", 138 + "mime", 139 + "pin-project-lite", 140 + "rustversion", 141 + "sync_wrapper", 142 + "tower-layer", 143 + "tower-service", 144 + "tracing", 145 + ] 146 + 147 + [[package]] 148 + name = "axum-htmx" 149 + version = "0.8.1" 150 + source = "registry+https://github.com/rust-lang/crates.io-index" 151 + checksum = "a2d4a162b7621482903309c0e8a990a866728b6312350147181230f840252314" 152 + dependencies = [ 153 + "axum-core", 154 + "http", 155 + ] 156 + 157 + [[package]] 158 + name = "backtrace" 159 + version = "0.3.75" 160 + source = "registry+https://github.com/rust-lang/crates.io-index" 161 + checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002" 162 + dependencies = [ 163 + "addr2line", 164 + "cfg-if", 165 + "libc", 166 + "miniz_oxide", 167 + "object", 168 + "rustc-demangle", 169 + "windows-targets", 170 + ] 171 + 172 + [[package]] 173 + name = "base64" 174 + version = "0.22.1" 175 + source = "registry+https://github.com/rust-lang/crates.io-index" 176 + checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 177 + 178 + [[package]] 179 + name = "bitflags" 180 + version = "2.9.3" 181 + source = "registry+https://github.com/rust-lang/crates.io-index" 182 + checksum = "34efbcccd345379ca2868b2b2c9d3782e9cc58ba87bc7d79d5b53d9c9ae6f25d" 183 + 184 + [[package]] 185 + name = "borsh" 186 + version = "1.5.7" 187 + source = "registry+https://github.com/rust-lang/crates.io-index" 188 + checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce" 189 + dependencies = [ 190 + "cfg_aliases", 191 + ] 192 + 193 + [[package]] 194 + name = "brotli" 195 + version = "8.0.2" 196 + source = "registry+https://github.com/rust-lang/crates.io-index" 197 + checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560" 198 + dependencies = [ 199 + "alloc-no-stdlib", 200 + "alloc-stdlib", 201 + "brotli-decompressor", 202 + ] 203 + 204 + [[package]] 205 + name = "brotli-decompressor" 206 + version = "5.0.0" 207 + source = "registry+https://github.com/rust-lang/crates.io-index" 208 + checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03" 209 + dependencies = [ 210 + "alloc-no-stdlib", 211 + "alloc-stdlib", 212 + ] 213 + 214 + [[package]] 215 + name = "bumpalo" 216 + version = "3.19.0" 217 + source = "registry+https://github.com/rust-lang/crates.io-index" 218 + checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" 219 + 220 + [[package]] 221 + name = "bytes" 222 + version = "1.10.1" 223 + source = "registry+https://github.com/rust-lang/crates.io-index" 224 + checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" 225 + 226 + [[package]] 227 + name = "cc" 228 + version = "1.2.34" 229 + source = "registry+https://github.com/rust-lang/crates.io-index" 230 + checksum = "42bc4aea80032b7bf409b0bc7ccad88853858911b7713a8062fdc0623867bedc" 231 + dependencies = [ 232 + "jobserver", 233 + "libc", 234 + "shlex", 235 + ] 236 + 237 + [[package]] 238 + name = "cfg-if" 239 + version = "1.0.3" 240 + source = "registry+https://github.com/rust-lang/crates.io-index" 241 + checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" 242 + 243 + [[package]] 244 + name = "cfg_aliases" 245 + version = "0.2.1" 246 + source = "registry+https://github.com/rust-lang/crates.io-index" 247 + checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 248 + 249 + [[package]] 250 + name = "compression-codecs" 251 + version = "0.4.28" 252 + source = "registry+https://github.com/rust-lang/crates.io-index" 253 + checksum = "46cc6539bf1c592cff488b9f253b30bc0ec50d15407c2cf45e27bd8f308d5905" 254 + dependencies = [ 255 + "brotli", 256 + "compression-core", 257 + "flate2", 258 + "futures-core", 259 + "memchr", 260 + "pin-project-lite", 261 + "zstd", 262 + "zstd-safe", 263 + ] 264 + 265 + [[package]] 266 + name = "compression-core" 267 + version = "0.4.28" 268 + source = "registry+https://github.com/rust-lang/crates.io-index" 269 + checksum = "2957e823c15bde7ecf1e8b64e537aa03a6be5fda0e2334e99887669e75b12e01" 270 + 271 + [[package]] 272 + name = "crc32fast" 273 + version = "1.5.0" 274 + source = "registry+https://github.com/rust-lang/crates.io-index" 275 + checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" 276 + dependencies = [ 277 + "cfg-if", 278 + ] 279 + 280 + [[package]] 281 + name = "displaydoc" 282 + version = "0.2.5" 283 + source = "registry+https://github.com/rust-lang/crates.io-index" 284 + checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 285 + dependencies = [ 286 + "proc-macro2", 287 + "quote", 288 + "syn", 289 + ] 290 + 291 + [[package]] 292 + name = "encoding_rs" 293 + version = "0.8.35" 294 + source = "registry+https://github.com/rust-lang/crates.io-index" 295 + checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 296 + dependencies = [ 297 + "cfg-if", 298 + ] 299 + 300 + [[package]] 301 + name = "equivalent" 302 + version = "1.0.2" 303 + source = "registry+https://github.com/rust-lang/crates.io-index" 304 + checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 305 + 306 + [[package]] 307 + name = "flate2" 308 + version = "1.1.2" 309 + source = "registry+https://github.com/rust-lang/crates.io-index" 310 + checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d" 311 + dependencies = [ 312 + "crc32fast", 313 + "miniz_oxide", 314 + ] 315 + 316 + [[package]] 317 + name = "fnv" 318 + version = "1.0.7" 319 + source = "registry+https://github.com/rust-lang/crates.io-index" 320 + checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 321 + 322 + [[package]] 323 + name = "form_urlencoded" 324 + version = "1.2.2" 325 + source = "registry+https://github.com/rust-lang/crates.io-index" 326 + checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 327 + dependencies = [ 328 + "percent-encoding", 329 + ] 330 + 331 + [[package]] 332 + name = "futures-channel" 333 + version = "0.3.31" 334 + source = "registry+https://github.com/rust-lang/crates.io-index" 335 + checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 336 + dependencies = [ 337 + "futures-core", 338 + ] 339 + 340 + [[package]] 341 + name = "futures-core" 342 + version = "0.3.31" 343 + source = "registry+https://github.com/rust-lang/crates.io-index" 344 + checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 345 + 346 + [[package]] 347 + name = "futures-sink" 348 + version = "0.3.31" 349 + source = "registry+https://github.com/rust-lang/crates.io-index" 350 + checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 351 + 352 + [[package]] 353 + name = "futures-task" 354 + version = "0.3.31" 355 + source = "registry+https://github.com/rust-lang/crates.io-index" 356 + checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 357 + 358 + [[package]] 359 + name = "futures-util" 360 + version = "0.3.31" 361 + source = "registry+https://github.com/rust-lang/crates.io-index" 362 + checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 363 + dependencies = [ 364 + "futures-core", 365 + "futures-task", 366 + "pin-project-lite", 367 + "pin-utils", 368 + ] 369 + 370 + [[package]] 371 + name = "getrandom" 372 + version = "0.2.16" 373 + source = "registry+https://github.com/rust-lang/crates.io-index" 374 + checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" 375 + dependencies = [ 376 + "cfg-if", 377 + "js-sys", 378 + "libc", 379 + "wasi 0.11.1+wasi-snapshot-preview1", 380 + "wasm-bindgen", 381 + ] 382 + 383 + [[package]] 384 + name = "getrandom" 385 + version = "0.3.3" 386 + source = "registry+https://github.com/rust-lang/crates.io-index" 387 + checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" 388 + dependencies = [ 389 + "cfg-if", 390 + "js-sys", 391 + "libc", 392 + "r-efi", 393 + "wasi 0.14.2+wasi-0.2.4", 394 + "wasm-bindgen", 395 + ] 396 + 397 + [[package]] 398 + name = "gimli" 399 + version = "0.31.1" 400 + source = "registry+https://github.com/rust-lang/crates.io-index" 401 + checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" 402 + 403 + [[package]] 404 + name = "h2" 405 + version = "0.4.12" 406 + source = "registry+https://github.com/rust-lang/crates.io-index" 407 + checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386" 408 + dependencies = [ 409 + "atomic-waker", 410 + "bytes", 411 + "fnv", 412 + "futures-core", 413 + "futures-sink", 414 + "http", 415 + "indexmap", 416 + "slab", 417 + "tokio", 418 + "tokio-util", 419 + "tracing", 420 + ] 421 + 422 + [[package]] 423 + name = "hashbrown" 424 + version = "0.15.5" 425 + source = "registry+https://github.com/rust-lang/crates.io-index" 426 + checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" 427 + 428 + [[package]] 429 + name = "html-escape" 430 + version = "0.2.13" 431 + source = "registry+https://github.com/rust-lang/crates.io-index" 432 + checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476" 433 + dependencies = [ 434 + "utf8-width", 435 + ] 436 + 437 + [[package]] 438 + name = "http" 439 + version = "1.3.1" 440 + source = "registry+https://github.com/rust-lang/crates.io-index" 441 + checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" 442 + dependencies = [ 443 + "bytes", 444 + "fnv", 445 + "itoa", 446 + ] 447 + 448 + [[package]] 449 + name = "http-body" 450 + version = "1.0.1" 451 + source = "registry+https://github.com/rust-lang/crates.io-index" 452 + checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 453 + dependencies = [ 454 + "bytes", 455 + "http", 456 + ] 457 + 458 + [[package]] 459 + name = "http-body-util" 460 + version = "0.1.3" 461 + source = "registry+https://github.com/rust-lang/crates.io-index" 462 + checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 463 + dependencies = [ 464 + "bytes", 465 + "futures-core", 466 + "http", 467 + "http-body", 468 + "pin-project-lite", 469 + ] 470 + 471 + [[package]] 472 + name = "httparse" 473 + version = "1.10.1" 474 + source = "registry+https://github.com/rust-lang/crates.io-index" 475 + checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 476 + 477 + [[package]] 478 + name = "httpdate" 479 + version = "1.0.3" 480 + source = "registry+https://github.com/rust-lang/crates.io-index" 481 + checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 482 + 483 + [[package]] 484 + name = "hyper" 485 + version = "1.7.0" 486 + source = "registry+https://github.com/rust-lang/crates.io-index" 487 + checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e" 488 + dependencies = [ 489 + "atomic-waker", 490 + "bytes", 491 + "futures-channel", 492 + "futures-core", 493 + "h2", 494 + "http", 495 + "http-body", 496 + "httparse", 497 + "httpdate", 498 + "itoa", 499 + "pin-project-lite", 500 + "pin-utils", 501 + "smallvec", 502 + "tokio", 503 + "want", 504 + ] 505 + 506 + [[package]] 507 + name = "hyper-rustls" 508 + version = "0.27.7" 509 + source = "registry+https://github.com/rust-lang/crates.io-index" 510 + checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" 511 + dependencies = [ 512 + "http", 513 + "hyper", 514 + "hyper-util", 515 + "rustls", 516 + "rustls-pki-types", 517 + "tokio", 518 + "tokio-rustls", 519 + "tower-service", 520 + "webpki-roots", 521 + ] 522 + 523 + [[package]] 524 + name = "hyper-util" 525 + version = "0.1.16" 526 + source = "registry+https://github.com/rust-lang/crates.io-index" 527 + checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e" 528 + dependencies = [ 529 + "base64", 530 + "bytes", 531 + "futures-channel", 532 + "futures-core", 533 + "futures-util", 534 + "http", 535 + "http-body", 536 + "hyper", 537 + "ipnet", 538 + "libc", 539 + "percent-encoding", 540 + "pin-project-lite", 541 + "socket2 0.6.0", 542 + "tokio", 543 + "tower-service", 544 + "tracing", 545 + ] 546 + 547 + [[package]] 548 + name = "hypertext" 549 + version = "0.12.1" 550 + source = "registry+https://github.com/rust-lang/crates.io-index" 551 + checksum = "eb73b82c6a76434fd87a0668ef3ff1a8182512dfb610eef9138169a7e2d3a0ed" 552 + dependencies = [ 553 + "axum-core", 554 + "html-escape", 555 + "hypertext-macros", 556 + "itoa", 557 + "ryu", 558 + ] 559 + 560 + [[package]] 561 + name = "hypertext-macros" 562 + version = "0.12.1" 563 + source = "registry+https://github.com/rust-lang/crates.io-index" 564 + checksum = "c120534b9d41bd317a5b111aacc38a34071d15df9462c0e21f6093ade3a03660" 565 + dependencies = [ 566 + "html-escape", 567 + "proc-macro2", 568 + "quote", 569 + "syn", 570 + ] 571 + 572 + [[package]] 573 + name = "icu_collections" 574 + version = "2.0.0" 575 + source = "registry+https://github.com/rust-lang/crates.io-index" 576 + checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" 577 + dependencies = [ 578 + "displaydoc", 579 + "potential_utf", 580 + "yoke", 581 + "zerofrom", 582 + "zerovec", 583 + ] 584 + 585 + [[package]] 586 + name = "icu_locale_core" 587 + version = "2.0.0" 588 + source = "registry+https://github.com/rust-lang/crates.io-index" 589 + checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" 590 + dependencies = [ 591 + "displaydoc", 592 + "litemap", 593 + "tinystr", 594 + "writeable", 595 + "zerovec", 596 + ] 597 + 598 + [[package]] 599 + name = "icu_normalizer" 600 + version = "2.0.0" 601 + source = "registry+https://github.com/rust-lang/crates.io-index" 602 + checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" 603 + dependencies = [ 604 + "displaydoc", 605 + "icu_collections", 606 + "icu_normalizer_data", 607 + "icu_properties", 608 + "icu_provider", 609 + "smallvec", 610 + "zerovec", 611 + ] 612 + 613 + [[package]] 614 + name = "icu_normalizer_data" 615 + version = "2.0.0" 616 + source = "registry+https://github.com/rust-lang/crates.io-index" 617 + checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" 618 + 619 + [[package]] 620 + name = "icu_properties" 621 + version = "2.0.1" 622 + source = "registry+https://github.com/rust-lang/crates.io-index" 623 + checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" 624 + dependencies = [ 625 + "displaydoc", 626 + "icu_collections", 627 + "icu_locale_core", 628 + "icu_properties_data", 629 + "icu_provider", 630 + "potential_utf", 631 + "zerotrie", 632 + "zerovec", 633 + ] 634 + 635 + [[package]] 636 + name = "icu_properties_data" 637 + version = "2.0.1" 638 + source = "registry+https://github.com/rust-lang/crates.io-index" 639 + checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" 640 + 641 + [[package]] 642 + name = "icu_provider" 643 + version = "2.0.0" 644 + source = "registry+https://github.com/rust-lang/crates.io-index" 645 + checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" 646 + dependencies = [ 647 + "displaydoc", 648 + "icu_locale_core", 649 + "stable_deref_trait", 650 + "tinystr", 651 + "writeable", 652 + "yoke", 653 + "zerofrom", 654 + "zerotrie", 655 + "zerovec", 656 + ] 657 + 658 + [[package]] 659 + name = "idna" 660 + version = "1.1.0" 661 + source = "registry+https://github.com/rust-lang/crates.io-index" 662 + checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 663 + dependencies = [ 664 + "idna_adapter", 665 + "smallvec", 666 + "utf8_iter", 667 + ] 668 + 669 + [[package]] 670 + name = "idna_adapter" 671 + version = "1.2.1" 672 + source = "registry+https://github.com/rust-lang/crates.io-index" 673 + checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 674 + dependencies = [ 675 + "icu_normalizer", 676 + "icu_properties", 677 + ] 678 + 679 + [[package]] 680 + name = "indexmap" 681 + version = "2.11.0" 682 + source = "registry+https://github.com/rust-lang/crates.io-index" 683 + checksum = "f2481980430f9f78649238835720ddccc57e52df14ffce1c6f37391d61b563e9" 684 + dependencies = [ 685 + "equivalent", 686 + "hashbrown", 687 + ] 688 + 689 + [[package]] 690 + name = "io-uring" 691 + version = "0.7.10" 692 + source = "registry+https://github.com/rust-lang/crates.io-index" 693 + checksum = "046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b" 694 + dependencies = [ 695 + "bitflags", 696 + "cfg-if", 697 + "libc", 698 + ] 699 + 700 + [[package]] 701 + name = "ipnet" 702 + version = "2.11.0" 703 + source = "registry+https://github.com/rust-lang/crates.io-index" 704 + checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" 705 + 706 + [[package]] 707 + name = "iri-string" 708 + version = "0.7.8" 709 + source = "registry+https://github.com/rust-lang/crates.io-index" 710 + checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2" 711 + dependencies = [ 712 + "memchr", 713 + "serde", 714 + ] 715 + 716 + [[package]] 717 + name = "itoa" 718 + version = "1.0.15" 719 + source = "registry+https://github.com/rust-lang/crates.io-index" 720 + checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 721 + 722 + [[package]] 723 + name = "jobserver" 724 + version = "0.1.34" 725 + source = "registry+https://github.com/rust-lang/crates.io-index" 726 + checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" 727 + dependencies = [ 728 + "getrandom 0.3.3", 729 + "libc", 730 + ] 731 + 732 + [[package]] 733 + name = "js-sys" 734 + version = "0.3.77" 735 + source = "registry+https://github.com/rust-lang/crates.io-index" 736 + checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" 737 + dependencies = [ 738 + "once_cell", 739 + "wasm-bindgen", 740 + ] 741 + 742 + [[package]] 743 + name = "lazy_static" 744 + version = "1.5.0" 745 + source = "registry+https://github.com/rust-lang/crates.io-index" 746 + checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 747 + 748 + [[package]] 749 + name = "libc" 750 + version = "0.2.175" 751 + source = "registry+https://github.com/rust-lang/crates.io-index" 752 + checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543" 753 + 754 + [[package]] 755 + name = "litemap" 756 + version = "0.8.0" 757 + source = "registry+https://github.com/rust-lang/crates.io-index" 758 + checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" 759 + 760 + [[package]] 761 + name = "lock_api" 762 + version = "0.4.13" 763 + source = "registry+https://github.com/rust-lang/crates.io-index" 764 + checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765" 765 + dependencies = [ 766 + "autocfg", 767 + "scopeguard", 768 + ] 769 + 770 + [[package]] 771 + name = "log" 772 + version = "0.4.27" 773 + source = "registry+https://github.com/rust-lang/crates.io-index" 774 + checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" 775 + 776 + [[package]] 777 + name = "lru-slab" 778 + version = "0.1.2" 779 + source = "registry+https://github.com/rust-lang/crates.io-index" 780 + checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" 781 + 782 + [[package]] 783 + name = "matchers" 784 + version = "0.1.0" 785 + source = "registry+https://github.com/rust-lang/crates.io-index" 786 + checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 787 + dependencies = [ 788 + "regex-automata 0.1.10", 789 + ] 790 + 791 + [[package]] 792 + name = "matchit" 793 + version = "0.8.4" 794 + source = "registry+https://github.com/rust-lang/crates.io-index" 795 + checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" 796 + 797 + [[package]] 798 + name = "memchr" 799 + version = "2.7.5" 800 + source = "registry+https://github.com/rust-lang/crates.io-index" 801 + checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" 802 + 803 + [[package]] 804 + name = "mime" 805 + version = "0.3.17" 806 + source = "registry+https://github.com/rust-lang/crates.io-index" 807 + checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 808 + 809 + [[package]] 810 + name = "miniz_oxide" 811 + version = "0.8.9" 812 + source = "registry+https://github.com/rust-lang/crates.io-index" 813 + checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 814 + dependencies = [ 815 + "adler2", 816 + ] 817 + 818 + [[package]] 819 + name = "mio" 820 + version = "1.0.4" 821 + source = "registry+https://github.com/rust-lang/crates.io-index" 822 + checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" 823 + dependencies = [ 824 + "libc", 825 + "wasi 0.11.1+wasi-snapshot-preview1", 826 + "windows-sys 0.59.0", 827 + ] 828 + 829 + [[package]] 830 + name = "nu-ansi-term" 831 + version = "0.46.0" 832 + source = "registry+https://github.com/rust-lang/crates.io-index" 833 + checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 834 + dependencies = [ 835 + "overload", 836 + "winapi", 837 + ] 838 + 839 + [[package]] 840 + name = "object" 841 + version = "0.36.7" 842 + source = "registry+https://github.com/rust-lang/crates.io-index" 843 + checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" 844 + dependencies = [ 845 + "memchr", 846 + ] 847 + 848 + [[package]] 849 + name = "once_cell" 850 + version = "1.21.3" 851 + source = "registry+https://github.com/rust-lang/crates.io-index" 852 + checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 853 + 854 + [[package]] 855 + name = "overload" 856 + version = "0.1.1" 857 + source = "registry+https://github.com/rust-lang/crates.io-index" 858 + checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 859 + 860 + [[package]] 861 + name = "parking_lot" 862 + version = "0.12.4" 863 + source = "registry+https://github.com/rust-lang/crates.io-index" 864 + checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13" 865 + dependencies = [ 866 + "lock_api", 867 + "parking_lot_core", 868 + ] 869 + 870 + [[package]] 871 + name = "parking_lot_core" 872 + version = "0.9.11" 873 + source = "registry+https://github.com/rust-lang/crates.io-index" 874 + checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5" 875 + dependencies = [ 876 + "cfg-if", 877 + "libc", 878 + "redox_syscall", 879 + "smallvec", 880 + "windows-targets", 881 + ] 882 + 883 + [[package]] 884 + name = "percent-encoding" 885 + version = "2.3.2" 886 + source = "registry+https://github.com/rust-lang/crates.io-index" 887 + checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 888 + 889 + [[package]] 890 + name = "pin-project-lite" 891 + version = "0.2.16" 892 + source = "registry+https://github.com/rust-lang/crates.io-index" 893 + checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 894 + 895 + [[package]] 896 + name = "pin-utils" 897 + version = "0.1.0" 898 + source = "registry+https://github.com/rust-lang/crates.io-index" 899 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 900 + 901 + [[package]] 902 + name = "pkg-config" 903 + version = "0.3.32" 904 + source = "registry+https://github.com/rust-lang/crates.io-index" 905 + checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 906 + 907 + [[package]] 908 + name = "potential_utf" 909 + version = "0.1.2" 910 + source = "registry+https://github.com/rust-lang/crates.io-index" 911 + checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585" 912 + dependencies = [ 913 + "zerovec", 914 + ] 915 + 916 + [[package]] 917 + name = "ppv-lite86" 918 + version = "0.2.21" 919 + source = "registry+https://github.com/rust-lang/crates.io-index" 920 + checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 921 + dependencies = [ 922 + "zerocopy", 923 + ] 924 + 925 + [[package]] 926 + name = "proc-macro2" 927 + version = "1.0.101" 928 + source = "registry+https://github.com/rust-lang/crates.io-index" 929 + checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" 930 + dependencies = [ 931 + "unicode-ident", 932 + ] 933 + 934 + [[package]] 935 + name = "quinn" 936 + version = "0.11.8" 937 + source = "registry+https://github.com/rust-lang/crates.io-index" 938 + checksum = "626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8" 939 + dependencies = [ 940 + "bytes", 941 + "cfg_aliases", 942 + "pin-project-lite", 943 + "quinn-proto", 944 + "quinn-udp", 945 + "rustc-hash", 946 + "rustls", 947 + "socket2 0.5.10", 948 + "thiserror", 949 + "tokio", 950 + "tracing", 951 + "web-time", 952 + ] 953 + 954 + [[package]] 955 + name = "quinn-proto" 956 + version = "0.11.12" 957 + source = "registry+https://github.com/rust-lang/crates.io-index" 958 + checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e" 959 + dependencies = [ 960 + "bytes", 961 + "getrandom 0.3.3", 962 + "lru-slab", 963 + "rand", 964 + "ring", 965 + "rustc-hash", 966 + "rustls", 967 + "rustls-pki-types", 968 + "slab", 969 + "thiserror", 970 + "tinyvec", 971 + "tracing", 972 + "web-time", 973 + ] 974 + 975 + [[package]] 976 + name = "quinn-udp" 977 + version = "0.5.13" 978 + source = "registry+https://github.com/rust-lang/crates.io-index" 979 + checksum = "fcebb1209ee276352ef14ff8732e24cc2b02bbac986cd74a4c81bcb2f9881970" 980 + dependencies = [ 981 + "cfg_aliases", 982 + "libc", 983 + "once_cell", 984 + "socket2 0.5.10", 985 + "tracing", 986 + "windows-sys 0.59.0", 987 + ] 988 + 989 + [[package]] 990 + name = "quote" 991 + version = "1.0.40" 992 + source = "registry+https://github.com/rust-lang/crates.io-index" 993 + checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" 994 + dependencies = [ 995 + "proc-macro2", 996 + ] 997 + 998 + [[package]] 999 + name = "r-efi" 1000 + version = "5.3.0" 1001 + source = "registry+https://github.com/rust-lang/crates.io-index" 1002 + checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 1003 + 1004 + [[package]] 1005 + name = "rand" 1006 + version = "0.9.2" 1007 + source = "registry+https://github.com/rust-lang/crates.io-index" 1008 + checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 1009 + dependencies = [ 1010 + "rand_chacha", 1011 + "rand_core", 1012 + ] 1013 + 1014 + [[package]] 1015 + name = "rand_chacha" 1016 + version = "0.9.0" 1017 + source = "registry+https://github.com/rust-lang/crates.io-index" 1018 + checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 1019 + dependencies = [ 1020 + "ppv-lite86", 1021 + "rand_core", 1022 + ] 1023 + 1024 + [[package]] 1025 + name = "rand_core" 1026 + version = "0.9.3" 1027 + source = "registry+https://github.com/rust-lang/crates.io-index" 1028 + checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" 1029 + dependencies = [ 1030 + "getrandom 0.3.3", 1031 + ] 1032 + 1033 + [[package]] 1034 + name = "redox_syscall" 1035 + version = "0.5.17" 1036 + source = "registry+https://github.com/rust-lang/crates.io-index" 1037 + checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77" 1038 + dependencies = [ 1039 + "bitflags", 1040 + ] 1041 + 1042 + [[package]] 1043 + name = "regex" 1044 + version = "1.11.1" 1045 + source = "registry+https://github.com/rust-lang/crates.io-index" 1046 + checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" 1047 + dependencies = [ 1048 + "aho-corasick", 1049 + "memchr", 1050 + "regex-automata 0.4.9", 1051 + "regex-syntax 0.8.5", 1052 + ] 1053 + 1054 + [[package]] 1055 + name = "regex-automata" 1056 + version = "0.1.10" 1057 + source = "registry+https://github.com/rust-lang/crates.io-index" 1058 + checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 1059 + dependencies = [ 1060 + "regex-syntax 0.6.29", 1061 + ] 1062 + 1063 + [[package]] 1064 + name = "regex-automata" 1065 + version = "0.4.9" 1066 + source = "registry+https://github.com/rust-lang/crates.io-index" 1067 + checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" 1068 + dependencies = [ 1069 + "aho-corasick", 1070 + "memchr", 1071 + "regex-syntax 0.8.5", 1072 + ] 1073 + 1074 + [[package]] 1075 + name = "regex-syntax" 1076 + version = "0.6.29" 1077 + source = "registry+https://github.com/rust-lang/crates.io-index" 1078 + checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 1079 + 1080 + [[package]] 1081 + name = "regex-syntax" 1082 + version = "0.8.5" 1083 + source = "registry+https://github.com/rust-lang/crates.io-index" 1084 + checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" 1085 + 1086 + [[package]] 1087 + name = "reqwest" 1088 + version = "0.12.23" 1089 + source = "registry+https://github.com/rust-lang/crates.io-index" 1090 + checksum = "d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb" 1091 + dependencies = [ 1092 + "base64", 1093 + "bytes", 1094 + "encoding_rs", 1095 + "futures-core", 1096 + "h2", 1097 + "http", 1098 + "http-body", 1099 + "http-body-util", 1100 + "hyper", 1101 + "hyper-rustls", 1102 + "hyper-util", 1103 + "js-sys", 1104 + "log", 1105 + "mime", 1106 + "percent-encoding", 1107 + "pin-project-lite", 1108 + "quinn", 1109 + "rustls", 1110 + "rustls-pki-types", 1111 + "serde", 1112 + "serde_json", 1113 + "serde_urlencoded", 1114 + "sync_wrapper", 1115 + "tokio", 1116 + "tokio-rustls", 1117 + "tower", 1118 + "tower-http", 1119 + "tower-service", 1120 + "url", 1121 + "wasm-bindgen", 1122 + "wasm-bindgen-futures", 1123 + "web-sys", 1124 + "webpki-roots", 1125 + ] 1126 + 1127 + [[package]] 1128 + name = "ring" 1129 + version = "0.17.14" 1130 + source = "registry+https://github.com/rust-lang/crates.io-index" 1131 + checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 1132 + dependencies = [ 1133 + "cc", 1134 + "cfg-if", 1135 + "getrandom 0.2.16", 1136 + "libc", 1137 + "untrusted", 1138 + "windows-sys 0.52.0", 1139 + ] 1140 + 1141 + [[package]] 1142 + name = "rustc-demangle" 1143 + version = "0.1.26" 1144 + source = "registry+https://github.com/rust-lang/crates.io-index" 1145 + checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" 1146 + 1147 + [[package]] 1148 + name = "rustc-hash" 1149 + version = "2.1.1" 1150 + source = "registry+https://github.com/rust-lang/crates.io-index" 1151 + checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" 1152 + 1153 + [[package]] 1154 + name = "rustls" 1155 + version = "0.23.31" 1156 + source = "registry+https://github.com/rust-lang/crates.io-index" 1157 + checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc" 1158 + dependencies = [ 1159 + "once_cell", 1160 + "ring", 1161 + "rustls-pki-types", 1162 + "rustls-webpki", 1163 + "subtle", 1164 + "zeroize", 1165 + ] 1166 + 1167 + [[package]] 1168 + name = "rustls-pki-types" 1169 + version = "1.12.0" 1170 + source = "registry+https://github.com/rust-lang/crates.io-index" 1171 + checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79" 1172 + dependencies = [ 1173 + "web-time", 1174 + "zeroize", 1175 + ] 1176 + 1177 + [[package]] 1178 + name = "rustls-webpki" 1179 + version = "0.103.4" 1180 + source = "registry+https://github.com/rust-lang/crates.io-index" 1181 + checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc" 1182 + dependencies = [ 1183 + "ring", 1184 + "rustls-pki-types", 1185 + "untrusted", 1186 + ] 1187 + 1188 + [[package]] 1189 + name = "rustversion" 1190 + version = "1.0.22" 1191 + source = "registry+https://github.com/rust-lang/crates.io-index" 1192 + checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 1193 + 1194 + [[package]] 1195 + name = "ryu" 1196 + version = "1.0.20" 1197 + source = "registry+https://github.com/rust-lang/crates.io-index" 1198 + checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 1199 + 1200 + [[package]] 1201 + name = "scc" 1202 + version = "2.4.0" 1203 + source = "registry+https://github.com/rust-lang/crates.io-index" 1204 + checksum = "46e6f046b7fef48e2660c57ed794263155d713de679057f2d0c169bfc6e756cc" 1205 + dependencies = [ 1206 + "sdd", 1207 + ] 1208 + 1209 + [[package]] 1210 + name = "scopeguard" 1211 + version = "1.2.0" 1212 + source = "registry+https://github.com/rust-lang/crates.io-index" 1213 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1214 + 1215 + [[package]] 1216 + name = "sdd" 1217 + version = "3.0.10" 1218 + source = "registry+https://github.com/rust-lang/crates.io-index" 1219 + checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca" 1220 + 1221 + [[package]] 1222 + name = "serde" 1223 + version = "1.0.219" 1224 + source = "registry+https://github.com/rust-lang/crates.io-index" 1225 + checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" 1226 + dependencies = [ 1227 + "serde_derive", 1228 + ] 1229 + 1230 + [[package]] 1231 + name = "serde_derive" 1232 + version = "1.0.219" 1233 + source = "registry+https://github.com/rust-lang/crates.io-index" 1234 + checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" 1235 + dependencies = [ 1236 + "proc-macro2", 1237 + "quote", 1238 + "syn", 1239 + ] 1240 + 1241 + [[package]] 1242 + name = "serde_json" 1243 + version = "1.0.143" 1244 + source = "registry+https://github.com/rust-lang/crates.io-index" 1245 + checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a" 1246 + dependencies = [ 1247 + "itoa", 1248 + "memchr", 1249 + "ryu", 1250 + "serde", 1251 + ] 1252 + 1253 + [[package]] 1254 + name = "serde_path_to_error" 1255 + version = "0.1.17" 1256 + source = "registry+https://github.com/rust-lang/crates.io-index" 1257 + checksum = "59fab13f937fa393d08645bf3a84bdfe86e296747b506ada67bb15f10f218b2a" 1258 + dependencies = [ 1259 + "itoa", 1260 + "serde", 1261 + ] 1262 + 1263 + [[package]] 1264 + name = "serde_urlencoded" 1265 + version = "0.7.1" 1266 + source = "registry+https://github.com/rust-lang/crates.io-index" 1267 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1268 + dependencies = [ 1269 + "form_urlencoded", 1270 + "itoa", 1271 + "ryu", 1272 + "serde", 1273 + ] 1274 + 1275 + [[package]] 1276 + name = "sharded-slab" 1277 + version = "0.1.7" 1278 + source = "registry+https://github.com/rust-lang/crates.io-index" 1279 + checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 1280 + dependencies = [ 1281 + "lazy_static", 1282 + ] 1283 + 1284 + [[package]] 1285 + name = "shlex" 1286 + version = "1.3.0" 1287 + source = "registry+https://github.com/rust-lang/crates.io-index" 1288 + checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 1289 + 1290 + [[package]] 1291 + name = "sightline" 1292 + version = "0.1.0" 1293 + dependencies = [ 1294 + "ahash", 1295 + "anyhow", 1296 + "axum", 1297 + "axum-htmx", 1298 + "hypertext", 1299 + "reqwest", 1300 + "scc", 1301 + "serde", 1302 + "serde_json", 1303 + "smol_str", 1304 + "tikv-jemallocator", 1305 + "tokio", 1306 + "tower-http", 1307 + "tracing", 1308 + "tracing-subscriber", 1309 + ] 1310 + 1311 + [[package]] 1312 + name = "signal-hook-registry" 1313 + version = "1.4.6" 1314 + source = "registry+https://github.com/rust-lang/crates.io-index" 1315 + checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b" 1316 + dependencies = [ 1317 + "libc", 1318 + ] 1319 + 1320 + [[package]] 1321 + name = "slab" 1322 + version = "0.4.11" 1323 + source = "registry+https://github.com/rust-lang/crates.io-index" 1324 + checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" 1325 + 1326 + [[package]] 1327 + name = "smallvec" 1328 + version = "1.15.1" 1329 + source = "registry+https://github.com/rust-lang/crates.io-index" 1330 + checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 1331 + 1332 + [[package]] 1333 + name = "smol_str" 1334 + version = "0.3.2" 1335 + source = "registry+https://github.com/rust-lang/crates.io-index" 1336 + checksum = "9676b89cd56310a87b93dec47b11af744f34d5fc9f367b829474eec0a891350d" 1337 + dependencies = [ 1338 + "borsh", 1339 + "serde", 1340 + ] 1341 + 1342 + [[package]] 1343 + name = "socket2" 1344 + version = "0.5.10" 1345 + source = "registry+https://github.com/rust-lang/crates.io-index" 1346 + checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" 1347 + dependencies = [ 1348 + "libc", 1349 + "windows-sys 0.52.0", 1350 + ] 1351 + 1352 + [[package]] 1353 + name = "socket2" 1354 + version = "0.6.0" 1355 + source = "registry+https://github.com/rust-lang/crates.io-index" 1356 + checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807" 1357 + dependencies = [ 1358 + "libc", 1359 + "windows-sys 0.59.0", 1360 + ] 1361 + 1362 + [[package]] 1363 + name = "stable_deref_trait" 1364 + version = "1.2.0" 1365 + source = "registry+https://github.com/rust-lang/crates.io-index" 1366 + checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 1367 + 1368 + [[package]] 1369 + name = "subtle" 1370 + version = "2.6.1" 1371 + source = "registry+https://github.com/rust-lang/crates.io-index" 1372 + checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 1373 + 1374 + [[package]] 1375 + name = "syn" 1376 + version = "2.0.106" 1377 + source = "registry+https://github.com/rust-lang/crates.io-index" 1378 + checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" 1379 + dependencies = [ 1380 + "proc-macro2", 1381 + "quote", 1382 + "unicode-ident", 1383 + ] 1384 + 1385 + [[package]] 1386 + name = "sync_wrapper" 1387 + version = "1.0.2" 1388 + source = "registry+https://github.com/rust-lang/crates.io-index" 1389 + checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 1390 + dependencies = [ 1391 + "futures-core", 1392 + ] 1393 + 1394 + [[package]] 1395 + name = "synstructure" 1396 + version = "0.13.2" 1397 + source = "registry+https://github.com/rust-lang/crates.io-index" 1398 + checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 1399 + dependencies = [ 1400 + "proc-macro2", 1401 + "quote", 1402 + "syn", 1403 + ] 1404 + 1405 + [[package]] 1406 + name = "thiserror" 1407 + version = "2.0.16" 1408 + source = "registry+https://github.com/rust-lang/crates.io-index" 1409 + checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0" 1410 + dependencies = [ 1411 + "thiserror-impl", 1412 + ] 1413 + 1414 + [[package]] 1415 + name = "thiserror-impl" 1416 + version = "2.0.16" 1417 + source = "registry+https://github.com/rust-lang/crates.io-index" 1418 + checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960" 1419 + dependencies = [ 1420 + "proc-macro2", 1421 + "quote", 1422 + "syn", 1423 + ] 1424 + 1425 + [[package]] 1426 + name = "thread_local" 1427 + version = "1.1.9" 1428 + source = "registry+https://github.com/rust-lang/crates.io-index" 1429 + checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" 1430 + dependencies = [ 1431 + "cfg-if", 1432 + ] 1433 + 1434 + [[package]] 1435 + name = "tikv-jemalloc-sys" 1436 + version = "0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7" 1437 + source = "registry+https://github.com/rust-lang/crates.io-index" 1438 + checksum = "cd3c60906412afa9c2b5b5a48ca6a5abe5736aec9eb48ad05037a677e52e4e2d" 1439 + dependencies = [ 1440 + "cc", 1441 + "libc", 1442 + ] 1443 + 1444 + [[package]] 1445 + name = "tikv-jemallocator" 1446 + version = "0.6.0" 1447 + source = "registry+https://github.com/rust-lang/crates.io-index" 1448 + checksum = "4cec5ff18518d81584f477e9bfdf957f5bb0979b0bac3af4ca30b5b3ae2d2865" 1449 + dependencies = [ 1450 + "libc", 1451 + "tikv-jemalloc-sys", 1452 + ] 1453 + 1454 + [[package]] 1455 + name = "tinystr" 1456 + version = "0.8.1" 1457 + source = "registry+https://github.com/rust-lang/crates.io-index" 1458 + checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" 1459 + dependencies = [ 1460 + "displaydoc", 1461 + "zerovec", 1462 + ] 1463 + 1464 + [[package]] 1465 + name = "tinyvec" 1466 + version = "1.10.0" 1467 + source = "registry+https://github.com/rust-lang/crates.io-index" 1468 + checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" 1469 + dependencies = [ 1470 + "tinyvec_macros", 1471 + ] 1472 + 1473 + [[package]] 1474 + name = "tinyvec_macros" 1475 + version = "0.1.1" 1476 + source = "registry+https://github.com/rust-lang/crates.io-index" 1477 + checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 1478 + 1479 + [[package]] 1480 + name = "tokio" 1481 + version = "1.47.1" 1482 + source = "registry+https://github.com/rust-lang/crates.io-index" 1483 + checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038" 1484 + dependencies = [ 1485 + "backtrace", 1486 + "bytes", 1487 + "io-uring", 1488 + "libc", 1489 + "mio", 1490 + "parking_lot", 1491 + "pin-project-lite", 1492 + "signal-hook-registry", 1493 + "slab", 1494 + "socket2 0.6.0", 1495 + "tokio-macros", 1496 + "windows-sys 0.59.0", 1497 + ] 1498 + 1499 + [[package]] 1500 + name = "tokio-macros" 1501 + version = "2.5.0" 1502 + source = "registry+https://github.com/rust-lang/crates.io-index" 1503 + checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" 1504 + dependencies = [ 1505 + "proc-macro2", 1506 + "quote", 1507 + "syn", 1508 + ] 1509 + 1510 + [[package]] 1511 + name = "tokio-rustls" 1512 + version = "0.26.2" 1513 + source = "registry+https://github.com/rust-lang/crates.io-index" 1514 + checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b" 1515 + dependencies = [ 1516 + "rustls", 1517 + "tokio", 1518 + ] 1519 + 1520 + [[package]] 1521 + name = "tokio-util" 1522 + version = "0.7.16" 1523 + source = "registry+https://github.com/rust-lang/crates.io-index" 1524 + checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5" 1525 + dependencies = [ 1526 + "bytes", 1527 + "futures-core", 1528 + "futures-sink", 1529 + "pin-project-lite", 1530 + "tokio", 1531 + ] 1532 + 1533 + [[package]] 1534 + name = "tower" 1535 + version = "0.5.2" 1536 + source = "registry+https://github.com/rust-lang/crates.io-index" 1537 + checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" 1538 + dependencies = [ 1539 + "futures-core", 1540 + "futures-util", 1541 + "pin-project-lite", 1542 + "sync_wrapper", 1543 + "tokio", 1544 + "tower-layer", 1545 + "tower-service", 1546 + ] 1547 + 1548 + [[package]] 1549 + name = "tower-http" 1550 + version = "0.6.6" 1551 + source = "registry+https://github.com/rust-lang/crates.io-index" 1552 + checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2" 1553 + dependencies = [ 1554 + "async-compression", 1555 + "bitflags", 1556 + "bytes", 1557 + "futures-core", 1558 + "futures-util", 1559 + "http", 1560 + "http-body", 1561 + "iri-string", 1562 + "pin-project-lite", 1563 + "tokio", 1564 + "tokio-util", 1565 + "tower", 1566 + "tower-layer", 1567 + "tower-service", 1568 + "tracing", 1569 + "uuid", 1570 + ] 1571 + 1572 + [[package]] 1573 + name = "tower-layer" 1574 + version = "0.3.3" 1575 + source = "registry+https://github.com/rust-lang/crates.io-index" 1576 + checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 1577 + 1578 + [[package]] 1579 + name = "tower-service" 1580 + version = "0.3.3" 1581 + source = "registry+https://github.com/rust-lang/crates.io-index" 1582 + checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 1583 + 1584 + [[package]] 1585 + name = "tracing" 1586 + version = "0.1.41" 1587 + source = "registry+https://github.com/rust-lang/crates.io-index" 1588 + checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 1589 + dependencies = [ 1590 + "pin-project-lite", 1591 + "tracing-attributes", 1592 + "tracing-core", 1593 + ] 1594 + 1595 + [[package]] 1596 + name = "tracing-attributes" 1597 + version = "0.1.30" 1598 + source = "registry+https://github.com/rust-lang/crates.io-index" 1599 + checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" 1600 + dependencies = [ 1601 + "proc-macro2", 1602 + "quote", 1603 + "syn", 1604 + ] 1605 + 1606 + [[package]] 1607 + name = "tracing-core" 1608 + version = "0.1.34" 1609 + source = "registry+https://github.com/rust-lang/crates.io-index" 1610 + checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" 1611 + dependencies = [ 1612 + "once_cell", 1613 + "valuable", 1614 + ] 1615 + 1616 + [[package]] 1617 + name = "tracing-log" 1618 + version = "0.2.0" 1619 + source = "registry+https://github.com/rust-lang/crates.io-index" 1620 + checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 1621 + dependencies = [ 1622 + "log", 1623 + "once_cell", 1624 + "tracing-core", 1625 + ] 1626 + 1627 + [[package]] 1628 + name = "tracing-subscriber" 1629 + version = "0.3.19" 1630 + source = "registry+https://github.com/rust-lang/crates.io-index" 1631 + checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008" 1632 + dependencies = [ 1633 + "matchers", 1634 + "nu-ansi-term", 1635 + "once_cell", 1636 + "regex", 1637 + "sharded-slab", 1638 + "smallvec", 1639 + "thread_local", 1640 + "tracing", 1641 + "tracing-core", 1642 + "tracing-log", 1643 + ] 1644 + 1645 + [[package]] 1646 + name = "try-lock" 1647 + version = "0.2.5" 1648 + source = "registry+https://github.com/rust-lang/crates.io-index" 1649 + checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 1650 + 1651 + [[package]] 1652 + name = "unicode-ident" 1653 + version = "1.0.18" 1654 + source = "registry+https://github.com/rust-lang/crates.io-index" 1655 + checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" 1656 + 1657 + [[package]] 1658 + name = "untrusted" 1659 + version = "0.9.0" 1660 + source = "registry+https://github.com/rust-lang/crates.io-index" 1661 + checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 1662 + 1663 + [[package]] 1664 + name = "url" 1665 + version = "2.5.7" 1666 + source = "registry+https://github.com/rust-lang/crates.io-index" 1667 + checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" 1668 + dependencies = [ 1669 + "form_urlencoded", 1670 + "idna", 1671 + "percent-encoding", 1672 + "serde", 1673 + ] 1674 + 1675 + [[package]] 1676 + name = "utf8-width" 1677 + version = "0.1.7" 1678 + source = "registry+https://github.com/rust-lang/crates.io-index" 1679 + checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3" 1680 + 1681 + [[package]] 1682 + name = "utf8_iter" 1683 + version = "1.0.4" 1684 + source = "registry+https://github.com/rust-lang/crates.io-index" 1685 + checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 1686 + 1687 + [[package]] 1688 + name = "uuid" 1689 + version = "1.18.0" 1690 + source = "registry+https://github.com/rust-lang/crates.io-index" 1691 + checksum = "f33196643e165781c20a5ead5582283a7dacbb87855d867fbc2df3f81eddc1be" 1692 + dependencies = [ 1693 + "getrandom 0.3.3", 1694 + "js-sys", 1695 + "wasm-bindgen", 1696 + ] 1697 + 1698 + [[package]] 1699 + name = "valuable" 1700 + version = "0.1.1" 1701 + source = "registry+https://github.com/rust-lang/crates.io-index" 1702 + checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 1703 + 1704 + [[package]] 1705 + name = "version_check" 1706 + version = "0.9.5" 1707 + source = "registry+https://github.com/rust-lang/crates.io-index" 1708 + checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 1709 + 1710 + [[package]] 1711 + name = "want" 1712 + version = "0.3.1" 1713 + source = "registry+https://github.com/rust-lang/crates.io-index" 1714 + checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 1715 + dependencies = [ 1716 + "try-lock", 1717 + ] 1718 + 1719 + [[package]] 1720 + name = "wasi" 1721 + version = "0.11.1+wasi-snapshot-preview1" 1722 + source = "registry+https://github.com/rust-lang/crates.io-index" 1723 + checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 1724 + 1725 + [[package]] 1726 + name = "wasi" 1727 + version = "0.14.2+wasi-0.2.4" 1728 + source = "registry+https://github.com/rust-lang/crates.io-index" 1729 + checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" 1730 + dependencies = [ 1731 + "wit-bindgen-rt", 1732 + ] 1733 + 1734 + [[package]] 1735 + name = "wasm-bindgen" 1736 + version = "0.2.100" 1737 + source = "registry+https://github.com/rust-lang/crates.io-index" 1738 + checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" 1739 + dependencies = [ 1740 + "cfg-if", 1741 + "once_cell", 1742 + "rustversion", 1743 + "wasm-bindgen-macro", 1744 + ] 1745 + 1746 + [[package]] 1747 + name = "wasm-bindgen-backend" 1748 + version = "0.2.100" 1749 + source = "registry+https://github.com/rust-lang/crates.io-index" 1750 + checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" 1751 + dependencies = [ 1752 + "bumpalo", 1753 + "log", 1754 + "proc-macro2", 1755 + "quote", 1756 + "syn", 1757 + "wasm-bindgen-shared", 1758 + ] 1759 + 1760 + [[package]] 1761 + name = "wasm-bindgen-futures" 1762 + version = "0.4.50" 1763 + source = "registry+https://github.com/rust-lang/crates.io-index" 1764 + checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" 1765 + dependencies = [ 1766 + "cfg-if", 1767 + "js-sys", 1768 + "once_cell", 1769 + "wasm-bindgen", 1770 + "web-sys", 1771 + ] 1772 + 1773 + [[package]] 1774 + name = "wasm-bindgen-macro" 1775 + version = "0.2.100" 1776 + source = "registry+https://github.com/rust-lang/crates.io-index" 1777 + checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" 1778 + dependencies = [ 1779 + "quote", 1780 + "wasm-bindgen-macro-support", 1781 + ] 1782 + 1783 + [[package]] 1784 + name = "wasm-bindgen-macro-support" 1785 + version = "0.2.100" 1786 + source = "registry+https://github.com/rust-lang/crates.io-index" 1787 + checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" 1788 + dependencies = [ 1789 + "proc-macro2", 1790 + "quote", 1791 + "syn", 1792 + "wasm-bindgen-backend", 1793 + "wasm-bindgen-shared", 1794 + ] 1795 + 1796 + [[package]] 1797 + name = "wasm-bindgen-shared" 1798 + version = "0.2.100" 1799 + source = "registry+https://github.com/rust-lang/crates.io-index" 1800 + checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" 1801 + dependencies = [ 1802 + "unicode-ident", 1803 + ] 1804 + 1805 + [[package]] 1806 + name = "web-sys" 1807 + version = "0.3.77" 1808 + source = "registry+https://github.com/rust-lang/crates.io-index" 1809 + checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" 1810 + dependencies = [ 1811 + "js-sys", 1812 + "wasm-bindgen", 1813 + ] 1814 + 1815 + [[package]] 1816 + name = "web-time" 1817 + version = "1.1.0" 1818 + source = "registry+https://github.com/rust-lang/crates.io-index" 1819 + checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 1820 + dependencies = [ 1821 + "js-sys", 1822 + "wasm-bindgen", 1823 + ] 1824 + 1825 + [[package]] 1826 + name = "webpki-roots" 1827 + version = "1.0.2" 1828 + source = "registry+https://github.com/rust-lang/crates.io-index" 1829 + checksum = "7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2" 1830 + dependencies = [ 1831 + "rustls-pki-types", 1832 + ] 1833 + 1834 + [[package]] 1835 + name = "winapi" 1836 + version = "0.3.9" 1837 + source = "registry+https://github.com/rust-lang/crates.io-index" 1838 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1839 + dependencies = [ 1840 + "winapi-i686-pc-windows-gnu", 1841 + "winapi-x86_64-pc-windows-gnu", 1842 + ] 1843 + 1844 + [[package]] 1845 + name = "winapi-i686-pc-windows-gnu" 1846 + version = "0.4.0" 1847 + source = "registry+https://github.com/rust-lang/crates.io-index" 1848 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1849 + 1850 + [[package]] 1851 + name = "winapi-x86_64-pc-windows-gnu" 1852 + version = "0.4.0" 1853 + source = "registry+https://github.com/rust-lang/crates.io-index" 1854 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1855 + 1856 + [[package]] 1857 + name = "windows-sys" 1858 + version = "0.52.0" 1859 + source = "registry+https://github.com/rust-lang/crates.io-index" 1860 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 1861 + dependencies = [ 1862 + "windows-targets", 1863 + ] 1864 + 1865 + [[package]] 1866 + name = "windows-sys" 1867 + version = "0.59.0" 1868 + source = "registry+https://github.com/rust-lang/crates.io-index" 1869 + checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 1870 + dependencies = [ 1871 + "windows-targets", 1872 + ] 1873 + 1874 + [[package]] 1875 + name = "windows-targets" 1876 + version = "0.52.6" 1877 + source = "registry+https://github.com/rust-lang/crates.io-index" 1878 + checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 1879 + dependencies = [ 1880 + "windows_aarch64_gnullvm", 1881 + "windows_aarch64_msvc", 1882 + "windows_i686_gnu", 1883 + "windows_i686_gnullvm", 1884 + "windows_i686_msvc", 1885 + "windows_x86_64_gnu", 1886 + "windows_x86_64_gnullvm", 1887 + "windows_x86_64_msvc", 1888 + ] 1889 + 1890 + [[package]] 1891 + name = "windows_aarch64_gnullvm" 1892 + version = "0.52.6" 1893 + source = "registry+https://github.com/rust-lang/crates.io-index" 1894 + checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 1895 + 1896 + [[package]] 1897 + name = "windows_aarch64_msvc" 1898 + version = "0.52.6" 1899 + source = "registry+https://github.com/rust-lang/crates.io-index" 1900 + checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 1901 + 1902 + [[package]] 1903 + name = "windows_i686_gnu" 1904 + version = "0.52.6" 1905 + source = "registry+https://github.com/rust-lang/crates.io-index" 1906 + checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 1907 + 1908 + [[package]] 1909 + name = "windows_i686_gnullvm" 1910 + version = "0.52.6" 1911 + source = "registry+https://github.com/rust-lang/crates.io-index" 1912 + checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 1913 + 1914 + [[package]] 1915 + name = "windows_i686_msvc" 1916 + version = "0.52.6" 1917 + source = "registry+https://github.com/rust-lang/crates.io-index" 1918 + checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 1919 + 1920 + [[package]] 1921 + name = "windows_x86_64_gnu" 1922 + version = "0.52.6" 1923 + source = "registry+https://github.com/rust-lang/crates.io-index" 1924 + checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 1925 + 1926 + [[package]] 1927 + name = "windows_x86_64_gnullvm" 1928 + version = "0.52.6" 1929 + source = "registry+https://github.com/rust-lang/crates.io-index" 1930 + checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 1931 + 1932 + [[package]] 1933 + name = "windows_x86_64_msvc" 1934 + version = "0.52.6" 1935 + source = "registry+https://github.com/rust-lang/crates.io-index" 1936 + checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 1937 + 1938 + [[package]] 1939 + name = "wit-bindgen-rt" 1940 + version = "0.39.0" 1941 + source = "registry+https://github.com/rust-lang/crates.io-index" 1942 + checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" 1943 + dependencies = [ 1944 + "bitflags", 1945 + ] 1946 + 1947 + [[package]] 1948 + name = "writeable" 1949 + version = "0.6.1" 1950 + source = "registry+https://github.com/rust-lang/crates.io-index" 1951 + checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" 1952 + 1953 + [[package]] 1954 + name = "yoke" 1955 + version = "0.8.0" 1956 + source = "registry+https://github.com/rust-lang/crates.io-index" 1957 + checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" 1958 + dependencies = [ 1959 + "serde", 1960 + "stable_deref_trait", 1961 + "yoke-derive", 1962 + "zerofrom", 1963 + ] 1964 + 1965 + [[package]] 1966 + name = "yoke-derive" 1967 + version = "0.8.0" 1968 + source = "registry+https://github.com/rust-lang/crates.io-index" 1969 + checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" 1970 + dependencies = [ 1971 + "proc-macro2", 1972 + "quote", 1973 + "syn", 1974 + "synstructure", 1975 + ] 1976 + 1977 + [[package]] 1978 + name = "zerocopy" 1979 + version = "0.8.26" 1980 + source = "registry+https://github.com/rust-lang/crates.io-index" 1981 + checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f" 1982 + dependencies = [ 1983 + "zerocopy-derive", 1984 + ] 1985 + 1986 + [[package]] 1987 + name = "zerocopy-derive" 1988 + version = "0.8.26" 1989 + source = "registry+https://github.com/rust-lang/crates.io-index" 1990 + checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181" 1991 + dependencies = [ 1992 + "proc-macro2", 1993 + "quote", 1994 + "syn", 1995 + ] 1996 + 1997 + [[package]] 1998 + name = "zerofrom" 1999 + version = "0.1.6" 2000 + source = "registry+https://github.com/rust-lang/crates.io-index" 2001 + checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 2002 + dependencies = [ 2003 + "zerofrom-derive", 2004 + ] 2005 + 2006 + [[package]] 2007 + name = "zerofrom-derive" 2008 + version = "0.1.6" 2009 + source = "registry+https://github.com/rust-lang/crates.io-index" 2010 + checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 2011 + dependencies = [ 2012 + "proc-macro2", 2013 + "quote", 2014 + "syn", 2015 + "synstructure", 2016 + ] 2017 + 2018 + [[package]] 2019 + name = "zeroize" 2020 + version = "1.8.1" 2021 + source = "registry+https://github.com/rust-lang/crates.io-index" 2022 + checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 2023 + 2024 + [[package]] 2025 + name = "zerotrie" 2026 + version = "0.2.2" 2027 + source = "registry+https://github.com/rust-lang/crates.io-index" 2028 + checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" 2029 + dependencies = [ 2030 + "displaydoc", 2031 + "yoke", 2032 + "zerofrom", 2033 + ] 2034 + 2035 + [[package]] 2036 + name = "zerovec" 2037 + version = "0.11.4" 2038 + source = "registry+https://github.com/rust-lang/crates.io-index" 2039 + checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b" 2040 + dependencies = [ 2041 + "yoke", 2042 + "zerofrom", 2043 + "zerovec-derive", 2044 + ] 2045 + 2046 + [[package]] 2047 + name = "zerovec-derive" 2048 + version = "0.11.1" 2049 + source = "registry+https://github.com/rust-lang/crates.io-index" 2050 + checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" 2051 + dependencies = [ 2052 + "proc-macro2", 2053 + "quote", 2054 + "syn", 2055 + ] 2056 + 2057 + [[package]] 2058 + name = "zstd" 2059 + version = "0.13.3" 2060 + source = "registry+https://github.com/rust-lang/crates.io-index" 2061 + checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" 2062 + dependencies = [ 2063 + "zstd-safe", 2064 + ] 2065 + 2066 + [[package]] 2067 + name = "zstd-safe" 2068 + version = "7.2.4" 2069 + source = "registry+https://github.com/rust-lang/crates.io-index" 2070 + checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d" 2071 + dependencies = [ 2072 + "zstd-sys", 2073 + ] 2074 + 2075 + [[package]] 2076 + name = "zstd-sys" 2077 + version = "2.0.15+zstd.1.5.7" 2078 + source = "registry+https://github.com/rust-lang/crates.io-index" 2079 + checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237" 2080 + dependencies = [ 2081 + "cc", 2082 + "pkg-config", 2083 + ]
+23
Cargo.toml
···
··· 1 + [package] 2 + name = "sightline" 3 + version = "0.1.0" 4 + edition = "2024" 5 + 6 + [dependencies] 7 + anyhow = "1" 8 + tracing-subscriber = {version = "0.3", features = ["env-filter"]} 9 + tracing = "0.1" 10 + tokio = { version = "1", features = ["full", "parking_lot"] } 11 + axum = { version = "0.8", default-features = false, features = ["http1", "tokio", "tracing", "query"] } 12 + axum-htmx = "0.8" 13 + reqwest = { version = "0.12", default-features = false, features = ["charset", "http2", "rustls-tls", "json"] } 14 + tower-http = {version = "0.6", features = ["request-id", "trace", "compression-full"]} 15 + smol_str = { version = "0.3", features = ["serde"] } 16 + scc = "2" 17 + ahash = { version = "0.8", features = ["serde"] } 18 + serde = { version = "1", features = ["derive"] } 19 + serde_json = "1" 20 + hypertext = { version = "0.12", features = ["axum", "htmx"] } 21 + 22 + [target.'cfg(not(target_env = "msvc"))'.dependencies] 23 + tikv-jemallocator = "0.6"
+3
rust-toolchain.toml
···
··· 1 + [toolchain] 2 + channel = "nightly" 3 + components = ["rustc-codegen-cranelift-preview", "llvm-tools-preview", "rust-src"]
+3
src/main.rs
···
··· 1 + fn main() { 2 + println!("Hello, world!"); 3 + }