A better Rust ATProto crate
0

Configure Feed

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

at main 160 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.25.1" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b" 10dependencies = [ 11 "gimli", 12] 13 14[[package]] 15name = "adler" 16version = "1.0.2" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 20[[package]] 21name = "adler2" 22version = "2.0.1" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" 25 26[[package]] 27name = "aead" 28version = "0.5.2" 29source = "registry+https://github.com/rust-lang/crates.io-index" 30checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" 31dependencies = [ 32 "crypto-common", 33 "generic-array", 34] 35 36[[package]] 37name = "aes" 38version = "0.8.4" 39source = "registry+https://github.com/rust-lang/crates.io-index" 40checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" 41dependencies = [ 42 "cfg-if", 43 "cipher", 44 "cpufeatures", 45] 46 47[[package]] 48name = "aes-gcm" 49version = "0.10.3" 50source = "registry+https://github.com/rust-lang/crates.io-index" 51checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" 52dependencies = [ 53 "aead", 54 "aes", 55 "cipher", 56 "ctr", 57 "ghash", 58 "subtle", 59] 60 61[[package]] 62name = "aho-corasick" 63version = "1.1.4" 64source = "registry+https://github.com/rust-lang/crates.io-index" 65checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" 66dependencies = [ 67 "memchr", 68] 69 70[[package]] 71name = "aligned" 72version = "0.4.3" 73source = "registry+https://github.com/rust-lang/crates.io-index" 74checksum = "ee4508988c62edf04abd8d92897fca0c2995d907ce1dfeaf369dac3716a40685" 75dependencies = [ 76 "as-slice", 77] 78 79[[package]] 80name = "aligned-vec" 81version = "0.6.4" 82source = "registry+https://github.com/rust-lang/crates.io-index" 83checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b" 84dependencies = [ 85 "equator", 86] 87 88[[package]] 89name = "alloc-no-stdlib" 90version = "2.0.4" 91source = "registry+https://github.com/rust-lang/crates.io-index" 92checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 93 94[[package]] 95name = "alloc-stdlib" 96version = "0.2.2" 97source = "registry+https://github.com/rust-lang/crates.io-index" 98checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 99dependencies = [ 100 "alloc-no-stdlib", 101] 102 103[[package]] 104name = "allocator-api2" 105version = "0.2.21" 106source = "registry+https://github.com/rust-lang/crates.io-index" 107checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" 108 109[[package]] 110name = "android_system_properties" 111version = "0.1.5" 112source = "registry+https://github.com/rust-lang/crates.io-index" 113checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 114dependencies = [ 115 "libc", 116] 117 118[[package]] 119name = "ansi_colours" 120version = "1.2.3" 121source = "registry+https://github.com/rust-lang/crates.io-index" 122checksum = "14eec43e0298190790f41679fe69ef7a829d2a2ddd78c8c00339e84710e435fe" 123dependencies = [ 124 "rgb", 125] 126 127[[package]] 128name = "anstream" 129version = "1.0.0" 130source = "registry+https://github.com/rust-lang/crates.io-index" 131checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d" 132dependencies = [ 133 "anstyle", 134 "anstyle-parse", 135 "anstyle-query", 136 "anstyle-wincon", 137 "colorchoice", 138 "is_terminal_polyfill", 139 "utf8parse", 140] 141 142[[package]] 143name = "anstyle" 144version = "1.0.14" 145source = "registry+https://github.com/rust-lang/crates.io-index" 146checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000" 147 148[[package]] 149name = "anstyle-parse" 150version = "1.0.0" 151source = "registry+https://github.com/rust-lang/crates.io-index" 152checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e" 153dependencies = [ 154 "utf8parse", 155] 156 157[[package]] 158name = "anstyle-query" 159version = "1.1.5" 160source = "registry+https://github.com/rust-lang/crates.io-index" 161checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" 162dependencies = [ 163 "windows-sys 0.61.2", 164] 165 166[[package]] 167name = "anstyle-wincon" 168version = "3.0.11" 169source = "registry+https://github.com/rust-lang/crates.io-index" 170checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" 171dependencies = [ 172 "anstyle", 173 "once_cell_polyfill", 174 "windows-sys 0.61.2", 175] 176 177[[package]] 178name = "anyhow" 179version = "1.0.102" 180source = "registry+https://github.com/rust-lang/crates.io-index" 181checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" 182 183[[package]] 184name = "arbitrary" 185version = "1.4.2" 186source = "registry+https://github.com/rust-lang/crates.io-index" 187checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1" 188 189[[package]] 190name = "arg_enum_proc_macro" 191version = "0.3.4" 192source = "registry+https://github.com/rust-lang/crates.io-index" 193checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea" 194dependencies = [ 195 "proc-macro2", 196 "quote", 197 "syn", 198] 199 200[[package]] 201name = "arrayvec" 202version = "0.5.2" 203source = "registry+https://github.com/rust-lang/crates.io-index" 204checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" 205 206[[package]] 207name = "arrayvec" 208version = "0.7.6" 209source = "registry+https://github.com/rust-lang/crates.io-index" 210checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" 211 212[[package]] 213name = "as-slice" 214version = "0.2.1" 215source = "registry+https://github.com/rust-lang/crates.io-index" 216checksum = "516b6b4f0e40d50dcda9365d53964ec74560ad4284da2e7fc97122cd83174516" 217dependencies = [ 218 "stable_deref_trait", 219] 220 221[[package]] 222name = "async-compression" 223version = "0.4.42" 224source = "registry+https://github.com/rust-lang/crates.io-index" 225checksum = "e79b3f8a79cccc2898f31920fc69f304859b3bd567490f75ebf51ae1c792a9ac" 226dependencies = [ 227 "compression-codecs", 228 "compression-core", 229 "pin-project-lite", 230 "tokio", 231] 232 233[[package]] 234name = "async-trait" 235version = "0.1.89" 236source = "registry+https://github.com/rust-lang/crates.io-index" 237checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" 238dependencies = [ 239 "proc-macro2", 240 "quote", 241 "syn", 242] 243 244[[package]] 245name = "atomic-polyfill" 246version = "1.0.3" 247source = "registry+https://github.com/rust-lang/crates.io-index" 248checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4" 249dependencies = [ 250 "critical-section", 251] 252 253[[package]] 254name = "atomic-waker" 255version = "1.1.2" 256source = "registry+https://github.com/rust-lang/crates.io-index" 257checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 258 259[[package]] 260name = "autocfg" 261version = "1.5.1" 262source = "registry+https://github.com/rust-lang/crates.io-index" 263checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53" 264 265[[package]] 266name = "av-scenechange" 267version = "0.14.1" 268source = "registry+https://github.com/rust-lang/crates.io-index" 269checksum = "0f321d77c20e19b92c39e7471cf986812cbb46659d2af674adc4331ef3f18394" 270dependencies = [ 271 "aligned", 272 "anyhow", 273 "arg_enum_proc_macro", 274 "arrayvec 0.7.6", 275 "log", 276 "num-rational", 277 "num-traits", 278 "pastey", 279 "rayon", 280 "thiserror 2.0.18", 281 "v_frame", 282 "y4m", 283] 284 285[[package]] 286name = "av1-grain" 287version = "0.2.5" 288source = "registry+https://github.com/rust-lang/crates.io-index" 289checksum = "8cfddb07216410377231960af4fcab838eaa12e013417781b78bd95ee22077f8" 290dependencies = [ 291 "anyhow", 292 "arrayvec 0.7.6", 293 "log", 294 "nom", 295 "num-rational", 296 "v_frame", 297] 298 299[[package]] 300name = "avif-serialize" 301version = "0.8.9" 302source = "registry+https://github.com/rust-lang/crates.io-index" 303checksum = "e7178fe5f7d460b13895ebb9dcb28a3a6216d2df2574a0806cb51b555d297f38" 304dependencies = [ 305 "arrayvec 0.7.6", 306] 307 308[[package]] 309name = "axum" 310version = "0.8.9" 311source = "registry+https://github.com/rust-lang/crates.io-index" 312checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90" 313dependencies = [ 314 "axum-core", 315 "bytes", 316 "form_urlencoded", 317 "futures-util", 318 "http", 319 "http-body", 320 "http-body-util", 321 "hyper", 322 "hyper-util", 323 "itoa", 324 "matchit", 325 "memchr", 326 "mime", 327 "percent-encoding", 328 "pin-project-lite", 329 "serde_core", 330 "serde_json", 331 "serde_path_to_error", 332 "serde_urlencoded", 333 "sync_wrapper", 334 "tokio", 335 "tower", 336 "tower-layer", 337 "tower-service", 338 "tracing 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 339] 340 341[[package]] 342name = "axum-core" 343version = "0.5.6" 344source = "registry+https://github.com/rust-lang/crates.io-index" 345checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1" 346dependencies = [ 347 "bytes", 348 "futures-core", 349 "http", 350 "http-body", 351 "http-body-util", 352 "mime", 353 "pin-project-lite", 354 "sync_wrapper", 355 "tower-layer", 356 "tower-service", 357 "tracing 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 358] 359 360[[package]] 361name = "axum-extra" 362version = "0.10.3" 363source = "registry+https://github.com/rust-lang/crates.io-index" 364checksum = "9963ff19f40c6102c76756ef0a46004c0d58957d87259fc9208ff8441c12ab96" 365dependencies = [ 366 "axum", 367 "axum-core", 368 "bytes", 369 "cookie", 370 "futures-util", 371 "http", 372 "http-body", 373 "http-body-util", 374 "mime", 375 "pin-project-lite", 376 "rustversion", 377 "serde_core", 378 "tower-layer", 379 "tower-service", 380 "tracing 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 381] 382 383[[package]] 384name = "axum-macros" 385version = "0.5.1" 386source = "registry+https://github.com/rust-lang/crates.io-index" 387checksum = "7aa268c23bfbbd2c4363b9cd302a4f504fb2a9dfe7e3451d66f35dd392e20aca" 388dependencies = [ 389 "proc-macro2", 390 "quote", 391 "syn", 392] 393 394[[package]] 395name = "axum-test" 396version = "18.7.0" 397source = "registry+https://github.com/rust-lang/crates.io-index" 398checksum = "0ce2a8627e8d8851f894696b39f2b67807d6375c177361d376173ace306a21e2" 399dependencies = [ 400 "anyhow", 401 "axum", 402 "bytes", 403 "bytesize", 404 "cookie", 405 "expect-json", 406 "http", 407 "http-body-util", 408 "hyper", 409 "hyper-util", 410 "mime", 411 "pretty_assertions", 412 "reserve-port", 413 "rust-multipart-rfc7578_2", 414 "serde", 415 "serde_json", 416 "serde_urlencoded", 417 "smallvec", 418 "tokio", 419 "tower", 420 "url", 421] 422 423[[package]] 424name = "backtrace" 425version = "0.3.76" 426source = "registry+https://github.com/rust-lang/crates.io-index" 427checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6" 428dependencies = [ 429 "addr2line", 430 "cfg-if", 431 "libc", 432 "miniz_oxide 0.8.9", 433 "object", 434 "rustc-demangle", 435 "windows-link", 436] 437 438[[package]] 439name = "backtrace-ext" 440version = "0.2.1" 441source = "registry+https://github.com/rust-lang/crates.io-index" 442checksum = "537beee3be4a18fb023b570f80e3ae28003db9167a751266b259926e25539d50" 443dependencies = [ 444 "backtrace", 445] 446 447[[package]] 448name = "base-x" 449version = "0.2.11" 450source = "registry+https://github.com/rust-lang/crates.io-index" 451checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 452 453[[package]] 454name = "base16ct" 455version = "0.2.0" 456source = "registry+https://github.com/rust-lang/crates.io-index" 457checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 458 459[[package]] 460name = "base256emoji" 461version = "1.0.2" 462source = "registry+https://github.com/rust-lang/crates.io-index" 463checksum = "b5e9430d9a245a77c92176e649af6e275f20839a48389859d1661e9a128d077c" 464dependencies = [ 465 "const-str", 466 "match-lookup", 467] 468 469[[package]] 470name = "base64" 471version = "0.22.1" 472source = "registry+https://github.com/rust-lang/crates.io-index" 473checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 474 475[[package]] 476name = "base64ct" 477version = "1.8.3" 478source = "registry+https://github.com/rust-lang/crates.io-index" 479checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" 480 481[[package]] 482name = "bit-set" 483version = "0.8.0" 484source = "registry+https://github.com/rust-lang/crates.io-index" 485checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" 486dependencies = [ 487 "bit-vec", 488] 489 490[[package]] 491name = "bit-vec" 492version = "0.8.0" 493source = "registry+https://github.com/rust-lang/crates.io-index" 494checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" 495 496[[package]] 497name = "bit_field" 498version = "0.10.3" 499source = "registry+https://github.com/rust-lang/crates.io-index" 500checksum = "1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6" 501 502[[package]] 503name = "bitflags" 504version = "2.13.0" 505source = "registry+https://github.com/rust-lang/crates.io-index" 506checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8" 507 508[[package]] 509name = "bitstream-io" 510version = "4.10.0" 511source = "registry+https://github.com/rust-lang/crates.io-index" 512checksum = "7eff00be299a18769011411c9def0d827e8f2d7bf0c3dbf53633147a8867fd1f" 513dependencies = [ 514 "no_std_io2", 515] 516 517[[package]] 518name = "block-buffer" 519version = "0.10.4" 520source = "registry+https://github.com/rust-lang/crates.io-index" 521checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 522dependencies = [ 523 "generic-array", 524] 525 526[[package]] 527name = "bon" 528version = "3.9.2" 529source = "registry+https://github.com/rust-lang/crates.io-index" 530checksum = "b2f04f6fef12d70d42a77b1433c9e0f065238479a6cefc4f5bab105e9873a3c3" 531dependencies = [ 532 "bon-macros", 533 "rustversion", 534] 535 536[[package]] 537name = "bon-macros" 538version = "3.9.2" 539source = "registry+https://github.com/rust-lang/crates.io-index" 540checksum = "7d0bd4c2f75335ad98052a37efb54f428b492f64340257143b3429c8a508fa7b" 541dependencies = [ 542 "darling", 543 "ident_case", 544 "prettyplease", 545 "proc-macro2", 546 "quote", 547 "rustversion", 548 "syn", 549] 550 551[[package]] 552name = "borrow-or-share" 553version = "0.2.4" 554source = "registry+https://github.com/rust-lang/crates.io-index" 555checksum = "dc0b364ead1874514c8c2855ab558056ebfeb775653e7ae45ff72f28f8f3166c" 556 557[[package]] 558name = "borsh" 559version = "1.6.1" 560source = "registry+https://github.com/rust-lang/crates.io-index" 561checksum = "cfd1e3f8955a5d7de9fab72fc8373fade9fb8a703968cb200ae3dc6cf08e185a" 562dependencies = [ 563 "bytes", 564 "cfg_aliases", 565] 566 567[[package]] 568name = "brotli" 569version = "8.0.3" 570source = "registry+https://github.com/rust-lang/crates.io-index" 571checksum = "8119e4516436f5708bbc474a9d395bf12f1b5395e93a92a56e647ac3388c8610" 572dependencies = [ 573 "alloc-no-stdlib", 574 "alloc-stdlib", 575 "brotli-decompressor", 576] 577 578[[package]] 579name = "brotli-decompressor" 580version = "5.0.1" 581source = "registry+https://github.com/rust-lang/crates.io-index" 582checksum = "5962523e1b92ce1b5e793d9169b9943eece10d39f62550bc04bb605d75b94924" 583dependencies = [ 584 "alloc-no-stdlib", 585 "alloc-stdlib", 586] 587 588[[package]] 589name = "bs58" 590version = "0.5.1" 591source = "registry+https://github.com/rust-lang/crates.io-index" 592checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" 593dependencies = [ 594 "tinyvec", 595] 596 597[[package]] 598name = "buffer" 599version = "0.1.9" 600source = "registry+https://github.com/rust-lang/crates.io-index" 601checksum = "aab7228d32b5d95be40adeba1d9461c8547b5dadf5f9cbfba09b6d578991df28" 602dependencies = [ 603 "arrayvec 0.5.2", 604 "mac 0.0.2", 605] 606 607[[package]] 608name = "built" 609version = "0.8.1" 610source = "registry+https://github.com/rust-lang/crates.io-index" 611checksum = "5c0e531d93d39c34eef561e929e8a7f86d77a5af08aac4f6d6e39976c51858e9" 612 613[[package]] 614name = "bumpalo" 615version = "3.20.3" 616source = "registry+https://github.com/rust-lang/crates.io-index" 617checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649" 618 619[[package]] 620name = "bytemuck" 621version = "1.25.0" 622source = "registry+https://github.com/rust-lang/crates.io-index" 623checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec" 624 625[[package]] 626name = "byteorder" 627version = "1.5.0" 628source = "registry+https://github.com/rust-lang/crates.io-index" 629checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 630 631[[package]] 632name = "byteorder-lite" 633version = "0.1.0" 634source = "registry+https://github.com/rust-lang/crates.io-index" 635checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" 636 637[[package]] 638name = "bytes" 639version = "1.11.1" 640source = "registry+https://github.com/rust-lang/crates.io-index" 641checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" 642dependencies = [ 643 "serde", 644] 645 646[[package]] 647name = "bytesize" 648version = "2.4.0" 649source = "registry+https://github.com/rust-lang/crates.io-index" 650checksum = "49e78e506b9d7633710dab98996f22f95f3d0f488e8f1aa162830556ed9fc14d" 651 652[[package]] 653name = "cast" 654version = "0.3.0" 655source = "registry+https://github.com/rust-lang/crates.io-index" 656checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 657 658[[package]] 659name = "cbor4ii" 660version = "0.2.14" 661source = "registry+https://github.com/rust-lang/crates.io-index" 662checksum = "b544cf8c89359205f4f990d0e6f3828db42df85b5dac95d09157a250eb0749c4" 663dependencies = [ 664 "serde", 665] 666 667[[package]] 668name = "cc" 669version = "1.2.64" 670source = "registry+https://github.com/rust-lang/crates.io-index" 671checksum = "dad887fd958be91b5098c0248def011f4523ab786cd411be668777e55063501f" 672dependencies = [ 673 "find-msvc-tools", 674 "jobserver", 675 "libc", 676 "shlex", 677] 678 679[[package]] 680name = "cfg-if" 681version = "1.0.4" 682source = "registry+https://github.com/rust-lang/crates.io-index" 683checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 684 685[[package]] 686name = "cfg_aliases" 687version = "0.2.1" 688source = "registry+https://github.com/rust-lang/crates.io-index" 689checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 690 691[[package]] 692name = "chrono" 693version = "0.4.45" 694source = "registry+https://github.com/rust-lang/crates.io-index" 695checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327" 696dependencies = [ 697 "iana-time-zone", 698 "js-sys", 699 "num-traits", 700 "serde", 701 "wasm-bindgen", 702 "windows-link", 703] 704 705[[package]] 706name = "ciborium" 707version = "0.2.2" 708source = "registry+https://github.com/rust-lang/crates.io-index" 709checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" 710dependencies = [ 711 "ciborium-io", 712 "ciborium-ll", 713 "serde", 714] 715 716[[package]] 717name = "ciborium-io" 718version = "0.2.2" 719source = "registry+https://github.com/rust-lang/crates.io-index" 720checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" 721 722[[package]] 723name = "ciborium-ll" 724version = "0.2.2" 725source = "registry+https://github.com/rust-lang/crates.io-index" 726checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" 727dependencies = [ 728 "ciborium-io", 729 "half", 730] 731 732[[package]] 733name = "cid" 734version = "0.11.3" 735source = "registry+https://github.com/rust-lang/crates.io-index" 736checksum = "21a304f95f84d169a6f31c4d0a30d784643aaa0bbc9c1e449a2c23e963ec4971" 737dependencies = [ 738 "multibase", 739 "multihash", 740 "serde", 741 "serde_bytes", 742 "unsigned-varint 0.8.0", 743] 744 745[[package]] 746name = "cipher" 747version = "0.4.4" 748source = "registry+https://github.com/rust-lang/crates.io-index" 749checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 750dependencies = [ 751 "crypto-common", 752 "inout", 753] 754 755[[package]] 756name = "clap" 757version = "4.6.1" 758source = "registry+https://github.com/rust-lang/crates.io-index" 759checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51" 760dependencies = [ 761 "clap_builder", 762 "clap_derive", 763] 764 765[[package]] 766name = "clap_builder" 767version = "4.6.0" 768source = "registry+https://github.com/rust-lang/crates.io-index" 769checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f" 770dependencies = [ 771 "anstream", 772 "anstyle", 773 "clap_lex", 774 "strsim", 775] 776 777[[package]] 778name = "clap_complete" 779version = "4.6.5" 780source = "registry+https://github.com/rust-lang/crates.io-index" 781checksum = "e0a7a9bfdb35811f9e59832f0f05975114d2251b415fb534108e6f34060fd772" 782dependencies = [ 783 "clap", 784] 785 786[[package]] 787name = "clap_derive" 788version = "4.6.1" 789source = "registry+https://github.com/rust-lang/crates.io-index" 790checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9" 791dependencies = [ 792 "heck", 793 "proc-macro2", 794 "quote", 795 "syn", 796] 797 798[[package]] 799name = "clap_lex" 800version = "1.1.0" 801source = "registry+https://github.com/rust-lang/crates.io-index" 802checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" 803 804[[package]] 805name = "clap_mangen" 806version = "0.2.33" 807source = "registry+https://github.com/rust-lang/crates.io-index" 808checksum = "7e30ffc187e2e3aeafcd1c6e2aa416e29739454c0ccaa419226d5ecd181f2d78" 809dependencies = [ 810 "clap", 811 "roff", 812] 813 814[[package]] 815name = "cobs" 816version = "0.3.0" 817source = "registry+https://github.com/rust-lang/crates.io-index" 818checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1" 819dependencies = [ 820 "thiserror 2.0.18", 821] 822 823[[package]] 824name = "color_quant" 825version = "1.1.0" 826source = "registry+https://github.com/rust-lang/crates.io-index" 827checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 828 829[[package]] 830name = "colorchoice" 831version = "1.0.5" 832source = "registry+https://github.com/rust-lang/crates.io-index" 833checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" 834 835[[package]] 836name = "combine" 837version = "4.6.7" 838source = "registry+https://github.com/rust-lang/crates.io-index" 839checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 840dependencies = [ 841 "bytes", 842 "memchr", 843] 844 845[[package]] 846name = "compression-codecs" 847version = "0.4.38" 848source = "registry+https://github.com/rust-lang/crates.io-index" 849checksum = "ce2548391e9c1929c21bf6aa2680af86fe4c1b33e6cea9ac1cfeec0bd11218cf" 850dependencies = [ 851 "brotli", 852 "compression-core", 853 "flate2", 854 "memchr", 855] 856 857[[package]] 858name = "compression-core" 859version = "0.4.32" 860source = "registry+https://github.com/rust-lang/crates.io-index" 861checksum = "cc14f565cf027a105f7a44ccf9e5b424348421a1d8952a8fc9d499d313107789" 862 863[[package]] 864name = "console" 865version = "0.15.11" 866source = "registry+https://github.com/rust-lang/crates.io-index" 867checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8" 868dependencies = [ 869 "encode_unicode", 870 "libc", 871 "once_cell", 872 "windows-sys 0.59.0", 873] 874 875[[package]] 876name = "const-oid" 877version = "0.9.6" 878source = "registry+https://github.com/rust-lang/crates.io-index" 879checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 880 881[[package]] 882name = "const-str" 883version = "0.4.3" 884source = "registry+https://github.com/rust-lang/crates.io-index" 885checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3" 886 887[[package]] 888name = "cookie" 889version = "0.18.1" 890source = "registry+https://github.com/rust-lang/crates.io-index" 891checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" 892dependencies = [ 893 "aes-gcm", 894 "base64", 895 "percent-encoding", 896 "rand 0.8.6", 897 "subtle", 898 "time", 899 "version_check", 900] 901 902[[package]] 903name = "cordyceps" 904version = "0.3.4" 905source = "registry+https://github.com/rust-lang/crates.io-index" 906checksum = "688d7fbb8092b8de775ef2536f36c8c31f2bc4006ece2e8d8ad2d17d00ce0a2a" 907dependencies = [ 908 "loom", 909 "tracing 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 910] 911 912[[package]] 913name = "core-foundation" 914version = "0.9.4" 915source = "registry+https://github.com/rust-lang/crates.io-index" 916checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 917dependencies = [ 918 "core-foundation-sys", 919 "libc", 920] 921 922[[package]] 923name = "core-foundation" 924version = "0.10.1" 925source = "registry+https://github.com/rust-lang/crates.io-index" 926checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" 927dependencies = [ 928 "core-foundation-sys", 929 "libc", 930] 931 932[[package]] 933name = "core-foundation-sys" 934version = "0.8.7" 935source = "registry+https://github.com/rust-lang/crates.io-index" 936checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 937 938[[package]] 939name = "cpufeatures" 940version = "0.2.17" 941source = "registry+https://github.com/rust-lang/crates.io-index" 942checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 943dependencies = [ 944 "libc", 945] 946 947[[package]] 948name = "crc32fast" 949version = "1.5.0" 950source = "registry+https://github.com/rust-lang/crates.io-index" 951checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" 952dependencies = [ 953 "cfg-if", 954] 955 956[[package]] 957name = "critical-section" 958version = "1.2.0" 959source = "registry+https://github.com/rust-lang/crates.io-index" 960checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" 961 962[[package]] 963name = "crossbeam-channel" 964version = "0.5.15" 965source = "registry+https://github.com/rust-lang/crates.io-index" 966checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" 967dependencies = [ 968 "crossbeam-utils", 969] 970 971[[package]] 972name = "crossbeam-deque" 973version = "0.8.6" 974source = "registry+https://github.com/rust-lang/crates.io-index" 975checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" 976dependencies = [ 977 "crossbeam-epoch", 978 "crossbeam-utils", 979] 980 981[[package]] 982name = "crossbeam-epoch" 983version = "0.9.18" 984source = "registry+https://github.com/rust-lang/crates.io-index" 985checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 986dependencies = [ 987 "crossbeam-utils", 988] 989 990[[package]] 991name = "crossbeam-utils" 992version = "0.8.21" 993source = "registry+https://github.com/rust-lang/crates.io-index" 994checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 995 996[[package]] 997name = "crossterm" 998version = "0.28.1" 999source = "registry+https://github.com/rust-lang/crates.io-index" 1000checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6" 1001dependencies = [ 1002 "bitflags", 1003 "crossterm_winapi", 1004 "parking_lot", 1005 "rustix 0.38.44", 1006 "winapi", 1007] 1008 1009[[package]] 1010name = "crossterm_winapi" 1011version = "0.9.1" 1012source = "registry+https://github.com/rust-lang/crates.io-index" 1013checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b" 1014dependencies = [ 1015 "winapi", 1016] 1017 1018[[package]] 1019name = "crunchy" 1020version = "0.2.4" 1021source = "registry+https://github.com/rust-lang/crates.io-index" 1022checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" 1023 1024[[package]] 1025name = "crypto-bigint" 1026version = "0.5.5" 1027source = "registry+https://github.com/rust-lang/crates.io-index" 1028checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" 1029dependencies = [ 1030 "generic-array", 1031 "rand_core 0.6.4", 1032 "subtle", 1033 "zeroize", 1034] 1035 1036[[package]] 1037name = "crypto-common" 1038version = "0.1.6" 1039source = "registry+https://github.com/rust-lang/crates.io-index" 1040checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 1041dependencies = [ 1042 "generic-array", 1043 "rand_core 0.6.4", 1044 "typenum", 1045] 1046 1047[[package]] 1048name = "ctr" 1049version = "0.9.2" 1050source = "registry+https://github.com/rust-lang/crates.io-index" 1051checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" 1052dependencies = [ 1053 "cipher", 1054] 1055 1056[[package]] 1057name = "curve25519-dalek" 1058version = "4.1.3" 1059source = "registry+https://github.com/rust-lang/crates.io-index" 1060checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" 1061dependencies = [ 1062 "cfg-if", 1063 "cpufeatures", 1064 "curve25519-dalek-derive", 1065 "digest", 1066 "fiat-crypto", 1067 "rustc_version", 1068 "subtle", 1069 "zeroize", 1070] 1071 1072[[package]] 1073name = "curve25519-dalek-derive" 1074version = "0.1.1" 1075source = "registry+https://github.com/rust-lang/crates.io-index" 1076checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" 1077dependencies = [ 1078 "proc-macro2", 1079 "quote", 1080 "syn", 1081] 1082 1083[[package]] 1084name = "darling" 1085version = "0.23.0" 1086source = "registry+https://github.com/rust-lang/crates.io-index" 1087checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d" 1088dependencies = [ 1089 "darling_core", 1090 "darling_macro", 1091] 1092 1093[[package]] 1094name = "darling_core" 1095version = "0.23.0" 1096source = "registry+https://github.com/rust-lang/crates.io-index" 1097checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0" 1098dependencies = [ 1099 "ident_case", 1100 "proc-macro2", 1101 "quote", 1102 "strsim", 1103 "syn", 1104] 1105 1106[[package]] 1107name = "darling_macro" 1108version = "0.23.0" 1109source = "registry+https://github.com/rust-lang/crates.io-index" 1110checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d" 1111dependencies = [ 1112 "darling_core", 1113 "quote", 1114 "syn", 1115] 1116 1117[[package]] 1118name = "dashmap" 1119version = "6.2.1" 1120source = "registry+https://github.com/rust-lang/crates.io-index" 1121checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c" 1122dependencies = [ 1123 "cfg-if", 1124 "crossbeam-utils", 1125 "hashbrown 0.14.5", 1126 "lock_api", 1127 "once_cell", 1128 "parking_lot_core", 1129] 1130 1131[[package]] 1132name = "data-encoding" 1133version = "2.11.0" 1134source = "registry+https://github.com/rust-lang/crates.io-index" 1135checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8" 1136 1137[[package]] 1138name = "data-encoding-macro" 1139version = "0.1.20" 1140source = "registry+https://github.com/rust-lang/crates.io-index" 1141checksum = "3259c913752a86488b501ed8680446a5ed2d5aeac6e596cb23ba3800768ea32c" 1142dependencies = [ 1143 "data-encoding", 1144 "data-encoding-macro-internal", 1145] 1146 1147[[package]] 1148name = "data-encoding-macro-internal" 1149version = "0.1.18" 1150source = "registry+https://github.com/rust-lang/crates.io-index" 1151checksum = "ccc2776f0c61eca1ca32528f85548abd1a4be8fb53d1b21c013e4f18da1e7090" 1152dependencies = [ 1153 "data-encoding", 1154 "syn", 1155] 1156 1157[[package]] 1158name = "der" 1159version = "0.7.10" 1160source = "registry+https://github.com/rust-lang/crates.io-index" 1161checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" 1162dependencies = [ 1163 "const-oid", 1164 "pem-rfc7468", 1165 "zeroize", 1166] 1167 1168[[package]] 1169name = "deranged" 1170version = "0.5.8" 1171source = "registry+https://github.com/rust-lang/crates.io-index" 1172checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" 1173 1174[[package]] 1175name = "derive_more" 1176version = "1.0.0" 1177source = "registry+https://github.com/rust-lang/crates.io-index" 1178checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" 1179dependencies = [ 1180 "derive_more-impl", 1181] 1182 1183[[package]] 1184name = "derive_more-impl" 1185version = "1.0.0" 1186source = "registry+https://github.com/rust-lang/crates.io-index" 1187checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" 1188dependencies = [ 1189 "proc-macro2", 1190 "quote", 1191 "syn", 1192 "unicode-xid", 1193] 1194 1195[[package]] 1196name = "diatomic-waker" 1197version = "0.2.3" 1198source = "registry+https://github.com/rust-lang/crates.io-index" 1199checksum = "ab03c107fafeb3ee9f5925686dbb7a73bc76e3932abb0d2b365cb64b169cf04c" 1200 1201[[package]] 1202name = "diff" 1203version = "0.1.13" 1204source = "registry+https://github.com/rust-lang/crates.io-index" 1205checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" 1206 1207[[package]] 1208name = "digest" 1209version = "0.10.7" 1210source = "registry+https://github.com/rust-lang/crates.io-index" 1211checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 1212dependencies = [ 1213 "block-buffer", 1214 "const-oid", 1215 "crypto-common", 1216 "subtle", 1217] 1218 1219[[package]] 1220name = "displaydoc" 1221version = "0.2.6" 1222source = "registry+https://github.com/rust-lang/crates.io-index" 1223checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f" 1224dependencies = [ 1225 "proc-macro2", 1226 "quote", 1227 "syn", 1228] 1229 1230[[package]] 1231name = "ecdsa" 1232version = "0.16.9" 1233source = "registry+https://github.com/rust-lang/crates.io-index" 1234checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" 1235dependencies = [ 1236 "der", 1237 "digest", 1238 "elliptic-curve", 1239 "rfc6979", 1240 "signature", 1241 "spki", 1242] 1243 1244[[package]] 1245name = "ed25519" 1246version = "2.2.3" 1247source = "registry+https://github.com/rust-lang/crates.io-index" 1248checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" 1249dependencies = [ 1250 "pkcs8", 1251 "signature", 1252] 1253 1254[[package]] 1255name = "ed25519-dalek" 1256version = "2.2.0" 1257source = "registry+https://github.com/rust-lang/crates.io-index" 1258checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9" 1259dependencies = [ 1260 "curve25519-dalek", 1261 "ed25519", 1262 "rand_core 0.6.4", 1263 "serde", 1264 "sha2", 1265 "subtle", 1266 "zeroize", 1267] 1268 1269[[package]] 1270name = "either" 1271version = "1.16.0" 1272source = "registry+https://github.com/rust-lang/crates.io-index" 1273checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e" 1274 1275[[package]] 1276name = "elliptic-curve" 1277version = "0.13.8" 1278source = "registry+https://github.com/rust-lang/crates.io-index" 1279checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" 1280dependencies = [ 1281 "base16ct", 1282 "crypto-bigint", 1283 "digest", 1284 "ff", 1285 "generic-array", 1286 "group", 1287 "hkdf", 1288 "pem-rfc7468", 1289 "pkcs8", 1290 "rand_core 0.6.4", 1291 "sec1", 1292 "subtle", 1293 "zeroize", 1294] 1295 1296[[package]] 1297name = "email_address" 1298version = "0.2.9" 1299source = "registry+https://github.com/rust-lang/crates.io-index" 1300checksum = "e079f19b08ca6239f47f8ba8509c11cf3ea30095831f7fed61441475edd8c449" 1301dependencies = [ 1302 "serde", 1303] 1304 1305[[package]] 1306name = "embedded-io" 1307version = "0.4.0" 1308source = "registry+https://github.com/rust-lang/crates.io-index" 1309checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" 1310 1311[[package]] 1312name = "embedded-io" 1313version = "0.6.1" 1314source = "registry+https://github.com/rust-lang/crates.io-index" 1315checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" 1316 1317[[package]] 1318name = "embedded-io-adapters" 1319version = "0.6.2" 1320source = "registry+https://github.com/rust-lang/crates.io-index" 1321checksum = "90ccf22c3feffc79593914c0b4be9a2ed6b11e44cf1f84fd6b77d2ee92de0077" 1322dependencies = [ 1323 "embedded-io 0.6.1", 1324 "embedded-io-async", 1325 "tokio", 1326] 1327 1328[[package]] 1329name = "embedded-io-async" 1330version = "0.6.1" 1331source = "registry+https://github.com/rust-lang/crates.io-index" 1332checksum = "3ff09972d4073aa8c299395be75161d582e7629cd663171d62af73c8d50dba3f" 1333dependencies = [ 1334 "embedded-io 0.6.1", 1335] 1336 1337[[package]] 1338name = "encode_unicode" 1339version = "1.0.0" 1340source = "registry+https://github.com/rust-lang/crates.io-index" 1341checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" 1342 1343[[package]] 1344name = "encoding_rs" 1345version = "0.8.35" 1346source = "registry+https://github.com/rust-lang/crates.io-index" 1347checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 1348dependencies = [ 1349 "cfg-if", 1350] 1351 1352[[package]] 1353name = "enum-as-inner" 1354version = "0.6.1" 1355source = "registry+https://github.com/rust-lang/crates.io-index" 1356checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" 1357dependencies = [ 1358 "heck", 1359 "proc-macro2", 1360 "quote", 1361 "syn", 1362] 1363 1364[[package]] 1365name = "equator" 1366version = "0.4.2" 1367source = "registry+https://github.com/rust-lang/crates.io-index" 1368checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc" 1369dependencies = [ 1370 "equator-macro", 1371] 1372 1373[[package]] 1374name = "equator-macro" 1375version = "0.4.2" 1376source = "registry+https://github.com/rust-lang/crates.io-index" 1377checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3" 1378dependencies = [ 1379 "proc-macro2", 1380 "quote", 1381 "syn", 1382] 1383 1384[[package]] 1385name = "equivalent" 1386version = "1.0.2" 1387source = "registry+https://github.com/rust-lang/crates.io-index" 1388checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 1389 1390[[package]] 1391name = "erased-serde" 1392version = "0.4.10" 1393source = "registry+https://github.com/rust-lang/crates.io-index" 1394checksum = "d2add8a07dd6a8d93ff627029c51de145e12686fbc36ecb298ac22e74cf02dec" 1395dependencies = [ 1396 "serde", 1397 "serde_core", 1398 "typeid", 1399] 1400 1401[[package]] 1402name = "errno" 1403version = "0.3.14" 1404source = "registry+https://github.com/rust-lang/crates.io-index" 1405checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 1406dependencies = [ 1407 "libc", 1408 "windows-sys 0.61.2", 1409] 1410 1411[[package]] 1412name = "expect-json" 1413version = "1.11.0" 1414source = "registry+https://github.com/rust-lang/crates.io-index" 1415checksum = "5e80819dbfe83c8a651f5344b08910d0037dac72988aef27ee4e6bedd7ae2e33" 1416dependencies = [ 1417 "chrono", 1418 "email_address", 1419 "expect-json-macros", 1420 "num", 1421 "regex", 1422 "serde", 1423 "serde_json", 1424 "thiserror 2.0.18", 1425 "typetag", 1426 "uuid", 1427] 1428 1429[[package]] 1430name = "expect-json-macros" 1431version = "1.11.0" 1432source = "registry+https://github.com/rust-lang/crates.io-index" 1433checksum = "c0637949cd816934f3b7aab44ff98e7ec1fb903c379e07dcb9eac943ec33499e" 1434dependencies = [ 1435 "proc-macro2", 1436 "quote", 1437 "syn", 1438] 1439 1440[[package]] 1441name = "exr" 1442version = "1.74.0" 1443source = "registry+https://github.com/rust-lang/crates.io-index" 1444checksum = "4300e043a56aa2cb633c01af81ca8f699a321879a7854d3896a0ba89056363be" 1445dependencies = [ 1446 "bit_field", 1447 "half", 1448 "lebe", 1449 "miniz_oxide 0.8.9", 1450 "rayon-core", 1451 "smallvec", 1452 "zune-inflate", 1453] 1454 1455[[package]] 1456name = "fastrand" 1457version = "2.4.1" 1458source = "registry+https://github.com/rust-lang/crates.io-index" 1459checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6" 1460 1461[[package]] 1462name = "fax" 1463version = "0.2.7" 1464source = "registry+https://github.com/rust-lang/crates.io-index" 1465checksum = "caf1079563223d5d59d83c85886a56e586cfd5c1a26292e971a0fa266531ac5a" 1466 1467[[package]] 1468name = "fdeflate" 1469version = "0.3.7" 1470source = "registry+https://github.com/rust-lang/crates.io-index" 1471checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" 1472dependencies = [ 1473 "simd-adler32", 1474] 1475 1476[[package]] 1477name = "ff" 1478version = "0.13.1" 1479source = "registry+https://github.com/rust-lang/crates.io-index" 1480checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" 1481dependencies = [ 1482 "rand_core 0.6.4", 1483 "subtle", 1484] 1485 1486[[package]] 1487name = "fiat-crypto" 1488version = "0.2.9" 1489source = "registry+https://github.com/rust-lang/crates.io-index" 1490checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" 1491 1492[[package]] 1493name = "find-msvc-tools" 1494version = "0.1.9" 1495source = "registry+https://github.com/rust-lang/crates.io-index" 1496checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" 1497 1498[[package]] 1499name = "flate2" 1500version = "1.1.9" 1501source = "registry+https://github.com/rust-lang/crates.io-index" 1502checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" 1503dependencies = [ 1504 "crc32fast", 1505 "miniz_oxide 0.8.9", 1506] 1507 1508[[package]] 1509name = "fluent-uri" 1510version = "0.4.1" 1511source = "registry+https://github.com/rust-lang/crates.io-index" 1512checksum = "bc74ac4d8359ae70623506d512209619e5cf8f347124910440dbc221714b328e" 1513dependencies = [ 1514 "borrow-or-share", 1515 "ref-cast", 1516 "serde", 1517] 1518 1519[[package]] 1520name = "fnv" 1521version = "1.0.7" 1522source = "registry+https://github.com/rust-lang/crates.io-index" 1523checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1524 1525[[package]] 1526name = "foldhash" 1527version = "0.1.5" 1528source = "registry+https://github.com/rust-lang/crates.io-index" 1529checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" 1530 1531[[package]] 1532name = "form_urlencoded" 1533version = "1.2.2" 1534source = "registry+https://github.com/rust-lang/crates.io-index" 1535checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 1536dependencies = [ 1537 "percent-encoding", 1538] 1539 1540[[package]] 1541name = "futf" 1542version = "0.1.5" 1543source = "registry+https://github.com/rust-lang/crates.io-index" 1544checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 1545dependencies = [ 1546 "mac 0.1.1", 1547 "new_debug_unreachable", 1548] 1549 1550[[package]] 1551name = "futures" 1552version = "0.3.32" 1553source = "registry+https://github.com/rust-lang/crates.io-index" 1554checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d" 1555dependencies = [ 1556 "futures-channel", 1557 "futures-core", 1558 "futures-executor", 1559 "futures-io", 1560 "futures-sink", 1561 "futures-task", 1562 "futures-util", 1563] 1564 1565[[package]] 1566name = "futures-buffered" 1567version = "0.2.13" 1568source = "registry+https://github.com/rust-lang/crates.io-index" 1569checksum = "4421cb78ee172b6b06080093479d3c50f058e7c81b7d577bbb8d118d551d4cd5" 1570dependencies = [ 1571 "cordyceps", 1572 "diatomic-waker", 1573 "futures-core", 1574 "pin-project-lite", 1575 "spin 0.10.0", 1576] 1577 1578[[package]] 1579name = "futures-channel" 1580version = "0.3.32" 1581source = "registry+https://github.com/rust-lang/crates.io-index" 1582checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" 1583dependencies = [ 1584 "futures-core", 1585 "futures-sink", 1586] 1587 1588[[package]] 1589name = "futures-core" 1590version = "0.3.32" 1591source = "registry+https://github.com/rust-lang/crates.io-index" 1592checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" 1593 1594[[package]] 1595name = "futures-executor" 1596version = "0.3.32" 1597source = "registry+https://github.com/rust-lang/crates.io-index" 1598checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d" 1599dependencies = [ 1600 "futures-core", 1601 "futures-task", 1602 "futures-util", 1603] 1604 1605[[package]] 1606name = "futures-io" 1607version = "0.3.32" 1608source = "registry+https://github.com/rust-lang/crates.io-index" 1609checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" 1610 1611[[package]] 1612name = "futures-lite" 1613version = "2.6.1" 1614source = "registry+https://github.com/rust-lang/crates.io-index" 1615checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" 1616dependencies = [ 1617 "fastrand", 1618 "futures-core", 1619 "futures-io", 1620 "parking", 1621 "pin-project-lite", 1622] 1623 1624[[package]] 1625name = "futures-macro" 1626version = "0.3.32" 1627source = "registry+https://github.com/rust-lang/crates.io-index" 1628checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b" 1629dependencies = [ 1630 "proc-macro2", 1631 "quote", 1632 "syn", 1633] 1634 1635[[package]] 1636name = "futures-sink" 1637version = "0.3.32" 1638source = "registry+https://github.com/rust-lang/crates.io-index" 1639checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" 1640 1641[[package]] 1642name = "futures-task" 1643version = "0.3.32" 1644source = "registry+https://github.com/rust-lang/crates.io-index" 1645checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" 1646 1647[[package]] 1648name = "futures-util" 1649version = "0.3.32" 1650source = "registry+https://github.com/rust-lang/crates.io-index" 1651checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" 1652dependencies = [ 1653 "futures-channel", 1654 "futures-core", 1655 "futures-io", 1656 "futures-macro", 1657 "futures-sink", 1658 "futures-task", 1659 "memchr", 1660 "pin-project-lite", 1661 "slab", 1662] 1663 1664[[package]] 1665name = "generator" 1666version = "0.8.9" 1667source = "registry+https://github.com/rust-lang/crates.io-index" 1668checksum = "b3b854b0e584ead1a33f18b2fcad7cf7be18b3875c78816b753639aa501513ae" 1669dependencies = [ 1670 "cc", 1671 "cfg-if", 1672 "libc", 1673 "log", 1674 "rustversion", 1675 "windows-link", 1676 "windows-result", 1677] 1678 1679[[package]] 1680name = "generic-array" 1681version = "0.14.9" 1682source = "registry+https://github.com/rust-lang/crates.io-index" 1683checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2" 1684dependencies = [ 1685 "typenum", 1686 "version_check", 1687 "zeroize", 1688] 1689 1690[[package]] 1691name = "getrandom" 1692version = "0.2.17" 1693source = "registry+https://github.com/rust-lang/crates.io-index" 1694checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" 1695dependencies = [ 1696 "cfg-if", 1697 "js-sys", 1698 "libc", 1699 "wasi", 1700 "wasm-bindgen", 1701] 1702 1703[[package]] 1704name = "getrandom" 1705version = "0.3.4" 1706source = "registry+https://github.com/rust-lang/crates.io-index" 1707checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 1708dependencies = [ 1709 "cfg-if", 1710 "js-sys", 1711 "libc", 1712 "r-efi 5.3.0", 1713 "wasip2", 1714 "wasm-bindgen", 1715] 1716 1717[[package]] 1718name = "getrandom" 1719version = "0.4.2" 1720source = "registry+https://github.com/rust-lang/crates.io-index" 1721checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555" 1722dependencies = [ 1723 "cfg-if", 1724 "libc", 1725 "r-efi 6.0.0", 1726 "wasip2", 1727 "wasip3", 1728] 1729 1730[[package]] 1731name = "ghash" 1732version = "0.5.1" 1733source = "registry+https://github.com/rust-lang/crates.io-index" 1734checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" 1735dependencies = [ 1736 "opaque-debug", 1737 "polyval", 1738] 1739 1740[[package]] 1741name = "gif" 1742version = "0.14.2" 1743source = "registry+https://github.com/rust-lang/crates.io-index" 1744checksum = "ee8cfcc411d9adbbaba82fb72661cc1bcca13e8bba98b364e62b2dba8f960159" 1745dependencies = [ 1746 "color_quant", 1747 "weezl", 1748] 1749 1750[[package]] 1751name = "gimli" 1752version = "0.32.3" 1753source = "registry+https://github.com/rust-lang/crates.io-index" 1754checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7" 1755 1756[[package]] 1757name = "glob" 1758version = "0.3.3" 1759source = "registry+https://github.com/rust-lang/crates.io-index" 1760checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" 1761 1762[[package]] 1763name = "gloo-storage" 1764version = "0.3.0" 1765source = "registry+https://github.com/rust-lang/crates.io-index" 1766checksum = "fbc8031e8c92758af912f9bc08fbbadd3c6f3cfcbf6b64cdf3d6a81f0139277a" 1767dependencies = [ 1768 "gloo-utils", 1769 "js-sys", 1770 "serde", 1771 "serde_json", 1772 "thiserror 1.0.69", 1773 "wasm-bindgen", 1774 "web-sys", 1775] 1776 1777[[package]] 1778name = "gloo-utils" 1779version = "0.2.0" 1780source = "registry+https://github.com/rust-lang/crates.io-index" 1781checksum = "0b5555354113b18c547c1d3a98fbf7fb32a9ff4f6fa112ce823a21641a0ba3aa" 1782dependencies = [ 1783 "js-sys", 1784 "serde", 1785 "serde_json", 1786 "wasm-bindgen", 1787 "web-sys", 1788] 1789 1790[[package]] 1791name = "group" 1792version = "0.13.0" 1793source = "registry+https://github.com/rust-lang/crates.io-index" 1794checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" 1795dependencies = [ 1796 "ff", 1797 "rand_core 0.6.4", 1798 "subtle", 1799] 1800 1801[[package]] 1802name = "h2" 1803version = "0.4.14" 1804source = "registry+https://github.com/rust-lang/crates.io-index" 1805checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733" 1806dependencies = [ 1807 "atomic-waker", 1808 "bytes", 1809 "fnv", 1810 "futures-core", 1811 "futures-sink", 1812 "http", 1813 "indexmap", 1814 "slab", 1815 "tokio", 1816 "tokio-util", 1817 "tracing 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 1818] 1819 1820[[package]] 1821name = "half" 1822version = "2.7.1" 1823source = "registry+https://github.com/rust-lang/crates.io-index" 1824checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b" 1825dependencies = [ 1826 "cfg-if", 1827 "crunchy", 1828 "zerocopy", 1829] 1830 1831[[package]] 1832name = "hash32" 1833version = "0.2.1" 1834source = "registry+https://github.com/rust-lang/crates.io-index" 1835checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67" 1836dependencies = [ 1837 "byteorder", 1838] 1839 1840[[package]] 1841name = "hash32" 1842version = "0.3.1" 1843source = "registry+https://github.com/rust-lang/crates.io-index" 1844checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606" 1845dependencies = [ 1846 "byteorder", 1847] 1848 1849[[package]] 1850name = "hashbrown" 1851version = "0.14.5" 1852source = "registry+https://github.com/rust-lang/crates.io-index" 1853checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 1854 1855[[package]] 1856name = "hashbrown" 1857version = "0.15.5" 1858source = "registry+https://github.com/rust-lang/crates.io-index" 1859checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" 1860dependencies = [ 1861 "allocator-api2", 1862 "equivalent", 1863 "foldhash", 1864] 1865 1866[[package]] 1867name = "hashbrown" 1868version = "0.17.1" 1869source = "registry+https://github.com/rust-lang/crates.io-index" 1870checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" 1871 1872[[package]] 1873name = "heapless" 1874version = "0.7.17" 1875source = "registry+https://github.com/rust-lang/crates.io-index" 1876checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f" 1877dependencies = [ 1878 "atomic-polyfill", 1879 "hash32 0.2.1", 1880 "rustc_version", 1881 "serde", 1882 "spin 0.9.8", 1883 "stable_deref_trait", 1884] 1885 1886[[package]] 1887name = "heapless" 1888version = "0.9.3" 1889source = "registry+https://github.com/rust-lang/crates.io-index" 1890checksum = "25ba4bd83f9415b58b4ed8dc5714c76e626a105be4646c02630ad730ad3b5aa4" 1891dependencies = [ 1892 "hash32 0.3.1", 1893 "stable_deref_trait", 1894] 1895 1896[[package]] 1897name = "heck" 1898version = "0.5.0" 1899source = "registry+https://github.com/rust-lang/crates.io-index" 1900checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1901 1902[[package]] 1903name = "hex" 1904version = "0.4.3" 1905source = "registry+https://github.com/rust-lang/crates.io-index" 1906checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1907 1908[[package]] 1909name = "hickory-proto" 1910version = "0.24.4" 1911source = "registry+https://github.com/rust-lang/crates.io-index" 1912checksum = "92652067c9ce6f66ce53cc38d1169daa36e6e7eb7dd3b63b5103bd9d97117248" 1913dependencies = [ 1914 "async-trait", 1915 "cfg-if", 1916 "data-encoding", 1917 "enum-as-inner", 1918 "futures-channel", 1919 "futures-io", 1920 "futures-util", 1921 "idna", 1922 "ipnet", 1923 "once_cell", 1924 "rand 0.8.6", 1925 "thiserror 1.0.69", 1926 "tinyvec", 1927 "tokio", 1928 "tracing 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 1929 "url", 1930] 1931 1932[[package]] 1933name = "hickory-resolver" 1934version = "0.24.4" 1935source = "registry+https://github.com/rust-lang/crates.io-index" 1936checksum = "cbb117a1ca520e111743ab2f6688eddee69db4e0ea242545a604dce8a66fd22e" 1937dependencies = [ 1938 "cfg-if", 1939 "futures-util", 1940 "hickory-proto", 1941 "ipconfig", 1942 "lru-cache", 1943 "once_cell", 1944 "parking_lot", 1945 "rand 0.8.6", 1946 "resolv-conf", 1947 "smallvec", 1948 "thiserror 1.0.69", 1949 "tokio", 1950 "tracing 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 1951] 1952 1953[[package]] 1954name = "hkdf" 1955version = "0.12.4" 1956source = "registry+https://github.com/rust-lang/crates.io-index" 1957checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 1958dependencies = [ 1959 "hmac", 1960] 1961 1962[[package]] 1963name = "hmac" 1964version = "0.12.1" 1965source = "registry+https://github.com/rust-lang/crates.io-index" 1966checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1967dependencies = [ 1968 "digest", 1969] 1970 1971[[package]] 1972name = "html-escape" 1973version = "0.2.13" 1974source = "registry+https://github.com/rust-lang/crates.io-index" 1975checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476" 1976dependencies = [ 1977 "utf8-width", 1978] 1979 1980[[package]] 1981name = "html5ever" 1982version = "0.27.0" 1983source = "registry+https://github.com/rust-lang/crates.io-index" 1984checksum = "c13771afe0e6e846f1e67d038d4cb29998a6779f93c809212e4e9c32efd244d4" 1985dependencies = [ 1986 "log", 1987 "mac 0.1.1", 1988 "markup5ever", 1989 "proc-macro2", 1990 "quote", 1991 "syn", 1992] 1993 1994[[package]] 1995name = "http" 1996version = "1.4.2" 1997source = "registry+https://github.com/rust-lang/crates.io-index" 1998checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425" 1999dependencies = [ 2000 "bytes", 2001 "itoa", 2002] 2003 2004[[package]] 2005name = "http-body" 2006version = "1.0.1" 2007source = "registry+https://github.com/rust-lang/crates.io-index" 2008checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 2009dependencies = [ 2010 "bytes", 2011 "http", 2012] 2013 2014[[package]] 2015name = "http-body-util" 2016version = "0.1.3" 2017source = "registry+https://github.com/rust-lang/crates.io-index" 2018checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 2019dependencies = [ 2020 "bytes", 2021 "futures-core", 2022 "http", 2023 "http-body", 2024 "pin-project-lite", 2025] 2026 2027[[package]] 2028name = "httparse" 2029version = "1.10.1" 2030source = "registry+https://github.com/rust-lang/crates.io-index" 2031checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 2032 2033[[package]] 2034name = "httpdate" 2035version = "1.0.3" 2036source = "registry+https://github.com/rust-lang/crates.io-index" 2037checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 2038 2039[[package]] 2040name = "hyper" 2041version = "1.10.1" 2042source = "registry+https://github.com/rust-lang/crates.io-index" 2043checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498" 2044dependencies = [ 2045 "atomic-waker", 2046 "bytes", 2047 "futures-channel", 2048 "futures-core", 2049 "h2", 2050 "http", 2051 "http-body", 2052 "httparse", 2053 "httpdate", 2054 "itoa", 2055 "pin-project-lite", 2056 "smallvec", 2057 "tokio", 2058 "want", 2059] 2060 2061[[package]] 2062name = "hyper-rustls" 2063version = "0.27.9" 2064source = "registry+https://github.com/rust-lang/crates.io-index" 2065checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f" 2066dependencies = [ 2067 "http", 2068 "hyper", 2069 "hyper-util", 2070 "rustls", 2071 "tokio", 2072 "tokio-rustls", 2073 "tower-service", 2074 "webpki-roots", 2075] 2076 2077[[package]] 2078name = "hyper-util" 2079version = "0.1.20" 2080source = "registry+https://github.com/rust-lang/crates.io-index" 2081checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" 2082dependencies = [ 2083 "base64", 2084 "bytes", 2085 "futures-channel", 2086 "futures-util", 2087 "http", 2088 "http-body", 2089 "hyper", 2090 "ipnet", 2091 "libc", 2092 "percent-encoding", 2093 "pin-project-lite", 2094 "socket2", 2095 "system-configuration", 2096 "tokio", 2097 "tower-service", 2098 "tracing 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 2099 "windows-registry", 2100] 2101 2102[[package]] 2103name = "iana-time-zone" 2104version = "0.1.65" 2105source = "registry+https://github.com/rust-lang/crates.io-index" 2106checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" 2107dependencies = [ 2108 "android_system_properties", 2109 "core-foundation-sys", 2110 "iana-time-zone-haiku", 2111 "js-sys", 2112 "log", 2113 "wasm-bindgen", 2114 "windows-core", 2115] 2116 2117[[package]] 2118name = "iana-time-zone-haiku" 2119version = "0.1.2" 2120source = "registry+https://github.com/rust-lang/crates.io-index" 2121checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 2122dependencies = [ 2123 "cc", 2124] 2125 2126[[package]] 2127name = "icu_collections" 2128version = "2.2.0" 2129source = "registry+https://github.com/rust-lang/crates.io-index" 2130checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c" 2131dependencies = [ 2132 "displaydoc", 2133 "potential_utf", 2134 "utf8_iter", 2135 "yoke", 2136 "zerofrom", 2137 "zerovec", 2138] 2139 2140[[package]] 2141name = "icu_locale_core" 2142version = "2.2.0" 2143source = "registry+https://github.com/rust-lang/crates.io-index" 2144checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29" 2145dependencies = [ 2146 "displaydoc", 2147 "litemap", 2148 "tinystr", 2149 "writeable", 2150 "zerovec", 2151] 2152 2153[[package]] 2154name = "icu_normalizer" 2155version = "2.2.0" 2156source = "registry+https://github.com/rust-lang/crates.io-index" 2157checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4" 2158dependencies = [ 2159 "icu_collections", 2160 "icu_normalizer_data", 2161 "icu_properties", 2162 "icu_provider", 2163 "smallvec", 2164 "zerovec", 2165] 2166 2167[[package]] 2168name = "icu_normalizer_data" 2169version = "2.2.0" 2170source = "registry+https://github.com/rust-lang/crates.io-index" 2171checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38" 2172 2173[[package]] 2174name = "icu_properties" 2175version = "2.2.0" 2176source = "registry+https://github.com/rust-lang/crates.io-index" 2177checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de" 2178dependencies = [ 2179 "icu_collections", 2180 "icu_locale_core", 2181 "icu_properties_data", 2182 "icu_provider", 2183 "zerotrie", 2184 "zerovec", 2185] 2186 2187[[package]] 2188name = "icu_properties_data" 2189version = "2.2.0" 2190source = "registry+https://github.com/rust-lang/crates.io-index" 2191checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14" 2192 2193[[package]] 2194name = "icu_provider" 2195version = "2.2.0" 2196source = "registry+https://github.com/rust-lang/crates.io-index" 2197checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421" 2198dependencies = [ 2199 "displaydoc", 2200 "icu_locale_core", 2201 "writeable", 2202 "yoke", 2203 "zerofrom", 2204 "zerotrie", 2205 "zerovec", 2206] 2207 2208[[package]] 2209name = "id-arena" 2210version = "2.3.0" 2211source = "registry+https://github.com/rust-lang/crates.io-index" 2212checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954" 2213 2214[[package]] 2215name = "ident_case" 2216version = "1.0.1" 2217source = "registry+https://github.com/rust-lang/crates.io-index" 2218checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 2219 2220[[package]] 2221name = "idna" 2222version = "1.1.0" 2223source = "registry+https://github.com/rust-lang/crates.io-index" 2224checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 2225dependencies = [ 2226 "idna_adapter", 2227 "smallvec", 2228 "utf8_iter", 2229] 2230 2231[[package]] 2232name = "idna_adapter" 2233version = "1.2.2" 2234source = "registry+https://github.com/rust-lang/crates.io-index" 2235checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714" 2236dependencies = [ 2237 "icu_normalizer", 2238 "icu_properties", 2239] 2240 2241[[package]] 2242name = "image" 2243version = "0.25.10" 2244source = "registry+https://github.com/rust-lang/crates.io-index" 2245checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104" 2246dependencies = [ 2247 "bytemuck", 2248 "byteorder-lite", 2249 "color_quant", 2250 "exr", 2251 "gif", 2252 "image-webp", 2253 "moxcms", 2254 "num-traits", 2255 "png", 2256 "qoi", 2257 "ravif", 2258 "rayon", 2259 "rgb", 2260 "tiff 0.11.3", 2261 "zune-core", 2262 "zune-jpeg", 2263] 2264 2265[[package]] 2266name = "image-webp" 2267version = "0.2.4" 2268source = "registry+https://github.com/rust-lang/crates.io-index" 2269checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3" 2270dependencies = [ 2271 "byteorder-lite", 2272 "quick-error 2.0.1", 2273] 2274 2275[[package]] 2276name = "imgref" 2277version = "1.12.2" 2278source = "registry+https://github.com/rust-lang/crates.io-index" 2279checksum = "89194689a993ab15268672e99e7b0e19da2da3268ac682e8f02d29d4d1434cd7" 2280 2281[[package]] 2282name = "indexmap" 2283version = "2.14.0" 2284source = "registry+https://github.com/rust-lang/crates.io-index" 2285checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9" 2286dependencies = [ 2287 "equivalent", 2288 "hashbrown 0.17.1", 2289 "serde", 2290 "serde_core", 2291] 2292 2293[[package]] 2294name = "inout" 2295version = "0.1.4" 2296source = "registry+https://github.com/rust-lang/crates.io-index" 2297checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" 2298dependencies = [ 2299 "generic-array", 2300] 2301 2302[[package]] 2303name = "interpolate_name" 2304version = "0.2.4" 2305source = "registry+https://github.com/rust-lang/crates.io-index" 2306checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60" 2307dependencies = [ 2308 "proc-macro2", 2309 "quote", 2310 "syn", 2311] 2312 2313[[package]] 2314name = "inventory" 2315version = "0.3.24" 2316source = "registry+https://github.com/rust-lang/crates.io-index" 2317checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b" 2318dependencies = [ 2319 "rustversion", 2320] 2321 2322[[package]] 2323name = "ipconfig" 2324version = "0.3.4" 2325source = "registry+https://github.com/rust-lang/crates.io-index" 2326checksum = "4d40460c0ce33d6ce4b0630ad68ff63d6661961c48b6dba35e5a4d81cfb48222" 2327dependencies = [ 2328 "socket2", 2329 "widestring", 2330 "windows-registry", 2331 "windows-result", 2332 "windows-sys 0.61.2", 2333] 2334 2335[[package]] 2336name = "ipld-core" 2337version = "0.4.3" 2338source = "registry+https://github.com/rust-lang/crates.io-index" 2339checksum = "090f624976d72f0b0bb71b86d58dc16c15e069193067cb3a3a09d655246cbbda" 2340dependencies = [ 2341 "cid", 2342 "serde", 2343 "serde_bytes", 2344] 2345 2346[[package]] 2347name = "ipnet" 2348version = "2.12.0" 2349source = "registry+https://github.com/rust-lang/crates.io-index" 2350checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" 2351 2352[[package]] 2353name = "iroh-car" 2354version = "0.5.1" 2355source = "registry+https://github.com/rust-lang/crates.io-index" 2356checksum = "cb7f8cd4cb9aa083fba8b52e921764252d0b4dcb1cd6d120b809dbfe1106e81a" 2357dependencies = [ 2358 "anyhow", 2359 "cid", 2360 "futures", 2361 "serde", 2362 "serde_ipld_dagcbor", 2363 "thiserror 1.0.69", 2364 "tokio", 2365 "unsigned-varint 0.7.2", 2366] 2367 2368[[package]] 2369name = "is_ci" 2370version = "1.2.0" 2371source = "registry+https://github.com/rust-lang/crates.io-index" 2372checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45" 2373 2374[[package]] 2375name = "is_terminal_polyfill" 2376version = "1.70.2" 2377source = "registry+https://github.com/rust-lang/crates.io-index" 2378checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" 2379 2380[[package]] 2381name = "itertools" 2382version = "0.14.0" 2383source = "registry+https://github.com/rust-lang/crates.io-index" 2384checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" 2385dependencies = [ 2386 "either", 2387] 2388 2389[[package]] 2390name = "itoa" 2391version = "1.0.18" 2392source = "registry+https://github.com/rust-lang/crates.io-index" 2393checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" 2394 2395[[package]] 2396name = "jacquard" 2397version = "0.12.0" 2398dependencies = [ 2399 "bytes", 2400 "clap", 2401 "getrandom 0.2.17", 2402 "gloo-storage", 2403 "http", 2404 "image", 2405 "jacquard-api", 2406 "jacquard-common", 2407 "jacquard-derive", 2408 "jacquard-identity", 2409 "jacquard-oauth", 2410 "jose-jwk", 2411 "miette", 2412 "n0-future", 2413 "regex", 2414 "regex-lite", 2415 "reqwest", 2416 "serde", 2417 "serde_html_form", 2418 "serde_json", 2419 "smol_str", 2420 "thiserror 2.0.18", 2421 "tiff 0.6.1", 2422 "tokio", 2423 "tracing 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 2424 "trait-variant", 2425 "viuer", 2426 "webpage", 2427] 2428 2429[[package]] 2430name = "jacquard-api" 2431version = "0.12.0" 2432dependencies = [ 2433 "jacquard-common", 2434 "jacquard-derive", 2435 "jacquard-lexicon", 2436 "miette", 2437 "serde", 2438 "thiserror 2.0.18", 2439] 2440 2441[[package]] 2442name = "jacquard-axum" 2443version = "0.12.0" 2444dependencies = [ 2445 "axum", 2446 "axum-extra", 2447 "axum-macros", 2448 "axum-test", 2449 "base64", 2450 "bytes", 2451 "chrono", 2452 "clap", 2453 "html-escape", 2454 "jacquard", 2455 "jacquard-common", 2456 "jacquard-derive", 2457 "jacquard-identity", 2458 "k256", 2459 "miette", 2460 "mini-moka-wasm", 2461 "multibase", 2462 "rand 0.8.6", 2463 "reqwest", 2464 "serde", 2465 "serde_html_form", 2466 "serde_json", 2467 "thiserror 2.0.18", 2468 "tokio", 2469 "tower", 2470 "tower-http", 2471 "tracing 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 2472 "tracing-subscriber 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)", 2473] 2474 2475[[package]] 2476name = "jacquard-codegen-tests" 2477version = "0.0.0" 2478dependencies = [ 2479 "inventory", 2480 "jacquard-common", 2481 "jacquard-derive", 2482 "jacquard-lexicon", 2483 "miette", 2484 "serde", 2485 "serde_ipld_dagcbor", 2486 "serde_json", 2487 "smol_str", 2488 "thiserror 2.0.18", 2489] 2490 2491[[package]] 2492name = "jacquard-common" 2493version = "0.12.0" 2494dependencies = [ 2495 "base64", 2496 "bon", 2497 "bytes", 2498 "chrono", 2499 "ciborium", 2500 "ciborium-io", 2501 "cid", 2502 "ed25519-dalek", 2503 "fluent-uri", 2504 "futures", 2505 "futures-lite", 2506 "getrandom 0.2.17", 2507 "getrandom 0.3.4", 2508 "hashbrown 0.15.5", 2509 "http", 2510 "ipld-core", 2511 "k256", 2512 "maitake-sync 0.1.2", 2513 "miette", 2514 "multibase", 2515 "multihash", 2516 "n0-future", 2517 "oxilangtag", 2518 "p256", 2519 "phf", 2520 "postcard", 2521 "rand 0.9.4", 2522 "regex", 2523 "regex-automata", 2524 "regex-lite", 2525 "reqwest", 2526 "rustversion", 2527 "serde", 2528 "serde_bytes", 2529 "serde_html_form", 2530 "serde_ipld_dagcbor", 2531 "serde_json", 2532 "signature", 2533 "smol_str", 2534 "spin 0.10.0", 2535 "thiserror 2.0.18", 2536 "tokio", 2537 "tokio-tungstenite-wasm", 2538 "tokio-util", 2539 "tracing 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 2540 "trait-variant", 2541 "unicode-segmentation", 2542 "zstd", 2543] 2544 2545[[package]] 2546name = "jacquard-derive" 2547version = "0.12.0" 2548dependencies = [ 2549 "heck", 2550 "inventory", 2551 "jacquard-common", 2552 "jacquard-lexicon", 2553 "proc-macro2", 2554 "quote", 2555 "serde", 2556 "serde_json", 2557 "syn", 2558 "unicode-segmentation", 2559] 2560 2561[[package]] 2562name = "jacquard-identity" 2563version = "0.12.0" 2564dependencies = [ 2565 "bon", 2566 "bytes", 2567 "hickory-resolver", 2568 "http", 2569 "jacquard-common", 2570 "jacquard-lexicon", 2571 "miette", 2572 "mini-moka-wasm", 2573 "n0-future", 2574 "reqwest", 2575 "serde", 2576 "serde_html_form", 2577 "serde_json", 2578 "thiserror 2.0.18", 2579 "tokio", 2580 "tracing 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 2581 "trait-variant", 2582] 2583 2584[[package]] 2585name = "jacquard-lexgen" 2586version = "0.12.0" 2587dependencies = [ 2588 "clap", 2589 "clap_complete", 2590 "clap_mangen", 2591 "glob", 2592 "inventory", 2593 "jacquard-common", 2594 "jacquard-derive", 2595 "jacquard-identity", 2596 "jacquard-lexicon", 2597 "kdl", 2598 "miette", 2599 "reqwest", 2600 "serde", 2601 "serde_json", 2602 "syn", 2603 "tempfile", 2604 "thiserror 2.0.18", 2605 "tokio", 2606 "toml 0.8.23", 2607 "walkdir", 2608] 2609 2610[[package]] 2611name = "jacquard-lexicon" 2612version = "0.12.0" 2613dependencies = [ 2614 "bytes", 2615 "cid", 2616 "dashmap", 2617 "heck", 2618 "inventory", 2619 "jacquard-common", 2620 "miette", 2621 "multihash", 2622 "prettyplease", 2623 "proc-macro2", 2624 "quote", 2625 "serde", 2626 "serde_ipld_dagcbor", 2627 "serde_json", 2628 "serde_path_to_error", 2629 "serde_repr", 2630 "serde_with", 2631 "sha2", 2632 "syn", 2633 "tempfile", 2634 "thiserror 2.0.18", 2635 "unicode-segmentation", 2636] 2637 2638[[package]] 2639name = "jacquard-oauth" 2640version = "0.12.0" 2641dependencies = [ 2642 "base64", 2643 "bytes", 2644 "chrono", 2645 "dashmap", 2646 "ed25519-dalek", 2647 "elliptic-curve", 2648 "http", 2649 "jacquard-common", 2650 "jacquard-identity", 2651 "jacquard-lexicon", 2652 "jose-jwa", 2653 "jose-jwk", 2654 "k256", 2655 "miette", 2656 "n0-future", 2657 "p256", 2658 "p384", 2659 "rand 0.8.6", 2660 "reqwest", 2661 "serde", 2662 "serde_html_form", 2663 "serde_json", 2664 "sha2", 2665 "smallvec", 2666 "smol_str", 2667 "thiserror 2.0.18", 2668 "tokio", 2669 "tracing 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 2670 "trait-variant", 2671 "webbrowser", 2672] 2673 2674[[package]] 2675name = "jacquard-repo" 2676version = "0.12.0" 2677dependencies = [ 2678 "anyhow", 2679 "bytes", 2680 "cid", 2681 "ed25519-dalek", 2682 "hex", 2683 "iroh-car", 2684 "jacquard-api", 2685 "jacquard-common", 2686 "jacquard-derive", 2687 "k256", 2688 "miette", 2689 "multihash", 2690 "n0-future", 2691 "p256", 2692 "rand 0.8.6", 2693 "serde", 2694 "serde_bytes", 2695 "serde_ipld_dagcbor", 2696 "serde_ipld_dagjson", 2697 "serde_json", 2698 "sha2", 2699 "smol_str", 2700 "tempfile", 2701 "thiserror 2.0.18", 2702 "tokio", 2703 "trait-variant", 2704] 2705 2706[[package]] 2707name = "jni" 2708version = "0.22.4" 2709source = "registry+https://github.com/rust-lang/crates.io-index" 2710checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498" 2711dependencies = [ 2712 "cfg-if", 2713 "combine", 2714 "jni-macros", 2715 "jni-sys", 2716 "log", 2717 "simd_cesu8", 2718 "thiserror 2.0.18", 2719 "walkdir", 2720 "windows-link", 2721] 2722 2723[[package]] 2724name = "jni-macros" 2725version = "0.22.4" 2726source = "registry+https://github.com/rust-lang/crates.io-index" 2727checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3" 2728dependencies = [ 2729 "proc-macro2", 2730 "quote", 2731 "rustc_version", 2732 "simd_cesu8", 2733 "syn", 2734] 2735 2736[[package]] 2737name = "jni-sys" 2738version = "0.4.1" 2739source = "registry+https://github.com/rust-lang/crates.io-index" 2740checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2" 2741dependencies = [ 2742 "jni-sys-macros", 2743] 2744 2745[[package]] 2746name = "jni-sys-macros" 2747version = "0.4.1" 2748source = "registry+https://github.com/rust-lang/crates.io-index" 2749checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264" 2750dependencies = [ 2751 "quote", 2752 "syn", 2753] 2754 2755[[package]] 2756name = "jobserver" 2757version = "0.1.34" 2758source = "registry+https://github.com/rust-lang/crates.io-index" 2759checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" 2760dependencies = [ 2761 "getrandom 0.3.4", 2762 "libc", 2763] 2764 2765[[package]] 2766name = "jose-b64" 2767version = "0.1.2" 2768source = "registry+https://github.com/rust-lang/crates.io-index" 2769checksum = "bec69375368709666b21c76965ce67549f2d2db7605f1f8707d17c9656801b56" 2770dependencies = [ 2771 "base64ct", 2772 "serde", 2773 "subtle", 2774 "zeroize", 2775] 2776 2777[[package]] 2778name = "jose-jwa" 2779version = "0.1.2" 2780source = "registry+https://github.com/rust-lang/crates.io-index" 2781checksum = "9ab78e053fe886a351d67cf0d194c000f9d0dcb92906eb34d853d7e758a4b3a7" 2782dependencies = [ 2783 "serde", 2784] 2785 2786[[package]] 2787name = "jose-jwk" 2788version = "0.1.2" 2789source = "registry+https://github.com/rust-lang/crates.io-index" 2790checksum = "280fa263807fe0782ecb6f2baadc28dffc04e00558a58e33bfdb801d11fd58e7" 2791dependencies = [ 2792 "jose-b64", 2793 "jose-jwa", 2794 "p256", 2795 "p384", 2796 "rsa", 2797 "serde", 2798 "zeroize", 2799] 2800 2801[[package]] 2802name = "jpeg-decoder" 2803version = "0.1.22" 2804source = "registry+https://github.com/rust-lang/crates.io-index" 2805checksum = "229d53d58899083193af11e15917b5640cd40b29ff475a1fe4ef725deb02d0f2" 2806 2807[[package]] 2808name = "js-sys" 2809version = "0.3.102" 2810source = "registry+https://github.com/rust-lang/crates.io-index" 2811checksum = "03d04c30968dffe80775bd4d7fb676131cd04a1fb46d2686dbffbaec2d9dfd31" 2812dependencies = [ 2813 "cfg-if", 2814 "futures-util", 2815 "wasm-bindgen", 2816] 2817 2818[[package]] 2819name = "k256" 2820version = "0.13.4" 2821source = "registry+https://github.com/rust-lang/crates.io-index" 2822checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b" 2823dependencies = [ 2824 "cfg-if", 2825 "ecdsa", 2826 "elliptic-curve", 2827 "once_cell", 2828 "sha2", 2829 "signature", 2830] 2831 2832[[package]] 2833name = "kdl" 2834version = "6.7.1" 2835source = "registry+https://github.com/rust-lang/crates.io-index" 2836checksum = "082ddf81b2acd76fe04412655d17befedfff1837db772f8e74c38050d25ed670" 2837dependencies = [ 2838 "miette", 2839 "num-traits", 2840 "serde", 2841 "winnow 0.7.15", 2842] 2843 2844[[package]] 2845name = "lazy-collections" 2846version = "0.12.0" 2847dependencies = [ 2848 "buffer", 2849 "bytes", 2850 "chrono", 2851 "embedded-io 0.6.1", 2852 "embedded-io-adapters", 2853 "embedded-io-async", 2854 "heapless 0.9.3", 2855 "lock_api", 2856 "loom", 2857 "maitake-sync 0.2.2", 2858 "managed", 2859 "miette", 2860 "n0-future", 2861 "pin-project", 2862 "postcard", 2863 "proptest", 2864 "serde", 2865 "serde_bytes", 2866 "tokio", 2867 "tracing 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 2868 "tracing 0.1.44 (git+https://github.com/tokio-rs/tracing)", 2869 "tracing-subscriber 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)", 2870 "tracing-subscriber 0.3.23 (git+https://github.com/tokio-rs/tracing)", 2871] 2872 2873[[package]] 2874name = "lazy_static" 2875version = "1.5.0" 2876source = "registry+https://github.com/rust-lang/crates.io-index" 2877checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 2878dependencies = [ 2879 "spin 0.9.8", 2880] 2881 2882[[package]] 2883name = "leb128fmt" 2884version = "0.1.0" 2885source = "registry+https://github.com/rust-lang/crates.io-index" 2886checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" 2887 2888[[package]] 2889name = "lebe" 2890version = "0.5.3" 2891source = "registry+https://github.com/rust-lang/crates.io-index" 2892checksum = "7a79a3332a6609480d7d0c9eab957bca6b455b91bb84e66d19f5ff66294b85b8" 2893 2894[[package]] 2895name = "libc" 2896version = "0.2.186" 2897source = "registry+https://github.com/rust-lang/crates.io-index" 2898checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66" 2899 2900[[package]] 2901name = "libfuzzer-sys" 2902version = "0.4.13" 2903source = "registry+https://github.com/rust-lang/crates.io-index" 2904checksum = "a9fd2f41a1cba099f79a0b6b6c35656cf7c03351a7bae8ff0f28f25270f929d2" 2905dependencies = [ 2906 "arbitrary", 2907 "cc", 2908] 2909 2910[[package]] 2911name = "libm" 2912version = "0.2.16" 2913source = "registry+https://github.com/rust-lang/crates.io-index" 2914checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981" 2915 2916[[package]] 2917name = "linked-hash-map" 2918version = "0.5.6" 2919source = "registry+https://github.com/rust-lang/crates.io-index" 2920checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 2921 2922[[package]] 2923name = "linux-raw-sys" 2924version = "0.4.15" 2925source = "registry+https://github.com/rust-lang/crates.io-index" 2926checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" 2927 2928[[package]] 2929name = "linux-raw-sys" 2930version = "0.12.1" 2931source = "registry+https://github.com/rust-lang/crates.io-index" 2932checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" 2933 2934[[package]] 2935name = "litemap" 2936version = "0.8.2" 2937source = "registry+https://github.com/rust-lang/crates.io-index" 2938checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0" 2939 2940[[package]] 2941name = "lock_api" 2942version = "0.4.14" 2943source = "registry+https://github.com/rust-lang/crates.io-index" 2944checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 2945dependencies = [ 2946 "scopeguard", 2947] 2948 2949[[package]] 2950name = "log" 2951version = "0.4.32" 2952source = "registry+https://github.com/rust-lang/crates.io-index" 2953checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a" 2954 2955[[package]] 2956name = "loom" 2957version = "0.7.2" 2958source = "registry+https://github.com/rust-lang/crates.io-index" 2959checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" 2960dependencies = [ 2961 "cfg-if", 2962 "generator", 2963 "scoped-tls", 2964 "tracing 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 2965 "tracing-subscriber 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)", 2966] 2967 2968[[package]] 2969name = "loop9" 2970version = "0.1.5" 2971source = "registry+https://github.com/rust-lang/crates.io-index" 2972checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062" 2973dependencies = [ 2974 "imgref", 2975] 2976 2977[[package]] 2978name = "lru-cache" 2979version = "0.1.2" 2980source = "registry+https://github.com/rust-lang/crates.io-index" 2981checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" 2982dependencies = [ 2983 "linked-hash-map", 2984] 2985 2986[[package]] 2987name = "lru-slab" 2988version = "0.1.2" 2989source = "registry+https://github.com/rust-lang/crates.io-index" 2990checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" 2991 2992[[package]] 2993name = "mac" 2994version = "0.0.2" 2995source = "registry+https://github.com/rust-lang/crates.io-index" 2996checksum = "1b1db08c0d0ddbb591e65f1da58d1cefccc94a2faa0c55bf979ce215a3e04d5e" 2997 2998[[package]] 2999name = "mac" 3000version = "0.1.1" 3001source = "registry+https://github.com/rust-lang/crates.io-index" 3002checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 3003 3004[[package]] 3005name = "maitake-sync" 3006version = "0.1.2" 3007source = "registry+https://github.com/rust-lang/crates.io-index" 3008checksum = "6816ab14147f80234c675b80ed6dc4f440d8a1cefc158e766067aedb84c0bcd5" 3009dependencies = [ 3010 "cordyceps", 3011 "loom", 3012 "mycelium-bitfield", 3013 "pin-project", 3014 "portable-atomic", 3015] 3016 3017[[package]] 3018name = "maitake-sync" 3019version = "0.2.2" 3020source = "registry+https://github.com/rust-lang/crates.io-index" 3021checksum = "748f86d9befd480b602c3bebc9ef30dbf2f3dfc8acc4a73d07b90f0117e6de3f" 3022dependencies = [ 3023 "cordyceps", 3024 "loom", 3025 "mutex-traits", 3026 "mycelium-bitfield", 3027 "pin-project", 3028 "portable-atomic", 3029 "tracing 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 3030] 3031 3032[[package]] 3033name = "managed" 3034version = "0.8.0" 3035source = "registry+https://github.com/rust-lang/crates.io-index" 3036checksum = "0ca88d725a0a943b096803bd34e73a4437208b6077654cc4ecb2947a5f91618d" 3037 3038[[package]] 3039name = "markup5ever" 3040version = "0.12.1" 3041source = "registry+https://github.com/rust-lang/crates.io-index" 3042checksum = "16ce3abbeba692c8b8441d036ef91aea6df8da2c6b6e21c7e14d3c18e526be45" 3043dependencies = [ 3044 "log", 3045 "phf", 3046 "phf_codegen", 3047 "string_cache", 3048 "string_cache_codegen", 3049 "tendril", 3050] 3051 3052[[package]] 3053name = "markup5ever_rcdom" 3054version = "0.3.0" 3055source = "registry+https://github.com/rust-lang/crates.io-index" 3056checksum = "edaa21ab3701bfee5099ade5f7e1f84553fd19228cf332f13cd6e964bf59be18" 3057dependencies = [ 3058 "html5ever", 3059 "markup5ever", 3060 "tendril", 3061 "xml5ever", 3062] 3063 3064[[package]] 3065name = "match-lookup" 3066version = "0.1.2" 3067source = "registry+https://github.com/rust-lang/crates.io-index" 3068checksum = "757aee279b8bdbb9f9e676796fd459e4207a1f986e87886700abf589f5abf771" 3069dependencies = [ 3070 "proc-macro2", 3071 "quote", 3072 "syn", 3073] 3074 3075[[package]] 3076name = "matchers" 3077version = "0.2.0" 3078source = "registry+https://github.com/rust-lang/crates.io-index" 3079checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" 3080dependencies = [ 3081 "regex-automata", 3082] 3083 3084[[package]] 3085name = "matchit" 3086version = "0.8.4" 3087source = "registry+https://github.com/rust-lang/crates.io-index" 3088checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" 3089 3090[[package]] 3091name = "maybe-rayon" 3092version = "0.1.1" 3093source = "registry+https://github.com/rust-lang/crates.io-index" 3094checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519" 3095dependencies = [ 3096 "cfg-if", 3097 "rayon", 3098] 3099 3100[[package]] 3101name = "memchr" 3102version = "2.8.2" 3103source = "registry+https://github.com/rust-lang/crates.io-index" 3104checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4" 3105 3106[[package]] 3107name = "miette" 3108version = "7.6.0" 3109source = "registry+https://github.com/rust-lang/crates.io-index" 3110checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7" 3111dependencies = [ 3112 "backtrace", 3113 "backtrace-ext", 3114 "cfg-if", 3115 "miette-derive", 3116 "owo-colors", 3117 "supports-color", 3118 "supports-hyperlinks", 3119 "supports-unicode", 3120 "terminal_size", 3121 "textwrap", 3122 "unicode-width 0.1.14", 3123] 3124 3125[[package]] 3126name = "miette-derive" 3127version = "7.6.0" 3128source = "registry+https://github.com/rust-lang/crates.io-index" 3129checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b" 3130dependencies = [ 3131 "proc-macro2", 3132 "quote", 3133 "syn", 3134] 3135 3136[[package]] 3137name = "mime" 3138version = "0.3.17" 3139source = "registry+https://github.com/rust-lang/crates.io-index" 3140checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 3141 3142[[package]] 3143name = "mini-moka-wasm" 3144version = "0.10.99" 3145dependencies = [ 3146 "anyhow", 3147 "crossbeam-channel", 3148 "crossbeam-utils", 3149 "dashmap", 3150 "getrandom 0.2.17", 3151 "once_cell", 3152 "smallvec", 3153 "tagptr", 3154 "triomphe", 3155 "trybuild", 3156 "wasm-bindgen-test", 3157 "web-time", 3158] 3159 3160[[package]] 3161name = "minicov" 3162version = "0.3.8" 3163source = "registry+https://github.com/rust-lang/crates.io-index" 3164checksum = "4869b6a491569605d66d3952bcdf03df789e5b536e5f0cf7758a7f08a55ae24d" 3165dependencies = [ 3166 "cc", 3167 "walkdir", 3168] 3169 3170[[package]] 3171name = "miniz_oxide" 3172version = "0.4.4" 3173source = "registry+https://github.com/rust-lang/crates.io-index" 3174checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b" 3175dependencies = [ 3176 "adler", 3177 "autocfg", 3178] 3179 3180[[package]] 3181name = "miniz_oxide" 3182version = "0.8.9" 3183source = "registry+https://github.com/rust-lang/crates.io-index" 3184checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 3185dependencies = [ 3186 "adler2", 3187 "simd-adler32", 3188] 3189 3190[[package]] 3191name = "mio" 3192version = "1.2.1" 3193source = "registry+https://github.com/rust-lang/crates.io-index" 3194checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda" 3195dependencies = [ 3196 "libc", 3197 "wasi", 3198 "windows-sys 0.61.2", 3199] 3200 3201[[package]] 3202name = "moxcms" 3203version = "0.8.1" 3204source = "registry+https://github.com/rust-lang/crates.io-index" 3205checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b" 3206dependencies = [ 3207 "num-traits", 3208 "pxfm", 3209] 3210 3211[[package]] 3212name = "multibase" 3213version = "0.9.2" 3214source = "registry+https://github.com/rust-lang/crates.io-index" 3215checksum = "8694bb4835f452b0e3bb06dbebb1d6fc5385b6ca1caf2e55fd165c042390ec77" 3216dependencies = [ 3217 "base-x", 3218 "base256emoji", 3219 "data-encoding", 3220 "data-encoding-macro", 3221] 3222 3223[[package]] 3224name = "multihash" 3225version = "0.19.5" 3226source = "registry+https://github.com/rust-lang/crates.io-index" 3227checksum = "577c63b00ad74d57e8c9aa870b5fccebf2fd64a308a5aee9f1bb88e4aea19447" 3228dependencies = [ 3229 "serde", 3230 "unsigned-varint 0.8.0", 3231] 3232 3233[[package]] 3234name = "mutex-traits" 3235version = "1.0.1" 3236source = "registry+https://github.com/rust-lang/crates.io-index" 3237checksum = "3929f2b5633d29cf7b6624992e5f3c1e9334f1193423e12d17be4faf678cde3f" 3238 3239[[package]] 3240name = "mycelium-bitfield" 3241version = "0.1.5" 3242source = "registry+https://github.com/rust-lang/crates.io-index" 3243checksum = "24e0cc5e2c585acbd15c5ce911dff71e1f4d5313f43345873311c4f5efd741cc" 3244 3245[[package]] 3246name = "n0-future" 3247version = "0.1.3" 3248source = "registry+https://github.com/rust-lang/crates.io-index" 3249checksum = "7bb0e5d99e681ab3c938842b96fcb41bf8a7bb4bfdb11ccbd653a7e83e06c794" 3250dependencies = [ 3251 "cfg_aliases", 3252 "derive_more", 3253 "futures-buffered", 3254 "futures-lite", 3255 "futures-util", 3256 "js-sys", 3257 "pin-project", 3258 "send_wrapper", 3259 "tokio", 3260 "tokio-util", 3261 "wasm-bindgen", 3262 "wasm-bindgen-futures", 3263 "web-time", 3264] 3265 3266[[package]] 3267name = "ndk-context" 3268version = "0.1.1" 3269source = "registry+https://github.com/rust-lang/crates.io-index" 3270checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 3271 3272[[package]] 3273name = "new_debug_unreachable" 3274version = "1.0.6" 3275source = "registry+https://github.com/rust-lang/crates.io-index" 3276checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" 3277 3278[[package]] 3279name = "no_std_io2" 3280version = "0.9.4" 3281source = "registry+https://github.com/rust-lang/crates.io-index" 3282checksum = "418abd1b6d34fbf6cae440dc874771b0525a604428704c76e48b29a5e67b8003" 3283dependencies = [ 3284 "memchr", 3285] 3286 3287[[package]] 3288name = "nom" 3289version = "8.0.0" 3290source = "registry+https://github.com/rust-lang/crates.io-index" 3291checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405" 3292dependencies = [ 3293 "memchr", 3294] 3295 3296[[package]] 3297name = "noop_proc_macro" 3298version = "0.3.0" 3299source = "registry+https://github.com/rust-lang/crates.io-index" 3300checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8" 3301 3302[[package]] 3303name = "nu-ansi-term" 3304version = "0.50.3" 3305source = "registry+https://github.com/rust-lang/crates.io-index" 3306checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" 3307dependencies = [ 3308 "windows-sys 0.61.2", 3309] 3310 3311[[package]] 3312name = "num" 3313version = "0.4.3" 3314source = "registry+https://github.com/rust-lang/crates.io-index" 3315checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" 3316dependencies = [ 3317 "num-bigint", 3318 "num-complex", 3319 "num-integer", 3320 "num-iter", 3321 "num-rational", 3322 "num-traits", 3323] 3324 3325[[package]] 3326name = "num-bigint" 3327version = "0.4.6" 3328source = "registry+https://github.com/rust-lang/crates.io-index" 3329checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" 3330dependencies = [ 3331 "num-integer", 3332 "num-traits", 3333] 3334 3335[[package]] 3336name = "num-bigint-dig" 3337version = "0.8.6" 3338source = "registry+https://github.com/rust-lang/crates.io-index" 3339checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7" 3340dependencies = [ 3341 "lazy_static", 3342 "libm", 3343 "num-integer", 3344 "num-iter", 3345 "num-traits", 3346 "rand 0.8.6", 3347 "smallvec", 3348 "zeroize", 3349] 3350 3351[[package]] 3352name = "num-complex" 3353version = "0.4.6" 3354source = "registry+https://github.com/rust-lang/crates.io-index" 3355checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" 3356dependencies = [ 3357 "num-traits", 3358] 3359 3360[[package]] 3361name = "num-conv" 3362version = "0.2.2" 3363source = "registry+https://github.com/rust-lang/crates.io-index" 3364checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441" 3365 3366[[package]] 3367name = "num-derive" 3368version = "0.4.2" 3369source = "registry+https://github.com/rust-lang/crates.io-index" 3370checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" 3371dependencies = [ 3372 "proc-macro2", 3373 "quote", 3374 "syn", 3375] 3376 3377[[package]] 3378name = "num-integer" 3379version = "0.1.46" 3380source = "registry+https://github.com/rust-lang/crates.io-index" 3381checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 3382dependencies = [ 3383 "num-traits", 3384] 3385 3386[[package]] 3387name = "num-iter" 3388version = "0.1.45" 3389source = "registry+https://github.com/rust-lang/crates.io-index" 3390checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" 3391dependencies = [ 3392 "autocfg", 3393 "num-integer", 3394 "num-traits", 3395] 3396 3397[[package]] 3398name = "num-rational" 3399version = "0.4.2" 3400source = "registry+https://github.com/rust-lang/crates.io-index" 3401checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" 3402dependencies = [ 3403 "num-bigint", 3404 "num-integer", 3405 "num-traits", 3406] 3407 3408[[package]] 3409name = "num-traits" 3410version = "0.2.19" 3411source = "registry+https://github.com/rust-lang/crates.io-index" 3412checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 3413dependencies = [ 3414 "autocfg", 3415 "libm", 3416] 3417 3418[[package]] 3419name = "objc2" 3420version = "0.6.4" 3421source = "registry+https://github.com/rust-lang/crates.io-index" 3422checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f" 3423dependencies = [ 3424 "objc2-encode", 3425] 3426 3427[[package]] 3428name = "objc2-encode" 3429version = "4.1.0" 3430source = "registry+https://github.com/rust-lang/crates.io-index" 3431checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33" 3432 3433[[package]] 3434name = "objc2-foundation" 3435version = "0.3.2" 3436source = "registry+https://github.com/rust-lang/crates.io-index" 3437checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272" 3438dependencies = [ 3439 "bitflags", 3440 "objc2", 3441] 3442 3443[[package]] 3444name = "object" 3445version = "0.37.3" 3446source = "registry+https://github.com/rust-lang/crates.io-index" 3447checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe" 3448dependencies = [ 3449 "memchr", 3450] 3451 3452[[package]] 3453name = "once_cell" 3454version = "1.21.4" 3455source = "registry+https://github.com/rust-lang/crates.io-index" 3456checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" 3457 3458[[package]] 3459name = "once_cell_polyfill" 3460version = "1.70.2" 3461source = "registry+https://github.com/rust-lang/crates.io-index" 3462checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" 3463 3464[[package]] 3465name = "oorandom" 3466version = "11.1.5" 3467source = "registry+https://github.com/rust-lang/crates.io-index" 3468checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e" 3469 3470[[package]] 3471name = "opaque-debug" 3472version = "0.3.1" 3473source = "registry+https://github.com/rust-lang/crates.io-index" 3474checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" 3475 3476[[package]] 3477name = "openssl-probe" 3478version = "0.2.1" 3479source = "registry+https://github.com/rust-lang/crates.io-index" 3480checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" 3481 3482[[package]] 3483name = "owo-colors" 3484version = "4.3.0" 3485source = "registry+https://github.com/rust-lang/crates.io-index" 3486checksum = "d211803b9b6b570f68772237e415a029d5a50c65d382910b879fb19d3271f94d" 3487 3488[[package]] 3489name = "oxilangtag" 3490version = "0.1.6" 3491source = "registry+https://github.com/rust-lang/crates.io-index" 3492checksum = "5d3b4eb570abd4a1dcb062c31fd37b832264d9dc7292c3e69acfe926c87b063f" 3493dependencies = [ 3494 "serde", 3495] 3496 3497[[package]] 3498name = "p256" 3499version = "0.13.2" 3500source = "registry+https://github.com/rust-lang/crates.io-index" 3501checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" 3502dependencies = [ 3503 "ecdsa", 3504 "elliptic-curve", 3505 "primeorder", 3506 "sha2", 3507] 3508 3509[[package]] 3510name = "p384" 3511version = "0.13.1" 3512source = "registry+https://github.com/rust-lang/crates.io-index" 3513checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6" 3514dependencies = [ 3515 "ecdsa", 3516 "elliptic-curve", 3517 "primeorder", 3518 "sha2", 3519] 3520 3521[[package]] 3522name = "parking" 3523version = "2.2.1" 3524source = "registry+https://github.com/rust-lang/crates.io-index" 3525checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 3526 3527[[package]] 3528name = "parking_lot" 3529version = "0.12.5" 3530source = "registry+https://github.com/rust-lang/crates.io-index" 3531checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 3532dependencies = [ 3533 "lock_api", 3534 "parking_lot_core", 3535] 3536 3537[[package]] 3538name = "parking_lot_core" 3539version = "0.9.12" 3540source = "registry+https://github.com/rust-lang/crates.io-index" 3541checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 3542dependencies = [ 3543 "cfg-if", 3544 "libc", 3545 "redox_syscall", 3546 "smallvec", 3547 "windows-link", 3548] 3549 3550[[package]] 3551name = "paste" 3552version = "1.0.15" 3553source = "registry+https://github.com/rust-lang/crates.io-index" 3554checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 3555 3556[[package]] 3557name = "pastey" 3558version = "0.1.1" 3559source = "registry+https://github.com/rust-lang/crates.io-index" 3560checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec" 3561 3562[[package]] 3563name = "pem-rfc7468" 3564version = "0.7.0" 3565source = "registry+https://github.com/rust-lang/crates.io-index" 3566checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 3567dependencies = [ 3568 "base64ct", 3569] 3570 3571[[package]] 3572name = "percent-encoding" 3573version = "2.3.2" 3574source = "registry+https://github.com/rust-lang/crates.io-index" 3575checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 3576 3577[[package]] 3578name = "phf" 3579version = "0.11.3" 3580source = "registry+https://github.com/rust-lang/crates.io-index" 3581checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" 3582dependencies = [ 3583 "phf_macros", 3584 "phf_shared", 3585] 3586 3587[[package]] 3588name = "phf_codegen" 3589version = "0.11.3" 3590source = "registry+https://github.com/rust-lang/crates.io-index" 3591checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" 3592dependencies = [ 3593 "phf_generator", 3594 "phf_shared", 3595] 3596 3597[[package]] 3598name = "phf_generator" 3599version = "0.11.3" 3600source = "registry+https://github.com/rust-lang/crates.io-index" 3601checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" 3602dependencies = [ 3603 "phf_shared", 3604 "rand 0.8.6", 3605] 3606 3607[[package]] 3608name = "phf_macros" 3609version = "0.11.3" 3610source = "registry+https://github.com/rust-lang/crates.io-index" 3611checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" 3612dependencies = [ 3613 "phf_generator", 3614 "phf_shared", 3615 "proc-macro2", 3616 "quote", 3617 "syn", 3618] 3619 3620[[package]] 3621name = "phf_shared" 3622version = "0.11.3" 3623source = "registry+https://github.com/rust-lang/crates.io-index" 3624checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" 3625dependencies = [ 3626 "siphasher", 3627] 3628 3629[[package]] 3630name = "pin-project" 3631version = "1.1.13" 3632source = "registry+https://github.com/rust-lang/crates.io-index" 3633checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924" 3634dependencies = [ 3635 "pin-project-internal", 3636] 3637 3638[[package]] 3639name = "pin-project-internal" 3640version = "1.1.13" 3641source = "registry+https://github.com/rust-lang/crates.io-index" 3642checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b" 3643dependencies = [ 3644 "proc-macro2", 3645 "quote", 3646 "syn", 3647] 3648 3649[[package]] 3650name = "pin-project-lite" 3651version = "0.2.17" 3652source = "registry+https://github.com/rust-lang/crates.io-index" 3653checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" 3654 3655[[package]] 3656name = "pkcs1" 3657version = "0.7.5" 3658source = "registry+https://github.com/rust-lang/crates.io-index" 3659checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" 3660dependencies = [ 3661 "der", 3662 "pkcs8", 3663 "spki", 3664] 3665 3666[[package]] 3667name = "pkcs8" 3668version = "0.10.2" 3669source = "registry+https://github.com/rust-lang/crates.io-index" 3670checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 3671dependencies = [ 3672 "der", 3673 "spki", 3674] 3675 3676[[package]] 3677name = "pkg-config" 3678version = "0.3.33" 3679source = "registry+https://github.com/rust-lang/crates.io-index" 3680checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e" 3681 3682[[package]] 3683name = "png" 3684version = "0.18.1" 3685source = "registry+https://github.com/rust-lang/crates.io-index" 3686checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61" 3687dependencies = [ 3688 "bitflags", 3689 "crc32fast", 3690 "fdeflate", 3691 "flate2", 3692 "miniz_oxide 0.8.9", 3693] 3694 3695[[package]] 3696name = "polyval" 3697version = "0.6.2" 3698source = "registry+https://github.com/rust-lang/crates.io-index" 3699checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" 3700dependencies = [ 3701 "cfg-if", 3702 "cpufeatures", 3703 "opaque-debug", 3704 "universal-hash", 3705] 3706 3707[[package]] 3708name = "portable-atomic" 3709version = "1.13.1" 3710source = "registry+https://github.com/rust-lang/crates.io-index" 3711checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49" 3712 3713[[package]] 3714name = "postcard" 3715version = "1.1.3" 3716source = "registry+https://github.com/rust-lang/crates.io-index" 3717checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24" 3718dependencies = [ 3719 "cobs", 3720 "embedded-io 0.4.0", 3721 "embedded-io 0.6.1", 3722 "heapless 0.7.17", 3723 "serde", 3724] 3725 3726[[package]] 3727name = "potential_utf" 3728version = "0.1.5" 3729source = "registry+https://github.com/rust-lang/crates.io-index" 3730checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564" 3731dependencies = [ 3732 "zerovec", 3733] 3734 3735[[package]] 3736name = "powerfmt" 3737version = "0.2.0" 3738source = "registry+https://github.com/rust-lang/crates.io-index" 3739checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 3740 3741[[package]] 3742name = "ppv-lite86" 3743version = "0.2.21" 3744source = "registry+https://github.com/rust-lang/crates.io-index" 3745checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 3746dependencies = [ 3747 "zerocopy", 3748] 3749 3750[[package]] 3751name = "precomputed-hash" 3752version = "0.1.1" 3753source = "registry+https://github.com/rust-lang/crates.io-index" 3754checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 3755 3756[[package]] 3757name = "pretty_assertions" 3758version = "1.4.1" 3759source = "registry+https://github.com/rust-lang/crates.io-index" 3760checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" 3761dependencies = [ 3762 "diff", 3763 "yansi", 3764] 3765 3766[[package]] 3767name = "prettyplease" 3768version = "0.2.37" 3769source = "registry+https://github.com/rust-lang/crates.io-index" 3770checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" 3771dependencies = [ 3772 "proc-macro2", 3773 "syn", 3774] 3775 3776[[package]] 3777name = "primeorder" 3778version = "0.13.6" 3779source = "registry+https://github.com/rust-lang/crates.io-index" 3780checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" 3781dependencies = [ 3782 "elliptic-curve", 3783] 3784 3785[[package]] 3786name = "proc-macro2" 3787version = "1.0.106" 3788source = "registry+https://github.com/rust-lang/crates.io-index" 3789checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" 3790dependencies = [ 3791 "unicode-ident", 3792] 3793 3794[[package]] 3795name = "profiling" 3796version = "1.0.18" 3797source = "registry+https://github.com/rust-lang/crates.io-index" 3798checksum = "3d595e54a326bc53c1c197b32d295e14b169e3cfeaa8dc82b529f947fba6bcf5" 3799dependencies = [ 3800 "profiling-procmacros", 3801] 3802 3803[[package]] 3804name = "profiling-procmacros" 3805version = "1.0.18" 3806source = "registry+https://github.com/rust-lang/crates.io-index" 3807checksum = "4488a4a36b9a4ba6b9334a32a39971f77c1436ec82c38707bce707699cc3bbcb" 3808dependencies = [ 3809 "quote", 3810 "syn", 3811] 3812 3813[[package]] 3814name = "proptest" 3815version = "1.11.0" 3816source = "registry+https://github.com/rust-lang/crates.io-index" 3817checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744" 3818dependencies = [ 3819 "bit-set", 3820 "bit-vec", 3821 "bitflags", 3822 "num-traits", 3823 "rand 0.9.4", 3824 "rand_chacha 0.9.0", 3825 "rand_xorshift", 3826 "regex-syntax", 3827 "rusty-fork", 3828 "tempfile", 3829 "unarray", 3830] 3831 3832[[package]] 3833name = "pxfm" 3834version = "0.1.29" 3835source = "registry+https://github.com/rust-lang/crates.io-index" 3836checksum = "e0c5ccf5294c6ccd63a74f1565028353830a9c2f5eb0c682c355c471726a6e3f" 3837 3838[[package]] 3839name = "qoi" 3840version = "0.4.1" 3841source = "registry+https://github.com/rust-lang/crates.io-index" 3842checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001" 3843dependencies = [ 3844 "bytemuck", 3845] 3846 3847[[package]] 3848name = "quick-error" 3849version = "1.2.3" 3850source = "registry+https://github.com/rust-lang/crates.io-index" 3851checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" 3852 3853[[package]] 3854name = "quick-error" 3855version = "2.0.1" 3856source = "registry+https://github.com/rust-lang/crates.io-index" 3857checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" 3858 3859[[package]] 3860name = "quinn" 3861version = "0.11.9" 3862source = "registry+https://github.com/rust-lang/crates.io-index" 3863checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" 3864dependencies = [ 3865 "bytes", 3866 "cfg_aliases", 3867 "pin-project-lite", 3868 "quinn-proto", 3869 "quinn-udp", 3870 "rustc-hash", 3871 "rustls", 3872 "socket2", 3873 "thiserror 2.0.18", 3874 "tokio", 3875 "tracing 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 3876 "web-time", 3877] 3878 3879[[package]] 3880name = "quinn-proto" 3881version = "0.11.14" 3882source = "registry+https://github.com/rust-lang/crates.io-index" 3883checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" 3884dependencies = [ 3885 "bytes", 3886 "getrandom 0.3.4", 3887 "lru-slab", 3888 "rand 0.9.4", 3889 "ring", 3890 "rustc-hash", 3891 "rustls", 3892 "rustls-pki-types", 3893 "slab", 3894 "thiserror 2.0.18", 3895 "tinyvec", 3896 "tracing 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 3897 "web-time", 3898] 3899 3900[[package]] 3901name = "quinn-udp" 3902version = "0.5.14" 3903source = "registry+https://github.com/rust-lang/crates.io-index" 3904checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" 3905dependencies = [ 3906 "cfg_aliases", 3907 "libc", 3908 "once_cell", 3909 "socket2", 3910 "tracing 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 3911 "windows-sys 0.60.2", 3912] 3913 3914[[package]] 3915name = "quote" 3916version = "1.0.45" 3917source = "registry+https://github.com/rust-lang/crates.io-index" 3918checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" 3919dependencies = [ 3920 "proc-macro2", 3921] 3922 3923[[package]] 3924name = "r-efi" 3925version = "5.3.0" 3926source = "registry+https://github.com/rust-lang/crates.io-index" 3927checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 3928 3929[[package]] 3930name = "r-efi" 3931version = "6.0.0" 3932source = "registry+https://github.com/rust-lang/crates.io-index" 3933checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" 3934 3935[[package]] 3936name = "rand" 3937version = "0.8.6" 3938source = "registry+https://github.com/rust-lang/crates.io-index" 3939checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a" 3940dependencies = [ 3941 "libc", 3942 "rand_chacha 0.3.1", 3943 "rand_core 0.6.4", 3944] 3945 3946[[package]] 3947name = "rand" 3948version = "0.9.4" 3949source = "registry+https://github.com/rust-lang/crates.io-index" 3950checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea" 3951dependencies = [ 3952 "rand_chacha 0.9.0", 3953 "rand_core 0.9.5", 3954] 3955 3956[[package]] 3957name = "rand_chacha" 3958version = "0.3.1" 3959source = "registry+https://github.com/rust-lang/crates.io-index" 3960checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 3961dependencies = [ 3962 "ppv-lite86", 3963 "rand_core 0.6.4", 3964] 3965 3966[[package]] 3967name = "rand_chacha" 3968version = "0.9.0" 3969source = "registry+https://github.com/rust-lang/crates.io-index" 3970checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 3971dependencies = [ 3972 "ppv-lite86", 3973 "rand_core 0.9.5", 3974] 3975 3976[[package]] 3977name = "rand_core" 3978version = "0.6.4" 3979source = "registry+https://github.com/rust-lang/crates.io-index" 3980checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 3981dependencies = [ 3982 "getrandom 0.2.17", 3983] 3984 3985[[package]] 3986name = "rand_core" 3987version = "0.9.5" 3988source = "registry+https://github.com/rust-lang/crates.io-index" 3989checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" 3990dependencies = [ 3991 "getrandom 0.3.4", 3992] 3993 3994[[package]] 3995name = "rand_xorshift" 3996version = "0.4.0" 3997source = "registry+https://github.com/rust-lang/crates.io-index" 3998checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a" 3999dependencies = [ 4000 "rand_core 0.9.5", 4001] 4002 4003[[package]] 4004name = "rav1e" 4005version = "0.8.1" 4006source = "registry+https://github.com/rust-lang/crates.io-index" 4007checksum = "43b6dd56e85d9483277cde964fd1bdb0428de4fec5ebba7540995639a21cb32b" 4008dependencies = [ 4009 "aligned-vec", 4010 "arbitrary", 4011 "arg_enum_proc_macro", 4012 "arrayvec 0.7.6", 4013 "av-scenechange", 4014 "av1-grain", 4015 "bitstream-io", 4016 "built", 4017 "cfg-if", 4018 "interpolate_name", 4019 "itertools", 4020 "libc", 4021 "libfuzzer-sys", 4022 "log", 4023 "maybe-rayon", 4024 "new_debug_unreachable", 4025 "noop_proc_macro", 4026 "num-derive", 4027 "num-traits", 4028 "paste", 4029 "profiling", 4030 "rand 0.9.4", 4031 "rand_chacha 0.9.0", 4032 "simd_helpers", 4033 "thiserror 2.0.18", 4034 "v_frame", 4035 "wasm-bindgen", 4036] 4037 4038[[package]] 4039name = "ravif" 4040version = "0.13.0" 4041source = "registry+https://github.com/rust-lang/crates.io-index" 4042checksum = "e52310197d971b0f5be7fe6b57530dcd27beb35c1b013f29d66c1ad73fbbcc45" 4043dependencies = [ 4044 "avif-serialize", 4045 "imgref", 4046 "loop9", 4047 "quick-error 2.0.1", 4048 "rav1e", 4049 "rayon", 4050 "rgb", 4051] 4052 4053[[package]] 4054name = "rayon" 4055version = "1.12.0" 4056source = "registry+https://github.com/rust-lang/crates.io-index" 4057checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d" 4058dependencies = [ 4059 "either", 4060 "rayon-core", 4061] 4062 4063[[package]] 4064name = "rayon-core" 4065version = "1.13.0" 4066source = "registry+https://github.com/rust-lang/crates.io-index" 4067checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" 4068dependencies = [ 4069 "crossbeam-deque", 4070 "crossbeam-utils", 4071] 4072 4073[[package]] 4074name = "redox_syscall" 4075version = "0.5.18" 4076source = "registry+https://github.com/rust-lang/crates.io-index" 4077checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 4078dependencies = [ 4079 "bitflags", 4080] 4081 4082[[package]] 4083name = "ref-cast" 4084version = "1.0.25" 4085source = "registry+https://github.com/rust-lang/crates.io-index" 4086checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" 4087dependencies = [ 4088 "ref-cast-impl", 4089] 4090 4091[[package]] 4092name = "ref-cast-impl" 4093version = "1.0.25" 4094source = "registry+https://github.com/rust-lang/crates.io-index" 4095checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" 4096dependencies = [ 4097 "proc-macro2", 4098 "quote", 4099 "syn", 4100] 4101 4102[[package]] 4103name = "regex" 4104version = "1.12.4" 4105source = "registry+https://github.com/rust-lang/crates.io-index" 4106checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba" 4107dependencies = [ 4108 "aho-corasick", 4109 "memchr", 4110 "regex-automata", 4111 "regex-syntax", 4112] 4113 4114[[package]] 4115name = "regex-automata" 4116version = "0.4.14" 4117source = "registry+https://github.com/rust-lang/crates.io-index" 4118checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" 4119dependencies = [ 4120 "aho-corasick", 4121 "memchr", 4122 "regex-syntax", 4123] 4124 4125[[package]] 4126name = "regex-lite" 4127version = "0.1.9" 4128source = "registry+https://github.com/rust-lang/crates.io-index" 4129checksum = "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973" 4130 4131[[package]] 4132name = "regex-syntax" 4133version = "0.8.11" 4134source = "registry+https://github.com/rust-lang/crates.io-index" 4135checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4" 4136 4137[[package]] 4138name = "reqwest" 4139version = "0.12.28" 4140source = "registry+https://github.com/rust-lang/crates.io-index" 4141checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" 4142dependencies = [ 4143 "base64", 4144 "bytes", 4145 "encoding_rs", 4146 "futures-core", 4147 "futures-util", 4148 "h2", 4149 "http", 4150 "http-body", 4151 "http-body-util", 4152 "hyper", 4153 "hyper-rustls", 4154 "hyper-util", 4155 "js-sys", 4156 "log", 4157 "mime", 4158 "percent-encoding", 4159 "pin-project-lite", 4160 "quinn", 4161 "rustls", 4162 "rustls-pki-types", 4163 "serde", 4164 "serde_json", 4165 "serde_urlencoded", 4166 "sync_wrapper", 4167 "tokio", 4168 "tokio-rustls", 4169 "tokio-util", 4170 "tower", 4171 "tower-http", 4172 "tower-service", 4173 "url", 4174 "wasm-bindgen", 4175 "wasm-bindgen-futures", 4176 "wasm-streams", 4177 "web-sys", 4178 "webpki-roots", 4179] 4180 4181[[package]] 4182name = "reserve-port" 4183version = "2.4.0" 4184source = "registry+https://github.com/rust-lang/crates.io-index" 4185checksum = "94070964579245eb2f76e62a7668fe87bd9969ed6c41256f3bf614e3323dd3cc" 4186dependencies = [ 4187 "thiserror 2.0.18", 4188] 4189 4190[[package]] 4191name = "resolv-conf" 4192version = "0.7.6" 4193source = "registry+https://github.com/rust-lang/crates.io-index" 4194checksum = "1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7" 4195 4196[[package]] 4197name = "rfc6979" 4198version = "0.4.0" 4199source = "registry+https://github.com/rust-lang/crates.io-index" 4200checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" 4201dependencies = [ 4202 "hmac", 4203 "subtle", 4204] 4205 4206[[package]] 4207name = "rgb" 4208version = "0.8.53" 4209source = "registry+https://github.com/rust-lang/crates.io-index" 4210checksum = "47b34b781b31e5d73e9fbc8689c70551fd1ade9a19e3e28cfec8580a79290cc4" 4211dependencies = [ 4212 "bytemuck", 4213] 4214 4215[[package]] 4216name = "ring" 4217version = "0.17.14" 4218source = "registry+https://github.com/rust-lang/crates.io-index" 4219checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 4220dependencies = [ 4221 "cc", 4222 "cfg-if", 4223 "getrandom 0.2.17", 4224 "libc", 4225 "untrusted", 4226 "windows-sys 0.52.0", 4227] 4228 4229[[package]] 4230name = "roff" 4231version = "1.1.1" 4232source = "registry+https://github.com/rust-lang/crates.io-index" 4233checksum = "323c417e1d9665a65b263ec744ba09030cfb277e9daa0b018a4ab62e57bc8189" 4234 4235[[package]] 4236name = "rsa" 4237version = "0.9.10" 4238source = "registry+https://github.com/rust-lang/crates.io-index" 4239checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d" 4240dependencies = [ 4241 "const-oid", 4242 "digest", 4243 "num-bigint-dig", 4244 "num-integer", 4245 "num-traits", 4246 "pkcs1", 4247 "pkcs8", 4248 "rand_core 0.6.4", 4249 "signature", 4250 "spki", 4251 "subtle", 4252 "zeroize", 4253] 4254 4255[[package]] 4256name = "rust-multipart-rfc7578_2" 4257version = "0.8.0" 4258source = "registry+https://github.com/rust-lang/crates.io-index" 4259checksum = "c839d037155ebc06a571e305af66ff9fd9063a6e662447051737e1ac75beea41" 4260dependencies = [ 4261 "bytes", 4262 "futures-core", 4263 "futures-util", 4264 "http", 4265 "mime", 4266 "rand 0.9.4", 4267 "thiserror 2.0.18", 4268] 4269 4270[[package]] 4271name = "rustc-demangle" 4272version = "0.1.27" 4273source = "registry+https://github.com/rust-lang/crates.io-index" 4274checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d" 4275 4276[[package]] 4277name = "rustc-hash" 4278version = "2.1.2" 4279source = "registry+https://github.com/rust-lang/crates.io-index" 4280checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe" 4281 4282[[package]] 4283name = "rustc_version" 4284version = "0.4.1" 4285source = "registry+https://github.com/rust-lang/crates.io-index" 4286checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 4287dependencies = [ 4288 "semver", 4289] 4290 4291[[package]] 4292name = "rustix" 4293version = "0.38.44" 4294source = "registry+https://github.com/rust-lang/crates.io-index" 4295checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" 4296dependencies = [ 4297 "bitflags", 4298 "errno", 4299 "libc", 4300 "linux-raw-sys 0.4.15", 4301 "windows-sys 0.59.0", 4302] 4303 4304[[package]] 4305name = "rustix" 4306version = "1.1.4" 4307source = "registry+https://github.com/rust-lang/crates.io-index" 4308checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" 4309dependencies = [ 4310 "bitflags", 4311 "errno", 4312 "libc", 4313 "linux-raw-sys 0.12.1", 4314 "windows-sys 0.61.2", 4315] 4316 4317[[package]] 4318name = "rustls" 4319version = "0.23.40" 4320source = "registry+https://github.com/rust-lang/crates.io-index" 4321checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b" 4322dependencies = [ 4323 "once_cell", 4324 "ring", 4325 "rustls-pki-types", 4326 "rustls-webpki", 4327 "subtle", 4328 "zeroize", 4329] 4330 4331[[package]] 4332name = "rustls-native-certs" 4333version = "0.8.4" 4334source = "registry+https://github.com/rust-lang/crates.io-index" 4335checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d" 4336dependencies = [ 4337 "openssl-probe", 4338 "rustls-pki-types", 4339 "schannel", 4340 "security-framework", 4341] 4342 4343[[package]] 4344name = "rustls-pki-types" 4345version = "1.14.1" 4346source = "registry+https://github.com/rust-lang/crates.io-index" 4347checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9" 4348dependencies = [ 4349 "web-time", 4350 "zeroize", 4351] 4352 4353[[package]] 4354name = "rustls-webpki" 4355version = "0.103.13" 4356source = "registry+https://github.com/rust-lang/crates.io-index" 4357checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e" 4358dependencies = [ 4359 "ring", 4360 "rustls-pki-types", 4361 "untrusted", 4362] 4363 4364[[package]] 4365name = "rustversion" 4366version = "1.0.22" 4367source = "registry+https://github.com/rust-lang/crates.io-index" 4368checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 4369 4370[[package]] 4371name = "rusty-fork" 4372version = "0.3.1" 4373source = "registry+https://github.com/rust-lang/crates.io-index" 4374checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2" 4375dependencies = [ 4376 "fnv", 4377 "quick-error 1.2.3", 4378 "tempfile", 4379 "wait-timeout", 4380] 4381 4382[[package]] 4383name = "ryu" 4384version = "1.0.23" 4385source = "registry+https://github.com/rust-lang/crates.io-index" 4386checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" 4387 4388[[package]] 4389name = "same-file" 4390version = "1.0.6" 4391source = "registry+https://github.com/rust-lang/crates.io-index" 4392checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 4393dependencies = [ 4394 "winapi-util", 4395] 4396 4397[[package]] 4398name = "schannel" 4399version = "0.1.29" 4400source = "registry+https://github.com/rust-lang/crates.io-index" 4401checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939" 4402dependencies = [ 4403 "windows-sys 0.61.2", 4404] 4405 4406[[package]] 4407name = "scoped-tls" 4408version = "1.0.1" 4409source = "registry+https://github.com/rust-lang/crates.io-index" 4410checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 4411 4412[[package]] 4413name = "scopeguard" 4414version = "1.2.0" 4415source = "registry+https://github.com/rust-lang/crates.io-index" 4416checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 4417 4418[[package]] 4419name = "sec1" 4420version = "0.7.3" 4421source = "registry+https://github.com/rust-lang/crates.io-index" 4422checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" 4423dependencies = [ 4424 "base16ct", 4425 "der", 4426 "generic-array", 4427 "pkcs8", 4428 "subtle", 4429 "zeroize", 4430] 4431 4432[[package]] 4433name = "security-framework" 4434version = "3.7.0" 4435source = "registry+https://github.com/rust-lang/crates.io-index" 4436checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" 4437dependencies = [ 4438 "bitflags", 4439 "core-foundation 0.10.1", 4440 "core-foundation-sys", 4441 "libc", 4442 "security-framework-sys", 4443] 4444 4445[[package]] 4446name = "security-framework-sys" 4447version = "2.17.0" 4448source = "registry+https://github.com/rust-lang/crates.io-index" 4449checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" 4450dependencies = [ 4451 "core-foundation-sys", 4452 "libc", 4453] 4454 4455[[package]] 4456name = "semver" 4457version = "1.0.28" 4458source = "registry+https://github.com/rust-lang/crates.io-index" 4459checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd" 4460 4461[[package]] 4462name = "send_wrapper" 4463version = "0.6.0" 4464source = "registry+https://github.com/rust-lang/crates.io-index" 4465checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" 4466 4467[[package]] 4468name = "serde" 4469version = "1.0.228" 4470source = "registry+https://github.com/rust-lang/crates.io-index" 4471checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 4472dependencies = [ 4473 "serde_core", 4474 "serde_derive", 4475] 4476 4477[[package]] 4478name = "serde_bytes" 4479version = "0.11.19" 4480source = "registry+https://github.com/rust-lang/crates.io-index" 4481checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8" 4482dependencies = [ 4483 "serde", 4484 "serde_core", 4485] 4486 4487[[package]] 4488name = "serde_core" 4489version = "1.0.228" 4490source = "registry+https://github.com/rust-lang/crates.io-index" 4491checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 4492dependencies = [ 4493 "serde_derive", 4494] 4495 4496[[package]] 4497name = "serde_derive" 4498version = "1.0.228" 4499source = "registry+https://github.com/rust-lang/crates.io-index" 4500checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 4501dependencies = [ 4502 "proc-macro2", 4503 "quote", 4504 "syn", 4505] 4506 4507[[package]] 4508name = "serde_html_form" 4509version = "0.3.2" 4510source = "registry+https://github.com/rust-lang/crates.io-index" 4511checksum = "2acf96b1d9364968fce46ebb548f1c0e1d7eceae27bdff73865d42e6c7369d94" 4512dependencies = [ 4513 "form_urlencoded", 4514 "indexmap", 4515 "itoa", 4516 "serde_core", 4517] 4518 4519[[package]] 4520name = "serde_ipld_dagcbor" 4521version = "0.6.4" 4522source = "registry+https://github.com/rust-lang/crates.io-index" 4523checksum = "46182f4f08349a02b45c998ba3215d3f9de826246ba02bb9dddfe9a2a2100778" 4524dependencies = [ 4525 "cbor4ii", 4526 "ipld-core", 4527 "scopeguard", 4528 "serde", 4529] 4530 4531[[package]] 4532name = "serde_ipld_dagjson" 4533version = "0.2.2" 4534source = "registry+https://github.com/rust-lang/crates.io-index" 4535checksum = "eb3dfb1d7b111db0edee8409c57a9b2b1eef47ebc0ec890cc980b0c3b027a8a9" 4536dependencies = [ 4537 "ipld-core", 4538 "serde", 4539 "serde_json", 4540] 4541 4542[[package]] 4543name = "serde_json" 4544version = "1.0.150" 4545source = "registry+https://github.com/rust-lang/crates.io-index" 4546checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9" 4547dependencies = [ 4548 "indexmap", 4549 "itoa", 4550 "memchr", 4551 "serde", 4552 "serde_core", 4553 "zmij", 4554] 4555 4556[[package]] 4557name = "serde_path_to_error" 4558version = "0.1.20" 4559source = "registry+https://github.com/rust-lang/crates.io-index" 4560checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" 4561dependencies = [ 4562 "itoa", 4563 "serde", 4564 "serde_core", 4565] 4566 4567[[package]] 4568name = "serde_repr" 4569version = "0.1.20" 4570source = "registry+https://github.com/rust-lang/crates.io-index" 4571checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" 4572dependencies = [ 4573 "proc-macro2", 4574 "quote", 4575 "syn", 4576] 4577 4578[[package]] 4579name = "serde_spanned" 4580version = "0.6.9" 4581source = "registry+https://github.com/rust-lang/crates.io-index" 4582checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" 4583dependencies = [ 4584 "serde", 4585] 4586 4587[[package]] 4588name = "serde_spanned" 4589version = "1.1.1" 4590source = "registry+https://github.com/rust-lang/crates.io-index" 4591checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26" 4592dependencies = [ 4593 "serde_core", 4594] 4595 4596[[package]] 4597name = "serde_urlencoded" 4598version = "0.7.1" 4599source = "registry+https://github.com/rust-lang/crates.io-index" 4600checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 4601dependencies = [ 4602 "form_urlencoded", 4603 "itoa", 4604 "ryu", 4605 "serde", 4606] 4607 4608[[package]] 4609name = "serde_with" 4610version = "3.21.0" 4611source = "registry+https://github.com/rust-lang/crates.io-index" 4612checksum = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c" 4613dependencies = [ 4614 "base64", 4615 "bs58", 4616 "chrono", 4617 "hex", 4618 "serde_core", 4619 "serde_json", 4620 "serde_with_macros", 4621 "time", 4622] 4623 4624[[package]] 4625name = "serde_with_macros" 4626version = "3.21.0" 4627source = "registry+https://github.com/rust-lang/crates.io-index" 4628checksum = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660" 4629dependencies = [ 4630 "darling", 4631 "proc-macro2", 4632 "quote", 4633 "syn", 4634] 4635 4636[[package]] 4637name = "sha1" 4638version = "0.10.6" 4639source = "registry+https://github.com/rust-lang/crates.io-index" 4640checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 4641dependencies = [ 4642 "cfg-if", 4643 "cpufeatures", 4644 "digest", 4645] 4646 4647[[package]] 4648name = "sha2" 4649version = "0.10.9" 4650source = "registry+https://github.com/rust-lang/crates.io-index" 4651checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 4652dependencies = [ 4653 "cfg-if", 4654 "cpufeatures", 4655 "digest", 4656] 4657 4658[[package]] 4659name = "sharded-slab" 4660version = "0.1.7" 4661source = "registry+https://github.com/rust-lang/crates.io-index" 4662checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 4663dependencies = [ 4664 "lazy_static", 4665] 4666 4667[[package]] 4668name = "shlex" 4669version = "2.0.1" 4670source = "registry+https://github.com/rust-lang/crates.io-index" 4671checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba" 4672 4673[[package]] 4674name = "signal-hook-registry" 4675version = "1.4.8" 4676source = "registry+https://github.com/rust-lang/crates.io-index" 4677checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" 4678dependencies = [ 4679 "errno", 4680 "libc", 4681] 4682 4683[[package]] 4684name = "signature" 4685version = "2.2.0" 4686source = "registry+https://github.com/rust-lang/crates.io-index" 4687checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 4688dependencies = [ 4689 "digest", 4690 "rand_core 0.6.4", 4691] 4692 4693[[package]] 4694name = "simd-adler32" 4695version = "0.3.9" 4696source = "registry+https://github.com/rust-lang/crates.io-index" 4697checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214" 4698 4699[[package]] 4700name = "simd_cesu8" 4701version = "1.1.1" 4702source = "registry+https://github.com/rust-lang/crates.io-index" 4703checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33" 4704dependencies = [ 4705 "rustc_version", 4706 "simdutf8", 4707] 4708 4709[[package]] 4710name = "simd_helpers" 4711version = "0.1.0" 4712source = "registry+https://github.com/rust-lang/crates.io-index" 4713checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6" 4714dependencies = [ 4715 "quote", 4716] 4717 4718[[package]] 4719name = "simdutf8" 4720version = "0.1.5" 4721source = "registry+https://github.com/rust-lang/crates.io-index" 4722checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" 4723 4724[[package]] 4725name = "siphasher" 4726version = "1.0.3" 4727source = "registry+https://github.com/rust-lang/crates.io-index" 4728checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649" 4729 4730[[package]] 4731name = "slab" 4732version = "0.4.12" 4733source = "registry+https://github.com/rust-lang/crates.io-index" 4734checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" 4735 4736[[package]] 4737name = "smallvec" 4738version = "1.15.2" 4739source = "registry+https://github.com/rust-lang/crates.io-index" 4740checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90" 4741 4742[[package]] 4743name = "smol_str" 4744version = "0.3.6" 4745source = "registry+https://github.com/rust-lang/crates.io-index" 4746checksum = "4aaa7368fcf4852a4c2dd92df0cace6a71f2091ca0a23391ce7f3a31833f1523" 4747dependencies = [ 4748 "borsh", 4749 "serde_core", 4750] 4751 4752[[package]] 4753name = "socket2" 4754version = "0.6.4" 4755source = "registry+https://github.com/rust-lang/crates.io-index" 4756checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51" 4757dependencies = [ 4758 "libc", 4759 "windows-sys 0.61.2", 4760] 4761 4762[[package]] 4763name = "spin" 4764version = "0.9.8" 4765source = "registry+https://github.com/rust-lang/crates.io-index" 4766checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 4767dependencies = [ 4768 "lock_api", 4769] 4770 4771[[package]] 4772name = "spin" 4773version = "0.10.0" 4774source = "registry+https://github.com/rust-lang/crates.io-index" 4775checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591" 4776 4777[[package]] 4778name = "spki" 4779version = "0.7.3" 4780source = "registry+https://github.com/rust-lang/crates.io-index" 4781checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 4782dependencies = [ 4783 "base64ct", 4784 "der", 4785] 4786 4787[[package]] 4788name = "stable_deref_trait" 4789version = "1.2.1" 4790source = "registry+https://github.com/rust-lang/crates.io-index" 4791checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" 4792 4793[[package]] 4794name = "string_cache" 4795version = "0.8.9" 4796source = "registry+https://github.com/rust-lang/crates.io-index" 4797checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f" 4798dependencies = [ 4799 "new_debug_unreachable", 4800 "parking_lot", 4801 "phf_shared", 4802 "precomputed-hash", 4803 "serde", 4804] 4805 4806[[package]] 4807name = "string_cache_codegen" 4808version = "0.5.4" 4809source = "registry+https://github.com/rust-lang/crates.io-index" 4810checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0" 4811dependencies = [ 4812 "phf_generator", 4813 "phf_shared", 4814 "proc-macro2", 4815 "quote", 4816] 4817 4818[[package]] 4819name = "strsim" 4820version = "0.11.1" 4821source = "registry+https://github.com/rust-lang/crates.io-index" 4822checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 4823 4824[[package]] 4825name = "subtle" 4826version = "2.6.1" 4827source = "registry+https://github.com/rust-lang/crates.io-index" 4828checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 4829 4830[[package]] 4831name = "supports-color" 4832version = "3.0.2" 4833source = "registry+https://github.com/rust-lang/crates.io-index" 4834checksum = "c64fc7232dd8d2e4ac5ce4ef302b1d81e0b80d055b9d77c7c4f51f6aa4c867d6" 4835dependencies = [ 4836 "is_ci", 4837] 4838 4839[[package]] 4840name = "supports-hyperlinks" 4841version = "3.2.0" 4842source = "registry+https://github.com/rust-lang/crates.io-index" 4843checksum = "e396b6523b11ccb83120b115a0b7366de372751aa6edf19844dfb13a6af97e91" 4844 4845[[package]] 4846name = "supports-unicode" 4847version = "3.0.0" 4848source = "registry+https://github.com/rust-lang/crates.io-index" 4849checksum = "b7401a30af6cb5818bb64852270bb722533397edcfc7344954a38f420819ece2" 4850 4851[[package]] 4852name = "syn" 4853version = "2.0.117" 4854source = "registry+https://github.com/rust-lang/crates.io-index" 4855checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" 4856dependencies = [ 4857 "proc-macro2", 4858 "quote", 4859 "unicode-ident", 4860] 4861 4862[[package]] 4863name = "sync_wrapper" 4864version = "1.0.2" 4865source = "registry+https://github.com/rust-lang/crates.io-index" 4866checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 4867dependencies = [ 4868 "futures-core", 4869] 4870 4871[[package]] 4872name = "synstructure" 4873version = "0.13.2" 4874source = "registry+https://github.com/rust-lang/crates.io-index" 4875checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 4876dependencies = [ 4877 "proc-macro2", 4878 "quote", 4879 "syn", 4880] 4881 4882[[package]] 4883name = "system-configuration" 4884version = "0.7.0" 4885source = "registry+https://github.com/rust-lang/crates.io-index" 4886checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b" 4887dependencies = [ 4888 "bitflags", 4889 "core-foundation 0.9.4", 4890 "system-configuration-sys", 4891] 4892 4893[[package]] 4894name = "system-configuration-sys" 4895version = "0.6.0" 4896source = "registry+https://github.com/rust-lang/crates.io-index" 4897checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" 4898dependencies = [ 4899 "core-foundation-sys", 4900 "libc", 4901] 4902 4903[[package]] 4904name = "tagptr" 4905version = "0.2.0" 4906source = "registry+https://github.com/rust-lang/crates.io-index" 4907checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417" 4908 4909[[package]] 4910name = "target-triple" 4911version = "1.0.0" 4912source = "registry+https://github.com/rust-lang/crates.io-index" 4913checksum = "591ef38edfb78ca4771ee32cf494cb8771944bee237a9b91fc9c1424ac4b777b" 4914 4915[[package]] 4916name = "tempfile" 4917version = "3.27.0" 4918source = "registry+https://github.com/rust-lang/crates.io-index" 4919checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" 4920dependencies = [ 4921 "fastrand", 4922 "getrandom 0.4.2", 4923 "once_cell", 4924 "rustix 1.1.4", 4925 "windows-sys 0.61.2", 4926] 4927 4928[[package]] 4929name = "tendril" 4930version = "0.4.3" 4931source = "registry+https://github.com/rust-lang/crates.io-index" 4932checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 4933dependencies = [ 4934 "futf", 4935 "mac 0.1.1", 4936 "utf-8", 4937] 4938 4939[[package]] 4940name = "termcolor" 4941version = "1.4.1" 4942source = "registry+https://github.com/rust-lang/crates.io-index" 4943checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 4944dependencies = [ 4945 "winapi-util", 4946] 4947 4948[[package]] 4949name = "terminal_size" 4950version = "0.4.4" 4951source = "registry+https://github.com/rust-lang/crates.io-index" 4952checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874" 4953dependencies = [ 4954 "rustix 1.1.4", 4955 "windows-sys 0.61.2", 4956] 4957 4958[[package]] 4959name = "textwrap" 4960version = "0.16.2" 4961source = "registry+https://github.com/rust-lang/crates.io-index" 4962checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057" 4963dependencies = [ 4964 "unicode-linebreak", 4965 "unicode-width 0.2.2", 4966] 4967 4968[[package]] 4969name = "thiserror" 4970version = "1.0.69" 4971source = "registry+https://github.com/rust-lang/crates.io-index" 4972checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 4973dependencies = [ 4974 "thiserror-impl 1.0.69", 4975] 4976 4977[[package]] 4978name = "thiserror" 4979version = "2.0.18" 4980source = "registry+https://github.com/rust-lang/crates.io-index" 4981checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" 4982dependencies = [ 4983 "thiserror-impl 2.0.18", 4984] 4985 4986[[package]] 4987name = "thiserror-impl" 4988version = "1.0.69" 4989source = "registry+https://github.com/rust-lang/crates.io-index" 4990checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 4991dependencies = [ 4992 "proc-macro2", 4993 "quote", 4994 "syn", 4995] 4996 4997[[package]] 4998name = "thiserror-impl" 4999version = "2.0.18" 5000source = "registry+https://github.com/rust-lang/crates.io-index" 5001checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" 5002dependencies = [ 5003 "proc-macro2", 5004 "quote", 5005 "syn", 5006] 5007 5008[[package]] 5009name = "thread_local" 5010version = "1.1.9" 5011source = "registry+https://github.com/rust-lang/crates.io-index" 5012checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" 5013dependencies = [ 5014 "cfg-if", 5015] 5016 5017[[package]] 5018name = "tiff" 5019version = "0.6.1" 5020source = "registry+https://github.com/rust-lang/crates.io-index" 5021checksum = "9a53f4706d65497df0c4349241deddf35f84cee19c87ed86ea8ca590f4464437" 5022dependencies = [ 5023 "jpeg-decoder", 5024 "miniz_oxide 0.4.4", 5025 "weezl", 5026] 5027 5028[[package]] 5029name = "tiff" 5030version = "0.11.3" 5031source = "registry+https://github.com/rust-lang/crates.io-index" 5032checksum = "b63feaf3343d35b6ca4d50483f94843803b0f51634937cc2ec519fc32232bc52" 5033dependencies = [ 5034 "fax", 5035 "flate2", 5036 "half", 5037 "quick-error 2.0.1", 5038 "weezl", 5039 "zune-jpeg", 5040] 5041 5042[[package]] 5043name = "time" 5044version = "0.3.49" 5045source = "registry+https://github.com/rust-lang/crates.io-index" 5046checksum = "711a53c2d47bbd818258c498c8dbfe186a2526c631495cfe7e078567f86b8469" 5047dependencies = [ 5048 "deranged", 5049 "num-conv", 5050 "powerfmt", 5051 "serde_core", 5052 "time-core", 5053 "time-macros", 5054] 5055 5056[[package]] 5057name = "time-core" 5058version = "0.1.9" 5059source = "registry+https://github.com/rust-lang/crates.io-index" 5060checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109" 5061 5062[[package]] 5063name = "time-macros" 5064version = "0.2.29" 5065source = "registry+https://github.com/rust-lang/crates.io-index" 5066checksum = "71c652a3727a9cbb9a02f707f530b618ce00d0ccd762009c8c23bd191df3c17d" 5067dependencies = [ 5068 "num-conv", 5069 "time-core", 5070] 5071 5072[[package]] 5073name = "tinystr" 5074version = "0.8.3" 5075source = "registry+https://github.com/rust-lang/crates.io-index" 5076checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d" 5077dependencies = [ 5078 "displaydoc", 5079 "zerovec", 5080] 5081 5082[[package]] 5083name = "tinyvec" 5084version = "1.11.0" 5085source = "registry+https://github.com/rust-lang/crates.io-index" 5086checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3" 5087dependencies = [ 5088 "tinyvec_macros", 5089] 5090 5091[[package]] 5092name = "tinyvec_macros" 5093version = "0.1.1" 5094source = "registry+https://github.com/rust-lang/crates.io-index" 5095checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 5096 5097[[package]] 5098name = "tokio" 5099version = "1.52.3" 5100source = "registry+https://github.com/rust-lang/crates.io-index" 5101checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe" 5102dependencies = [ 5103 "bytes", 5104 "libc", 5105 "mio", 5106 "parking_lot", 5107 "pin-project-lite", 5108 "signal-hook-registry", 5109 "socket2", 5110 "tokio-macros", 5111 "windows-sys 0.61.2", 5112] 5113 5114[[package]] 5115name = "tokio-macros" 5116version = "2.7.0" 5117source = "registry+https://github.com/rust-lang/crates.io-index" 5118checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496" 5119dependencies = [ 5120 "proc-macro2", 5121 "quote", 5122 "syn", 5123] 5124 5125[[package]] 5126name = "tokio-rustls" 5127version = "0.26.4" 5128source = "registry+https://github.com/rust-lang/crates.io-index" 5129checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" 5130dependencies = [ 5131 "rustls", 5132 "tokio", 5133] 5134 5135[[package]] 5136name = "tokio-tungstenite" 5137version = "0.24.0" 5138source = "registry+https://github.com/rust-lang/crates.io-index" 5139checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9" 5140dependencies = [ 5141 "futures-util", 5142 "log", 5143 "rustls", 5144 "rustls-native-certs", 5145 "rustls-pki-types", 5146 "tokio", 5147 "tokio-rustls", 5148 "tungstenite", 5149] 5150 5151[[package]] 5152name = "tokio-tungstenite-wasm" 5153version = "0.4.0" 5154source = "registry+https://github.com/rust-lang/crates.io-index" 5155checksum = "e21a5c399399c3db9f08d8297ac12b500e86bca82e930253fdc62eaf9c0de6ae" 5156dependencies = [ 5157 "futures-channel", 5158 "futures-util", 5159 "http", 5160 "httparse", 5161 "js-sys", 5162 "rustls", 5163 "thiserror 1.0.69", 5164 "tokio", 5165 "tokio-tungstenite", 5166 "wasm-bindgen", 5167 "web-sys", 5168] 5169 5170[[package]] 5171name = "tokio-util" 5172version = "0.7.18" 5173source = "registry+https://github.com/rust-lang/crates.io-index" 5174checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" 5175dependencies = [ 5176 "bytes", 5177 "futures-core", 5178 "futures-sink", 5179 "futures-util", 5180 "pin-project-lite", 5181 "tokio", 5182] 5183 5184[[package]] 5185name = "toml" 5186version = "0.8.23" 5187source = "registry+https://github.com/rust-lang/crates.io-index" 5188checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" 5189dependencies = [ 5190 "serde", 5191 "serde_spanned 0.6.9", 5192 "toml_datetime 0.6.11", 5193 "toml_edit", 5194] 5195 5196[[package]] 5197name = "toml" 5198version = "1.1.2+spec-1.1.0" 5199source = "registry+https://github.com/rust-lang/crates.io-index" 5200checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee" 5201dependencies = [ 5202 "indexmap", 5203 "serde_core", 5204 "serde_spanned 1.1.1", 5205 "toml_datetime 1.1.1+spec-1.1.0", 5206 "toml_parser", 5207 "toml_writer", 5208 "winnow 1.0.3", 5209] 5210 5211[[package]] 5212name = "toml_datetime" 5213version = "0.6.11" 5214source = "registry+https://github.com/rust-lang/crates.io-index" 5215checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" 5216dependencies = [ 5217 "serde", 5218] 5219 5220[[package]] 5221name = "toml_datetime" 5222version = "1.1.1+spec-1.1.0" 5223source = "registry+https://github.com/rust-lang/crates.io-index" 5224checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7" 5225dependencies = [ 5226 "serde_core", 5227] 5228 5229[[package]] 5230name = "toml_edit" 5231version = "0.22.27" 5232source = "registry+https://github.com/rust-lang/crates.io-index" 5233checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" 5234dependencies = [ 5235 "indexmap", 5236 "serde", 5237 "serde_spanned 0.6.9", 5238 "toml_datetime 0.6.11", 5239 "toml_write", 5240 "winnow 0.7.15", 5241] 5242 5243[[package]] 5244name = "toml_parser" 5245version = "1.1.2+spec-1.1.0" 5246source = "registry+https://github.com/rust-lang/crates.io-index" 5247checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526" 5248dependencies = [ 5249 "winnow 1.0.3", 5250] 5251 5252[[package]] 5253name = "toml_write" 5254version = "0.1.2" 5255source = "registry+https://github.com/rust-lang/crates.io-index" 5256checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801" 5257 5258[[package]] 5259name = "toml_writer" 5260version = "1.1.1+spec-1.1.0" 5261source = "registry+https://github.com/rust-lang/crates.io-index" 5262checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db" 5263 5264[[package]] 5265name = "tower" 5266version = "0.5.3" 5267source = "registry+https://github.com/rust-lang/crates.io-index" 5268checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" 5269dependencies = [ 5270 "futures-core", 5271 "futures-util", 5272 "pin-project-lite", 5273 "sync_wrapper", 5274 "tokio", 5275 "tower-layer", 5276 "tower-service", 5277 "tracing 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 5278] 5279 5280[[package]] 5281name = "tower-http" 5282version = "0.6.11" 5283source = "registry+https://github.com/rust-lang/crates.io-index" 5284checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" 5285dependencies = [ 5286 "async-compression", 5287 "bitflags", 5288 "bytes", 5289 "futures-core", 5290 "futures-util", 5291 "http", 5292 "http-body", 5293 "http-body-util", 5294 "pin-project-lite", 5295 "tokio", 5296 "tokio-util", 5297 "tower", 5298 "tower-layer", 5299 "tower-service", 5300 "tracing 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 5301 "url", 5302] 5303 5304[[package]] 5305name = "tower-layer" 5306version = "0.3.3" 5307source = "registry+https://github.com/rust-lang/crates.io-index" 5308checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 5309 5310[[package]] 5311name = "tower-service" 5312version = "0.3.3" 5313source = "registry+https://github.com/rust-lang/crates.io-index" 5314checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 5315 5316[[package]] 5317name = "tracing" 5318version = "0.1.44" 5319source = "registry+https://github.com/rust-lang/crates.io-index" 5320checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" 5321dependencies = [ 5322 "log", 5323 "pin-project-lite", 5324 "tracing-attributes 0.1.31 (registry+https://github.com/rust-lang/crates.io-index)", 5325 "tracing-core 0.1.36 (registry+https://github.com/rust-lang/crates.io-index)", 5326] 5327 5328[[package]] 5329name = "tracing" 5330version = "0.1.44" 5331source = "git+https://github.com/tokio-rs/tracing#d9d4c542de10f5d3a711b7a45ffe450fd0666437" 5332dependencies = [ 5333 "pin-project-lite", 5334 "tracing-attributes 0.1.31 (git+https://github.com/tokio-rs/tracing)", 5335 "tracing-core 0.1.36 (git+https://github.com/tokio-rs/tracing)", 5336] 5337 5338[[package]] 5339name = "tracing-attributes" 5340version = "0.1.31" 5341source = "registry+https://github.com/rust-lang/crates.io-index" 5342checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" 5343dependencies = [ 5344 "proc-macro2", 5345 "quote", 5346 "syn", 5347] 5348 5349[[package]] 5350name = "tracing-attributes" 5351version = "0.1.31" 5352source = "git+https://github.com/tokio-rs/tracing#d9d4c542de10f5d3a711b7a45ffe450fd0666437" 5353dependencies = [ 5354 "proc-macro2", 5355 "quote", 5356 "syn", 5357] 5358 5359[[package]] 5360name = "tracing-core" 5361version = "0.1.36" 5362source = "registry+https://github.com/rust-lang/crates.io-index" 5363checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" 5364dependencies = [ 5365 "once_cell", 5366 "valuable", 5367] 5368 5369[[package]] 5370name = "tracing-core" 5371version = "0.1.36" 5372source = "git+https://github.com/tokio-rs/tracing#d9d4c542de10f5d3a711b7a45ffe450fd0666437" 5373dependencies = [ 5374 "valuable", 5375] 5376 5377[[package]] 5378name = "tracing-log" 5379version = "0.2.0" 5380source = "registry+https://github.com/rust-lang/crates.io-index" 5381checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 5382dependencies = [ 5383 "log", 5384 "once_cell", 5385 "tracing-core 0.1.36 (registry+https://github.com/rust-lang/crates.io-index)", 5386] 5387 5388[[package]] 5389name = "tracing-log" 5390version = "0.2.0" 5391source = "git+https://github.com/tokio-rs/tracing#d9d4c542de10f5d3a711b7a45ffe450fd0666437" 5392dependencies = [ 5393 "log", 5394 "once_cell", 5395 "tracing-core 0.1.36 (git+https://github.com/tokio-rs/tracing)", 5396] 5397 5398[[package]] 5399name = "tracing-subscriber" 5400version = "0.3.23" 5401source = "registry+https://github.com/rust-lang/crates.io-index" 5402checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319" 5403dependencies = [ 5404 "matchers", 5405 "nu-ansi-term", 5406 "once_cell", 5407 "regex-automata", 5408 "sharded-slab", 5409 "smallvec", 5410 "thread_local", 5411 "time", 5412 "tracing 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 5413 "tracing-core 0.1.36 (registry+https://github.com/rust-lang/crates.io-index)", 5414 "tracing-log 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 5415] 5416 5417[[package]] 5418name = "tracing-subscriber" 5419version = "0.3.23" 5420source = "git+https://github.com/tokio-rs/tracing#d9d4c542de10f5d3a711b7a45ffe450fd0666437" 5421dependencies = [ 5422 "matchers", 5423 "nu-ansi-term", 5424 "once_cell", 5425 "regex-automata", 5426 "sharded-slab", 5427 "smallvec", 5428 "thread_local", 5429 "tracing 0.1.44 (git+https://github.com/tokio-rs/tracing)", 5430 "tracing-core 0.1.36 (git+https://github.com/tokio-rs/tracing)", 5431 "tracing-log 0.2.0 (git+https://github.com/tokio-rs/tracing)", 5432] 5433 5434[[package]] 5435name = "trait-variant" 5436version = "0.1.2" 5437source = "registry+https://github.com/rust-lang/crates.io-index" 5438checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7" 5439dependencies = [ 5440 "proc-macro2", 5441 "quote", 5442 "syn", 5443] 5444 5445[[package]] 5446name = "triomphe" 5447version = "0.1.15" 5448source = "registry+https://github.com/rust-lang/crates.io-index" 5449checksum = "dd69c5aa8f924c7519d6372789a74eac5b94fb0f8fcf0d4a97eb0bfc3e785f39" 5450 5451[[package]] 5452name = "try-lock" 5453version = "0.2.5" 5454source = "registry+https://github.com/rust-lang/crates.io-index" 5455checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 5456 5457[[package]] 5458name = "trybuild" 5459version = "1.0.116" 5460source = "registry+https://github.com/rust-lang/crates.io-index" 5461checksum = "47c635f0191bd3a2941013e5062667100969f8c4e9cd787c14f977265d73616e" 5462dependencies = [ 5463 "glob", 5464 "serde", 5465 "serde_derive", 5466 "serde_json", 5467 "target-triple", 5468 "termcolor", 5469 "toml 1.1.2+spec-1.1.0", 5470] 5471 5472[[package]] 5473name = "tungstenite" 5474version = "0.24.0" 5475source = "registry+https://github.com/rust-lang/crates.io-index" 5476checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a" 5477dependencies = [ 5478 "byteorder", 5479 "bytes", 5480 "data-encoding", 5481 "http", 5482 "httparse", 5483 "log", 5484 "rand 0.8.6", 5485 "rustls", 5486 "rustls-pki-types", 5487 "sha1", 5488 "thiserror 1.0.69", 5489 "utf-8", 5490] 5491 5492[[package]] 5493name = "typeid" 5494version = "1.0.3" 5495source = "registry+https://github.com/rust-lang/crates.io-index" 5496checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c" 5497 5498[[package]] 5499name = "typenum" 5500version = "1.20.1" 5501source = "registry+https://github.com/rust-lang/crates.io-index" 5502checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20" 5503 5504[[package]] 5505name = "typetag" 5506version = "0.2.22" 5507source = "registry+https://github.com/rust-lang/crates.io-index" 5508checksum = "c5a897b12c6c1151ad0b138b8db50252dc301f93bc3b027db05eec82aeed298c" 5509dependencies = [ 5510 "erased-serde", 5511 "inventory", 5512 "once_cell", 5513 "serde", 5514 "typetag-impl", 5515] 5516 5517[[package]] 5518name = "typetag-impl" 5519version = "0.2.22" 5520source = "registry+https://github.com/rust-lang/crates.io-index" 5521checksum = "cf808357c6ed7e13ba0f3277ec8d8f21b2d501274895104263985330c726c1c5" 5522dependencies = [ 5523 "proc-macro2", 5524 "quote", 5525 "syn", 5526] 5527 5528[[package]] 5529name = "unarray" 5530version = "0.1.4" 5531source = "registry+https://github.com/rust-lang/crates.io-index" 5532checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" 5533 5534[[package]] 5535name = "unicode-ident" 5536version = "1.0.24" 5537source = "registry+https://github.com/rust-lang/crates.io-index" 5538checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" 5539 5540[[package]] 5541name = "unicode-linebreak" 5542version = "0.1.5" 5543source = "registry+https://github.com/rust-lang/crates.io-index" 5544checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f" 5545 5546[[package]] 5547name = "unicode-segmentation" 5548version = "1.13.3" 5549source = "registry+https://github.com/rust-lang/crates.io-index" 5550checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8" 5551 5552[[package]] 5553name = "unicode-width" 5554version = "0.1.14" 5555source = "registry+https://github.com/rust-lang/crates.io-index" 5556checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" 5557 5558[[package]] 5559name = "unicode-width" 5560version = "0.2.2" 5561source = "registry+https://github.com/rust-lang/crates.io-index" 5562checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" 5563 5564[[package]] 5565name = "unicode-xid" 5566version = "0.2.6" 5567source = "registry+https://github.com/rust-lang/crates.io-index" 5568checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 5569 5570[[package]] 5571name = "universal-hash" 5572version = "0.5.1" 5573source = "registry+https://github.com/rust-lang/crates.io-index" 5574checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" 5575dependencies = [ 5576 "crypto-common", 5577 "subtle", 5578] 5579 5580[[package]] 5581name = "unsigned-varint" 5582version = "0.7.2" 5583source = "registry+https://github.com/rust-lang/crates.io-index" 5584checksum = "6889a77d49f1f013504cec6bf97a2c730394adedaeb1deb5ea08949a50541105" 5585 5586[[package]] 5587name = "unsigned-varint" 5588version = "0.8.0" 5589source = "registry+https://github.com/rust-lang/crates.io-index" 5590checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06" 5591 5592[[package]] 5593name = "untrusted" 5594version = "0.9.0" 5595source = "registry+https://github.com/rust-lang/crates.io-index" 5596checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 5597 5598[[package]] 5599name = "url" 5600version = "2.5.8" 5601source = "registry+https://github.com/rust-lang/crates.io-index" 5602checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" 5603dependencies = [ 5604 "form_urlencoded", 5605 "idna", 5606 "percent-encoding", 5607 "serde", 5608] 5609 5610[[package]] 5611name = "utf-8" 5612version = "0.7.6" 5613source = "registry+https://github.com/rust-lang/crates.io-index" 5614checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 5615 5616[[package]] 5617name = "utf8-width" 5618version = "0.1.8" 5619source = "registry+https://github.com/rust-lang/crates.io-index" 5620checksum = "1292c0d970b54115d14f2492fe0170adf21d68a1de108eebc51c1df4f346a091" 5621 5622[[package]] 5623name = "utf8_iter" 5624version = "1.0.4" 5625source = "registry+https://github.com/rust-lang/crates.io-index" 5626checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 5627 5628[[package]] 5629name = "utf8parse" 5630version = "0.2.2" 5631source = "registry+https://github.com/rust-lang/crates.io-index" 5632checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 5633 5634[[package]] 5635name = "uuid" 5636version = "1.23.3" 5637source = "registry+https://github.com/rust-lang/crates.io-index" 5638checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7" 5639dependencies = [ 5640 "js-sys", 5641 "wasm-bindgen", 5642] 5643 5644[[package]] 5645name = "v_frame" 5646version = "0.3.9" 5647source = "registry+https://github.com/rust-lang/crates.io-index" 5648checksum = "666b7727c8875d6ab5db9533418d7c764233ac9c0cff1d469aec8fa127597be2" 5649dependencies = [ 5650 "aligned-vec", 5651 "num-traits", 5652 "wasm-bindgen", 5653] 5654 5655[[package]] 5656name = "valuable" 5657version = "0.1.1" 5658source = "registry+https://github.com/rust-lang/crates.io-index" 5659checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 5660 5661[[package]] 5662name = "version_check" 5663version = "0.9.5" 5664source = "registry+https://github.com/rust-lang/crates.io-index" 5665checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 5666 5667[[package]] 5668name = "viuer" 5669version = "0.9.2" 5670source = "registry+https://github.com/rust-lang/crates.io-index" 5671checksum = "0ae7c6870b98c838123f22cac9a594cbe2d74ea48d79271c08f8c9e680b40fac" 5672dependencies = [ 5673 "ansi_colours", 5674 "base64", 5675 "console", 5676 "crossterm", 5677 "image", 5678 "lazy_static", 5679 "tempfile", 5680 "termcolor", 5681] 5682 5683[[package]] 5684name = "wait-timeout" 5685version = "0.2.1" 5686source = "registry+https://github.com/rust-lang/crates.io-index" 5687checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11" 5688dependencies = [ 5689 "libc", 5690] 5691 5692[[package]] 5693name = "walkdir" 5694version = "2.5.0" 5695source = "registry+https://github.com/rust-lang/crates.io-index" 5696checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 5697dependencies = [ 5698 "same-file", 5699 "winapi-util", 5700] 5701 5702[[package]] 5703name = "want" 5704version = "0.3.1" 5705source = "registry+https://github.com/rust-lang/crates.io-index" 5706checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 5707dependencies = [ 5708 "try-lock", 5709] 5710 5711[[package]] 5712name = "wasi" 5713version = "0.11.1+wasi-snapshot-preview1" 5714source = "registry+https://github.com/rust-lang/crates.io-index" 5715checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 5716 5717[[package]] 5718name = "wasip2" 5719version = "1.0.4+wasi-0.2.12" 5720source = "registry+https://github.com/rust-lang/crates.io-index" 5721checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487" 5722dependencies = [ 5723 "wit-bindgen 0.57.1", 5724] 5725 5726[[package]] 5727name = "wasip3" 5728version = "0.4.0+wasi-0.3.0-rc-2026-01-06" 5729source = "registry+https://github.com/rust-lang/crates.io-index" 5730checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5" 5731dependencies = [ 5732 "wit-bindgen 0.51.0", 5733] 5734 5735[[package]] 5736name = "wasm-bindgen" 5737version = "0.2.125" 5738source = "registry+https://github.com/rust-lang/crates.io-index" 5739checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a" 5740dependencies = [ 5741 "cfg-if", 5742 "once_cell", 5743 "rustversion", 5744 "wasm-bindgen-macro", 5745 "wasm-bindgen-shared", 5746] 5747 5748[[package]] 5749name = "wasm-bindgen-futures" 5750version = "0.4.75" 5751source = "registry+https://github.com/rust-lang/crates.io-index" 5752checksum = "503b14d284f2c8dac03b819967e155ea753f573586193b2b2c95990cb5d69280" 5753dependencies = [ 5754 "js-sys", 5755 "wasm-bindgen", 5756] 5757 5758[[package]] 5759name = "wasm-bindgen-macro" 5760version = "0.2.125" 5761source = "registry+https://github.com/rust-lang/crates.io-index" 5762checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d" 5763dependencies = [ 5764 "quote", 5765 "wasm-bindgen-macro-support", 5766] 5767 5768[[package]] 5769name = "wasm-bindgen-macro-support" 5770version = "0.2.125" 5771source = "registry+https://github.com/rust-lang/crates.io-index" 5772checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd" 5773dependencies = [ 5774 "bumpalo", 5775 "proc-macro2", 5776 "quote", 5777 "syn", 5778 "wasm-bindgen-shared", 5779] 5780 5781[[package]] 5782name = "wasm-bindgen-shared" 5783version = "0.2.125" 5784source = "registry+https://github.com/rust-lang/crates.io-index" 5785checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f" 5786dependencies = [ 5787 "unicode-ident", 5788] 5789 5790[[package]] 5791name = "wasm-bindgen-test" 5792version = "0.3.75" 5793source = "registry+https://github.com/rust-lang/crates.io-index" 5794checksum = "d16931d57bcdd6a0dcc11254bdd1388827690c1b6807f0d2836f59a4f9eb30ac" 5795dependencies = [ 5796 "async-trait", 5797 "cast", 5798 "js-sys", 5799 "libm", 5800 "minicov", 5801 "nu-ansi-term", 5802 "num-traits", 5803 "oorandom", 5804 "serde", 5805 "serde_json", 5806 "wasm-bindgen", 5807 "wasm-bindgen-futures", 5808 "wasm-bindgen-test-macro", 5809 "wasm-bindgen-test-shared", 5810] 5811 5812[[package]] 5813name = "wasm-bindgen-test-macro" 5814version = "0.3.75" 5815source = "registry+https://github.com/rust-lang/crates.io-index" 5816checksum = "fccaddcb2cd722baa7453b4c3d2cb2a3071597bb91f7a4373e8775bdb151778c" 5817dependencies = [ 5818 "proc-macro2", 5819 "quote", 5820 "syn", 5821] 5822 5823[[package]] 5824name = "wasm-bindgen-test-shared" 5825version = "0.2.125" 5826source = "registry+https://github.com/rust-lang/crates.io-index" 5827checksum = "3746ad029217960123cf2ebf939dda51eb931ba9f8f09c117e39c820b96aa794" 5828 5829[[package]] 5830name = "wasm-encoder" 5831version = "0.244.0" 5832source = "registry+https://github.com/rust-lang/crates.io-index" 5833checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319" 5834dependencies = [ 5835 "leb128fmt", 5836 "wasmparser", 5837] 5838 5839[[package]] 5840name = "wasm-metadata" 5841version = "0.244.0" 5842source = "registry+https://github.com/rust-lang/crates.io-index" 5843checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" 5844dependencies = [ 5845 "anyhow", 5846 "indexmap", 5847 "wasm-encoder", 5848 "wasmparser", 5849] 5850 5851[[package]] 5852name = "wasm-streams" 5853version = "0.4.2" 5854source = "registry+https://github.com/rust-lang/crates.io-index" 5855checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" 5856dependencies = [ 5857 "futures-util", 5858 "js-sys", 5859 "wasm-bindgen", 5860 "wasm-bindgen-futures", 5861 "web-sys", 5862] 5863 5864[[package]] 5865name = "wasmparser" 5866version = "0.244.0" 5867source = "registry+https://github.com/rust-lang/crates.io-index" 5868checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" 5869dependencies = [ 5870 "bitflags", 5871 "hashbrown 0.15.5", 5872 "indexmap", 5873 "semver", 5874] 5875 5876[[package]] 5877name = "web-sys" 5878version = "0.3.102" 5879source = "registry+https://github.com/rust-lang/crates.io-index" 5880checksum = "a6430a72df5eb332242960fe84b3002a241163998241eb596d4f739b9757061d" 5881dependencies = [ 5882 "js-sys", 5883 "wasm-bindgen", 5884] 5885 5886[[package]] 5887name = "web-time" 5888version = "1.1.0" 5889source = "registry+https://github.com/rust-lang/crates.io-index" 5890checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 5891dependencies = [ 5892 "js-sys", 5893 "wasm-bindgen", 5894] 5895 5896[[package]] 5897name = "webbrowser" 5898version = "1.2.1" 5899source = "registry+https://github.com/rust-lang/crates.io-index" 5900checksum = "0fc95580916af1e68ff6a7be07446fc5db73ebf71cf092de939bbf5f7e189f72" 5901dependencies = [ 5902 "core-foundation 0.10.1", 5903 "jni", 5904 "log", 5905 "ndk-context", 5906 "objc2", 5907 "objc2-foundation", 5908 "url", 5909 "web-sys", 5910] 5911 5912[[package]] 5913name = "webpage" 5914version = "2.0.1" 5915source = "registry+https://github.com/rust-lang/crates.io-index" 5916checksum = "70862efc041d46e6bbaa82bb9c34ae0596d090e86cbd14bd9e93b36ee6802eac" 5917dependencies = [ 5918 "html5ever", 5919 "markup5ever_rcdom", 5920 "serde_json", 5921 "url", 5922] 5923 5924[[package]] 5925name = "webpki-roots" 5926version = "1.0.7" 5927source = "registry+https://github.com/rust-lang/crates.io-index" 5928checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d" 5929dependencies = [ 5930 "rustls-pki-types", 5931] 5932 5933[[package]] 5934name = "weezl" 5935version = "0.1.12" 5936source = "registry+https://github.com/rust-lang/crates.io-index" 5937checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88" 5938 5939[[package]] 5940name = "widestring" 5941version = "1.2.1" 5942source = "registry+https://github.com/rust-lang/crates.io-index" 5943checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471" 5944 5945[[package]] 5946name = "winapi" 5947version = "0.3.9" 5948source = "registry+https://github.com/rust-lang/crates.io-index" 5949checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 5950dependencies = [ 5951 "winapi-i686-pc-windows-gnu", 5952 "winapi-x86_64-pc-windows-gnu", 5953] 5954 5955[[package]] 5956name = "winapi-i686-pc-windows-gnu" 5957version = "0.4.0" 5958source = "registry+https://github.com/rust-lang/crates.io-index" 5959checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 5960 5961[[package]] 5962name = "winapi-util" 5963version = "0.1.11" 5964source = "registry+https://github.com/rust-lang/crates.io-index" 5965checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" 5966dependencies = [ 5967 "windows-sys 0.61.2", 5968] 5969 5970[[package]] 5971name = "winapi-x86_64-pc-windows-gnu" 5972version = "0.4.0" 5973source = "registry+https://github.com/rust-lang/crates.io-index" 5974checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 5975 5976[[package]] 5977name = "windows-core" 5978version = "0.62.2" 5979source = "registry+https://github.com/rust-lang/crates.io-index" 5980checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" 5981dependencies = [ 5982 "windows-implement", 5983 "windows-interface", 5984 "windows-link", 5985 "windows-result", 5986 "windows-strings", 5987] 5988 5989[[package]] 5990name = "windows-implement" 5991version = "0.60.2" 5992source = "registry+https://github.com/rust-lang/crates.io-index" 5993checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" 5994dependencies = [ 5995 "proc-macro2", 5996 "quote", 5997 "syn", 5998] 5999 6000[[package]] 6001name = "windows-interface" 6002version = "0.59.3" 6003source = "registry+https://github.com/rust-lang/crates.io-index" 6004checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" 6005dependencies = [ 6006 "proc-macro2", 6007 "quote", 6008 "syn", 6009] 6010 6011[[package]] 6012name = "windows-link" 6013version = "0.2.1" 6014source = "registry+https://github.com/rust-lang/crates.io-index" 6015checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 6016 6017[[package]] 6018name = "windows-registry" 6019version = "0.6.1" 6020source = "registry+https://github.com/rust-lang/crates.io-index" 6021checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" 6022dependencies = [ 6023 "windows-link", 6024 "windows-result", 6025 "windows-strings", 6026] 6027 6028[[package]] 6029name = "windows-result" 6030version = "0.4.1" 6031source = "registry+https://github.com/rust-lang/crates.io-index" 6032checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" 6033dependencies = [ 6034 "windows-link", 6035] 6036 6037[[package]] 6038name = "windows-strings" 6039version = "0.5.1" 6040source = "registry+https://github.com/rust-lang/crates.io-index" 6041checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" 6042dependencies = [ 6043 "windows-link", 6044] 6045 6046[[package]] 6047name = "windows-sys" 6048version = "0.52.0" 6049source = "registry+https://github.com/rust-lang/crates.io-index" 6050checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 6051dependencies = [ 6052 "windows-targets 0.52.6", 6053] 6054 6055[[package]] 6056name = "windows-sys" 6057version = "0.59.0" 6058source = "registry+https://github.com/rust-lang/crates.io-index" 6059checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 6060dependencies = [ 6061 "windows-targets 0.52.6", 6062] 6063 6064[[package]] 6065name = "windows-sys" 6066version = "0.60.2" 6067source = "registry+https://github.com/rust-lang/crates.io-index" 6068checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 6069dependencies = [ 6070 "windows-targets 0.53.5", 6071] 6072 6073[[package]] 6074name = "windows-sys" 6075version = "0.61.2" 6076source = "registry+https://github.com/rust-lang/crates.io-index" 6077checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 6078dependencies = [ 6079 "windows-link", 6080] 6081 6082[[package]] 6083name = "windows-targets" 6084version = "0.52.6" 6085source = "registry+https://github.com/rust-lang/crates.io-index" 6086checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 6087dependencies = [ 6088 "windows_aarch64_gnullvm 0.52.6", 6089 "windows_aarch64_msvc 0.52.6", 6090 "windows_i686_gnu 0.52.6", 6091 "windows_i686_gnullvm 0.52.6", 6092 "windows_i686_msvc 0.52.6", 6093 "windows_x86_64_gnu 0.52.6", 6094 "windows_x86_64_gnullvm 0.52.6", 6095 "windows_x86_64_msvc 0.52.6", 6096] 6097 6098[[package]] 6099name = "windows-targets" 6100version = "0.53.5" 6101source = "registry+https://github.com/rust-lang/crates.io-index" 6102checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 6103dependencies = [ 6104 "windows-link", 6105 "windows_aarch64_gnullvm 0.53.1", 6106 "windows_aarch64_msvc 0.53.1", 6107 "windows_i686_gnu 0.53.1", 6108 "windows_i686_gnullvm 0.53.1", 6109 "windows_i686_msvc 0.53.1", 6110 "windows_x86_64_gnu 0.53.1", 6111 "windows_x86_64_gnullvm 0.53.1", 6112 "windows_x86_64_msvc 0.53.1", 6113] 6114 6115[[package]] 6116name = "windows_aarch64_gnullvm" 6117version = "0.52.6" 6118source = "registry+https://github.com/rust-lang/crates.io-index" 6119checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 6120 6121[[package]] 6122name = "windows_aarch64_gnullvm" 6123version = "0.53.1" 6124source = "registry+https://github.com/rust-lang/crates.io-index" 6125checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" 6126 6127[[package]] 6128name = "windows_aarch64_msvc" 6129version = "0.52.6" 6130source = "registry+https://github.com/rust-lang/crates.io-index" 6131checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 6132 6133[[package]] 6134name = "windows_aarch64_msvc" 6135version = "0.53.1" 6136source = "registry+https://github.com/rust-lang/crates.io-index" 6137checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 6138 6139[[package]] 6140name = "windows_i686_gnu" 6141version = "0.52.6" 6142source = "registry+https://github.com/rust-lang/crates.io-index" 6143checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 6144 6145[[package]] 6146name = "windows_i686_gnu" 6147version = "0.53.1" 6148source = "registry+https://github.com/rust-lang/crates.io-index" 6149checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" 6150 6151[[package]] 6152name = "windows_i686_gnullvm" 6153version = "0.52.6" 6154source = "registry+https://github.com/rust-lang/crates.io-index" 6155checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 6156 6157[[package]] 6158name = "windows_i686_gnullvm" 6159version = "0.53.1" 6160source = "registry+https://github.com/rust-lang/crates.io-index" 6161checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" 6162 6163[[package]] 6164name = "windows_i686_msvc" 6165version = "0.52.6" 6166source = "registry+https://github.com/rust-lang/crates.io-index" 6167checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 6168 6169[[package]] 6170name = "windows_i686_msvc" 6171version = "0.53.1" 6172source = "registry+https://github.com/rust-lang/crates.io-index" 6173checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 6174 6175[[package]] 6176name = "windows_x86_64_gnu" 6177version = "0.52.6" 6178source = "registry+https://github.com/rust-lang/crates.io-index" 6179checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 6180 6181[[package]] 6182name = "windows_x86_64_gnu" 6183version = "0.53.1" 6184source = "registry+https://github.com/rust-lang/crates.io-index" 6185checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" 6186 6187[[package]] 6188name = "windows_x86_64_gnullvm" 6189version = "0.52.6" 6190source = "registry+https://github.com/rust-lang/crates.io-index" 6191checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 6192 6193[[package]] 6194name = "windows_x86_64_gnullvm" 6195version = "0.53.1" 6196source = "registry+https://github.com/rust-lang/crates.io-index" 6197checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" 6198 6199[[package]] 6200name = "windows_x86_64_msvc" 6201version = "0.52.6" 6202source = "registry+https://github.com/rust-lang/crates.io-index" 6203checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 6204 6205[[package]] 6206name = "windows_x86_64_msvc" 6207version = "0.53.1" 6208source = "registry+https://github.com/rust-lang/crates.io-index" 6209checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" 6210 6211[[package]] 6212name = "winnow" 6213version = "0.7.15" 6214source = "registry+https://github.com/rust-lang/crates.io-index" 6215checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945" 6216dependencies = [ 6217 "memchr", 6218] 6219 6220[[package]] 6221name = "winnow" 6222version = "1.0.3" 6223source = "registry+https://github.com/rust-lang/crates.io-index" 6224checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1" 6225 6226[[package]] 6227name = "wit-bindgen" 6228version = "0.51.0" 6229source = "registry+https://github.com/rust-lang/crates.io-index" 6230checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" 6231dependencies = [ 6232 "wit-bindgen-rust-macro", 6233] 6234 6235[[package]] 6236name = "wit-bindgen" 6237version = "0.57.1" 6238source = "registry+https://github.com/rust-lang/crates.io-index" 6239checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e" 6240 6241[[package]] 6242name = "wit-bindgen-core" 6243version = "0.51.0" 6244source = "registry+https://github.com/rust-lang/crates.io-index" 6245checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" 6246dependencies = [ 6247 "anyhow", 6248 "heck", 6249 "wit-parser", 6250] 6251 6252[[package]] 6253name = "wit-bindgen-rust" 6254version = "0.51.0" 6255source = "registry+https://github.com/rust-lang/crates.io-index" 6256checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" 6257dependencies = [ 6258 "anyhow", 6259 "heck", 6260 "indexmap", 6261 "prettyplease", 6262 "syn", 6263 "wasm-metadata", 6264 "wit-bindgen-core", 6265 "wit-component", 6266] 6267 6268[[package]] 6269name = "wit-bindgen-rust-macro" 6270version = "0.51.0" 6271source = "registry+https://github.com/rust-lang/crates.io-index" 6272checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a" 6273dependencies = [ 6274 "anyhow", 6275 "prettyplease", 6276 "proc-macro2", 6277 "quote", 6278 "syn", 6279 "wit-bindgen-core", 6280 "wit-bindgen-rust", 6281] 6282 6283[[package]] 6284name = "wit-component" 6285version = "0.244.0" 6286source = "registry+https://github.com/rust-lang/crates.io-index" 6287checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" 6288dependencies = [ 6289 "anyhow", 6290 "bitflags", 6291 "indexmap", 6292 "log", 6293 "serde", 6294 "serde_derive", 6295 "serde_json", 6296 "wasm-encoder", 6297 "wasm-metadata", 6298 "wasmparser", 6299 "wit-parser", 6300] 6301 6302[[package]] 6303name = "wit-parser" 6304version = "0.244.0" 6305source = "registry+https://github.com/rust-lang/crates.io-index" 6306checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" 6307dependencies = [ 6308 "anyhow", 6309 "id-arena", 6310 "indexmap", 6311 "log", 6312 "semver", 6313 "serde", 6314 "serde_derive", 6315 "serde_json", 6316 "unicode-xid", 6317 "wasmparser", 6318] 6319 6320[[package]] 6321name = "writeable" 6322version = "0.6.3" 6323source = "registry+https://github.com/rust-lang/crates.io-index" 6324checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4" 6325 6326[[package]] 6327name = "xml5ever" 6328version = "0.18.1" 6329source = "registry+https://github.com/rust-lang/crates.io-index" 6330checksum = "9bbb26405d8e919bc1547a5aa9abc95cbfa438f04844f5fdd9dc7596b748bf69" 6331dependencies = [ 6332 "log", 6333 "mac 0.1.1", 6334 "markup5ever", 6335] 6336 6337[[package]] 6338name = "y4m" 6339version = "0.8.0" 6340source = "registry+https://github.com/rust-lang/crates.io-index" 6341checksum = "7a5a4b21e1a62b67a2970e6831bc091d7b87e119e7f9791aef9702e3bef04448" 6342 6343[[package]] 6344name = "yansi" 6345version = "1.0.1" 6346source = "registry+https://github.com/rust-lang/crates.io-index" 6347checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" 6348 6349[[package]] 6350name = "yoke" 6351version = "0.8.3" 6352source = "registry+https://github.com/rust-lang/crates.io-index" 6353checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5" 6354dependencies = [ 6355 "stable_deref_trait", 6356 "yoke-derive", 6357 "zerofrom", 6358] 6359 6360[[package]] 6361name = "yoke-derive" 6362version = "0.8.2" 6363source = "registry+https://github.com/rust-lang/crates.io-index" 6364checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e" 6365dependencies = [ 6366 "proc-macro2", 6367 "quote", 6368 "syn", 6369 "synstructure", 6370] 6371 6372[[package]] 6373name = "zerocopy" 6374version = "0.8.52" 6375source = "registry+https://github.com/rust-lang/crates.io-index" 6376checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f" 6377dependencies = [ 6378 "zerocopy-derive", 6379] 6380 6381[[package]] 6382name = "zerocopy-derive" 6383version = "0.8.52" 6384source = "registry+https://github.com/rust-lang/crates.io-index" 6385checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930" 6386dependencies = [ 6387 "proc-macro2", 6388 "quote", 6389 "syn", 6390] 6391 6392[[package]] 6393name = "zerofrom" 6394version = "0.1.8" 6395source = "registry+https://github.com/rust-lang/crates.io-index" 6396checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272" 6397dependencies = [ 6398 "zerofrom-derive", 6399] 6400 6401[[package]] 6402name = "zerofrom-derive" 6403version = "0.1.7" 6404source = "registry+https://github.com/rust-lang/crates.io-index" 6405checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1" 6406dependencies = [ 6407 "proc-macro2", 6408 "quote", 6409 "syn", 6410 "synstructure", 6411] 6412 6413[[package]] 6414name = "zeroize" 6415version = "1.9.0" 6416source = "registry+https://github.com/rust-lang/crates.io-index" 6417checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e" 6418dependencies = [ 6419 "serde", 6420] 6421 6422[[package]] 6423name = "zerotrie" 6424version = "0.2.4" 6425source = "registry+https://github.com/rust-lang/crates.io-index" 6426checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf" 6427dependencies = [ 6428 "displaydoc", 6429 "yoke", 6430 "zerofrom", 6431] 6432 6433[[package]] 6434name = "zerovec" 6435version = "0.11.6" 6436source = "registry+https://github.com/rust-lang/crates.io-index" 6437checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239" 6438dependencies = [ 6439 "yoke", 6440 "zerofrom", 6441 "zerovec-derive", 6442] 6443 6444[[package]] 6445name = "zerovec-derive" 6446version = "0.11.3" 6447source = "registry+https://github.com/rust-lang/crates.io-index" 6448checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555" 6449dependencies = [ 6450 "proc-macro2", 6451 "quote", 6452 "syn", 6453] 6454 6455[[package]] 6456name = "zmij" 6457version = "1.0.21" 6458source = "registry+https://github.com/rust-lang/crates.io-index" 6459checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" 6460 6461[[package]] 6462name = "zstd" 6463version = "0.13.3" 6464source = "registry+https://github.com/rust-lang/crates.io-index" 6465checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" 6466dependencies = [ 6467 "zstd-safe", 6468] 6469 6470[[package]] 6471name = "zstd-safe" 6472version = "7.2.4" 6473source = "registry+https://github.com/rust-lang/crates.io-index" 6474checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d" 6475dependencies = [ 6476 "zstd-sys", 6477] 6478 6479[[package]] 6480name = "zstd-sys" 6481version = "2.0.16+zstd.1.5.7" 6482source = "registry+https://github.com/rust-lang/crates.io-index" 6483checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748" 6484dependencies = [ 6485 "cc", 6486 "pkg-config", 6487] 6488 6489[[package]] 6490name = "zune-core" 6491version = "0.5.1" 6492source = "registry+https://github.com/rust-lang/crates.io-index" 6493checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9" 6494 6495[[package]] 6496name = "zune-inflate" 6497version = "0.2.54" 6498source = "registry+https://github.com/rust-lang/crates.io-index" 6499checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02" 6500dependencies = [ 6501 "simd-adler32", 6502] 6503 6504[[package]] 6505name = "zune-jpeg" 6506version = "0.5.15" 6507source = "registry+https://github.com/rust-lang/crates.io-index" 6508checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296" 6509dependencies = [ 6510 "zune-core", 6511]