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