Learn how to use Rust to build ATProto powered applications
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "actix-codec" 7version = "0.5.2" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a" 10dependencies = [ 11 "bitflags", 12 "bytes", 13 "futures-core", 14 "futures-sink", 15 "memchr", 16 "pin-project-lite", 17 "tokio", 18 "tokio-util", 19 "tracing", 20] 21 22[[package]] 23name = "actix-files" 24version = "0.6.6" 25source = "registry+https://github.com/rust-lang/crates.io-index" 26checksum = "0773d59061dedb49a8aed04c67291b9d8cf2fe0b60130a381aab53c6dd86e9be" 27dependencies = [ 28 "actix-http", 29 "actix-service", 30 "actix-utils", 31 "actix-web", 32 "bitflags", 33 "bytes", 34 "derive_more 0.99.19", 35 "futures-core", 36 "http-range", 37 "log", 38 "mime", 39 "mime_guess", 40 "percent-encoding", 41 "pin-project-lite", 42 "v_htmlescape", 43] 44 45[[package]] 46name = "actix-http" 47version = "3.9.0" 48source = "registry+https://github.com/rust-lang/crates.io-index" 49checksum = "d48f96fc3003717aeb9856ca3d02a8c7de502667ad76eeacd830b48d2e91fac4" 50dependencies = [ 51 "actix-codec", 52 "actix-rt", 53 "actix-service", 54 "actix-utils", 55 "ahash", 56 "base64 0.22.1", 57 "bitflags", 58 "brotli", 59 "bytes", 60 "bytestring", 61 "derive_more 0.99.19", 62 "encoding_rs", 63 "flate2", 64 "futures-core", 65 "h2", 66 "http 0.2.12", 67 "httparse", 68 "httpdate", 69 "itoa", 70 "language-tags", 71 "local-channel", 72 "mime", 73 "percent-encoding", 74 "pin-project-lite", 75 "rand", 76 "sha1", 77 "smallvec", 78 "tokio", 79 "tokio-util", 80 "tracing", 81 "zstd", 82] 83 84[[package]] 85name = "actix-macros" 86version = "0.2.4" 87source = "registry+https://github.com/rust-lang/crates.io-index" 88checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb" 89dependencies = [ 90 "quote", 91 "syn", 92] 93 94[[package]] 95name = "actix-router" 96version = "0.5.3" 97source = "registry+https://github.com/rust-lang/crates.io-index" 98checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8" 99dependencies = [ 100 "bytestring", 101 "cfg-if", 102 "http 0.2.12", 103 "regex", 104 "regex-lite", 105 "serde", 106 "tracing", 107] 108 109[[package]] 110name = "actix-rt" 111version = "2.10.0" 112source = "registry+https://github.com/rust-lang/crates.io-index" 113checksum = "24eda4e2a6e042aa4e55ac438a2ae052d3b5da0ecf83d7411e1a368946925208" 114dependencies = [ 115 "futures-core", 116 "tokio", 117] 118 119[[package]] 120name = "actix-server" 121version = "2.5.0" 122source = "registry+https://github.com/rust-lang/crates.io-index" 123checksum = "7ca2549781d8dd6d75c40cf6b6051260a2cc2f3c62343d761a969a0640646894" 124dependencies = [ 125 "actix-rt", 126 "actix-service", 127 "actix-utils", 128 "futures-core", 129 "futures-util", 130 "mio", 131 "socket2", 132 "tokio", 133 "tracing", 134] 135 136[[package]] 137name = "actix-service" 138version = "2.0.2" 139source = "registry+https://github.com/rust-lang/crates.io-index" 140checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a" 141dependencies = [ 142 "futures-core", 143 "paste", 144 "pin-project-lite", 145] 146 147[[package]] 148name = "actix-session" 149version = "0.10.1" 150source = "registry+https://github.com/rust-lang/crates.io-index" 151checksum = "efe6976a74f34f1b6d07a6c05aadc0ed0359304a7781c367fa5b4029418db08f" 152dependencies = [ 153 "actix-service", 154 "actix-utils", 155 "actix-web", 156 "anyhow", 157 "derive_more 1.0.0", 158 "rand", 159 "serde", 160 "serde_json", 161 "tracing", 162] 163 164[[package]] 165name = "actix-utils" 166version = "3.0.1" 167source = "registry+https://github.com/rust-lang/crates.io-index" 168checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8" 169dependencies = [ 170 "local-waker", 171 "pin-project-lite", 172] 173 174[[package]] 175name = "actix-web" 176version = "4.9.0" 177source = "registry+https://github.com/rust-lang/crates.io-index" 178checksum = "9180d76e5cc7ccbc4d60a506f2c727730b154010262df5b910eb17dbe4b8cb38" 179dependencies = [ 180 "actix-codec", 181 "actix-http", 182 "actix-macros", 183 "actix-router", 184 "actix-rt", 185 "actix-server", 186 "actix-service", 187 "actix-utils", 188 "actix-web-codegen", 189 "ahash", 190 "bytes", 191 "bytestring", 192 "cfg-if", 193 "cookie", 194 "derive_more 0.99.19", 195 "encoding_rs", 196 "futures-core", 197 "futures-util", 198 "impl-more", 199 "itoa", 200 "language-tags", 201 "log", 202 "mime", 203 "once_cell", 204 "pin-project-lite", 205 "regex", 206 "regex-lite", 207 "serde", 208 "serde_json", 209 "serde_urlencoded", 210 "smallvec", 211 "socket2", 212 "time", 213 "url", 214] 215 216[[package]] 217name = "actix-web-codegen" 218version = "4.3.0" 219source = "registry+https://github.com/rust-lang/crates.io-index" 220checksum = "f591380e2e68490b5dfaf1dd1aa0ebe78d84ba7067078512b4ea6e4492d622b8" 221dependencies = [ 222 "actix-router", 223 "proc-macro2", 224 "quote", 225 "syn", 226] 227 228[[package]] 229name = "addr2line" 230version = "0.24.2" 231source = "registry+https://github.com/rust-lang/crates.io-index" 232checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" 233dependencies = [ 234 "gimli", 235] 236 237[[package]] 238name = "adler2" 239version = "2.0.0" 240source = "registry+https://github.com/rust-lang/crates.io-index" 241checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" 242 243[[package]] 244name = "aead" 245version = "0.5.2" 246source = "registry+https://github.com/rust-lang/crates.io-index" 247checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" 248dependencies = [ 249 "crypto-common", 250 "generic-array", 251] 252 253[[package]] 254name = "aes" 255version = "0.8.4" 256source = "registry+https://github.com/rust-lang/crates.io-index" 257checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" 258dependencies = [ 259 "cfg-if", 260 "cipher", 261 "cpufeatures", 262] 263 264[[package]] 265name = "aes-gcm" 266version = "0.10.3" 267source = "registry+https://github.com/rust-lang/crates.io-index" 268checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" 269dependencies = [ 270 "aead", 271 "aes", 272 "cipher", 273 "ctr", 274 "ghash", 275 "subtle", 276] 277 278[[package]] 279name = "ahash" 280version = "0.8.11" 281source = "registry+https://github.com/rust-lang/crates.io-index" 282checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 283dependencies = [ 284 "cfg-if", 285 "getrandom 0.2.15", 286 "once_cell", 287 "version_check", 288 "zerocopy", 289] 290 291[[package]] 292name = "aho-corasick" 293version = "1.1.3" 294source = "registry+https://github.com/rust-lang/crates.io-index" 295checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 296dependencies = [ 297 "memchr", 298] 299 300[[package]] 301name = "alloc-no-stdlib" 302version = "2.0.4" 303source = "registry+https://github.com/rust-lang/crates.io-index" 304checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 305 306[[package]] 307name = "alloc-stdlib" 308version = "0.2.2" 309source = "registry+https://github.com/rust-lang/crates.io-index" 310checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 311dependencies = [ 312 "alloc-no-stdlib", 313] 314 315[[package]] 316name = "allocator-api2" 317version = "0.2.21" 318source = "registry+https://github.com/rust-lang/crates.io-index" 319checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" 320 321[[package]] 322name = "android-tzdata" 323version = "0.1.1" 324source = "registry+https://github.com/rust-lang/crates.io-index" 325checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 326 327[[package]] 328name = "android_system_properties" 329version = "0.1.5" 330source = "registry+https://github.com/rust-lang/crates.io-index" 331checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 332dependencies = [ 333 "libc", 334] 335 336[[package]] 337name = "anstream" 338version = "0.6.18" 339source = "registry+https://github.com/rust-lang/crates.io-index" 340checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b" 341dependencies = [ 342 "anstyle", 343 "anstyle-parse", 344 "anstyle-query", 345 "anstyle-wincon", 346 "colorchoice", 347 "is_terminal_polyfill", 348 "utf8parse", 349] 350 351[[package]] 352name = "anstyle" 353version = "1.0.10" 354source = "registry+https://github.com/rust-lang/crates.io-index" 355checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" 356 357[[package]] 358name = "anstyle-parse" 359version = "0.2.6" 360source = "registry+https://github.com/rust-lang/crates.io-index" 361checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9" 362dependencies = [ 363 "utf8parse", 364] 365 366[[package]] 367name = "anstyle-query" 368version = "1.1.2" 369source = "registry+https://github.com/rust-lang/crates.io-index" 370checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c" 371dependencies = [ 372 "windows-sys 0.59.0", 373] 374 375[[package]] 376name = "anstyle-wincon" 377version = "3.0.7" 378source = "registry+https://github.com/rust-lang/crates.io-index" 379checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e" 380dependencies = [ 381 "anstyle", 382 "once_cell", 383 "windows-sys 0.59.0", 384] 385 386[[package]] 387name = "anyhow" 388version = "1.0.97" 389source = "registry+https://github.com/rust-lang/crates.io-index" 390checksum = "dcfed56ad506cb2c684a14971b8861fdc3baaaae314b9e5f9bb532cbe3ba7a4f" 391 392[[package]] 393name = "askama" 394version = "0.12.1" 395source = "registry+https://github.com/rust-lang/crates.io-index" 396checksum = "b79091df18a97caea757e28cd2d5fda49c6cd4bd01ddffd7ff01ace0c0ad2c28" 397dependencies = [ 398 "askama_derive", 399 "askama_escape", 400 "humansize", 401 "num-traits", 402 "percent-encoding", 403] 404 405[[package]] 406name = "askama_derive" 407version = "0.12.5" 408source = "registry+https://github.com/rust-lang/crates.io-index" 409checksum = "19fe8d6cb13c4714962c072ea496f3392015f0989b1a2847bb4b2d9effd71d83" 410dependencies = [ 411 "askama_parser", 412 "basic-toml", 413 "mime", 414 "mime_guess", 415 "proc-macro2", 416 "quote", 417 "serde", 418 "syn", 419] 420 421[[package]] 422name = "askama_escape" 423version = "0.10.3" 424source = "registry+https://github.com/rust-lang/crates.io-index" 425checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341" 426 427[[package]] 428name = "askama_parser" 429version = "0.2.1" 430source = "registry+https://github.com/rust-lang/crates.io-index" 431checksum = "acb1161c6b64d1c3d83108213c2a2533a342ac225aabd0bda218278c2ddb00c0" 432dependencies = [ 433 "nom", 434] 435 436[[package]] 437name = "async-compression" 438version = "0.4.20" 439source = "registry+https://github.com/rust-lang/crates.io-index" 440checksum = "310c9bcae737a48ef5cdee3174184e6d548b292739ede61a1f955ef76a738861" 441dependencies = [ 442 "flate2", 443 "futures-core", 444 "memchr", 445 "pin-project-lite", 446 "tokio", 447] 448 449[[package]] 450name = "async-lock" 451version = "3.4.0" 452source = "registry+https://github.com/rust-lang/crates.io-index" 453checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" 454dependencies = [ 455 "event-listener", 456 "event-listener-strategy", 457 "pin-project-lite", 458] 459 460[[package]] 461name = "async-stream" 462version = "0.3.6" 463source = "registry+https://github.com/rust-lang/crates.io-index" 464checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476" 465dependencies = [ 466 "async-stream-impl", 467 "futures-core", 468 "pin-project-lite", 469] 470 471[[package]] 472name = "async-stream-impl" 473version = "0.3.6" 474source = "registry+https://github.com/rust-lang/crates.io-index" 475checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" 476dependencies = [ 477 "proc-macro2", 478 "quote", 479 "syn", 480] 481 482[[package]] 483name = "atrium-api" 484version = "0.25.0" 485source = "registry+https://github.com/rust-lang/crates.io-index" 486checksum = "ea3ea578c768ec91082e424a8d139517b2cb5c75149bf3cec04371a1e74f00f2" 487dependencies = [ 488 "atrium-common", 489 "atrium-xrpc", 490 "chrono", 491 "http 1.2.0", 492 "ipld-core", 493 "langtag", 494 "regex", 495 "serde", 496 "serde_bytes", 497 "serde_json", 498 "thiserror", 499 "tokio", 500 "trait-variant", 501] 502 503[[package]] 504name = "atrium-common" 505version = "0.1.0" 506source = "registry+https://github.com/rust-lang/crates.io-index" 507checksum = "168e558408847bfed69df1033a32fd051f7a037ebc90ea46e588ccb2bfbd7233" 508dependencies = [ 509 "dashmap", 510 "lru", 511 "moka", 512 "thiserror", 513 "tokio", 514 "trait-variant", 515 "web-time", 516] 517 518[[package]] 519name = "atrium-xrpc" 520version = "0.12.1" 521source = "registry+https://github.com/rust-lang/crates.io-index" 522checksum = "6b4956d94147cfbb669c68f654eb4fd6a1d00648c810cec79d04ec5425b8f378" 523dependencies = [ 524 "http 1.2.0", 525 "serde", 526 "serde_html_form", 527 "serde_json", 528 "thiserror", 529 "trait-variant", 530] 531 532[[package]] 533name = "atrium-xrpc-client" 534version = "0.5.11" 535source = "registry+https://github.com/rust-lang/crates.io-index" 536checksum = "9bab4287ccef501b3892e1325280e61ae79a96eb9ee63dceabc0ed3bea35f2eb" 537dependencies = [ 538 "atrium-xrpc", 539 "reqwest", 540] 541 542[[package]] 543name = "autocfg" 544version = "1.4.0" 545source = "registry+https://github.com/rust-lang/crates.io-index" 546checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" 547 548[[package]] 549name = "backtrace" 550version = "0.3.74" 551source = "registry+https://github.com/rust-lang/crates.io-index" 552checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" 553dependencies = [ 554 "addr2line", 555 "cfg-if", 556 "libc", 557 "miniz_oxide", 558 "object", 559 "rustc-demangle", 560 "windows-targets", 561] 562 563[[package]] 564name = "base-x" 565version = "0.2.11" 566source = "registry+https://github.com/rust-lang/crates.io-index" 567checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 568 569[[package]] 570name = "base64" 571version = "0.20.0" 572source = "registry+https://github.com/rust-lang/crates.io-index" 573checksum = "0ea22880d78093b0cbe17c89f64a7d457941e65759157ec6cb31a31d652b05e5" 574 575[[package]] 576name = "base64" 577version = "0.22.1" 578source = "registry+https://github.com/rust-lang/crates.io-index" 579checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 580 581[[package]] 582name = "basic-toml" 583version = "0.1.10" 584source = "registry+https://github.com/rust-lang/crates.io-index" 585checksum = "ba62675e8242a4c4e806d12f11d136e626e6c8361d6b829310732241652a178a" 586dependencies = [ 587 "serde", 588] 589 590[[package]] 591name = "bitflags" 592version = "2.9.0" 593source = "registry+https://github.com/rust-lang/crates.io-index" 594checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd" 595 596[[package]] 597name = "block-buffer" 598version = "0.10.4" 599source = "registry+https://github.com/rust-lang/crates.io-index" 600checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 601dependencies = [ 602 "generic-array", 603] 604 605[[package]] 606name = "brotli" 607version = "6.0.0" 608source = "registry+https://github.com/rust-lang/crates.io-index" 609checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b" 610dependencies = [ 611 "alloc-no-stdlib", 612 "alloc-stdlib", 613 "brotli-decompressor", 614] 615 616[[package]] 617name = "brotli-decompressor" 618version = "4.0.2" 619source = "registry+https://github.com/rust-lang/crates.io-index" 620checksum = "74fa05ad7d803d413eb8380983b092cbbaf9a85f151b871360e7b00cd7060b37" 621dependencies = [ 622 "alloc-no-stdlib", 623 "alloc-stdlib", 624] 625 626[[package]] 627name = "bumpalo" 628version = "3.17.0" 629source = "registry+https://github.com/rust-lang/crates.io-index" 630checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf" 631 632[[package]] 633name = "byteorder" 634version = "1.5.0" 635source = "registry+https://github.com/rust-lang/crates.io-index" 636checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 637 638[[package]] 639name = "bytes" 640version = "1.10.1" 641source = "registry+https://github.com/rust-lang/crates.io-index" 642checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" 643 644[[package]] 645name = "bytestring" 646version = "1.4.0" 647source = "registry+https://github.com/rust-lang/crates.io-index" 648checksum = "e465647ae23b2823b0753f50decb2d5a86d2bb2cac04788fafd1f80e45378e5f" 649dependencies = [ 650 "bytes", 651] 652 653[[package]] 654name = "cc" 655version = "1.2.16" 656source = "registry+https://github.com/rust-lang/crates.io-index" 657checksum = "be714c154be609ec7f5dad223a33bf1482fff90472de28f7362806e6d4832b8c" 658dependencies = [ 659 "jobserver", 660 "libc", 661 "shlex", 662] 663 664[[package]] 665name = "cfg-if" 666version = "1.0.0" 667source = "registry+https://github.com/rust-lang/crates.io-index" 668checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 669 670[[package]] 671name = "chrono" 672version = "0.4.40" 673source = "registry+https://github.com/rust-lang/crates.io-index" 674checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c" 675dependencies = [ 676 "android-tzdata", 677 "iana-time-zone", 678 "js-sys", 679 "num-traits", 680 "serde", 681 "wasm-bindgen", 682 "windows-link", 683] 684 685[[package]] 686name = "cid" 687version = "0.11.1" 688source = "registry+https://github.com/rust-lang/crates.io-index" 689checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a" 690dependencies = [ 691 "core2", 692 "multibase", 693 "multihash", 694 "serde", 695 "serde_bytes", 696 "unsigned-varint", 697] 698 699[[package]] 700name = "cipher" 701version = "0.4.4" 702source = "registry+https://github.com/rust-lang/crates.io-index" 703checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 704dependencies = [ 705 "crypto-common", 706 "inout", 707] 708 709[[package]] 710name = "colorchoice" 711version = "1.0.3" 712source = "registry+https://github.com/rust-lang/crates.io-index" 713checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990" 714 715[[package]] 716name = "concurrent-queue" 717version = "2.5.0" 718source = "registry+https://github.com/rust-lang/crates.io-index" 719checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 720dependencies = [ 721 "crossbeam-utils", 722] 723 724[[package]] 725name = "convert_case" 726version = "0.4.0" 727source = "registry+https://github.com/rust-lang/crates.io-index" 728checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 729 730[[package]] 731name = "cookie" 732version = "0.16.2" 733source = "registry+https://github.com/rust-lang/crates.io-index" 734checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb" 735dependencies = [ 736 "aes-gcm", 737 "base64 0.20.0", 738 "hkdf", 739 "hmac", 740 "percent-encoding", 741 "rand", 742 "sha2", 743 "subtle", 744 "time", 745 "version_check", 746] 747 748[[package]] 749name = "core-foundation" 750version = "0.9.4" 751source = "registry+https://github.com/rust-lang/crates.io-index" 752checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 753dependencies = [ 754 "core-foundation-sys", 755 "libc", 756] 757 758[[package]] 759name = "core-foundation-sys" 760version = "0.8.7" 761source = "registry+https://github.com/rust-lang/crates.io-index" 762checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 763 764[[package]] 765name = "core2" 766version = "0.4.0" 767source = "registry+https://github.com/rust-lang/crates.io-index" 768checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505" 769dependencies = [ 770 "memchr", 771] 772 773[[package]] 774name = "cpufeatures" 775version = "0.2.17" 776source = "registry+https://github.com/rust-lang/crates.io-index" 777checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 778dependencies = [ 779 "libc", 780] 781 782[[package]] 783name = "crc32fast" 784version = "1.4.2" 785source = "registry+https://github.com/rust-lang/crates.io-index" 786checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 787dependencies = [ 788 "cfg-if", 789] 790 791[[package]] 792name = "crossbeam-channel" 793version = "0.5.14" 794source = "registry+https://github.com/rust-lang/crates.io-index" 795checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471" 796dependencies = [ 797 "crossbeam-utils", 798] 799 800[[package]] 801name = "crossbeam-epoch" 802version = "0.9.18" 803source = "registry+https://github.com/rust-lang/crates.io-index" 804checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 805dependencies = [ 806 "crossbeam-utils", 807] 808 809[[package]] 810name = "crossbeam-utils" 811version = "0.8.21" 812source = "registry+https://github.com/rust-lang/crates.io-index" 813checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 814 815[[package]] 816name = "crypto-common" 817version = "0.1.6" 818source = "registry+https://github.com/rust-lang/crates.io-index" 819checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 820dependencies = [ 821 "generic-array", 822 "rand_core", 823 "typenum", 824] 825 826[[package]] 827name = "ctr" 828version = "0.9.2" 829source = "registry+https://github.com/rust-lang/crates.io-index" 830checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" 831dependencies = [ 832 "cipher", 833] 834 835[[package]] 836name = "dashmap" 837version = "6.1.0" 838source = "registry+https://github.com/rust-lang/crates.io-index" 839checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" 840dependencies = [ 841 "cfg-if", 842 "crossbeam-utils", 843 "hashbrown 0.14.5", 844 "lock_api", 845 "once_cell", 846 "parking_lot_core", 847] 848 849[[package]] 850name = "data-encoding" 851version = "2.8.0" 852source = "registry+https://github.com/rust-lang/crates.io-index" 853checksum = "575f75dfd25738df5b91b8e43e14d44bda14637a58fae779fd2b064f8bf3e010" 854 855[[package]] 856name = "data-encoding-macro" 857version = "0.1.17" 858source = "registry+https://github.com/rust-lang/crates.io-index" 859checksum = "9f9724adfcf41f45bf652b3995837669d73c4d49a1b5ac1ff82905ac7d9b5558" 860dependencies = [ 861 "data-encoding", 862 "data-encoding-macro-internal", 863] 864 865[[package]] 866name = "data-encoding-macro-internal" 867version = "0.1.15" 868source = "registry+https://github.com/rust-lang/crates.io-index" 869checksum = "18e4fdb82bd54a12e42fb58a800dcae6b9e13982238ce2296dc3570b92148e1f" 870dependencies = [ 871 "data-encoding", 872 "syn", 873] 874 875[[package]] 876name = "deranged" 877version = "0.3.11" 878source = "registry+https://github.com/rust-lang/crates.io-index" 879checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 880dependencies = [ 881 "powerfmt", 882] 883 884[[package]] 885name = "derive_more" 886version = "0.99.19" 887source = "registry+https://github.com/rust-lang/crates.io-index" 888checksum = "3da29a38df43d6f156149c9b43ded5e018ddff2a855cf2cfd62e8cd7d079c69f" 889dependencies = [ 890 "convert_case", 891 "proc-macro2", 892 "quote", 893 "rustc_version", 894 "syn", 895] 896 897[[package]] 898name = "derive_more" 899version = "1.0.0" 900source = "registry+https://github.com/rust-lang/crates.io-index" 901checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" 902dependencies = [ 903 "derive_more-impl", 904] 905 906[[package]] 907name = "derive_more-impl" 908version = "1.0.0" 909source = "registry+https://github.com/rust-lang/crates.io-index" 910checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" 911dependencies = [ 912 "proc-macro2", 913 "quote", 914 "syn", 915 "unicode-xid", 916] 917 918[[package]] 919name = "digest" 920version = "0.10.7" 921source = "registry+https://github.com/rust-lang/crates.io-index" 922checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 923dependencies = [ 924 "block-buffer", 925 "crypto-common", 926 "subtle", 927] 928 929[[package]] 930name = "displaydoc" 931version = "0.2.5" 932source = "registry+https://github.com/rust-lang/crates.io-index" 933checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 934dependencies = [ 935 "proc-macro2", 936 "quote", 937 "syn", 938] 939 940[[package]] 941name = "encoding_rs" 942version = "0.8.35" 943source = "registry+https://github.com/rust-lang/crates.io-index" 944checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 945dependencies = [ 946 "cfg-if", 947] 948 949[[package]] 950name = "env_filter" 951version = "0.1.3" 952source = "registry+https://github.com/rust-lang/crates.io-index" 953checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0" 954dependencies = [ 955 "log", 956 "regex", 957] 958 959[[package]] 960name = "env_logger" 961version = "0.11.6" 962source = "registry+https://github.com/rust-lang/crates.io-index" 963checksum = "dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0" 964dependencies = [ 965 "anstream", 966 "anstyle", 967 "env_filter", 968 "humantime", 969 "log", 970] 971 972[[package]] 973name = "equivalent" 974version = "1.0.2" 975source = "registry+https://github.com/rust-lang/crates.io-index" 976checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 977 978[[package]] 979name = "errno" 980version = "0.3.10" 981source = "registry+https://github.com/rust-lang/crates.io-index" 982checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d" 983dependencies = [ 984 "libc", 985 "windows-sys 0.59.0", 986] 987 988[[package]] 989name = "event-listener" 990version = "5.4.0" 991source = "registry+https://github.com/rust-lang/crates.io-index" 992checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae" 993dependencies = [ 994 "concurrent-queue", 995 "parking", 996 "pin-project-lite", 997] 998 999[[package]] 1000name = "event-listener-strategy" 1001version = "0.5.3" 1002source = "registry+https://github.com/rust-lang/crates.io-index" 1003checksum = "3c3e4e0dd3673c1139bf041f3008816d9cf2946bbfac2945c09e523b8d7b05b2" 1004dependencies = [ 1005 "event-listener", 1006 "pin-project-lite", 1007] 1008 1009[[package]] 1010name = "fastrand" 1011version = "2.3.0" 1012source = "registry+https://github.com/rust-lang/crates.io-index" 1013checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 1014 1015[[package]] 1016name = "flate2" 1017version = "1.1.0" 1018source = "registry+https://github.com/rust-lang/crates.io-index" 1019checksum = "11faaf5a5236997af9848be0bef4db95824b1d534ebc64d0f0c6cf3e67bd38dc" 1020dependencies = [ 1021 "crc32fast", 1022 "miniz_oxide", 1023] 1024 1025[[package]] 1026name = "fnv" 1027version = "1.0.7" 1028source = "registry+https://github.com/rust-lang/crates.io-index" 1029checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1030 1031[[package]] 1032name = "foldhash" 1033version = "0.1.4" 1034source = "registry+https://github.com/rust-lang/crates.io-index" 1035checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f" 1036 1037[[package]] 1038name = "foreign-types" 1039version = "0.3.2" 1040source = "registry+https://github.com/rust-lang/crates.io-index" 1041checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 1042dependencies = [ 1043 "foreign-types-shared", 1044] 1045 1046[[package]] 1047name = "foreign-types-shared" 1048version = "0.1.1" 1049source = "registry+https://github.com/rust-lang/crates.io-index" 1050checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 1051 1052[[package]] 1053name = "form_urlencoded" 1054version = "1.2.1" 1055source = "registry+https://github.com/rust-lang/crates.io-index" 1056checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1057dependencies = [ 1058 "percent-encoding", 1059] 1060 1061[[package]] 1062name = "futures-channel" 1063version = "0.3.31" 1064source = "registry+https://github.com/rust-lang/crates.io-index" 1065checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 1066dependencies = [ 1067 "futures-core", 1068] 1069 1070[[package]] 1071name = "futures-core" 1072version = "0.3.31" 1073source = "registry+https://github.com/rust-lang/crates.io-index" 1074checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 1075 1076[[package]] 1077name = "futures-macro" 1078version = "0.3.31" 1079source = "registry+https://github.com/rust-lang/crates.io-index" 1080checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 1081dependencies = [ 1082 "proc-macro2", 1083 "quote", 1084 "syn", 1085] 1086 1087[[package]] 1088name = "futures-sink" 1089version = "0.3.31" 1090source = "registry+https://github.com/rust-lang/crates.io-index" 1091checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 1092 1093[[package]] 1094name = "futures-task" 1095version = "0.3.31" 1096source = "registry+https://github.com/rust-lang/crates.io-index" 1097checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 1098 1099[[package]] 1100name = "futures-util" 1101version = "0.3.31" 1102source = "registry+https://github.com/rust-lang/crates.io-index" 1103checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 1104dependencies = [ 1105 "futures-core", 1106 "futures-macro", 1107 "futures-task", 1108 "pin-project-lite", 1109 "pin-utils", 1110 "slab", 1111] 1112 1113[[package]] 1114name = "generator" 1115version = "0.8.4" 1116source = "registry+https://github.com/rust-lang/crates.io-index" 1117checksum = "cc6bd114ceda131d3b1d665eba35788690ad37f5916457286b32ab6fd3c438dd" 1118dependencies = [ 1119 "cfg-if", 1120 "libc", 1121 "log", 1122 "rustversion", 1123 "windows", 1124] 1125 1126[[package]] 1127name = "generic-array" 1128version = "0.14.7" 1129source = "registry+https://github.com/rust-lang/crates.io-index" 1130checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1131dependencies = [ 1132 "typenum", 1133 "version_check", 1134] 1135 1136[[package]] 1137name = "getrandom" 1138version = "0.2.15" 1139source = "registry+https://github.com/rust-lang/crates.io-index" 1140checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 1141dependencies = [ 1142 "cfg-if", 1143 "libc", 1144 "wasi 0.11.0+wasi-snapshot-preview1", 1145] 1146 1147[[package]] 1148name = "getrandom" 1149version = "0.3.1" 1150source = "registry+https://github.com/rust-lang/crates.io-index" 1151checksum = "43a49c392881ce6d5c3b8cb70f98717b7c07aabbdff06687b9030dbfbe2725f8" 1152dependencies = [ 1153 "cfg-if", 1154 "libc", 1155 "wasi 0.13.3+wasi-0.2.2", 1156 "windows-targets", 1157] 1158 1159[[package]] 1160name = "ghash" 1161version = "0.5.1" 1162source = "registry+https://github.com/rust-lang/crates.io-index" 1163checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" 1164dependencies = [ 1165 "opaque-debug", 1166 "polyval", 1167] 1168 1169[[package]] 1170name = "gimli" 1171version = "0.31.1" 1172source = "registry+https://github.com/rust-lang/crates.io-index" 1173checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" 1174 1175[[package]] 1176name = "h2" 1177version = "0.3.26" 1178source = "registry+https://github.com/rust-lang/crates.io-index" 1179checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" 1180dependencies = [ 1181 "bytes", 1182 "fnv", 1183 "futures-core", 1184 "futures-sink", 1185 "futures-util", 1186 "http 0.2.12", 1187 "indexmap", 1188 "slab", 1189 "tokio", 1190 "tokio-util", 1191 "tracing", 1192] 1193 1194[[package]] 1195name = "hashbrown" 1196version = "0.14.5" 1197source = "registry+https://github.com/rust-lang/crates.io-index" 1198checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 1199 1200[[package]] 1201name = "hashbrown" 1202version = "0.15.2" 1203source = "registry+https://github.com/rust-lang/crates.io-index" 1204checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" 1205dependencies = [ 1206 "allocator-api2", 1207 "equivalent", 1208 "foldhash", 1209] 1210 1211[[package]] 1212name = "hkdf" 1213version = "0.12.4" 1214source = "registry+https://github.com/rust-lang/crates.io-index" 1215checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 1216dependencies = [ 1217 "hmac", 1218] 1219 1220[[package]] 1221name = "hmac" 1222version = "0.12.1" 1223source = "registry+https://github.com/rust-lang/crates.io-index" 1224checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1225dependencies = [ 1226 "digest", 1227] 1228 1229[[package]] 1230name = "http" 1231version = "0.2.12" 1232source = "registry+https://github.com/rust-lang/crates.io-index" 1233checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" 1234dependencies = [ 1235 "bytes", 1236 "fnv", 1237 "itoa", 1238] 1239 1240[[package]] 1241name = "http" 1242version = "1.2.0" 1243source = "registry+https://github.com/rust-lang/crates.io-index" 1244checksum = "f16ca2af56261c99fba8bac40a10251ce8188205a4c448fbb745a2e4daa76fea" 1245dependencies = [ 1246 "bytes", 1247 "fnv", 1248 "itoa", 1249] 1250 1251[[package]] 1252name = "http-body" 1253version = "1.0.1" 1254source = "registry+https://github.com/rust-lang/crates.io-index" 1255checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 1256dependencies = [ 1257 "bytes", 1258 "http 1.2.0", 1259] 1260 1261[[package]] 1262name = "http-body-util" 1263version = "0.1.2" 1264source = "registry+https://github.com/rust-lang/crates.io-index" 1265checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" 1266dependencies = [ 1267 "bytes", 1268 "futures-util", 1269 "http 1.2.0", 1270 "http-body", 1271 "pin-project-lite", 1272] 1273 1274[[package]] 1275name = "http-range" 1276version = "0.1.5" 1277source = "registry+https://github.com/rust-lang/crates.io-index" 1278checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573" 1279 1280[[package]] 1281name = "httparse" 1282version = "1.10.1" 1283source = "registry+https://github.com/rust-lang/crates.io-index" 1284checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 1285 1286[[package]] 1287name = "httpdate" 1288version = "1.0.3" 1289source = "registry+https://github.com/rust-lang/crates.io-index" 1290checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 1291 1292[[package]] 1293name = "humansize" 1294version = "2.1.3" 1295source = "registry+https://github.com/rust-lang/crates.io-index" 1296checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7" 1297dependencies = [ 1298 "libm", 1299] 1300 1301[[package]] 1302name = "humantime" 1303version = "2.1.0" 1304source = "registry+https://github.com/rust-lang/crates.io-index" 1305checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 1306 1307[[package]] 1308name = "hyper" 1309version = "1.6.0" 1310source = "registry+https://github.com/rust-lang/crates.io-index" 1311checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80" 1312dependencies = [ 1313 "bytes", 1314 "futures-channel", 1315 "futures-util", 1316 "http 1.2.0", 1317 "http-body", 1318 "httparse", 1319 "itoa", 1320 "pin-project-lite", 1321 "smallvec", 1322 "tokio", 1323 "want", 1324] 1325 1326[[package]] 1327name = "hyper-tls" 1328version = "0.6.0" 1329source = "registry+https://github.com/rust-lang/crates.io-index" 1330checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" 1331dependencies = [ 1332 "bytes", 1333 "http-body-util", 1334 "hyper", 1335 "hyper-util", 1336 "native-tls", 1337 "tokio", 1338 "tokio-native-tls", 1339 "tower-service", 1340] 1341 1342[[package]] 1343name = "hyper-util" 1344version = "0.1.10" 1345source = "registry+https://github.com/rust-lang/crates.io-index" 1346checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4" 1347dependencies = [ 1348 "bytes", 1349 "futures-channel", 1350 "futures-util", 1351 "http 1.2.0", 1352 "http-body", 1353 "hyper", 1354 "pin-project-lite", 1355 "socket2", 1356 "tokio", 1357 "tower-service", 1358 "tracing", 1359] 1360 1361[[package]] 1362name = "iana-time-zone" 1363version = "0.1.61" 1364source = "registry+https://github.com/rust-lang/crates.io-index" 1365checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" 1366dependencies = [ 1367 "android_system_properties", 1368 "core-foundation-sys", 1369 "iana-time-zone-haiku", 1370 "js-sys", 1371 "wasm-bindgen", 1372 "windows-core 0.52.0", 1373] 1374 1375[[package]] 1376name = "iana-time-zone-haiku" 1377version = "0.1.2" 1378source = "registry+https://github.com/rust-lang/crates.io-index" 1379checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1380dependencies = [ 1381 "cc", 1382] 1383 1384[[package]] 1385name = "icu_collections" 1386version = "1.5.0" 1387source = "registry+https://github.com/rust-lang/crates.io-index" 1388checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526" 1389dependencies = [ 1390 "displaydoc", 1391 "yoke", 1392 "zerofrom", 1393 "zerovec", 1394] 1395 1396[[package]] 1397name = "icu_locid" 1398version = "1.5.0" 1399source = "registry+https://github.com/rust-lang/crates.io-index" 1400checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637" 1401dependencies = [ 1402 "displaydoc", 1403 "litemap", 1404 "tinystr", 1405 "writeable", 1406 "zerovec", 1407] 1408 1409[[package]] 1410name = "icu_locid_transform" 1411version = "1.5.0" 1412source = "registry+https://github.com/rust-lang/crates.io-index" 1413checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e" 1414dependencies = [ 1415 "displaydoc", 1416 "icu_locid", 1417 "icu_locid_transform_data", 1418 "icu_provider", 1419 "tinystr", 1420 "zerovec", 1421] 1422 1423[[package]] 1424name = "icu_locid_transform_data" 1425version = "1.5.0" 1426source = "registry+https://github.com/rust-lang/crates.io-index" 1427checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e" 1428 1429[[package]] 1430name = "icu_normalizer" 1431version = "1.5.0" 1432source = "registry+https://github.com/rust-lang/crates.io-index" 1433checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f" 1434dependencies = [ 1435 "displaydoc", 1436 "icu_collections", 1437 "icu_normalizer_data", 1438 "icu_properties", 1439 "icu_provider", 1440 "smallvec", 1441 "utf16_iter", 1442 "utf8_iter", 1443 "write16", 1444 "zerovec", 1445] 1446 1447[[package]] 1448name = "icu_normalizer_data" 1449version = "1.5.0" 1450source = "registry+https://github.com/rust-lang/crates.io-index" 1451checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516" 1452 1453[[package]] 1454name = "icu_properties" 1455version = "1.5.1" 1456source = "registry+https://github.com/rust-lang/crates.io-index" 1457checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5" 1458dependencies = [ 1459 "displaydoc", 1460 "icu_collections", 1461 "icu_locid_transform", 1462 "icu_properties_data", 1463 "icu_provider", 1464 "tinystr", 1465 "zerovec", 1466] 1467 1468[[package]] 1469name = "icu_properties_data" 1470version = "1.5.0" 1471source = "registry+https://github.com/rust-lang/crates.io-index" 1472checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569" 1473 1474[[package]] 1475name = "icu_provider" 1476version = "1.5.0" 1477source = "registry+https://github.com/rust-lang/crates.io-index" 1478checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9" 1479dependencies = [ 1480 "displaydoc", 1481 "icu_locid", 1482 "icu_provider_macros", 1483 "stable_deref_trait", 1484 "tinystr", 1485 "writeable", 1486 "yoke", 1487 "zerofrom", 1488 "zerovec", 1489] 1490 1491[[package]] 1492name = "icu_provider_macros" 1493version = "1.5.0" 1494source = "registry+https://github.com/rust-lang/crates.io-index" 1495checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" 1496dependencies = [ 1497 "proc-macro2", 1498 "quote", 1499 "syn", 1500] 1501 1502[[package]] 1503name = "idna" 1504version = "1.0.3" 1505source = "registry+https://github.com/rust-lang/crates.io-index" 1506checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" 1507dependencies = [ 1508 "idna_adapter", 1509 "smallvec", 1510 "utf8_iter", 1511] 1512 1513[[package]] 1514name = "idna_adapter" 1515version = "1.2.0" 1516source = "registry+https://github.com/rust-lang/crates.io-index" 1517checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71" 1518dependencies = [ 1519 "icu_normalizer", 1520 "icu_properties", 1521] 1522 1523[[package]] 1524name = "impl-more" 1525version = "0.1.9" 1526source = "registry+https://github.com/rust-lang/crates.io-index" 1527checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2" 1528 1529[[package]] 1530name = "indexmap" 1531version = "2.7.1" 1532source = "registry+https://github.com/rust-lang/crates.io-index" 1533checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652" 1534dependencies = [ 1535 "equivalent", 1536 "hashbrown 0.15.2", 1537] 1538 1539[[package]] 1540name = "inout" 1541version = "0.1.4" 1542source = "registry+https://github.com/rust-lang/crates.io-index" 1543checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" 1544dependencies = [ 1545 "generic-array", 1546] 1547 1548[[package]] 1549name = "ipld-core" 1550version = "0.4.2" 1551source = "registry+https://github.com/rust-lang/crates.io-index" 1552checksum = "104718b1cc124d92a6d01ca9c9258a7df311405debb3408c445a36452f9bf8db" 1553dependencies = [ 1554 "cid", 1555 "serde", 1556 "serde_bytes", 1557] 1558 1559[[package]] 1560name = "ipnet" 1561version = "2.11.0" 1562source = "registry+https://github.com/rust-lang/crates.io-index" 1563checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" 1564 1565[[package]] 1566name = "is_terminal_polyfill" 1567version = "1.70.1" 1568source = "registry+https://github.com/rust-lang/crates.io-index" 1569checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 1570 1571[[package]] 1572name = "itoa" 1573version = "1.0.15" 1574source = "registry+https://github.com/rust-lang/crates.io-index" 1575checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 1576 1577[[package]] 1578name = "jobserver" 1579version = "0.1.32" 1580source = "registry+https://github.com/rust-lang/crates.io-index" 1581checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" 1582dependencies = [ 1583 "libc", 1584] 1585 1586[[package]] 1587name = "js-sys" 1588version = "0.3.77" 1589source = "registry+https://github.com/rust-lang/crates.io-index" 1590checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" 1591dependencies = [ 1592 "once_cell", 1593 "wasm-bindgen", 1594] 1595 1596[[package]] 1597name = "langtag" 1598version = "0.3.4" 1599source = "registry+https://github.com/rust-lang/crates.io-index" 1600checksum = "ed60c85f254d6ae8450cec15eedd921efbc4d1bdf6fcf6202b9a58b403f6f805" 1601dependencies = [ 1602 "serde", 1603] 1604 1605[[package]] 1606name = "language-tags" 1607version = "0.3.2" 1608source = "registry+https://github.com/rust-lang/crates.io-index" 1609checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388" 1610 1611[[package]] 1612name = "lazy_static" 1613version = "1.5.0" 1614source = "registry+https://github.com/rust-lang/crates.io-index" 1615checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 1616 1617[[package]] 1618name = "libc" 1619version = "0.2.170" 1620source = "registry+https://github.com/rust-lang/crates.io-index" 1621checksum = "875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828" 1622 1623[[package]] 1624name = "libm" 1625version = "0.2.11" 1626source = "registry+https://github.com/rust-lang/crates.io-index" 1627checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa" 1628 1629[[package]] 1630name = "linux-raw-sys" 1631version = "0.9.2" 1632source = "registry+https://github.com/rust-lang/crates.io-index" 1633checksum = "6db9c683daf087dc577b7506e9695b3d556a9f3849903fa28186283afd6809e9" 1634 1635[[package]] 1636name = "litemap" 1637version = "0.7.5" 1638source = "registry+https://github.com/rust-lang/crates.io-index" 1639checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856" 1640 1641[[package]] 1642name = "local-channel" 1643version = "0.1.5" 1644source = "registry+https://github.com/rust-lang/crates.io-index" 1645checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8" 1646dependencies = [ 1647 "futures-core", 1648 "futures-sink", 1649 "local-waker", 1650] 1651 1652[[package]] 1653name = "local-waker" 1654version = "0.1.4" 1655source = "registry+https://github.com/rust-lang/crates.io-index" 1656checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487" 1657 1658[[package]] 1659name = "lock_api" 1660version = "0.4.12" 1661source = "registry+https://github.com/rust-lang/crates.io-index" 1662checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 1663dependencies = [ 1664 "autocfg", 1665 "scopeguard", 1666] 1667 1668[[package]] 1669name = "log" 1670version = "0.4.26" 1671source = "registry+https://github.com/rust-lang/crates.io-index" 1672checksum = "30bde2b3dc3671ae49d8e2e9f044c7c005836e7a023ee57cffa25ab82764bb9e" 1673 1674[[package]] 1675name = "loom" 1676version = "0.7.2" 1677source = "registry+https://github.com/rust-lang/crates.io-index" 1678checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" 1679dependencies = [ 1680 "cfg-if", 1681 "generator", 1682 "scoped-tls", 1683 "tracing", 1684 "tracing-subscriber", 1685] 1686 1687[[package]] 1688name = "lru" 1689version = "0.12.5" 1690source = "registry+https://github.com/rust-lang/crates.io-index" 1691checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" 1692dependencies = [ 1693 "hashbrown 0.15.2", 1694] 1695 1696[[package]] 1697name = "matchers" 1698version = "0.1.0" 1699source = "registry+https://github.com/rust-lang/crates.io-index" 1700checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 1701dependencies = [ 1702 "regex-automata 0.1.10", 1703] 1704 1705[[package]] 1706name = "memchr" 1707version = "2.7.4" 1708source = "registry+https://github.com/rust-lang/crates.io-index" 1709checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 1710 1711[[package]] 1712name = "mime" 1713version = "0.3.17" 1714source = "registry+https://github.com/rust-lang/crates.io-index" 1715checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1716 1717[[package]] 1718name = "mime_guess" 1719version = "2.0.5" 1720source = "registry+https://github.com/rust-lang/crates.io-index" 1721checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" 1722dependencies = [ 1723 "mime", 1724 "unicase", 1725] 1726 1727[[package]] 1728name = "minimal-lexical" 1729version = "0.2.1" 1730source = "registry+https://github.com/rust-lang/crates.io-index" 1731checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 1732 1733[[package]] 1734name = "miniz_oxide" 1735version = "0.8.5" 1736source = "registry+https://github.com/rust-lang/crates.io-index" 1737checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5" 1738dependencies = [ 1739 "adler2", 1740] 1741 1742[[package]] 1743name = "mio" 1744version = "1.0.3" 1745source = "registry+https://github.com/rust-lang/crates.io-index" 1746checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd" 1747dependencies = [ 1748 "libc", 1749 "log", 1750 "wasi 0.11.0+wasi-snapshot-preview1", 1751 "windows-sys 0.52.0", 1752] 1753 1754[[package]] 1755name = "moka" 1756version = "0.12.10" 1757source = "registry+https://github.com/rust-lang/crates.io-index" 1758checksum = "a9321642ca94a4282428e6ea4af8cc2ca4eac48ac7a6a4ea8f33f76d0ce70926" 1759dependencies = [ 1760 "async-lock", 1761 "crossbeam-channel", 1762 "crossbeam-epoch", 1763 "crossbeam-utils", 1764 "event-listener", 1765 "futures-util", 1766 "loom", 1767 "parking_lot", 1768 "portable-atomic", 1769 "rustc_version", 1770 "smallvec", 1771 "tagptr", 1772 "thiserror", 1773 "uuid", 1774] 1775 1776[[package]] 1777name = "multibase" 1778version = "0.9.1" 1779source = "registry+https://github.com/rust-lang/crates.io-index" 1780checksum = "9b3539ec3c1f04ac9748a260728e855f261b4977f5c3406612c884564f329404" 1781dependencies = [ 1782 "base-x", 1783 "data-encoding", 1784 "data-encoding-macro", 1785] 1786 1787[[package]] 1788name = "multihash" 1789version = "0.19.3" 1790source = "registry+https://github.com/rust-lang/crates.io-index" 1791checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d" 1792dependencies = [ 1793 "core2", 1794 "serde", 1795 "unsigned-varint", 1796] 1797 1798[[package]] 1799name = "native-tls" 1800version = "0.2.14" 1801source = "registry+https://github.com/rust-lang/crates.io-index" 1802checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e" 1803dependencies = [ 1804 "libc", 1805 "log", 1806 "openssl", 1807 "openssl-probe", 1808 "openssl-sys", 1809 "schannel", 1810 "security-framework", 1811 "security-framework-sys", 1812 "tempfile", 1813] 1814 1815[[package]] 1816name = "nom" 1817version = "7.1.3" 1818source = "registry+https://github.com/rust-lang/crates.io-index" 1819checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 1820dependencies = [ 1821 "memchr", 1822 "minimal-lexical", 1823] 1824 1825[[package]] 1826name = "nu-ansi-term" 1827version = "0.46.0" 1828source = "registry+https://github.com/rust-lang/crates.io-index" 1829checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 1830dependencies = [ 1831 "overload", 1832 "winapi", 1833] 1834 1835[[package]] 1836name = "num-conv" 1837version = "0.1.0" 1838source = "registry+https://github.com/rust-lang/crates.io-index" 1839checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 1840 1841[[package]] 1842name = "num-traits" 1843version = "0.2.19" 1844source = "registry+https://github.com/rust-lang/crates.io-index" 1845checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 1846dependencies = [ 1847 "autocfg", 1848] 1849 1850[[package]] 1851name = "object" 1852version = "0.36.7" 1853source = "registry+https://github.com/rust-lang/crates.io-index" 1854checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" 1855dependencies = [ 1856 "memchr", 1857] 1858 1859[[package]] 1860name = "once_cell" 1861version = "1.20.3" 1862source = "registry+https://github.com/rust-lang/crates.io-index" 1863checksum = "945462a4b81e43c4e3ba96bd7b49d834c6f61198356aa858733bc4acf3cbe62e" 1864 1865[[package]] 1866name = "opaque-debug" 1867version = "0.3.1" 1868source = "registry+https://github.com/rust-lang/crates.io-index" 1869checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" 1870 1871[[package]] 1872name = "openssl" 1873version = "0.10.71" 1874source = "registry+https://github.com/rust-lang/crates.io-index" 1875checksum = "5e14130c6a98cd258fdcb0fb6d744152343ff729cbfcb28c656a9d12b999fbcd" 1876dependencies = [ 1877 "bitflags", 1878 "cfg-if", 1879 "foreign-types", 1880 "libc", 1881 "once_cell", 1882 "openssl-macros", 1883 "openssl-sys", 1884] 1885 1886[[package]] 1887name = "openssl-macros" 1888version = "0.1.1" 1889source = "registry+https://github.com/rust-lang/crates.io-index" 1890checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 1891dependencies = [ 1892 "proc-macro2", 1893 "quote", 1894 "syn", 1895] 1896 1897[[package]] 1898name = "openssl-probe" 1899version = "0.1.6" 1900source = "registry+https://github.com/rust-lang/crates.io-index" 1901checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" 1902 1903[[package]] 1904name = "openssl-sys" 1905version = "0.9.106" 1906source = "registry+https://github.com/rust-lang/crates.io-index" 1907checksum = "8bb61ea9811cc39e3c2069f40b8b8e2e70d8569b361f879786cc7ed48b777cdd" 1908dependencies = [ 1909 "cc", 1910 "libc", 1911 "pkg-config", 1912 "vcpkg", 1913] 1914 1915[[package]] 1916name = "overload" 1917version = "0.1.1" 1918source = "registry+https://github.com/rust-lang/crates.io-index" 1919checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 1920 1921[[package]] 1922name = "parking" 1923version = "2.2.1" 1924source = "registry+https://github.com/rust-lang/crates.io-index" 1925checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 1926 1927[[package]] 1928name = "parking_lot" 1929version = "0.12.3" 1930source = "registry+https://github.com/rust-lang/crates.io-index" 1931checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 1932dependencies = [ 1933 "lock_api", 1934 "parking_lot_core", 1935] 1936 1937[[package]] 1938name = "parking_lot_core" 1939version = "0.9.10" 1940source = "registry+https://github.com/rust-lang/crates.io-index" 1941checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 1942dependencies = [ 1943 "cfg-if", 1944 "libc", 1945 "redox_syscall", 1946 "smallvec", 1947 "windows-targets", 1948] 1949 1950[[package]] 1951name = "paste" 1952version = "1.0.15" 1953source = "registry+https://github.com/rust-lang/crates.io-index" 1954checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 1955 1956[[package]] 1957name = "percent-encoding" 1958version = "2.3.1" 1959source = "registry+https://github.com/rust-lang/crates.io-index" 1960checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 1961 1962[[package]] 1963name = "pin-project-lite" 1964version = "0.2.16" 1965source = "registry+https://github.com/rust-lang/crates.io-index" 1966checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 1967 1968[[package]] 1969name = "pin-utils" 1970version = "0.1.0" 1971source = "registry+https://github.com/rust-lang/crates.io-index" 1972checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1973 1974[[package]] 1975name = "pkg-config" 1976version = "0.3.32" 1977source = "registry+https://github.com/rust-lang/crates.io-index" 1978checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 1979 1980[[package]] 1981name = "polyval" 1982version = "0.6.2" 1983source = "registry+https://github.com/rust-lang/crates.io-index" 1984checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" 1985dependencies = [ 1986 "cfg-if", 1987 "cpufeatures", 1988 "opaque-debug", 1989 "universal-hash", 1990] 1991 1992[[package]] 1993name = "portable-atomic" 1994version = "1.11.0" 1995source = "registry+https://github.com/rust-lang/crates.io-index" 1996checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e" 1997 1998[[package]] 1999name = "powerfmt" 2000version = "0.2.0" 2001source = "registry+https://github.com/rust-lang/crates.io-index" 2002checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 2003 2004[[package]] 2005name = "ppv-lite86" 2006version = "0.2.20" 2007source = "registry+https://github.com/rust-lang/crates.io-index" 2008checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" 2009dependencies = [ 2010 "zerocopy", 2011] 2012 2013[[package]] 2014name = "proc-macro2" 2015version = "1.0.94" 2016source = "registry+https://github.com/rust-lang/crates.io-index" 2017checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84" 2018dependencies = [ 2019 "unicode-ident", 2020] 2021 2022[[package]] 2023name = "quote" 2024version = "1.0.39" 2025source = "registry+https://github.com/rust-lang/crates.io-index" 2026checksum = "c1f1914ce909e1658d9907913b4b91947430c7d9be598b15a1912935b8c04801" 2027dependencies = [ 2028 "proc-macro2", 2029] 2030 2031[[package]] 2032name = "rand" 2033version = "0.8.5" 2034source = "registry+https://github.com/rust-lang/crates.io-index" 2035checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2036dependencies = [ 2037 "libc", 2038 "rand_chacha", 2039 "rand_core", 2040] 2041 2042[[package]] 2043name = "rand_chacha" 2044version = "0.3.1" 2045source = "registry+https://github.com/rust-lang/crates.io-index" 2046checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2047dependencies = [ 2048 "ppv-lite86", 2049 "rand_core", 2050] 2051 2052[[package]] 2053name = "rand_core" 2054version = "0.6.4" 2055source = "registry+https://github.com/rust-lang/crates.io-index" 2056checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2057dependencies = [ 2058 "getrandom 0.2.15", 2059] 2060 2061[[package]] 2062name = "redox_syscall" 2063version = "0.5.10" 2064source = "registry+https://github.com/rust-lang/crates.io-index" 2065checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1" 2066dependencies = [ 2067 "bitflags", 2068] 2069 2070[[package]] 2071name = "regex" 2072version = "1.11.1" 2073source = "registry+https://github.com/rust-lang/crates.io-index" 2074checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" 2075dependencies = [ 2076 "aho-corasick", 2077 "memchr", 2078 "regex-automata 0.4.9", 2079 "regex-syntax 0.8.5", 2080] 2081 2082[[package]] 2083name = "regex-automata" 2084version = "0.1.10" 2085source = "registry+https://github.com/rust-lang/crates.io-index" 2086checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 2087dependencies = [ 2088 "regex-syntax 0.6.29", 2089] 2090 2091[[package]] 2092name = "regex-automata" 2093version = "0.4.9" 2094source = "registry+https://github.com/rust-lang/crates.io-index" 2095checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" 2096dependencies = [ 2097 "aho-corasick", 2098 "memchr", 2099 "regex-syntax 0.8.5", 2100] 2101 2102[[package]] 2103name = "regex-lite" 2104version = "0.1.6" 2105source = "registry+https://github.com/rust-lang/crates.io-index" 2106checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a" 2107 2108[[package]] 2109name = "regex-syntax" 2110version = "0.6.29" 2111source = "registry+https://github.com/rust-lang/crates.io-index" 2112checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 2113 2114[[package]] 2115name = "regex-syntax" 2116version = "0.8.5" 2117source = "registry+https://github.com/rust-lang/crates.io-index" 2118checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" 2119 2120[[package]] 2121name = "reqwest" 2122version = "0.12.12" 2123source = "registry+https://github.com/rust-lang/crates.io-index" 2124checksum = "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da" 2125dependencies = [ 2126 "async-compression", 2127 "base64 0.22.1", 2128 "bytes", 2129 "futures-core", 2130 "futures-util", 2131 "http 1.2.0", 2132 "http-body", 2133 "http-body-util", 2134 "hyper", 2135 "hyper-tls", 2136 "hyper-util", 2137 "ipnet", 2138 "js-sys", 2139 "log", 2140 "mime", 2141 "native-tls", 2142 "once_cell", 2143 "percent-encoding", 2144 "pin-project-lite", 2145 "rustls-pemfile", 2146 "serde", 2147 "serde_json", 2148 "serde_urlencoded", 2149 "sync_wrapper", 2150 "tokio", 2151 "tokio-native-tls", 2152 "tokio-util", 2153 "tower", 2154 "tower-service", 2155 "url", 2156 "wasm-bindgen", 2157 "wasm-bindgen-futures", 2158 "web-sys", 2159 "windows-registry", 2160] 2161 2162[[package]] 2163name = "rustc-demangle" 2164version = "0.1.24" 2165source = "registry+https://github.com/rust-lang/crates.io-index" 2166checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 2167 2168[[package]] 2169name = "rustc_version" 2170version = "0.4.1" 2171source = "registry+https://github.com/rust-lang/crates.io-index" 2172checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 2173dependencies = [ 2174 "semver", 2175] 2176 2177[[package]] 2178name = "rustix" 2179version = "1.0.1" 2180source = "registry+https://github.com/rust-lang/crates.io-index" 2181checksum = "dade4812df5c384711475be5fcd8c162555352945401aed22a35bffeab61f657" 2182dependencies = [ 2183 "bitflags", 2184 "errno", 2185 "libc", 2186 "linux-raw-sys", 2187 "windows-sys 0.59.0", 2188] 2189 2190[[package]] 2191name = "rustls-pemfile" 2192version = "2.2.0" 2193source = "registry+https://github.com/rust-lang/crates.io-index" 2194checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" 2195dependencies = [ 2196 "rustls-pki-types", 2197] 2198 2199[[package]] 2200name = "rustls-pki-types" 2201version = "1.11.0" 2202source = "registry+https://github.com/rust-lang/crates.io-index" 2203checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c" 2204 2205[[package]] 2206name = "rustversion" 2207version = "1.0.20" 2208source = "registry+https://github.com/rust-lang/crates.io-index" 2209checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2" 2210 2211[[package]] 2212name = "rusty_statusphere_example_app" 2213version = "0.1.0" 2214dependencies = [ 2215 "actix-files", 2216 "actix-session", 2217 "actix-web", 2218 "anyhow", 2219 "askama", 2220 "async-stream", 2221 "atrium-api", 2222 "atrium-xrpc-client", 2223 "env_logger", 2224 "log", 2225 "serde", 2226 "serde_json", 2227] 2228 2229[[package]] 2230name = "ryu" 2231version = "1.0.20" 2232source = "registry+https://github.com/rust-lang/crates.io-index" 2233checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 2234 2235[[package]] 2236name = "schannel" 2237version = "0.1.27" 2238source = "registry+https://github.com/rust-lang/crates.io-index" 2239checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" 2240dependencies = [ 2241 "windows-sys 0.59.0", 2242] 2243 2244[[package]] 2245name = "scoped-tls" 2246version = "1.0.1" 2247source = "registry+https://github.com/rust-lang/crates.io-index" 2248checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 2249 2250[[package]] 2251name = "scopeguard" 2252version = "1.2.0" 2253source = "registry+https://github.com/rust-lang/crates.io-index" 2254checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2255 2256[[package]] 2257name = "security-framework" 2258version = "2.11.1" 2259source = "registry+https://github.com/rust-lang/crates.io-index" 2260checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" 2261dependencies = [ 2262 "bitflags", 2263 "core-foundation", 2264 "core-foundation-sys", 2265 "libc", 2266 "security-framework-sys", 2267] 2268 2269[[package]] 2270name = "security-framework-sys" 2271version = "2.14.0" 2272source = "registry+https://github.com/rust-lang/crates.io-index" 2273checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" 2274dependencies = [ 2275 "core-foundation-sys", 2276 "libc", 2277] 2278 2279[[package]] 2280name = "semver" 2281version = "1.0.26" 2282source = "registry+https://github.com/rust-lang/crates.io-index" 2283checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0" 2284 2285[[package]] 2286name = "serde" 2287version = "1.0.218" 2288source = "registry+https://github.com/rust-lang/crates.io-index" 2289checksum = "e8dfc9d19bdbf6d17e22319da49161d5d0108e4188e8b680aef6299eed22df60" 2290dependencies = [ 2291 "serde_derive", 2292] 2293 2294[[package]] 2295name = "serde_bytes" 2296version = "0.11.16" 2297source = "registry+https://github.com/rust-lang/crates.io-index" 2298checksum = "364fec0df39c49a083c9a8a18a23a6bcfd9af130fe9fe321d18520a0d113e09e" 2299dependencies = [ 2300 "serde", 2301] 2302 2303[[package]] 2304name = "serde_derive" 2305version = "1.0.218" 2306source = "registry+https://github.com/rust-lang/crates.io-index" 2307checksum = "f09503e191f4e797cb8aac08e9a4a4695c5edf6a2e70e376d961ddd5c969f82b" 2308dependencies = [ 2309 "proc-macro2", 2310 "quote", 2311 "syn", 2312] 2313 2314[[package]] 2315name = "serde_html_form" 2316version = "0.2.7" 2317source = "registry+https://github.com/rust-lang/crates.io-index" 2318checksum = "9d2de91cf02bbc07cde38891769ccd5d4f073d22a40683aa4bc7a95781aaa2c4" 2319dependencies = [ 2320 "form_urlencoded", 2321 "indexmap", 2322 "itoa", 2323 "ryu", 2324 "serde", 2325] 2326 2327[[package]] 2328name = "serde_json" 2329version = "1.0.140" 2330source = "registry+https://github.com/rust-lang/crates.io-index" 2331checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" 2332dependencies = [ 2333 "itoa", 2334 "memchr", 2335 "ryu", 2336 "serde", 2337] 2338 2339[[package]] 2340name = "serde_urlencoded" 2341version = "0.7.1" 2342source = "registry+https://github.com/rust-lang/crates.io-index" 2343checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2344dependencies = [ 2345 "form_urlencoded", 2346 "itoa", 2347 "ryu", 2348 "serde", 2349] 2350 2351[[package]] 2352name = "sha1" 2353version = "0.10.6" 2354source = "registry+https://github.com/rust-lang/crates.io-index" 2355checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 2356dependencies = [ 2357 "cfg-if", 2358 "cpufeatures", 2359 "digest", 2360] 2361 2362[[package]] 2363name = "sha2" 2364version = "0.10.8" 2365source = "registry+https://github.com/rust-lang/crates.io-index" 2366checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 2367dependencies = [ 2368 "cfg-if", 2369 "cpufeatures", 2370 "digest", 2371] 2372 2373[[package]] 2374name = "sharded-slab" 2375version = "0.1.7" 2376source = "registry+https://github.com/rust-lang/crates.io-index" 2377checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 2378dependencies = [ 2379 "lazy_static", 2380] 2381 2382[[package]] 2383name = "shlex" 2384version = "1.3.0" 2385source = "registry+https://github.com/rust-lang/crates.io-index" 2386checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 2387 2388[[package]] 2389name = "signal-hook-registry" 2390version = "1.4.2" 2391source = "registry+https://github.com/rust-lang/crates.io-index" 2392checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" 2393dependencies = [ 2394 "libc", 2395] 2396 2397[[package]] 2398name = "slab" 2399version = "0.4.9" 2400source = "registry+https://github.com/rust-lang/crates.io-index" 2401checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 2402dependencies = [ 2403 "autocfg", 2404] 2405 2406[[package]] 2407name = "smallvec" 2408version = "1.14.0" 2409source = "registry+https://github.com/rust-lang/crates.io-index" 2410checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd" 2411 2412[[package]] 2413name = "socket2" 2414version = "0.5.8" 2415source = "registry+https://github.com/rust-lang/crates.io-index" 2416checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8" 2417dependencies = [ 2418 "libc", 2419 "windows-sys 0.52.0", 2420] 2421 2422[[package]] 2423name = "stable_deref_trait" 2424version = "1.2.0" 2425source = "registry+https://github.com/rust-lang/crates.io-index" 2426checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 2427 2428[[package]] 2429name = "subtle" 2430version = "2.6.1" 2431source = "registry+https://github.com/rust-lang/crates.io-index" 2432checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 2433 2434[[package]] 2435name = "syn" 2436version = "2.0.99" 2437source = "registry+https://github.com/rust-lang/crates.io-index" 2438checksum = "e02e925281e18ffd9d640e234264753c43edc62d64b2d4cf898f1bc5e75f3fc2" 2439dependencies = [ 2440 "proc-macro2", 2441 "quote", 2442 "unicode-ident", 2443] 2444 2445[[package]] 2446name = "sync_wrapper" 2447version = "1.0.2" 2448source = "registry+https://github.com/rust-lang/crates.io-index" 2449checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 2450dependencies = [ 2451 "futures-core", 2452] 2453 2454[[package]] 2455name = "synstructure" 2456version = "0.13.1" 2457source = "registry+https://github.com/rust-lang/crates.io-index" 2458checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" 2459dependencies = [ 2460 "proc-macro2", 2461 "quote", 2462 "syn", 2463] 2464 2465[[package]] 2466name = "tagptr" 2467version = "0.2.0" 2468source = "registry+https://github.com/rust-lang/crates.io-index" 2469checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417" 2470 2471[[package]] 2472name = "tempfile" 2473version = "3.18.0" 2474source = "registry+https://github.com/rust-lang/crates.io-index" 2475checksum = "2c317e0a526ee6120d8dabad239c8dadca62b24b6f168914bbbc8e2fb1f0e567" 2476dependencies = [ 2477 "cfg-if", 2478 "fastrand", 2479 "getrandom 0.3.1", 2480 "once_cell", 2481 "rustix", 2482 "windows-sys 0.59.0", 2483] 2484 2485[[package]] 2486name = "thiserror" 2487version = "1.0.69" 2488source = "registry+https://github.com/rust-lang/crates.io-index" 2489checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 2490dependencies = [ 2491 "thiserror-impl", 2492] 2493 2494[[package]] 2495name = "thiserror-impl" 2496version = "1.0.69" 2497source = "registry+https://github.com/rust-lang/crates.io-index" 2498checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 2499dependencies = [ 2500 "proc-macro2", 2501 "quote", 2502 "syn", 2503] 2504 2505[[package]] 2506name = "thread_local" 2507version = "1.1.8" 2508source = "registry+https://github.com/rust-lang/crates.io-index" 2509checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" 2510dependencies = [ 2511 "cfg-if", 2512 "once_cell", 2513] 2514 2515[[package]] 2516name = "time" 2517version = "0.3.39" 2518source = "registry+https://github.com/rust-lang/crates.io-index" 2519checksum = "dad298b01a40a23aac4580b67e3dbedb7cc8402f3592d7f49469de2ea4aecdd8" 2520dependencies = [ 2521 "deranged", 2522 "itoa", 2523 "num-conv", 2524 "powerfmt", 2525 "serde", 2526 "time-core", 2527 "time-macros", 2528] 2529 2530[[package]] 2531name = "time-core" 2532version = "0.1.3" 2533source = "registry+https://github.com/rust-lang/crates.io-index" 2534checksum = "765c97a5b985b7c11d7bc27fa927dc4fe6af3a6dfb021d28deb60d3bf51e76ef" 2535 2536[[package]] 2537name = "time-macros" 2538version = "0.2.20" 2539source = "registry+https://github.com/rust-lang/crates.io-index" 2540checksum = "e8093bc3e81c3bc5f7879de09619d06c9a5a5e45ca44dfeeb7225bae38005c5c" 2541dependencies = [ 2542 "num-conv", 2543 "time-core", 2544] 2545 2546[[package]] 2547name = "tinystr" 2548version = "0.7.6" 2549source = "registry+https://github.com/rust-lang/crates.io-index" 2550checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" 2551dependencies = [ 2552 "displaydoc", 2553 "zerovec", 2554] 2555 2556[[package]] 2557name = "tokio" 2558version = "1.44.0" 2559source = "registry+https://github.com/rust-lang/crates.io-index" 2560checksum = "9975ea0f48b5aa3972bf2d888c238182458437cc2a19374b81b25cdf1023fb3a" 2561dependencies = [ 2562 "backtrace", 2563 "bytes", 2564 "libc", 2565 "mio", 2566 "parking_lot", 2567 "pin-project-lite", 2568 "signal-hook-registry", 2569 "socket2", 2570 "windows-sys 0.52.0", 2571] 2572 2573[[package]] 2574name = "tokio-native-tls" 2575version = "0.3.1" 2576source = "registry+https://github.com/rust-lang/crates.io-index" 2577checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 2578dependencies = [ 2579 "native-tls", 2580 "tokio", 2581] 2582 2583[[package]] 2584name = "tokio-util" 2585version = "0.7.13" 2586source = "registry+https://github.com/rust-lang/crates.io-index" 2587checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078" 2588dependencies = [ 2589 "bytes", 2590 "futures-core", 2591 "futures-sink", 2592 "pin-project-lite", 2593 "tokio", 2594] 2595 2596[[package]] 2597name = "tower" 2598version = "0.5.2" 2599source = "registry+https://github.com/rust-lang/crates.io-index" 2600checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" 2601dependencies = [ 2602 "futures-core", 2603 "futures-util", 2604 "pin-project-lite", 2605 "sync_wrapper", 2606 "tokio", 2607 "tower-layer", 2608 "tower-service", 2609] 2610 2611[[package]] 2612name = "tower-layer" 2613version = "0.3.3" 2614source = "registry+https://github.com/rust-lang/crates.io-index" 2615checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 2616 2617[[package]] 2618name = "tower-service" 2619version = "0.3.3" 2620source = "registry+https://github.com/rust-lang/crates.io-index" 2621checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 2622 2623[[package]] 2624name = "tracing" 2625version = "0.1.41" 2626source = "registry+https://github.com/rust-lang/crates.io-index" 2627checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 2628dependencies = [ 2629 "log", 2630 "pin-project-lite", 2631 "tracing-core", 2632] 2633 2634[[package]] 2635name = "tracing-core" 2636version = "0.1.33" 2637source = "registry+https://github.com/rust-lang/crates.io-index" 2638checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" 2639dependencies = [ 2640 "once_cell", 2641 "valuable", 2642] 2643 2644[[package]] 2645name = "tracing-log" 2646version = "0.2.0" 2647source = "registry+https://github.com/rust-lang/crates.io-index" 2648checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 2649dependencies = [ 2650 "log", 2651 "once_cell", 2652 "tracing-core", 2653] 2654 2655[[package]] 2656name = "tracing-subscriber" 2657version = "0.3.19" 2658source = "registry+https://github.com/rust-lang/crates.io-index" 2659checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008" 2660dependencies = [ 2661 "matchers", 2662 "nu-ansi-term", 2663 "once_cell", 2664 "regex", 2665 "sharded-slab", 2666 "smallvec", 2667 "thread_local", 2668 "tracing", 2669 "tracing-core", 2670 "tracing-log", 2671] 2672 2673[[package]] 2674name = "trait-variant" 2675version = "0.1.2" 2676source = "registry+https://github.com/rust-lang/crates.io-index" 2677checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7" 2678dependencies = [ 2679 "proc-macro2", 2680 "quote", 2681 "syn", 2682] 2683 2684[[package]] 2685name = "try-lock" 2686version = "0.2.5" 2687source = "registry+https://github.com/rust-lang/crates.io-index" 2688checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 2689 2690[[package]] 2691name = "typenum" 2692version = "1.18.0" 2693source = "registry+https://github.com/rust-lang/crates.io-index" 2694checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f" 2695 2696[[package]] 2697name = "unicase" 2698version = "2.8.1" 2699source = "registry+https://github.com/rust-lang/crates.io-index" 2700checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" 2701 2702[[package]] 2703name = "unicode-ident" 2704version = "1.0.18" 2705source = "registry+https://github.com/rust-lang/crates.io-index" 2706checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" 2707 2708[[package]] 2709name = "unicode-xid" 2710version = "0.2.6" 2711source = "registry+https://github.com/rust-lang/crates.io-index" 2712checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 2713 2714[[package]] 2715name = "universal-hash" 2716version = "0.5.1" 2717source = "registry+https://github.com/rust-lang/crates.io-index" 2718checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" 2719dependencies = [ 2720 "crypto-common", 2721 "subtle", 2722] 2723 2724[[package]] 2725name = "unsigned-varint" 2726version = "0.8.0" 2727source = "registry+https://github.com/rust-lang/crates.io-index" 2728checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06" 2729 2730[[package]] 2731name = "url" 2732version = "2.5.4" 2733source = "registry+https://github.com/rust-lang/crates.io-index" 2734checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" 2735dependencies = [ 2736 "form_urlencoded", 2737 "idna", 2738 "percent-encoding", 2739] 2740 2741[[package]] 2742name = "utf16_iter" 2743version = "1.0.5" 2744source = "registry+https://github.com/rust-lang/crates.io-index" 2745checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" 2746 2747[[package]] 2748name = "utf8_iter" 2749version = "1.0.4" 2750source = "registry+https://github.com/rust-lang/crates.io-index" 2751checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 2752 2753[[package]] 2754name = "utf8parse" 2755version = "0.2.2" 2756source = "registry+https://github.com/rust-lang/crates.io-index" 2757checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 2758 2759[[package]] 2760name = "uuid" 2761version = "1.15.1" 2762source = "registry+https://github.com/rust-lang/crates.io-index" 2763checksum = "e0f540e3240398cce6128b64ba83fdbdd86129c16a3aa1a3a252efd66eb3d587" 2764dependencies = [ 2765 "getrandom 0.3.1", 2766] 2767 2768[[package]] 2769name = "v_htmlescape" 2770version = "0.15.8" 2771source = "registry+https://github.com/rust-lang/crates.io-index" 2772checksum = "4e8257fbc510f0a46eb602c10215901938b5c2a7d5e70fc11483b1d3c9b5b18c" 2773 2774[[package]] 2775name = "valuable" 2776version = "0.1.1" 2777source = "registry+https://github.com/rust-lang/crates.io-index" 2778checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 2779 2780[[package]] 2781name = "vcpkg" 2782version = "0.2.15" 2783source = "registry+https://github.com/rust-lang/crates.io-index" 2784checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 2785 2786[[package]] 2787name = "version_check" 2788version = "0.9.5" 2789source = "registry+https://github.com/rust-lang/crates.io-index" 2790checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 2791 2792[[package]] 2793name = "want" 2794version = "0.3.1" 2795source = "registry+https://github.com/rust-lang/crates.io-index" 2796checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 2797dependencies = [ 2798 "try-lock", 2799] 2800 2801[[package]] 2802name = "wasi" 2803version = "0.11.0+wasi-snapshot-preview1" 2804source = "registry+https://github.com/rust-lang/crates.io-index" 2805checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2806 2807[[package]] 2808name = "wasi" 2809version = "0.13.3+wasi-0.2.2" 2810source = "registry+https://github.com/rust-lang/crates.io-index" 2811checksum = "26816d2e1a4a36a2940b96c5296ce403917633dff8f3440e9b236ed6f6bacad2" 2812dependencies = [ 2813 "wit-bindgen-rt", 2814] 2815 2816[[package]] 2817name = "wasm-bindgen" 2818version = "0.2.100" 2819source = "registry+https://github.com/rust-lang/crates.io-index" 2820checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" 2821dependencies = [ 2822 "cfg-if", 2823 "once_cell", 2824 "rustversion", 2825 "wasm-bindgen-macro", 2826] 2827 2828[[package]] 2829name = "wasm-bindgen-backend" 2830version = "0.2.100" 2831source = "registry+https://github.com/rust-lang/crates.io-index" 2832checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" 2833dependencies = [ 2834 "bumpalo", 2835 "log", 2836 "proc-macro2", 2837 "quote", 2838 "syn", 2839 "wasm-bindgen-shared", 2840] 2841 2842[[package]] 2843name = "wasm-bindgen-futures" 2844version = "0.4.50" 2845source = "registry+https://github.com/rust-lang/crates.io-index" 2846checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" 2847dependencies = [ 2848 "cfg-if", 2849 "js-sys", 2850 "once_cell", 2851 "wasm-bindgen", 2852 "web-sys", 2853] 2854 2855[[package]] 2856name = "wasm-bindgen-macro" 2857version = "0.2.100" 2858source = "registry+https://github.com/rust-lang/crates.io-index" 2859checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" 2860dependencies = [ 2861 "quote", 2862 "wasm-bindgen-macro-support", 2863] 2864 2865[[package]] 2866name = "wasm-bindgen-macro-support" 2867version = "0.2.100" 2868source = "registry+https://github.com/rust-lang/crates.io-index" 2869checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" 2870dependencies = [ 2871 "proc-macro2", 2872 "quote", 2873 "syn", 2874 "wasm-bindgen-backend", 2875 "wasm-bindgen-shared", 2876] 2877 2878[[package]] 2879name = "wasm-bindgen-shared" 2880version = "0.2.100" 2881source = "registry+https://github.com/rust-lang/crates.io-index" 2882checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" 2883dependencies = [ 2884 "unicode-ident", 2885] 2886 2887[[package]] 2888name = "web-sys" 2889version = "0.3.77" 2890source = "registry+https://github.com/rust-lang/crates.io-index" 2891checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" 2892dependencies = [ 2893 "js-sys", 2894 "wasm-bindgen", 2895] 2896 2897[[package]] 2898name = "web-time" 2899version = "1.1.0" 2900source = "registry+https://github.com/rust-lang/crates.io-index" 2901checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 2902dependencies = [ 2903 "js-sys", 2904 "wasm-bindgen", 2905] 2906 2907[[package]] 2908name = "winapi" 2909version = "0.3.9" 2910source = "registry+https://github.com/rust-lang/crates.io-index" 2911checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2912dependencies = [ 2913 "winapi-i686-pc-windows-gnu", 2914 "winapi-x86_64-pc-windows-gnu", 2915] 2916 2917[[package]] 2918name = "winapi-i686-pc-windows-gnu" 2919version = "0.4.0" 2920source = "registry+https://github.com/rust-lang/crates.io-index" 2921checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2922 2923[[package]] 2924name = "winapi-x86_64-pc-windows-gnu" 2925version = "0.4.0" 2926source = "registry+https://github.com/rust-lang/crates.io-index" 2927checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2928 2929[[package]] 2930name = "windows" 2931version = "0.58.0" 2932source = "registry+https://github.com/rust-lang/crates.io-index" 2933checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6" 2934dependencies = [ 2935 "windows-core 0.58.0", 2936 "windows-targets", 2937] 2938 2939[[package]] 2940name = "windows-core" 2941version = "0.52.0" 2942source = "registry+https://github.com/rust-lang/crates.io-index" 2943checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 2944dependencies = [ 2945 "windows-targets", 2946] 2947 2948[[package]] 2949name = "windows-core" 2950version = "0.58.0" 2951source = "registry+https://github.com/rust-lang/crates.io-index" 2952checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99" 2953dependencies = [ 2954 "windows-implement", 2955 "windows-interface", 2956 "windows-result", 2957 "windows-strings", 2958 "windows-targets", 2959] 2960 2961[[package]] 2962name = "windows-implement" 2963version = "0.58.0" 2964source = "registry+https://github.com/rust-lang/crates.io-index" 2965checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b" 2966dependencies = [ 2967 "proc-macro2", 2968 "quote", 2969 "syn", 2970] 2971 2972[[package]] 2973name = "windows-interface" 2974version = "0.58.0" 2975source = "registry+https://github.com/rust-lang/crates.io-index" 2976checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515" 2977dependencies = [ 2978 "proc-macro2", 2979 "quote", 2980 "syn", 2981] 2982 2983[[package]] 2984name = "windows-link" 2985version = "0.1.0" 2986source = "registry+https://github.com/rust-lang/crates.io-index" 2987checksum = "6dccfd733ce2b1753b03b6d3c65edf020262ea35e20ccdf3e288043e6dd620e3" 2988 2989[[package]] 2990name = "windows-registry" 2991version = "0.2.0" 2992source = "registry+https://github.com/rust-lang/crates.io-index" 2993checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0" 2994dependencies = [ 2995 "windows-result", 2996 "windows-strings", 2997 "windows-targets", 2998] 2999 3000[[package]] 3001name = "windows-result" 3002version = "0.2.0" 3003source = "registry+https://github.com/rust-lang/crates.io-index" 3004checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e" 3005dependencies = [ 3006 "windows-targets", 3007] 3008 3009[[package]] 3010name = "windows-strings" 3011version = "0.1.0" 3012source = "registry+https://github.com/rust-lang/crates.io-index" 3013checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" 3014dependencies = [ 3015 "windows-result", 3016 "windows-targets", 3017] 3018 3019[[package]] 3020name = "windows-sys" 3021version = "0.52.0" 3022source = "registry+https://github.com/rust-lang/crates.io-index" 3023checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 3024dependencies = [ 3025 "windows-targets", 3026] 3027 3028[[package]] 3029name = "windows-sys" 3030version = "0.59.0" 3031source = "registry+https://github.com/rust-lang/crates.io-index" 3032checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 3033dependencies = [ 3034 "windows-targets", 3035] 3036 3037[[package]] 3038name = "windows-targets" 3039version = "0.52.6" 3040source = "registry+https://github.com/rust-lang/crates.io-index" 3041checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 3042dependencies = [ 3043 "windows_aarch64_gnullvm", 3044 "windows_aarch64_msvc", 3045 "windows_i686_gnu", 3046 "windows_i686_gnullvm", 3047 "windows_i686_msvc", 3048 "windows_x86_64_gnu", 3049 "windows_x86_64_gnullvm", 3050 "windows_x86_64_msvc", 3051] 3052 3053[[package]] 3054name = "windows_aarch64_gnullvm" 3055version = "0.52.6" 3056source = "registry+https://github.com/rust-lang/crates.io-index" 3057checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 3058 3059[[package]] 3060name = "windows_aarch64_msvc" 3061version = "0.52.6" 3062source = "registry+https://github.com/rust-lang/crates.io-index" 3063checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 3064 3065[[package]] 3066name = "windows_i686_gnu" 3067version = "0.52.6" 3068source = "registry+https://github.com/rust-lang/crates.io-index" 3069checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 3070 3071[[package]] 3072name = "windows_i686_gnullvm" 3073version = "0.52.6" 3074source = "registry+https://github.com/rust-lang/crates.io-index" 3075checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 3076 3077[[package]] 3078name = "windows_i686_msvc" 3079version = "0.52.6" 3080source = "registry+https://github.com/rust-lang/crates.io-index" 3081checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 3082 3083[[package]] 3084name = "windows_x86_64_gnu" 3085version = "0.52.6" 3086source = "registry+https://github.com/rust-lang/crates.io-index" 3087checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 3088 3089[[package]] 3090name = "windows_x86_64_gnullvm" 3091version = "0.52.6" 3092source = "registry+https://github.com/rust-lang/crates.io-index" 3093checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 3094 3095[[package]] 3096name = "windows_x86_64_msvc" 3097version = "0.52.6" 3098source = "registry+https://github.com/rust-lang/crates.io-index" 3099checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 3100 3101[[package]] 3102name = "wit-bindgen-rt" 3103version = "0.33.0" 3104source = "registry+https://github.com/rust-lang/crates.io-index" 3105checksum = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c" 3106dependencies = [ 3107 "bitflags", 3108] 3109 3110[[package]] 3111name = "write16" 3112version = "1.0.0" 3113source = "registry+https://github.com/rust-lang/crates.io-index" 3114checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936" 3115 3116[[package]] 3117name = "writeable" 3118version = "0.5.5" 3119source = "registry+https://github.com/rust-lang/crates.io-index" 3120checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" 3121 3122[[package]] 3123name = "yoke" 3124version = "0.7.5" 3125source = "registry+https://github.com/rust-lang/crates.io-index" 3126checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" 3127dependencies = [ 3128 "serde", 3129 "stable_deref_trait", 3130 "yoke-derive", 3131 "zerofrom", 3132] 3133 3134[[package]] 3135name = "yoke-derive" 3136version = "0.7.5" 3137source = "registry+https://github.com/rust-lang/crates.io-index" 3138checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" 3139dependencies = [ 3140 "proc-macro2", 3141 "quote", 3142 "syn", 3143 "synstructure", 3144] 3145 3146[[package]] 3147name = "zerocopy" 3148version = "0.7.35" 3149source = "registry+https://github.com/rust-lang/crates.io-index" 3150checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 3151dependencies = [ 3152 "byteorder", 3153 "zerocopy-derive", 3154] 3155 3156[[package]] 3157name = "zerocopy-derive" 3158version = "0.7.35" 3159source = "registry+https://github.com/rust-lang/crates.io-index" 3160checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" 3161dependencies = [ 3162 "proc-macro2", 3163 "quote", 3164 "syn", 3165] 3166 3167[[package]] 3168name = "zerofrom" 3169version = "0.1.6" 3170source = "registry+https://github.com/rust-lang/crates.io-index" 3171checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 3172dependencies = [ 3173 "zerofrom-derive", 3174] 3175 3176[[package]] 3177name = "zerofrom-derive" 3178version = "0.1.6" 3179source = "registry+https://github.com/rust-lang/crates.io-index" 3180checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 3181dependencies = [ 3182 "proc-macro2", 3183 "quote", 3184 "syn", 3185 "synstructure", 3186] 3187 3188[[package]] 3189name = "zerovec" 3190version = "0.10.4" 3191source = "registry+https://github.com/rust-lang/crates.io-index" 3192checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079" 3193dependencies = [ 3194 "yoke", 3195 "zerofrom", 3196 "zerovec-derive", 3197] 3198 3199[[package]] 3200name = "zerovec-derive" 3201version = "0.10.3" 3202source = "registry+https://github.com/rust-lang/crates.io-index" 3203checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" 3204dependencies = [ 3205 "proc-macro2", 3206 "quote", 3207 "syn", 3208] 3209 3210[[package]] 3211name = "zstd" 3212version = "0.13.3" 3213source = "registry+https://github.com/rust-lang/crates.io-index" 3214checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" 3215dependencies = [ 3216 "zstd-safe", 3217] 3218 3219[[package]] 3220name = "zstd-safe" 3221version = "7.2.3" 3222source = "registry+https://github.com/rust-lang/crates.io-index" 3223checksum = "f3051792fbdc2e1e143244dc28c60f73d8470e93f3f9cbd0ead44da5ed802722" 3224dependencies = [ 3225 "zstd-sys", 3226] 3227 3228[[package]] 3229name = "zstd-sys" 3230version = "2.0.14+zstd.1.5.7" 3231source = "registry+https://github.com/rust-lang/crates.io-index" 3232checksum = "8fb060d4926e4ac3a3ad15d864e99ceb5f343c6b34f5bd6d81ae6ed417311be5" 3233dependencies = [ 3234 "cc", 3235 "pkg-config", 3236]