A library for ATProtocol identities.
at v0.10.0 85 kB view raw
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "addr2line" 7version = "0.24.2" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" 10dependencies = [ 11 "gimli", 12] 13 14[[package]] 15name = "adler2" 16version = "2.0.0" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" 19 20[[package]] 21name = "aho-corasick" 22version = "1.1.3" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 25dependencies = [ 26 "memchr", 27] 28 29[[package]] 30name = "allocator-api2" 31version = "0.2.21" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" 34 35[[package]] 36name = "anstream" 37version = "0.6.19" 38source = "registry+https://github.com/rust-lang/crates.io-index" 39checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933" 40dependencies = [ 41 "anstyle", 42 "anstyle-parse", 43 "anstyle-query", 44 "anstyle-wincon", 45 "colorchoice", 46 "is_terminal_polyfill", 47 "utf8parse", 48] 49 50[[package]] 51name = "anstyle" 52version = "1.0.11" 53source = "registry+https://github.com/rust-lang/crates.io-index" 54checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd" 55 56[[package]] 57name = "anstyle-parse" 58version = "0.2.7" 59source = "registry+https://github.com/rust-lang/crates.io-index" 60checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" 61dependencies = [ 62 "utf8parse", 63] 64 65[[package]] 66name = "anstyle-query" 67version = "1.1.3" 68source = "registry+https://github.com/rust-lang/crates.io-index" 69checksum = "6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9" 70dependencies = [ 71 "windows-sys 0.59.0", 72] 73 74[[package]] 75name = "anstyle-wincon" 76version = "3.0.9" 77source = "registry+https://github.com/rust-lang/crates.io-index" 78checksum = "403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882" 79dependencies = [ 80 "anstyle", 81 "once_cell_polyfill", 82 "windows-sys 0.59.0", 83] 84 85[[package]] 86name = "anyhow" 87version = "1.0.98" 88source = "registry+https://github.com/rust-lang/crates.io-index" 89checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" 90 91[[package]] 92name = "async-trait" 93version = "0.1.88" 94source = "registry+https://github.com/rust-lang/crates.io-index" 95checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5" 96dependencies = [ 97 "proc-macro2", 98 "quote", 99 "syn", 100] 101 102[[package]] 103name = "atomic-waker" 104version = "1.1.2" 105source = "registry+https://github.com/rust-lang/crates.io-index" 106checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 107 108[[package]] 109name = "atproto-client" 110version = "0.10.0" 111dependencies = [ 112 "anyhow", 113 "atproto-identity", 114 "atproto-oauth", 115 "atproto-record", 116 "bytes", 117 "clap", 118 "reqwest", 119 "reqwest-chain", 120 "reqwest-middleware", 121 "rpassword", 122 "secrecy", 123 "serde", 124 "serde_json", 125 "thiserror 2.0.12", 126 "tokio", 127 "tracing", 128 "urlencoding", 129] 130 131[[package]] 132name = "atproto-identity" 133version = "0.10.0" 134dependencies = [ 135 "anyhow", 136 "async-trait", 137 "clap", 138 "ecdsa", 139 "elliptic-curve", 140 "hickory-resolver", 141 "k256", 142 "lru", 143 "multibase", 144 "p256", 145 "p384", 146 "rand 0.8.5", 147 "reqwest", 148 "serde", 149 "serde_ipld_dagcbor", 150 "serde_json", 151 "thiserror 2.0.12", 152 "tokio", 153 "tracing", 154 "zeroize", 155] 156 157[[package]] 158name = "atproto-jetstream" 159version = "0.10.0" 160dependencies = [ 161 "anyhow", 162 "async-trait", 163 "atproto-identity", 164 "clap", 165 "futures", 166 "http", 167 "serde", 168 "serde_json", 169 "thiserror 2.0.12", 170 "tokio", 171 "tokio-util", 172 "tokio-websockets", 173 "tracing", 174 "tracing-subscriber", 175 "urlencoding", 176 "zstd", 177] 178 179[[package]] 180name = "atproto-oauth" 181version = "0.10.0" 182dependencies = [ 183 "anyhow", 184 "async-trait", 185 "atproto-identity", 186 "axum", 187 "base64", 188 "chrono", 189 "ecdsa", 190 "elliptic-curve", 191 "http", 192 "k256", 193 "lru", 194 "multibase", 195 "p256", 196 "p384", 197 "rand 0.8.5", 198 "reqwest", 199 "reqwest-chain", 200 "reqwest-middleware", 201 "serde", 202 "serde_ipld_dagcbor", 203 "serde_json", 204 "sha2", 205 "thiserror 2.0.12", 206 "tokio", 207 "tracing", 208 "ulid", 209 "zeroize", 210] 211 212[[package]] 213name = "atproto-oauth-aip" 214version = "0.10.0" 215dependencies = [ 216 "anyhow", 217 "atproto-oauth", 218 "chrono", 219 "reqwest", 220 "serde", 221 "serde_json", 222 "thiserror 2.0.12", 223 "zeroize", 224] 225 226[[package]] 227name = "atproto-oauth-axum" 228version = "0.10.0" 229dependencies = [ 230 "anyhow", 231 "async-trait", 232 "atproto-identity", 233 "atproto-oauth", 234 "atproto-record", 235 "axum", 236 "chrono", 237 "clap", 238 "elliptic-curve", 239 "hickory-resolver", 240 "http", 241 "rand 0.8.5", 242 "reqwest", 243 "reqwest-chain", 244 "reqwest-middleware", 245 "rpassword", 246 "secrecy", 247 "serde", 248 "serde_json", 249 "thiserror 2.0.12", 250 "tokio", 251 "tracing", 252 "urlencoding", 253 "zeroize", 254] 255 256[[package]] 257name = "atproto-record" 258version = "0.10.0" 259dependencies = [ 260 "anyhow", 261 "atproto-identity", 262 "chrono", 263 "clap", 264 "ecdsa", 265 "k256", 266 "multibase", 267 "p256", 268 "serde", 269 "serde_ipld_dagcbor", 270 "serde_json", 271 "thiserror 2.0.12", 272 "tokio", 273 "tracing", 274] 275 276[[package]] 277name = "atproto-xrpcs" 278version = "0.10.0" 279dependencies = [ 280 "anyhow", 281 "async-trait", 282 "atproto-identity", 283 "atproto-oauth", 284 "atproto-record", 285 "axum", 286 "base64", 287 "chrono", 288 "elliptic-curve", 289 "hickory-resolver", 290 "http", 291 "rand 0.8.5", 292 "reqwest", 293 "reqwest-chain", 294 "reqwest-middleware", 295 "serde", 296 "serde_json", 297 "thiserror 2.0.12", 298 "tokio", 299 "tracing", 300 "urlencoding", 301] 302 303[[package]] 304name = "atproto-xrpcs-helloworld" 305version = "0.10.0" 306dependencies = [ 307 "anyhow", 308 "async-trait", 309 "atproto-identity", 310 "atproto-oauth", 311 "atproto-record", 312 "atproto-xrpcs", 313 "axum", 314 "chrono", 315 "clap", 316 "elliptic-curve", 317 "hickory-resolver", 318 "http", 319 "rand 0.8.5", 320 "reqwest", 321 "reqwest-chain", 322 "reqwest-middleware", 323 "serde", 324 "serde_json", 325 "thiserror 2.0.12", 326 "tokio", 327 "tracing", 328 "urlencoding", 329] 330 331[[package]] 332name = "autocfg" 333version = "1.4.0" 334source = "registry+https://github.com/rust-lang/crates.io-index" 335checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" 336 337[[package]] 338name = "axum" 339version = "0.8.4" 340source = "registry+https://github.com/rust-lang/crates.io-index" 341checksum = "021e862c184ae977658b36c4500f7feac3221ca5da43e3f25bd04ab6c79a29b5" 342dependencies = [ 343 "axum-core", 344 "axum-macros", 345 "bytes", 346 "form_urlencoded", 347 "futures-util", 348 "http", 349 "http-body", 350 "http-body-util", 351 "hyper", 352 "hyper-util", 353 "itoa", 354 "matchit", 355 "memchr", 356 "mime", 357 "percent-encoding", 358 "pin-project-lite", 359 "rustversion", 360 "serde", 361 "serde_json", 362 "serde_path_to_error", 363 "serde_urlencoded", 364 "sync_wrapper", 365 "tokio", 366 "tower", 367 "tower-layer", 368 "tower-service", 369 "tracing", 370] 371 372[[package]] 373name = "axum-core" 374version = "0.5.2" 375source = "registry+https://github.com/rust-lang/crates.io-index" 376checksum = "68464cd0412f486726fb3373129ef5d2993f90c34bc2bc1c1e9943b2f4fc7ca6" 377dependencies = [ 378 "bytes", 379 "futures-core", 380 "http", 381 "http-body", 382 "http-body-util", 383 "mime", 384 "pin-project-lite", 385 "rustversion", 386 "sync_wrapper", 387 "tower-layer", 388 "tower-service", 389 "tracing", 390] 391 392[[package]] 393name = "axum-macros" 394version = "0.5.0" 395source = "registry+https://github.com/rust-lang/crates.io-index" 396checksum = "604fde5e028fea851ce1d8570bbdc034bec850d157f7569d10f347d06808c05c" 397dependencies = [ 398 "proc-macro2", 399 "quote", 400 "syn", 401] 402 403[[package]] 404name = "backtrace" 405version = "0.3.75" 406source = "registry+https://github.com/rust-lang/crates.io-index" 407checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002" 408dependencies = [ 409 "addr2line", 410 "cfg-if", 411 "libc", 412 "miniz_oxide", 413 "object", 414 "rustc-demangle", 415 "windows-targets 0.52.6", 416] 417 418[[package]] 419name = "base-x" 420version = "0.2.11" 421source = "registry+https://github.com/rust-lang/crates.io-index" 422checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 423 424[[package]] 425name = "base16ct" 426version = "0.2.0" 427source = "registry+https://github.com/rust-lang/crates.io-index" 428checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 429 430[[package]] 431name = "base64" 432version = "0.22.1" 433source = "registry+https://github.com/rust-lang/crates.io-index" 434checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 435 436[[package]] 437name = "base64ct" 438version = "1.7.3" 439source = "registry+https://github.com/rust-lang/crates.io-index" 440checksum = "89e25b6adfb930f02d1981565a6e5d9c547ac15a96606256d3b59040e5cd4ca3" 441 442[[package]] 443name = "bitflags" 444version = "2.9.1" 445source = "registry+https://github.com/rust-lang/crates.io-index" 446checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" 447 448[[package]] 449name = "block-buffer" 450version = "0.10.4" 451source = "registry+https://github.com/rust-lang/crates.io-index" 452checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 453dependencies = [ 454 "generic-array", 455] 456 457[[package]] 458name = "bumpalo" 459version = "3.17.0" 460source = "registry+https://github.com/rust-lang/crates.io-index" 461checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf" 462 463[[package]] 464name = "bytes" 465version = "1.10.1" 466source = "registry+https://github.com/rust-lang/crates.io-index" 467checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" 468 469[[package]] 470name = "cbor4ii" 471version = "0.2.14" 472source = "registry+https://github.com/rust-lang/crates.io-index" 473checksum = "b544cf8c89359205f4f990d0e6f3828db42df85b5dac95d09157a250eb0749c4" 474dependencies = [ 475 "serde", 476] 477 478[[package]] 479name = "cc" 480version = "1.2.24" 481source = "registry+https://github.com/rust-lang/crates.io-index" 482checksum = "16595d3be041c03b09d08d0858631facccee9221e579704070e6e9e4915d3bc7" 483dependencies = [ 484 "jobserver", 485 "libc", 486 "shlex", 487] 488 489[[package]] 490name = "cfg-if" 491version = "1.0.0" 492source = "registry+https://github.com/rust-lang/crates.io-index" 493checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 494 495[[package]] 496name = "cfg_aliases" 497version = "0.2.1" 498source = "registry+https://github.com/rust-lang/crates.io-index" 499checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 500 501[[package]] 502name = "chrono" 503version = "0.4.41" 504source = "registry+https://github.com/rust-lang/crates.io-index" 505checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d" 506dependencies = [ 507 "num-traits", 508] 509 510[[package]] 511name = "cid" 512version = "0.11.1" 513source = "registry+https://github.com/rust-lang/crates.io-index" 514checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a" 515dependencies = [ 516 "core2", 517 "multibase", 518 "multihash", 519 "serde", 520 "serde_bytes", 521 "unsigned-varint", 522] 523 524[[package]] 525name = "clap" 526version = "4.5.40" 527source = "registry+https://github.com/rust-lang/crates.io-index" 528checksum = "40b6887a1d8685cebccf115538db5c0efe625ccac9696ad45c409d96566e910f" 529dependencies = [ 530 "clap_builder", 531 "clap_derive", 532] 533 534[[package]] 535name = "clap_builder" 536version = "4.5.40" 537source = "registry+https://github.com/rust-lang/crates.io-index" 538checksum = "e0c66c08ce9f0c698cbce5c0279d0bb6ac936d8674174fe48f736533b964f59e" 539dependencies = [ 540 "anstream", 541 "anstyle", 542 "clap_lex", 543 "strsim", 544] 545 546[[package]] 547name = "clap_derive" 548version = "4.5.40" 549source = "registry+https://github.com/rust-lang/crates.io-index" 550checksum = "d2c7947ae4cc3d851207c1adb5b5e260ff0cca11446b1d6d1423788e442257ce" 551dependencies = [ 552 "heck", 553 "proc-macro2", 554 "quote", 555 "syn", 556] 557 558[[package]] 559name = "clap_lex" 560version = "0.7.5" 561source = "registry+https://github.com/rust-lang/crates.io-index" 562checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675" 563 564[[package]] 565name = "colorchoice" 566version = "1.0.4" 567source = "registry+https://github.com/rust-lang/crates.io-index" 568checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" 569 570[[package]] 571name = "const-oid" 572version = "0.9.6" 573source = "registry+https://github.com/rust-lang/crates.io-index" 574checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 575 576[[package]] 577name = "core-foundation" 578version = "0.9.4" 579source = "registry+https://github.com/rust-lang/crates.io-index" 580checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 581dependencies = [ 582 "core-foundation-sys", 583 "libc", 584] 585 586[[package]] 587name = "core-foundation" 588version = "0.10.1" 589source = "registry+https://github.com/rust-lang/crates.io-index" 590checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" 591dependencies = [ 592 "core-foundation-sys", 593 "libc", 594] 595 596[[package]] 597name = "core-foundation-sys" 598version = "0.8.7" 599source = "registry+https://github.com/rust-lang/crates.io-index" 600checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 601 602[[package]] 603name = "core2" 604version = "0.4.0" 605source = "registry+https://github.com/rust-lang/crates.io-index" 606checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505" 607dependencies = [ 608 "memchr", 609] 610 611[[package]] 612name = "cpufeatures" 613version = "0.2.17" 614source = "registry+https://github.com/rust-lang/crates.io-index" 615checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 616dependencies = [ 617 "libc", 618] 619 620[[package]] 621name = "critical-section" 622version = "1.2.0" 623source = "registry+https://github.com/rust-lang/crates.io-index" 624checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" 625 626[[package]] 627name = "crossbeam-channel" 628version = "0.5.15" 629source = "registry+https://github.com/rust-lang/crates.io-index" 630checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" 631dependencies = [ 632 "crossbeam-utils", 633] 634 635[[package]] 636name = "crossbeam-epoch" 637version = "0.9.18" 638source = "registry+https://github.com/rust-lang/crates.io-index" 639checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 640dependencies = [ 641 "crossbeam-utils", 642] 643 644[[package]] 645name = "crossbeam-utils" 646version = "0.8.21" 647source = "registry+https://github.com/rust-lang/crates.io-index" 648checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 649 650[[package]] 651name = "crypto-bigint" 652version = "0.5.5" 653source = "registry+https://github.com/rust-lang/crates.io-index" 654checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" 655dependencies = [ 656 "generic-array", 657 "rand_core 0.6.4", 658 "subtle", 659 "zeroize", 660] 661 662[[package]] 663name = "crypto-common" 664version = "0.1.6" 665source = "registry+https://github.com/rust-lang/crates.io-index" 666checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 667dependencies = [ 668 "generic-array", 669 "typenum", 670] 671 672[[package]] 673name = "data-encoding" 674version = "2.9.0" 675source = "registry+https://github.com/rust-lang/crates.io-index" 676checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" 677 678[[package]] 679name = "data-encoding-macro" 680version = "0.1.18" 681source = "registry+https://github.com/rust-lang/crates.io-index" 682checksum = "47ce6c96ea0102f01122a185683611bd5ac8d99e62bc59dd12e6bda344ee673d" 683dependencies = [ 684 "data-encoding", 685 "data-encoding-macro-internal", 686] 687 688[[package]] 689name = "data-encoding-macro-internal" 690version = "0.1.16" 691source = "registry+https://github.com/rust-lang/crates.io-index" 692checksum = "8d162beedaa69905488a8da94f5ac3edb4dd4788b732fadb7bd120b2625c1976" 693dependencies = [ 694 "data-encoding", 695 "syn", 696] 697 698[[package]] 699name = "der" 700version = "0.7.10" 701source = "registry+https://github.com/rust-lang/crates.io-index" 702checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" 703dependencies = [ 704 "const-oid", 705 "pem-rfc7468", 706 "zeroize", 707] 708 709[[package]] 710name = "digest" 711version = "0.10.7" 712source = "registry+https://github.com/rust-lang/crates.io-index" 713checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 714dependencies = [ 715 "block-buffer", 716 "const-oid", 717 "crypto-common", 718 "subtle", 719] 720 721[[package]] 722name = "displaydoc" 723version = "0.2.5" 724source = "registry+https://github.com/rust-lang/crates.io-index" 725checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 726dependencies = [ 727 "proc-macro2", 728 "quote", 729 "syn", 730] 731 732[[package]] 733name = "ecdsa" 734version = "0.16.9" 735source = "registry+https://github.com/rust-lang/crates.io-index" 736checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" 737dependencies = [ 738 "der", 739 "digest", 740 "elliptic-curve", 741 "rfc6979", 742 "serdect", 743 "signature", 744 "spki", 745] 746 747[[package]] 748name = "elliptic-curve" 749version = "0.13.8" 750source = "registry+https://github.com/rust-lang/crates.io-index" 751checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" 752dependencies = [ 753 "base16ct", 754 "base64ct", 755 "crypto-bigint", 756 "digest", 757 "ff", 758 "generic-array", 759 "group", 760 "hkdf", 761 "pem-rfc7468", 762 "pkcs8", 763 "rand_core 0.6.4", 764 "sec1", 765 "serde_json", 766 "serdect", 767 "subtle", 768 "zeroize", 769] 770 771[[package]] 772name = "encoding_rs" 773version = "0.8.35" 774source = "registry+https://github.com/rust-lang/crates.io-index" 775checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 776dependencies = [ 777 "cfg-if", 778] 779 780[[package]] 781name = "enum-as-inner" 782version = "0.6.1" 783source = "registry+https://github.com/rust-lang/crates.io-index" 784checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" 785dependencies = [ 786 "heck", 787 "proc-macro2", 788 "quote", 789 "syn", 790] 791 792[[package]] 793name = "equivalent" 794version = "1.0.2" 795source = "registry+https://github.com/rust-lang/crates.io-index" 796checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 797 798[[package]] 799name = "ff" 800version = "0.13.1" 801source = "registry+https://github.com/rust-lang/crates.io-index" 802checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" 803dependencies = [ 804 "rand_core 0.6.4", 805 "subtle", 806] 807 808[[package]] 809name = "fnv" 810version = "1.0.7" 811source = "registry+https://github.com/rust-lang/crates.io-index" 812checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 813 814[[package]] 815name = "foldhash" 816version = "0.1.5" 817source = "registry+https://github.com/rust-lang/crates.io-index" 818checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" 819 820[[package]] 821name = "form_urlencoded" 822version = "1.2.1" 823source = "registry+https://github.com/rust-lang/crates.io-index" 824checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 825dependencies = [ 826 "percent-encoding", 827] 828 829[[package]] 830name = "futures" 831version = "0.3.31" 832source = "registry+https://github.com/rust-lang/crates.io-index" 833checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" 834dependencies = [ 835 "futures-channel", 836 "futures-core", 837 "futures-executor", 838 "futures-io", 839 "futures-sink", 840 "futures-task", 841 "futures-util", 842] 843 844[[package]] 845name = "futures-channel" 846version = "0.3.31" 847source = "registry+https://github.com/rust-lang/crates.io-index" 848checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 849dependencies = [ 850 "futures-core", 851 "futures-sink", 852] 853 854[[package]] 855name = "futures-core" 856version = "0.3.31" 857source = "registry+https://github.com/rust-lang/crates.io-index" 858checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 859 860[[package]] 861name = "futures-executor" 862version = "0.3.31" 863source = "registry+https://github.com/rust-lang/crates.io-index" 864checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" 865dependencies = [ 866 "futures-core", 867 "futures-task", 868 "futures-util", 869] 870 871[[package]] 872name = "futures-io" 873version = "0.3.31" 874source = "registry+https://github.com/rust-lang/crates.io-index" 875checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 876 877[[package]] 878name = "futures-macro" 879version = "0.3.31" 880source = "registry+https://github.com/rust-lang/crates.io-index" 881checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 882dependencies = [ 883 "proc-macro2", 884 "quote", 885 "syn", 886] 887 888[[package]] 889name = "futures-sink" 890version = "0.3.31" 891source = "registry+https://github.com/rust-lang/crates.io-index" 892checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 893 894[[package]] 895name = "futures-task" 896version = "0.3.31" 897source = "registry+https://github.com/rust-lang/crates.io-index" 898checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 899 900[[package]] 901name = "futures-util" 902version = "0.3.31" 903source = "registry+https://github.com/rust-lang/crates.io-index" 904checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 905dependencies = [ 906 "futures-channel", 907 "futures-core", 908 "futures-io", 909 "futures-macro", 910 "futures-sink", 911 "futures-task", 912 "memchr", 913 "pin-project-lite", 914 "pin-utils", 915 "slab", 916] 917 918[[package]] 919name = "generator" 920version = "0.8.5" 921source = "registry+https://github.com/rust-lang/crates.io-index" 922checksum = "d18470a76cb7f8ff746cf1f7470914f900252ec36bbc40b569d74b1258446827" 923dependencies = [ 924 "cc", 925 "cfg-if", 926 "libc", 927 "log", 928 "rustversion", 929 "windows", 930] 931 932[[package]] 933name = "generic-array" 934version = "0.14.7" 935source = "registry+https://github.com/rust-lang/crates.io-index" 936checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 937dependencies = [ 938 "typenum", 939 "version_check", 940 "zeroize", 941] 942 943[[package]] 944name = "getrandom" 945version = "0.2.16" 946source = "registry+https://github.com/rust-lang/crates.io-index" 947checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" 948dependencies = [ 949 "cfg-if", 950 "js-sys", 951 "libc", 952 "wasi 0.11.0+wasi-snapshot-preview1", 953 "wasm-bindgen", 954] 955 956[[package]] 957name = "getrandom" 958version = "0.3.3" 959source = "registry+https://github.com/rust-lang/crates.io-index" 960checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" 961dependencies = [ 962 "cfg-if", 963 "js-sys", 964 "libc", 965 "r-efi", 966 "wasi 0.14.2+wasi-0.2.4", 967 "wasm-bindgen", 968] 969 970[[package]] 971name = "gimli" 972version = "0.31.1" 973source = "registry+https://github.com/rust-lang/crates.io-index" 974checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" 975 976[[package]] 977name = "group" 978version = "0.13.0" 979source = "registry+https://github.com/rust-lang/crates.io-index" 980checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" 981dependencies = [ 982 "ff", 983 "rand_core 0.6.4", 984 "subtle", 985] 986 987[[package]] 988name = "h2" 989version = "0.4.10" 990source = "registry+https://github.com/rust-lang/crates.io-index" 991checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5" 992dependencies = [ 993 "atomic-waker", 994 "bytes", 995 "fnv", 996 "futures-core", 997 "futures-sink", 998 "http", 999 "indexmap", 1000 "slab", 1001 "tokio", 1002 "tokio-util", 1003 "tracing", 1004] 1005 1006[[package]] 1007name = "hashbrown" 1008version = "0.15.3" 1009source = "registry+https://github.com/rust-lang/crates.io-index" 1010checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3" 1011dependencies = [ 1012 "allocator-api2", 1013 "equivalent", 1014 "foldhash", 1015] 1016 1017[[package]] 1018name = "heck" 1019version = "0.5.0" 1020source = "registry+https://github.com/rust-lang/crates.io-index" 1021checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1022 1023[[package]] 1024name = "hickory-proto" 1025version = "0.25.2" 1026source = "registry+https://github.com/rust-lang/crates.io-index" 1027checksum = "f8a6fe56c0038198998a6f217ca4e7ef3a5e51f46163bd6dd60b5c71ca6c6502" 1028dependencies = [ 1029 "async-trait", 1030 "cfg-if", 1031 "data-encoding", 1032 "enum-as-inner", 1033 "futures-channel", 1034 "futures-io", 1035 "futures-util", 1036 "idna", 1037 "ipnet", 1038 "once_cell", 1039 "rand 0.9.1", 1040 "ring", 1041 "thiserror 2.0.12", 1042 "tinyvec", 1043 "tokio", 1044 "tracing", 1045 "url", 1046] 1047 1048[[package]] 1049name = "hickory-resolver" 1050version = "0.25.2" 1051source = "registry+https://github.com/rust-lang/crates.io-index" 1052checksum = "dc62a9a99b0bfb44d2ab95a7208ac952d31060efc16241c87eaf36406fecf87a" 1053dependencies = [ 1054 "cfg-if", 1055 "futures-util", 1056 "hickory-proto", 1057 "ipconfig", 1058 "moka", 1059 "once_cell", 1060 "parking_lot", 1061 "rand 0.9.1", 1062 "resolv-conf", 1063 "smallvec", 1064 "thiserror 2.0.12", 1065 "tokio", 1066 "tracing", 1067] 1068 1069[[package]] 1070name = "hkdf" 1071version = "0.12.4" 1072source = "registry+https://github.com/rust-lang/crates.io-index" 1073checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 1074dependencies = [ 1075 "hmac", 1076] 1077 1078[[package]] 1079name = "hmac" 1080version = "0.12.1" 1081source = "registry+https://github.com/rust-lang/crates.io-index" 1082checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1083dependencies = [ 1084 "digest", 1085] 1086 1087[[package]] 1088name = "http" 1089version = "1.3.1" 1090source = "registry+https://github.com/rust-lang/crates.io-index" 1091checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" 1092dependencies = [ 1093 "bytes", 1094 "fnv", 1095 "itoa", 1096] 1097 1098[[package]] 1099name = "http-body" 1100version = "1.0.1" 1101source = "registry+https://github.com/rust-lang/crates.io-index" 1102checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 1103dependencies = [ 1104 "bytes", 1105 "http", 1106] 1107 1108[[package]] 1109name = "http-body-util" 1110version = "0.1.3" 1111source = "registry+https://github.com/rust-lang/crates.io-index" 1112checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 1113dependencies = [ 1114 "bytes", 1115 "futures-core", 1116 "http", 1117 "http-body", 1118 "pin-project-lite", 1119] 1120 1121[[package]] 1122name = "httparse" 1123version = "1.10.1" 1124source = "registry+https://github.com/rust-lang/crates.io-index" 1125checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 1126 1127[[package]] 1128name = "httpdate" 1129version = "1.0.3" 1130source = "registry+https://github.com/rust-lang/crates.io-index" 1131checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 1132 1133[[package]] 1134name = "hyper" 1135version = "1.6.0" 1136source = "registry+https://github.com/rust-lang/crates.io-index" 1137checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80" 1138dependencies = [ 1139 "bytes", 1140 "futures-channel", 1141 "futures-util", 1142 "h2", 1143 "http", 1144 "http-body", 1145 "httparse", 1146 "httpdate", 1147 "itoa", 1148 "pin-project-lite", 1149 "smallvec", 1150 "tokio", 1151 "want", 1152] 1153 1154[[package]] 1155name = "hyper-rustls" 1156version = "0.27.6" 1157source = "registry+https://github.com/rust-lang/crates.io-index" 1158checksum = "03a01595e11bdcec50946522c32dde3fc6914743000a68b93000965f2f02406d" 1159dependencies = [ 1160 "http", 1161 "hyper", 1162 "hyper-util", 1163 "rustls", 1164 "rustls-pki-types", 1165 "tokio", 1166 "tokio-rustls", 1167 "tower-service", 1168 "webpki-roots", 1169] 1170 1171[[package]] 1172name = "hyper-util" 1173version = "0.1.13" 1174source = "registry+https://github.com/rust-lang/crates.io-index" 1175checksum = "b1c293b6b3d21eca78250dc7dbebd6b9210ec5530e038cbfe0661b5c47ab06e8" 1176dependencies = [ 1177 "base64", 1178 "bytes", 1179 "futures-channel", 1180 "futures-core", 1181 "futures-util", 1182 "http", 1183 "http-body", 1184 "hyper", 1185 "ipnet", 1186 "libc", 1187 "percent-encoding", 1188 "pin-project-lite", 1189 "socket2", 1190 "system-configuration", 1191 "tokio", 1192 "tower-service", 1193 "tracing", 1194 "windows-registry", 1195] 1196 1197[[package]] 1198name = "icu_collections" 1199version = "2.0.0" 1200source = "registry+https://github.com/rust-lang/crates.io-index" 1201checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" 1202dependencies = [ 1203 "displaydoc", 1204 "potential_utf", 1205 "yoke", 1206 "zerofrom", 1207 "zerovec", 1208] 1209 1210[[package]] 1211name = "icu_locale_core" 1212version = "2.0.0" 1213source = "registry+https://github.com/rust-lang/crates.io-index" 1214checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" 1215dependencies = [ 1216 "displaydoc", 1217 "litemap", 1218 "tinystr", 1219 "writeable", 1220 "zerovec", 1221] 1222 1223[[package]] 1224name = "icu_normalizer" 1225version = "2.0.0" 1226source = "registry+https://github.com/rust-lang/crates.io-index" 1227checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" 1228dependencies = [ 1229 "displaydoc", 1230 "icu_collections", 1231 "icu_normalizer_data", 1232 "icu_properties", 1233 "icu_provider", 1234 "smallvec", 1235 "zerovec", 1236] 1237 1238[[package]] 1239name = "icu_normalizer_data" 1240version = "2.0.0" 1241source = "registry+https://github.com/rust-lang/crates.io-index" 1242checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" 1243 1244[[package]] 1245name = "icu_properties" 1246version = "2.0.1" 1247source = "registry+https://github.com/rust-lang/crates.io-index" 1248checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" 1249dependencies = [ 1250 "displaydoc", 1251 "icu_collections", 1252 "icu_locale_core", 1253 "icu_properties_data", 1254 "icu_provider", 1255 "potential_utf", 1256 "zerotrie", 1257 "zerovec", 1258] 1259 1260[[package]] 1261name = "icu_properties_data" 1262version = "2.0.1" 1263source = "registry+https://github.com/rust-lang/crates.io-index" 1264checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" 1265 1266[[package]] 1267name = "icu_provider" 1268version = "2.0.0" 1269source = "registry+https://github.com/rust-lang/crates.io-index" 1270checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" 1271dependencies = [ 1272 "displaydoc", 1273 "icu_locale_core", 1274 "stable_deref_trait", 1275 "tinystr", 1276 "writeable", 1277 "yoke", 1278 "zerofrom", 1279 "zerotrie", 1280 "zerovec", 1281] 1282 1283[[package]] 1284name = "idna" 1285version = "1.0.3" 1286source = "registry+https://github.com/rust-lang/crates.io-index" 1287checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" 1288dependencies = [ 1289 "idna_adapter", 1290 "smallvec", 1291 "utf8_iter", 1292] 1293 1294[[package]] 1295name = "idna_adapter" 1296version = "1.2.1" 1297source = "registry+https://github.com/rust-lang/crates.io-index" 1298checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 1299dependencies = [ 1300 "icu_normalizer", 1301 "icu_properties", 1302] 1303 1304[[package]] 1305name = "indexmap" 1306version = "2.9.0" 1307source = "registry+https://github.com/rust-lang/crates.io-index" 1308checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e" 1309dependencies = [ 1310 "equivalent", 1311 "hashbrown", 1312] 1313 1314[[package]] 1315name = "ipconfig" 1316version = "0.3.2" 1317source = "registry+https://github.com/rust-lang/crates.io-index" 1318checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" 1319dependencies = [ 1320 "socket2", 1321 "widestring", 1322 "windows-sys 0.48.0", 1323 "winreg", 1324] 1325 1326[[package]] 1327name = "ipld-core" 1328version = "0.4.2" 1329source = "registry+https://github.com/rust-lang/crates.io-index" 1330checksum = "104718b1cc124d92a6d01ca9c9258a7df311405debb3408c445a36452f9bf8db" 1331dependencies = [ 1332 "cid", 1333 "serde", 1334 "serde_bytes", 1335] 1336 1337[[package]] 1338name = "ipnet" 1339version = "2.11.0" 1340source = "registry+https://github.com/rust-lang/crates.io-index" 1341checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" 1342 1343[[package]] 1344name = "iri-string" 1345version = "0.7.8" 1346source = "registry+https://github.com/rust-lang/crates.io-index" 1347checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2" 1348dependencies = [ 1349 "memchr", 1350 "serde", 1351] 1352 1353[[package]] 1354name = "is_terminal_polyfill" 1355version = "1.70.1" 1356source = "registry+https://github.com/rust-lang/crates.io-index" 1357checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 1358 1359[[package]] 1360name = "itoa" 1361version = "1.0.15" 1362source = "registry+https://github.com/rust-lang/crates.io-index" 1363checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 1364 1365[[package]] 1366name = "jobserver" 1367version = "0.1.33" 1368source = "registry+https://github.com/rust-lang/crates.io-index" 1369checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a" 1370dependencies = [ 1371 "getrandom 0.3.3", 1372 "libc", 1373] 1374 1375[[package]] 1376name = "js-sys" 1377version = "0.3.77" 1378source = "registry+https://github.com/rust-lang/crates.io-index" 1379checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" 1380dependencies = [ 1381 "once_cell", 1382 "wasm-bindgen", 1383] 1384 1385[[package]] 1386name = "k256" 1387version = "0.13.4" 1388source = "registry+https://github.com/rust-lang/crates.io-index" 1389checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b" 1390dependencies = [ 1391 "cfg-if", 1392 "ecdsa", 1393 "elliptic-curve", 1394 "once_cell", 1395 "sha2", 1396 "signature", 1397] 1398 1399[[package]] 1400name = "lazy_static" 1401version = "1.5.0" 1402source = "registry+https://github.com/rust-lang/crates.io-index" 1403checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 1404 1405[[package]] 1406name = "libc" 1407version = "0.2.172" 1408source = "registry+https://github.com/rust-lang/crates.io-index" 1409checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa" 1410 1411[[package]] 1412name = "litemap" 1413version = "0.8.0" 1414source = "registry+https://github.com/rust-lang/crates.io-index" 1415checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" 1416 1417[[package]] 1418name = "lock_api" 1419version = "0.4.13" 1420source = "registry+https://github.com/rust-lang/crates.io-index" 1421checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765" 1422dependencies = [ 1423 "autocfg", 1424 "scopeguard", 1425] 1426 1427[[package]] 1428name = "log" 1429version = "0.4.27" 1430source = "registry+https://github.com/rust-lang/crates.io-index" 1431checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" 1432 1433[[package]] 1434name = "loom" 1435version = "0.7.2" 1436source = "registry+https://github.com/rust-lang/crates.io-index" 1437checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" 1438dependencies = [ 1439 "cfg-if", 1440 "generator", 1441 "scoped-tls", 1442 "tracing", 1443 "tracing-subscriber", 1444] 1445 1446[[package]] 1447name = "lru" 1448version = "0.12.5" 1449source = "registry+https://github.com/rust-lang/crates.io-index" 1450checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" 1451dependencies = [ 1452 "hashbrown", 1453] 1454 1455[[package]] 1456name = "lru-slab" 1457version = "0.1.2" 1458source = "registry+https://github.com/rust-lang/crates.io-index" 1459checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" 1460 1461[[package]] 1462name = "matchers" 1463version = "0.1.0" 1464source = "registry+https://github.com/rust-lang/crates.io-index" 1465checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 1466dependencies = [ 1467 "regex-automata 0.1.10", 1468] 1469 1470[[package]] 1471name = "matchit" 1472version = "0.8.4" 1473source = "registry+https://github.com/rust-lang/crates.io-index" 1474checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" 1475 1476[[package]] 1477name = "memchr" 1478version = "2.7.4" 1479source = "registry+https://github.com/rust-lang/crates.io-index" 1480checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 1481 1482[[package]] 1483name = "mime" 1484version = "0.3.17" 1485source = "registry+https://github.com/rust-lang/crates.io-index" 1486checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1487 1488[[package]] 1489name = "mime_guess" 1490version = "2.0.5" 1491source = "registry+https://github.com/rust-lang/crates.io-index" 1492checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" 1493dependencies = [ 1494 "mime", 1495 "unicase", 1496] 1497 1498[[package]] 1499name = "miniz_oxide" 1500version = "0.8.8" 1501source = "registry+https://github.com/rust-lang/crates.io-index" 1502checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a" 1503dependencies = [ 1504 "adler2", 1505] 1506 1507[[package]] 1508name = "mio" 1509version = "1.0.4" 1510source = "registry+https://github.com/rust-lang/crates.io-index" 1511checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" 1512dependencies = [ 1513 "libc", 1514 "wasi 0.11.0+wasi-snapshot-preview1", 1515 "windows-sys 0.59.0", 1516] 1517 1518[[package]] 1519name = "moka" 1520version = "0.12.10" 1521source = "registry+https://github.com/rust-lang/crates.io-index" 1522checksum = "a9321642ca94a4282428e6ea4af8cc2ca4eac48ac7a6a4ea8f33f76d0ce70926" 1523dependencies = [ 1524 "crossbeam-channel", 1525 "crossbeam-epoch", 1526 "crossbeam-utils", 1527 "loom", 1528 "parking_lot", 1529 "portable-atomic", 1530 "rustc_version", 1531 "smallvec", 1532 "tagptr", 1533 "thiserror 1.0.69", 1534 "uuid", 1535] 1536 1537[[package]] 1538name = "multibase" 1539version = "0.9.1" 1540source = "registry+https://github.com/rust-lang/crates.io-index" 1541checksum = "9b3539ec3c1f04ac9748a260728e855f261b4977f5c3406612c884564f329404" 1542dependencies = [ 1543 "base-x", 1544 "data-encoding", 1545 "data-encoding-macro", 1546] 1547 1548[[package]] 1549name = "multihash" 1550version = "0.19.3" 1551source = "registry+https://github.com/rust-lang/crates.io-index" 1552checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d" 1553dependencies = [ 1554 "core2", 1555 "serde", 1556 "unsigned-varint", 1557] 1558 1559[[package]] 1560name = "nu-ansi-term" 1561version = "0.46.0" 1562source = "registry+https://github.com/rust-lang/crates.io-index" 1563checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 1564dependencies = [ 1565 "overload", 1566 "winapi", 1567] 1568 1569[[package]] 1570name = "num-traits" 1571version = "0.2.19" 1572source = "registry+https://github.com/rust-lang/crates.io-index" 1573checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 1574dependencies = [ 1575 "autocfg", 1576] 1577 1578[[package]] 1579name = "object" 1580version = "0.36.7" 1581source = "registry+https://github.com/rust-lang/crates.io-index" 1582checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" 1583dependencies = [ 1584 "memchr", 1585] 1586 1587[[package]] 1588name = "once_cell" 1589version = "1.21.3" 1590source = "registry+https://github.com/rust-lang/crates.io-index" 1591checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 1592dependencies = [ 1593 "critical-section", 1594 "portable-atomic", 1595] 1596 1597[[package]] 1598name = "once_cell_polyfill" 1599version = "1.70.1" 1600source = "registry+https://github.com/rust-lang/crates.io-index" 1601checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" 1602 1603[[package]] 1604name = "openssl-probe" 1605version = "0.1.6" 1606source = "registry+https://github.com/rust-lang/crates.io-index" 1607checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" 1608 1609[[package]] 1610name = "overload" 1611version = "0.1.1" 1612source = "registry+https://github.com/rust-lang/crates.io-index" 1613checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 1614 1615[[package]] 1616name = "p256" 1617version = "0.13.2" 1618source = "registry+https://github.com/rust-lang/crates.io-index" 1619checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" 1620dependencies = [ 1621 "ecdsa", 1622 "elliptic-curve", 1623 "primeorder", 1624 "serdect", 1625 "sha2", 1626] 1627 1628[[package]] 1629name = "p384" 1630version = "0.13.1" 1631source = "registry+https://github.com/rust-lang/crates.io-index" 1632checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6" 1633dependencies = [ 1634 "ecdsa", 1635 "elliptic-curve", 1636 "primeorder", 1637 "serdect", 1638 "sha2", 1639] 1640 1641[[package]] 1642name = "parking_lot" 1643version = "0.12.4" 1644source = "registry+https://github.com/rust-lang/crates.io-index" 1645checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13" 1646dependencies = [ 1647 "lock_api", 1648 "parking_lot_core", 1649] 1650 1651[[package]] 1652name = "parking_lot_core" 1653version = "0.9.11" 1654source = "registry+https://github.com/rust-lang/crates.io-index" 1655checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5" 1656dependencies = [ 1657 "cfg-if", 1658 "libc", 1659 "redox_syscall", 1660 "smallvec", 1661 "windows-targets 0.52.6", 1662] 1663 1664[[package]] 1665name = "pem-rfc7468" 1666version = "0.7.0" 1667source = "registry+https://github.com/rust-lang/crates.io-index" 1668checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 1669dependencies = [ 1670 "base64ct", 1671] 1672 1673[[package]] 1674name = "percent-encoding" 1675version = "2.3.1" 1676source = "registry+https://github.com/rust-lang/crates.io-index" 1677checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 1678 1679[[package]] 1680name = "pin-project-lite" 1681version = "0.2.16" 1682source = "registry+https://github.com/rust-lang/crates.io-index" 1683checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 1684 1685[[package]] 1686name = "pin-utils" 1687version = "0.1.0" 1688source = "registry+https://github.com/rust-lang/crates.io-index" 1689checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1690 1691[[package]] 1692name = "pkcs8" 1693version = "0.10.2" 1694source = "registry+https://github.com/rust-lang/crates.io-index" 1695checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 1696dependencies = [ 1697 "der", 1698 "spki", 1699] 1700 1701[[package]] 1702name = "pkg-config" 1703version = "0.3.32" 1704source = "registry+https://github.com/rust-lang/crates.io-index" 1705checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 1706 1707[[package]] 1708name = "portable-atomic" 1709version = "1.11.0" 1710source = "registry+https://github.com/rust-lang/crates.io-index" 1711checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e" 1712 1713[[package]] 1714name = "potential_utf" 1715version = "0.1.2" 1716source = "registry+https://github.com/rust-lang/crates.io-index" 1717checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585" 1718dependencies = [ 1719 "zerovec", 1720] 1721 1722[[package]] 1723name = "ppv-lite86" 1724version = "0.2.21" 1725source = "registry+https://github.com/rust-lang/crates.io-index" 1726checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 1727dependencies = [ 1728 "zerocopy", 1729] 1730 1731[[package]] 1732name = "primeorder" 1733version = "0.13.6" 1734source = "registry+https://github.com/rust-lang/crates.io-index" 1735checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" 1736dependencies = [ 1737 "elliptic-curve", 1738 "serdect", 1739] 1740 1741[[package]] 1742name = "proc-macro2" 1743version = "1.0.95" 1744source = "registry+https://github.com/rust-lang/crates.io-index" 1745checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" 1746dependencies = [ 1747 "unicode-ident", 1748] 1749 1750[[package]] 1751name = "quinn" 1752version = "0.11.8" 1753source = "registry+https://github.com/rust-lang/crates.io-index" 1754checksum = "626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8" 1755dependencies = [ 1756 "bytes", 1757 "cfg_aliases", 1758 "pin-project-lite", 1759 "quinn-proto", 1760 "quinn-udp", 1761 "rustc-hash", 1762 "rustls", 1763 "socket2", 1764 "thiserror 2.0.12", 1765 "tokio", 1766 "tracing", 1767 "web-time", 1768] 1769 1770[[package]] 1771name = "quinn-proto" 1772version = "0.11.12" 1773source = "registry+https://github.com/rust-lang/crates.io-index" 1774checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e" 1775dependencies = [ 1776 "bytes", 1777 "getrandom 0.3.3", 1778 "lru-slab", 1779 "rand 0.9.1", 1780 "ring", 1781 "rustc-hash", 1782 "rustls", 1783 "rustls-pki-types", 1784 "slab", 1785 "thiserror 2.0.12", 1786 "tinyvec", 1787 "tracing", 1788 "web-time", 1789] 1790 1791[[package]] 1792name = "quinn-udp" 1793version = "0.5.12" 1794source = "registry+https://github.com/rust-lang/crates.io-index" 1795checksum = "ee4e529991f949c5e25755532370b8af5d114acae52326361d68d47af64aa842" 1796dependencies = [ 1797 "cfg_aliases", 1798 "libc", 1799 "once_cell", 1800 "socket2", 1801 "tracing", 1802 "windows-sys 0.59.0", 1803] 1804 1805[[package]] 1806name = "quote" 1807version = "1.0.40" 1808source = "registry+https://github.com/rust-lang/crates.io-index" 1809checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" 1810dependencies = [ 1811 "proc-macro2", 1812] 1813 1814[[package]] 1815name = "r-efi" 1816version = "5.2.0" 1817source = "registry+https://github.com/rust-lang/crates.io-index" 1818checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5" 1819 1820[[package]] 1821name = "rand" 1822version = "0.8.5" 1823source = "registry+https://github.com/rust-lang/crates.io-index" 1824checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1825dependencies = [ 1826 "libc", 1827 "rand_chacha 0.3.1", 1828 "rand_core 0.6.4", 1829] 1830 1831[[package]] 1832name = "rand" 1833version = "0.9.1" 1834source = "registry+https://github.com/rust-lang/crates.io-index" 1835checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97" 1836dependencies = [ 1837 "rand_chacha 0.9.0", 1838 "rand_core 0.9.3", 1839] 1840 1841[[package]] 1842name = "rand_chacha" 1843version = "0.3.1" 1844source = "registry+https://github.com/rust-lang/crates.io-index" 1845checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1846dependencies = [ 1847 "ppv-lite86", 1848 "rand_core 0.6.4", 1849] 1850 1851[[package]] 1852name = "rand_chacha" 1853version = "0.9.0" 1854source = "registry+https://github.com/rust-lang/crates.io-index" 1855checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 1856dependencies = [ 1857 "ppv-lite86", 1858 "rand_core 0.9.3", 1859] 1860 1861[[package]] 1862name = "rand_core" 1863version = "0.6.4" 1864source = "registry+https://github.com/rust-lang/crates.io-index" 1865checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1866dependencies = [ 1867 "getrandom 0.2.16", 1868] 1869 1870[[package]] 1871name = "rand_core" 1872version = "0.9.3" 1873source = "registry+https://github.com/rust-lang/crates.io-index" 1874checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" 1875dependencies = [ 1876 "getrandom 0.3.3", 1877] 1878 1879[[package]] 1880name = "redox_syscall" 1881version = "0.5.12" 1882source = "registry+https://github.com/rust-lang/crates.io-index" 1883checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af" 1884dependencies = [ 1885 "bitflags", 1886] 1887 1888[[package]] 1889name = "regex" 1890version = "1.11.1" 1891source = "registry+https://github.com/rust-lang/crates.io-index" 1892checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" 1893dependencies = [ 1894 "aho-corasick", 1895 "memchr", 1896 "regex-automata 0.4.9", 1897 "regex-syntax 0.8.5", 1898] 1899 1900[[package]] 1901name = "regex-automata" 1902version = "0.1.10" 1903source = "registry+https://github.com/rust-lang/crates.io-index" 1904checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 1905dependencies = [ 1906 "regex-syntax 0.6.29", 1907] 1908 1909[[package]] 1910name = "regex-automata" 1911version = "0.4.9" 1912source = "registry+https://github.com/rust-lang/crates.io-index" 1913checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" 1914dependencies = [ 1915 "aho-corasick", 1916 "memchr", 1917 "regex-syntax 0.8.5", 1918] 1919 1920[[package]] 1921name = "regex-syntax" 1922version = "0.6.29" 1923source = "registry+https://github.com/rust-lang/crates.io-index" 1924checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 1925 1926[[package]] 1927name = "regex-syntax" 1928version = "0.8.5" 1929source = "registry+https://github.com/rust-lang/crates.io-index" 1930checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" 1931 1932[[package]] 1933name = "reqwest" 1934version = "0.12.18" 1935source = "registry+https://github.com/rust-lang/crates.io-index" 1936checksum = "e98ff6b0dbbe4d5a37318f433d4fc82babd21631f194d370409ceb2e40b2f0b5" 1937dependencies = [ 1938 "base64", 1939 "bytes", 1940 "encoding_rs", 1941 "futures-core", 1942 "futures-util", 1943 "h2", 1944 "http", 1945 "http-body", 1946 "http-body-util", 1947 "hyper", 1948 "hyper-rustls", 1949 "hyper-util", 1950 "ipnet", 1951 "js-sys", 1952 "log", 1953 "mime", 1954 "mime_guess", 1955 "once_cell", 1956 "percent-encoding", 1957 "pin-project-lite", 1958 "quinn", 1959 "rustls", 1960 "rustls-pki-types", 1961 "serde", 1962 "serde_json", 1963 "serde_urlencoded", 1964 "sync_wrapper", 1965 "tokio", 1966 "tokio-rustls", 1967 "tower", 1968 "tower-http", 1969 "tower-service", 1970 "url", 1971 "wasm-bindgen", 1972 "wasm-bindgen-futures", 1973 "web-sys", 1974 "webpki-roots", 1975] 1976 1977[[package]] 1978name = "reqwest-chain" 1979version = "1.0.0" 1980source = "registry+https://github.com/rust-lang/crates.io-index" 1981checksum = "da5c014fb79a8227db44a0433d748107750d2550b7fca55c59a3d7ee7d2ee2b2" 1982dependencies = [ 1983 "anyhow", 1984 "async-trait", 1985 "http", 1986 "reqwest-middleware", 1987] 1988 1989[[package]] 1990name = "reqwest-middleware" 1991version = "0.4.2" 1992source = "registry+https://github.com/rust-lang/crates.io-index" 1993checksum = "57f17d28a6e6acfe1733fe24bcd30774d13bffa4b8a22535b4c8c98423088d4e" 1994dependencies = [ 1995 "anyhow", 1996 "async-trait", 1997 "http", 1998 "reqwest", 1999 "serde", 2000 "thiserror 1.0.69", 2001 "tower-service", 2002] 2003 2004[[package]] 2005name = "resolv-conf" 2006version = "0.7.4" 2007source = "registry+https://github.com/rust-lang/crates.io-index" 2008checksum = "95325155c684b1c89f7765e30bc1c42e4a6da51ca513615660cb8a62ef9a88e3" 2009 2010[[package]] 2011name = "rfc6979" 2012version = "0.4.0" 2013source = "registry+https://github.com/rust-lang/crates.io-index" 2014checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" 2015dependencies = [ 2016 "hmac", 2017 "subtle", 2018] 2019 2020[[package]] 2021name = "ring" 2022version = "0.17.14" 2023source = "registry+https://github.com/rust-lang/crates.io-index" 2024checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 2025dependencies = [ 2026 "cc", 2027 "cfg-if", 2028 "getrandom 0.2.16", 2029 "libc", 2030 "untrusted", 2031 "windows-sys 0.52.0", 2032] 2033 2034[[package]] 2035name = "rpassword" 2036version = "7.4.0" 2037source = "registry+https://github.com/rust-lang/crates.io-index" 2038checksum = "66d4c8b64f049c6721ec8ccec37ddfc3d641c4a7fca57e8f2a89de509c73df39" 2039dependencies = [ 2040 "libc", 2041 "rtoolbox", 2042 "windows-sys 0.59.0", 2043] 2044 2045[[package]] 2046name = "rtoolbox" 2047version = "0.0.3" 2048source = "registry+https://github.com/rust-lang/crates.io-index" 2049checksum = "a7cc970b249fbe527d6e02e0a227762c9108b2f49d81094fe357ffc6d14d7f6f" 2050dependencies = [ 2051 "libc", 2052 "windows-sys 0.52.0", 2053] 2054 2055[[package]] 2056name = "rustc-demangle" 2057version = "0.1.24" 2058source = "registry+https://github.com/rust-lang/crates.io-index" 2059checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 2060 2061[[package]] 2062name = "rustc-hash" 2063version = "2.1.1" 2064source = "registry+https://github.com/rust-lang/crates.io-index" 2065checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" 2066 2067[[package]] 2068name = "rustc_version" 2069version = "0.4.1" 2070source = "registry+https://github.com/rust-lang/crates.io-index" 2071checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 2072dependencies = [ 2073 "semver", 2074] 2075 2076[[package]] 2077name = "rustls" 2078version = "0.23.27" 2079source = "registry+https://github.com/rust-lang/crates.io-index" 2080checksum = "730944ca083c1c233a75c09f199e973ca499344a2b7ba9e755c457e86fb4a321" 2081dependencies = [ 2082 "once_cell", 2083 "ring", 2084 "rustls-pki-types", 2085 "rustls-webpki", 2086 "subtle", 2087 "zeroize", 2088] 2089 2090[[package]] 2091name = "rustls-native-certs" 2092version = "0.8.1" 2093source = "registry+https://github.com/rust-lang/crates.io-index" 2094checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3" 2095dependencies = [ 2096 "openssl-probe", 2097 "rustls-pki-types", 2098 "schannel", 2099 "security-framework", 2100] 2101 2102[[package]] 2103name = "rustls-pki-types" 2104version = "1.12.0" 2105source = "registry+https://github.com/rust-lang/crates.io-index" 2106checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79" 2107dependencies = [ 2108 "web-time", 2109 "zeroize", 2110] 2111 2112[[package]] 2113name = "rustls-webpki" 2114version = "0.103.3" 2115source = "registry+https://github.com/rust-lang/crates.io-index" 2116checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435" 2117dependencies = [ 2118 "ring", 2119 "rustls-pki-types", 2120 "untrusted", 2121] 2122 2123[[package]] 2124name = "rustversion" 2125version = "1.0.21" 2126source = "registry+https://github.com/rust-lang/crates.io-index" 2127checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d" 2128 2129[[package]] 2130name = "ryu" 2131version = "1.0.20" 2132source = "registry+https://github.com/rust-lang/crates.io-index" 2133checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 2134 2135[[package]] 2136name = "schannel" 2137version = "0.1.27" 2138source = "registry+https://github.com/rust-lang/crates.io-index" 2139checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" 2140dependencies = [ 2141 "windows-sys 0.59.0", 2142] 2143 2144[[package]] 2145name = "scoped-tls" 2146version = "1.0.1" 2147source = "registry+https://github.com/rust-lang/crates.io-index" 2148checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 2149 2150[[package]] 2151name = "scopeguard" 2152version = "1.2.0" 2153source = "registry+https://github.com/rust-lang/crates.io-index" 2154checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2155 2156[[package]] 2157name = "sec1" 2158version = "0.7.3" 2159source = "registry+https://github.com/rust-lang/crates.io-index" 2160checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" 2161dependencies = [ 2162 "base16ct", 2163 "der", 2164 "generic-array", 2165 "pkcs8", 2166 "serdect", 2167 "subtle", 2168 "zeroize", 2169] 2170 2171[[package]] 2172name = "secrecy" 2173version = "0.10.3" 2174source = "registry+https://github.com/rust-lang/crates.io-index" 2175checksum = "e891af845473308773346dc847b2c23ee78fe442e0472ac50e22a18a93d3ae5a" 2176dependencies = [ 2177 "serde", 2178 "zeroize", 2179] 2180 2181[[package]] 2182name = "security-framework" 2183version = "3.2.0" 2184source = "registry+https://github.com/rust-lang/crates.io-index" 2185checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316" 2186dependencies = [ 2187 "bitflags", 2188 "core-foundation 0.10.1", 2189 "core-foundation-sys", 2190 "libc", 2191 "security-framework-sys", 2192] 2193 2194[[package]] 2195name = "security-framework-sys" 2196version = "2.14.0" 2197source = "registry+https://github.com/rust-lang/crates.io-index" 2198checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" 2199dependencies = [ 2200 "core-foundation-sys", 2201 "libc", 2202] 2203 2204[[package]] 2205name = "semver" 2206version = "1.0.26" 2207source = "registry+https://github.com/rust-lang/crates.io-index" 2208checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0" 2209 2210[[package]] 2211name = "serde" 2212version = "1.0.219" 2213source = "registry+https://github.com/rust-lang/crates.io-index" 2214checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" 2215dependencies = [ 2216 "serde_derive", 2217] 2218 2219[[package]] 2220name = "serde_bytes" 2221version = "0.11.17" 2222source = "registry+https://github.com/rust-lang/crates.io-index" 2223checksum = "8437fd221bde2d4ca316d61b90e337e9e702b3820b87d63caa9ba6c02bd06d96" 2224dependencies = [ 2225 "serde", 2226] 2227 2228[[package]] 2229name = "serde_derive" 2230version = "1.0.219" 2231source = "registry+https://github.com/rust-lang/crates.io-index" 2232checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" 2233dependencies = [ 2234 "proc-macro2", 2235 "quote", 2236 "syn", 2237] 2238 2239[[package]] 2240name = "serde_ipld_dagcbor" 2241version = "0.6.3" 2242source = "registry+https://github.com/rust-lang/crates.io-index" 2243checksum = "99600723cf53fb000a66175555098db7e75217c415bdd9a16a65d52a19dcc4fc" 2244dependencies = [ 2245 "cbor4ii", 2246 "ipld-core", 2247 "scopeguard", 2248 "serde", 2249] 2250 2251[[package]] 2252name = "serde_json" 2253version = "1.0.140" 2254source = "registry+https://github.com/rust-lang/crates.io-index" 2255checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" 2256dependencies = [ 2257 "itoa", 2258 "memchr", 2259 "ryu", 2260 "serde", 2261] 2262 2263[[package]] 2264name = "serde_path_to_error" 2265version = "0.1.17" 2266source = "registry+https://github.com/rust-lang/crates.io-index" 2267checksum = "59fab13f937fa393d08645bf3a84bdfe86e296747b506ada67bb15f10f218b2a" 2268dependencies = [ 2269 "itoa", 2270 "serde", 2271] 2272 2273[[package]] 2274name = "serde_urlencoded" 2275version = "0.7.1" 2276source = "registry+https://github.com/rust-lang/crates.io-index" 2277checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2278dependencies = [ 2279 "form_urlencoded", 2280 "itoa", 2281 "ryu", 2282 "serde", 2283] 2284 2285[[package]] 2286name = "serdect" 2287version = "0.2.0" 2288source = "registry+https://github.com/rust-lang/crates.io-index" 2289checksum = "a84f14a19e9a014bb9f4512488d9829a68e04ecabffb0f9904cd1ace94598177" 2290dependencies = [ 2291 "base16ct", 2292 "serde", 2293] 2294 2295[[package]] 2296name = "sha2" 2297version = "0.10.9" 2298source = "registry+https://github.com/rust-lang/crates.io-index" 2299checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 2300dependencies = [ 2301 "cfg-if", 2302 "cpufeatures", 2303 "digest", 2304] 2305 2306[[package]] 2307name = "sharded-slab" 2308version = "0.1.7" 2309source = "registry+https://github.com/rust-lang/crates.io-index" 2310checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 2311dependencies = [ 2312 "lazy_static", 2313] 2314 2315[[package]] 2316name = "shlex" 2317version = "1.3.0" 2318source = "registry+https://github.com/rust-lang/crates.io-index" 2319checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 2320 2321[[package]] 2322name = "signal-hook-registry" 2323version = "1.4.5" 2324source = "registry+https://github.com/rust-lang/crates.io-index" 2325checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410" 2326dependencies = [ 2327 "libc", 2328] 2329 2330[[package]] 2331name = "signature" 2332version = "2.2.0" 2333source = "registry+https://github.com/rust-lang/crates.io-index" 2334checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 2335dependencies = [ 2336 "digest", 2337 "rand_core 0.6.4", 2338] 2339 2340[[package]] 2341name = "simdutf8" 2342version = "0.1.5" 2343source = "registry+https://github.com/rust-lang/crates.io-index" 2344checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" 2345 2346[[package]] 2347name = "slab" 2348version = "0.4.9" 2349source = "registry+https://github.com/rust-lang/crates.io-index" 2350checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 2351dependencies = [ 2352 "autocfg", 2353] 2354 2355[[package]] 2356name = "smallvec" 2357version = "1.15.0" 2358source = "registry+https://github.com/rust-lang/crates.io-index" 2359checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9" 2360 2361[[package]] 2362name = "socket2" 2363version = "0.5.10" 2364source = "registry+https://github.com/rust-lang/crates.io-index" 2365checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" 2366dependencies = [ 2367 "libc", 2368 "windows-sys 0.52.0", 2369] 2370 2371[[package]] 2372name = "spki" 2373version = "0.7.3" 2374source = "registry+https://github.com/rust-lang/crates.io-index" 2375checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 2376dependencies = [ 2377 "base64ct", 2378 "der", 2379] 2380 2381[[package]] 2382name = "stable_deref_trait" 2383version = "1.2.0" 2384source = "registry+https://github.com/rust-lang/crates.io-index" 2385checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 2386 2387[[package]] 2388name = "strsim" 2389version = "0.11.1" 2390source = "registry+https://github.com/rust-lang/crates.io-index" 2391checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 2392 2393[[package]] 2394name = "subtle" 2395version = "2.6.1" 2396source = "registry+https://github.com/rust-lang/crates.io-index" 2397checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 2398 2399[[package]] 2400name = "syn" 2401version = "2.0.101" 2402source = "registry+https://github.com/rust-lang/crates.io-index" 2403checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf" 2404dependencies = [ 2405 "proc-macro2", 2406 "quote", 2407 "unicode-ident", 2408] 2409 2410[[package]] 2411name = "sync_wrapper" 2412version = "1.0.2" 2413source = "registry+https://github.com/rust-lang/crates.io-index" 2414checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 2415dependencies = [ 2416 "futures-core", 2417] 2418 2419[[package]] 2420name = "synstructure" 2421version = "0.13.2" 2422source = "registry+https://github.com/rust-lang/crates.io-index" 2423checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 2424dependencies = [ 2425 "proc-macro2", 2426 "quote", 2427 "syn", 2428] 2429 2430[[package]] 2431name = "system-configuration" 2432version = "0.6.1" 2433source = "registry+https://github.com/rust-lang/crates.io-index" 2434checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" 2435dependencies = [ 2436 "bitflags", 2437 "core-foundation 0.9.4", 2438 "system-configuration-sys", 2439] 2440 2441[[package]] 2442name = "system-configuration-sys" 2443version = "0.6.0" 2444source = "registry+https://github.com/rust-lang/crates.io-index" 2445checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" 2446dependencies = [ 2447 "core-foundation-sys", 2448 "libc", 2449] 2450 2451[[package]] 2452name = "tagptr" 2453version = "0.2.0" 2454source = "registry+https://github.com/rust-lang/crates.io-index" 2455checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417" 2456 2457[[package]] 2458name = "thiserror" 2459version = "1.0.69" 2460source = "registry+https://github.com/rust-lang/crates.io-index" 2461checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 2462dependencies = [ 2463 "thiserror-impl 1.0.69", 2464] 2465 2466[[package]] 2467name = "thiserror" 2468version = "2.0.12" 2469source = "registry+https://github.com/rust-lang/crates.io-index" 2470checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" 2471dependencies = [ 2472 "thiserror-impl 2.0.12", 2473] 2474 2475[[package]] 2476name = "thiserror-impl" 2477version = "1.0.69" 2478source = "registry+https://github.com/rust-lang/crates.io-index" 2479checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 2480dependencies = [ 2481 "proc-macro2", 2482 "quote", 2483 "syn", 2484] 2485 2486[[package]] 2487name = "thiserror-impl" 2488version = "2.0.12" 2489source = "registry+https://github.com/rust-lang/crates.io-index" 2490checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" 2491dependencies = [ 2492 "proc-macro2", 2493 "quote", 2494 "syn", 2495] 2496 2497[[package]] 2498name = "thread_local" 2499version = "1.1.8" 2500source = "registry+https://github.com/rust-lang/crates.io-index" 2501checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" 2502dependencies = [ 2503 "cfg-if", 2504 "once_cell", 2505] 2506 2507[[package]] 2508name = "tinystr" 2509version = "0.8.1" 2510source = "registry+https://github.com/rust-lang/crates.io-index" 2511checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" 2512dependencies = [ 2513 "displaydoc", 2514 "zerovec", 2515] 2516 2517[[package]] 2518name = "tinyvec" 2519version = "1.9.0" 2520source = "registry+https://github.com/rust-lang/crates.io-index" 2521checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71" 2522dependencies = [ 2523 "tinyvec_macros", 2524] 2525 2526[[package]] 2527name = "tinyvec_macros" 2528version = "0.1.1" 2529source = "registry+https://github.com/rust-lang/crates.io-index" 2530checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2531 2532[[package]] 2533name = "tokio" 2534version = "1.45.1" 2535source = "registry+https://github.com/rust-lang/crates.io-index" 2536checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779" 2537dependencies = [ 2538 "backtrace", 2539 "bytes", 2540 "libc", 2541 "mio", 2542 "parking_lot", 2543 "pin-project-lite", 2544 "signal-hook-registry", 2545 "socket2", 2546 "tokio-macros", 2547 "windows-sys 0.52.0", 2548] 2549 2550[[package]] 2551name = "tokio-macros" 2552version = "2.5.0" 2553source = "registry+https://github.com/rust-lang/crates.io-index" 2554checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" 2555dependencies = [ 2556 "proc-macro2", 2557 "quote", 2558 "syn", 2559] 2560 2561[[package]] 2562name = "tokio-rustls" 2563version = "0.26.2" 2564source = "registry+https://github.com/rust-lang/crates.io-index" 2565checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b" 2566dependencies = [ 2567 "rustls", 2568 "tokio", 2569] 2570 2571[[package]] 2572name = "tokio-util" 2573version = "0.7.15" 2574source = "registry+https://github.com/rust-lang/crates.io-index" 2575checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df" 2576dependencies = [ 2577 "bytes", 2578 "futures-core", 2579 "futures-sink", 2580 "pin-project-lite", 2581 "tokio", 2582] 2583 2584[[package]] 2585name = "tokio-websockets" 2586version = "0.11.4" 2587source = "registry+https://github.com/rust-lang/crates.io-index" 2588checksum = "9fcaf159b4e7a376b05b5bfd77bfd38f3324f5fce751b4213bfc7eaa47affb4e" 2589dependencies = [ 2590 "base64", 2591 "bytes", 2592 "futures-core", 2593 "futures-sink", 2594 "http", 2595 "httparse", 2596 "rand 0.9.1", 2597 "ring", 2598 "rustls-native-certs", 2599 "rustls-pki-types", 2600 "simdutf8", 2601 "tokio", 2602 "tokio-rustls", 2603 "tokio-util", 2604] 2605 2606[[package]] 2607name = "tower" 2608version = "0.5.2" 2609source = "registry+https://github.com/rust-lang/crates.io-index" 2610checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" 2611dependencies = [ 2612 "futures-core", 2613 "futures-util", 2614 "pin-project-lite", 2615 "sync_wrapper", 2616 "tokio", 2617 "tower-layer", 2618 "tower-service", 2619 "tracing", 2620] 2621 2622[[package]] 2623name = "tower-http" 2624version = "0.6.4" 2625source = "registry+https://github.com/rust-lang/crates.io-index" 2626checksum = "0fdb0c213ca27a9f57ab69ddb290fd80d970922355b83ae380b395d3986b8a2e" 2627dependencies = [ 2628 "bitflags", 2629 "bytes", 2630 "futures-util", 2631 "http", 2632 "http-body", 2633 "iri-string", 2634 "pin-project-lite", 2635 "tower", 2636 "tower-layer", 2637 "tower-service", 2638] 2639 2640[[package]] 2641name = "tower-layer" 2642version = "0.3.3" 2643source = "registry+https://github.com/rust-lang/crates.io-index" 2644checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 2645 2646[[package]] 2647name = "tower-service" 2648version = "0.3.3" 2649source = "registry+https://github.com/rust-lang/crates.io-index" 2650checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 2651 2652[[package]] 2653name = "tracing" 2654version = "0.1.41" 2655source = "registry+https://github.com/rust-lang/crates.io-index" 2656checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 2657dependencies = [ 2658 "log", 2659 "pin-project-lite", 2660 "tracing-attributes", 2661 "tracing-core", 2662] 2663 2664[[package]] 2665name = "tracing-attributes" 2666version = "0.1.28" 2667source = "registry+https://github.com/rust-lang/crates.io-index" 2668checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" 2669dependencies = [ 2670 "proc-macro2", 2671 "quote", 2672 "syn", 2673] 2674 2675[[package]] 2676name = "tracing-core" 2677version = "0.1.33" 2678source = "registry+https://github.com/rust-lang/crates.io-index" 2679checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" 2680dependencies = [ 2681 "once_cell", 2682 "valuable", 2683] 2684 2685[[package]] 2686name = "tracing-log" 2687version = "0.2.0" 2688source = "registry+https://github.com/rust-lang/crates.io-index" 2689checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 2690dependencies = [ 2691 "log", 2692 "once_cell", 2693 "tracing-core", 2694] 2695 2696[[package]] 2697name = "tracing-subscriber" 2698version = "0.3.19" 2699source = "registry+https://github.com/rust-lang/crates.io-index" 2700checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008" 2701dependencies = [ 2702 "matchers", 2703 "nu-ansi-term", 2704 "once_cell", 2705 "regex", 2706 "sharded-slab", 2707 "smallvec", 2708 "thread_local", 2709 "tracing", 2710 "tracing-core", 2711 "tracing-log", 2712] 2713 2714[[package]] 2715name = "try-lock" 2716version = "0.2.5" 2717source = "registry+https://github.com/rust-lang/crates.io-index" 2718checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 2719 2720[[package]] 2721name = "typenum" 2722version = "1.18.0" 2723source = "registry+https://github.com/rust-lang/crates.io-index" 2724checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f" 2725 2726[[package]] 2727name = "ulid" 2728version = "1.2.1" 2729source = "registry+https://github.com/rust-lang/crates.io-index" 2730checksum = "470dbf6591da1b39d43c14523b2b469c86879a53e8b758c8e090a470fe7b1fbe" 2731dependencies = [ 2732 "rand 0.9.1", 2733 "web-time", 2734] 2735 2736[[package]] 2737name = "unicase" 2738version = "2.8.1" 2739source = "registry+https://github.com/rust-lang/crates.io-index" 2740checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" 2741 2742[[package]] 2743name = "unicode-ident" 2744version = "1.0.18" 2745source = "registry+https://github.com/rust-lang/crates.io-index" 2746checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" 2747 2748[[package]] 2749name = "unsigned-varint" 2750version = "0.8.0" 2751source = "registry+https://github.com/rust-lang/crates.io-index" 2752checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06" 2753 2754[[package]] 2755name = "untrusted" 2756version = "0.9.0" 2757source = "registry+https://github.com/rust-lang/crates.io-index" 2758checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 2759 2760[[package]] 2761name = "url" 2762version = "2.5.4" 2763source = "registry+https://github.com/rust-lang/crates.io-index" 2764checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" 2765dependencies = [ 2766 "form_urlencoded", 2767 "idna", 2768 "percent-encoding", 2769] 2770 2771[[package]] 2772name = "urlencoding" 2773version = "2.1.3" 2774source = "registry+https://github.com/rust-lang/crates.io-index" 2775checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" 2776 2777[[package]] 2778name = "utf8_iter" 2779version = "1.0.4" 2780source = "registry+https://github.com/rust-lang/crates.io-index" 2781checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 2782 2783[[package]] 2784name = "utf8parse" 2785version = "0.2.2" 2786source = "registry+https://github.com/rust-lang/crates.io-index" 2787checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 2788 2789[[package]] 2790name = "uuid" 2791version = "1.17.0" 2792source = "registry+https://github.com/rust-lang/crates.io-index" 2793checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d" 2794dependencies = [ 2795 "getrandom 0.3.3", 2796 "js-sys", 2797 "wasm-bindgen", 2798] 2799 2800[[package]] 2801name = "valuable" 2802version = "0.1.1" 2803source = "registry+https://github.com/rust-lang/crates.io-index" 2804checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 2805 2806[[package]] 2807name = "version_check" 2808version = "0.9.5" 2809source = "registry+https://github.com/rust-lang/crates.io-index" 2810checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 2811 2812[[package]] 2813name = "want" 2814version = "0.3.1" 2815source = "registry+https://github.com/rust-lang/crates.io-index" 2816checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 2817dependencies = [ 2818 "try-lock", 2819] 2820 2821[[package]] 2822name = "wasi" 2823version = "0.11.0+wasi-snapshot-preview1" 2824source = "registry+https://github.com/rust-lang/crates.io-index" 2825checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2826 2827[[package]] 2828name = "wasi" 2829version = "0.14.2+wasi-0.2.4" 2830source = "registry+https://github.com/rust-lang/crates.io-index" 2831checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" 2832dependencies = [ 2833 "wit-bindgen-rt", 2834] 2835 2836[[package]] 2837name = "wasm-bindgen" 2838version = "0.2.100" 2839source = "registry+https://github.com/rust-lang/crates.io-index" 2840checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" 2841dependencies = [ 2842 "cfg-if", 2843 "once_cell", 2844 "rustversion", 2845 "wasm-bindgen-macro", 2846] 2847 2848[[package]] 2849name = "wasm-bindgen-backend" 2850version = "0.2.100" 2851source = "registry+https://github.com/rust-lang/crates.io-index" 2852checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" 2853dependencies = [ 2854 "bumpalo", 2855 "log", 2856 "proc-macro2", 2857 "quote", 2858 "syn", 2859 "wasm-bindgen-shared", 2860] 2861 2862[[package]] 2863name = "wasm-bindgen-futures" 2864version = "0.4.50" 2865source = "registry+https://github.com/rust-lang/crates.io-index" 2866checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" 2867dependencies = [ 2868 "cfg-if", 2869 "js-sys", 2870 "once_cell", 2871 "wasm-bindgen", 2872 "web-sys", 2873] 2874 2875[[package]] 2876name = "wasm-bindgen-macro" 2877version = "0.2.100" 2878source = "registry+https://github.com/rust-lang/crates.io-index" 2879checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" 2880dependencies = [ 2881 "quote", 2882 "wasm-bindgen-macro-support", 2883] 2884 2885[[package]] 2886name = "wasm-bindgen-macro-support" 2887version = "0.2.100" 2888source = "registry+https://github.com/rust-lang/crates.io-index" 2889checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" 2890dependencies = [ 2891 "proc-macro2", 2892 "quote", 2893 "syn", 2894 "wasm-bindgen-backend", 2895 "wasm-bindgen-shared", 2896] 2897 2898[[package]] 2899name = "wasm-bindgen-shared" 2900version = "0.2.100" 2901source = "registry+https://github.com/rust-lang/crates.io-index" 2902checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" 2903dependencies = [ 2904 "unicode-ident", 2905] 2906 2907[[package]] 2908name = "web-sys" 2909version = "0.3.77" 2910source = "registry+https://github.com/rust-lang/crates.io-index" 2911checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" 2912dependencies = [ 2913 "js-sys", 2914 "wasm-bindgen", 2915] 2916 2917[[package]] 2918name = "web-time" 2919version = "1.1.0" 2920source = "registry+https://github.com/rust-lang/crates.io-index" 2921checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 2922dependencies = [ 2923 "js-sys", 2924 "wasm-bindgen", 2925] 2926 2927[[package]] 2928name = "webpki-roots" 2929version = "1.0.0" 2930source = "registry+https://github.com/rust-lang/crates.io-index" 2931checksum = "2853738d1cc4f2da3a225c18ec6c3721abb31961096e9dbf5ab35fa88b19cfdb" 2932dependencies = [ 2933 "rustls-pki-types", 2934] 2935 2936[[package]] 2937name = "widestring" 2938version = "1.2.0" 2939source = "registry+https://github.com/rust-lang/crates.io-index" 2940checksum = "dd7cf3379ca1aac9eea11fba24fd7e315d621f8dfe35c8d7d2be8b793726e07d" 2941 2942[[package]] 2943name = "winapi" 2944version = "0.3.9" 2945source = "registry+https://github.com/rust-lang/crates.io-index" 2946checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2947dependencies = [ 2948 "winapi-i686-pc-windows-gnu", 2949 "winapi-x86_64-pc-windows-gnu", 2950] 2951 2952[[package]] 2953name = "winapi-i686-pc-windows-gnu" 2954version = "0.4.0" 2955source = "registry+https://github.com/rust-lang/crates.io-index" 2956checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2957 2958[[package]] 2959name = "winapi-x86_64-pc-windows-gnu" 2960version = "0.4.0" 2961source = "registry+https://github.com/rust-lang/crates.io-index" 2962checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2963 2964[[package]] 2965name = "windows" 2966version = "0.61.1" 2967source = "registry+https://github.com/rust-lang/crates.io-index" 2968checksum = "c5ee8f3d025738cb02bad7868bbb5f8a6327501e870bf51f1b455b0a2454a419" 2969dependencies = [ 2970 "windows-collections", 2971 "windows-core", 2972 "windows-future", 2973 "windows-link", 2974 "windows-numerics", 2975] 2976 2977[[package]] 2978name = "windows-collections" 2979version = "0.2.0" 2980source = "registry+https://github.com/rust-lang/crates.io-index" 2981checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" 2982dependencies = [ 2983 "windows-core", 2984] 2985 2986[[package]] 2987name = "windows-core" 2988version = "0.61.2" 2989source = "registry+https://github.com/rust-lang/crates.io-index" 2990checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" 2991dependencies = [ 2992 "windows-implement", 2993 "windows-interface", 2994 "windows-link", 2995 "windows-result", 2996 "windows-strings 0.4.2", 2997] 2998 2999[[package]] 3000name = "windows-future" 3001version = "0.2.1" 3002source = "registry+https://github.com/rust-lang/crates.io-index" 3003checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" 3004dependencies = [ 3005 "windows-core", 3006 "windows-link", 3007 "windows-threading", 3008] 3009 3010[[package]] 3011name = "windows-implement" 3012version = "0.60.0" 3013source = "registry+https://github.com/rust-lang/crates.io-index" 3014checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836" 3015dependencies = [ 3016 "proc-macro2", 3017 "quote", 3018 "syn", 3019] 3020 3021[[package]] 3022name = "windows-interface" 3023version = "0.59.1" 3024source = "registry+https://github.com/rust-lang/crates.io-index" 3025checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8" 3026dependencies = [ 3027 "proc-macro2", 3028 "quote", 3029 "syn", 3030] 3031 3032[[package]] 3033name = "windows-link" 3034version = "0.1.1" 3035source = "registry+https://github.com/rust-lang/crates.io-index" 3036checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38" 3037 3038[[package]] 3039name = "windows-numerics" 3040version = "0.2.0" 3041source = "registry+https://github.com/rust-lang/crates.io-index" 3042checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" 3043dependencies = [ 3044 "windows-core", 3045 "windows-link", 3046] 3047 3048[[package]] 3049name = "windows-registry" 3050version = "0.4.0" 3051source = "registry+https://github.com/rust-lang/crates.io-index" 3052checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3" 3053dependencies = [ 3054 "windows-result", 3055 "windows-strings 0.3.1", 3056 "windows-targets 0.53.0", 3057] 3058 3059[[package]] 3060name = "windows-result" 3061version = "0.3.4" 3062source = "registry+https://github.com/rust-lang/crates.io-index" 3063checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" 3064dependencies = [ 3065 "windows-link", 3066] 3067 3068[[package]] 3069name = "windows-strings" 3070version = "0.3.1" 3071source = "registry+https://github.com/rust-lang/crates.io-index" 3072checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319" 3073dependencies = [ 3074 "windows-link", 3075] 3076 3077[[package]] 3078name = "windows-strings" 3079version = "0.4.2" 3080source = "registry+https://github.com/rust-lang/crates.io-index" 3081checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" 3082dependencies = [ 3083 "windows-link", 3084] 3085 3086[[package]] 3087name = "windows-sys" 3088version = "0.48.0" 3089source = "registry+https://github.com/rust-lang/crates.io-index" 3090checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 3091dependencies = [ 3092 "windows-targets 0.48.5", 3093] 3094 3095[[package]] 3096name = "windows-sys" 3097version = "0.52.0" 3098source = "registry+https://github.com/rust-lang/crates.io-index" 3099checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 3100dependencies = [ 3101 "windows-targets 0.52.6", 3102] 3103 3104[[package]] 3105name = "windows-sys" 3106version = "0.59.0" 3107source = "registry+https://github.com/rust-lang/crates.io-index" 3108checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 3109dependencies = [ 3110 "windows-targets 0.52.6", 3111] 3112 3113[[package]] 3114name = "windows-targets" 3115version = "0.48.5" 3116source = "registry+https://github.com/rust-lang/crates.io-index" 3117checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 3118dependencies = [ 3119 "windows_aarch64_gnullvm 0.48.5", 3120 "windows_aarch64_msvc 0.48.5", 3121 "windows_i686_gnu 0.48.5", 3122 "windows_i686_msvc 0.48.5", 3123 "windows_x86_64_gnu 0.48.5", 3124 "windows_x86_64_gnullvm 0.48.5", 3125 "windows_x86_64_msvc 0.48.5", 3126] 3127 3128[[package]] 3129name = "windows-targets" 3130version = "0.52.6" 3131source = "registry+https://github.com/rust-lang/crates.io-index" 3132checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 3133dependencies = [ 3134 "windows_aarch64_gnullvm 0.52.6", 3135 "windows_aarch64_msvc 0.52.6", 3136 "windows_i686_gnu 0.52.6", 3137 "windows_i686_gnullvm 0.52.6", 3138 "windows_i686_msvc 0.52.6", 3139 "windows_x86_64_gnu 0.52.6", 3140 "windows_x86_64_gnullvm 0.52.6", 3141 "windows_x86_64_msvc 0.52.6", 3142] 3143 3144[[package]] 3145name = "windows-targets" 3146version = "0.53.0" 3147source = "registry+https://github.com/rust-lang/crates.io-index" 3148checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b" 3149dependencies = [ 3150 "windows_aarch64_gnullvm 0.53.0", 3151 "windows_aarch64_msvc 0.53.0", 3152 "windows_i686_gnu 0.53.0", 3153 "windows_i686_gnullvm 0.53.0", 3154 "windows_i686_msvc 0.53.0", 3155 "windows_x86_64_gnu 0.53.0", 3156 "windows_x86_64_gnullvm 0.53.0", 3157 "windows_x86_64_msvc 0.53.0", 3158] 3159 3160[[package]] 3161name = "windows-threading" 3162version = "0.1.0" 3163source = "registry+https://github.com/rust-lang/crates.io-index" 3164checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" 3165dependencies = [ 3166 "windows-link", 3167] 3168 3169[[package]] 3170name = "windows_aarch64_gnullvm" 3171version = "0.48.5" 3172source = "registry+https://github.com/rust-lang/crates.io-index" 3173checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 3174 3175[[package]] 3176name = "windows_aarch64_gnullvm" 3177version = "0.52.6" 3178source = "registry+https://github.com/rust-lang/crates.io-index" 3179checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 3180 3181[[package]] 3182name = "windows_aarch64_gnullvm" 3183version = "0.53.0" 3184source = "registry+https://github.com/rust-lang/crates.io-index" 3185checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" 3186 3187[[package]] 3188name = "windows_aarch64_msvc" 3189version = "0.48.5" 3190source = "registry+https://github.com/rust-lang/crates.io-index" 3191checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 3192 3193[[package]] 3194name = "windows_aarch64_msvc" 3195version = "0.52.6" 3196source = "registry+https://github.com/rust-lang/crates.io-index" 3197checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 3198 3199[[package]] 3200name = "windows_aarch64_msvc" 3201version = "0.53.0" 3202source = "registry+https://github.com/rust-lang/crates.io-index" 3203checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" 3204 3205[[package]] 3206name = "windows_i686_gnu" 3207version = "0.48.5" 3208source = "registry+https://github.com/rust-lang/crates.io-index" 3209checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 3210 3211[[package]] 3212name = "windows_i686_gnu" 3213version = "0.52.6" 3214source = "registry+https://github.com/rust-lang/crates.io-index" 3215checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 3216 3217[[package]] 3218name = "windows_i686_gnu" 3219version = "0.53.0" 3220source = "registry+https://github.com/rust-lang/crates.io-index" 3221checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" 3222 3223[[package]] 3224name = "windows_i686_gnullvm" 3225version = "0.52.6" 3226source = "registry+https://github.com/rust-lang/crates.io-index" 3227checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 3228 3229[[package]] 3230name = "windows_i686_gnullvm" 3231version = "0.53.0" 3232source = "registry+https://github.com/rust-lang/crates.io-index" 3233checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" 3234 3235[[package]] 3236name = "windows_i686_msvc" 3237version = "0.48.5" 3238source = "registry+https://github.com/rust-lang/crates.io-index" 3239checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 3240 3241[[package]] 3242name = "windows_i686_msvc" 3243version = "0.52.6" 3244source = "registry+https://github.com/rust-lang/crates.io-index" 3245checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 3246 3247[[package]] 3248name = "windows_i686_msvc" 3249version = "0.53.0" 3250source = "registry+https://github.com/rust-lang/crates.io-index" 3251checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" 3252 3253[[package]] 3254name = "windows_x86_64_gnu" 3255version = "0.48.5" 3256source = "registry+https://github.com/rust-lang/crates.io-index" 3257checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 3258 3259[[package]] 3260name = "windows_x86_64_gnu" 3261version = "0.52.6" 3262source = "registry+https://github.com/rust-lang/crates.io-index" 3263checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 3264 3265[[package]] 3266name = "windows_x86_64_gnu" 3267version = "0.53.0" 3268source = "registry+https://github.com/rust-lang/crates.io-index" 3269checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" 3270 3271[[package]] 3272name = "windows_x86_64_gnullvm" 3273version = "0.48.5" 3274source = "registry+https://github.com/rust-lang/crates.io-index" 3275checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 3276 3277[[package]] 3278name = "windows_x86_64_gnullvm" 3279version = "0.52.6" 3280source = "registry+https://github.com/rust-lang/crates.io-index" 3281checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 3282 3283[[package]] 3284name = "windows_x86_64_gnullvm" 3285version = "0.53.0" 3286source = "registry+https://github.com/rust-lang/crates.io-index" 3287checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" 3288 3289[[package]] 3290name = "windows_x86_64_msvc" 3291version = "0.48.5" 3292source = "registry+https://github.com/rust-lang/crates.io-index" 3293checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 3294 3295[[package]] 3296name = "windows_x86_64_msvc" 3297version = "0.52.6" 3298source = "registry+https://github.com/rust-lang/crates.io-index" 3299checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 3300 3301[[package]] 3302name = "windows_x86_64_msvc" 3303version = "0.53.0" 3304source = "registry+https://github.com/rust-lang/crates.io-index" 3305checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" 3306 3307[[package]] 3308name = "winreg" 3309version = "0.50.0" 3310source = "registry+https://github.com/rust-lang/crates.io-index" 3311checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 3312dependencies = [ 3313 "cfg-if", 3314 "windows-sys 0.48.0", 3315] 3316 3317[[package]] 3318name = "wit-bindgen-rt" 3319version = "0.39.0" 3320source = "registry+https://github.com/rust-lang/crates.io-index" 3321checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" 3322dependencies = [ 3323 "bitflags", 3324] 3325 3326[[package]] 3327name = "writeable" 3328version = "0.6.1" 3329source = "registry+https://github.com/rust-lang/crates.io-index" 3330checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" 3331 3332[[package]] 3333name = "yoke" 3334version = "0.8.0" 3335source = "registry+https://github.com/rust-lang/crates.io-index" 3336checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" 3337dependencies = [ 3338 "serde", 3339 "stable_deref_trait", 3340 "yoke-derive", 3341 "zerofrom", 3342] 3343 3344[[package]] 3345name = "yoke-derive" 3346version = "0.8.0" 3347source = "registry+https://github.com/rust-lang/crates.io-index" 3348checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" 3349dependencies = [ 3350 "proc-macro2", 3351 "quote", 3352 "syn", 3353 "synstructure", 3354] 3355 3356[[package]] 3357name = "zerocopy" 3358version = "0.8.25" 3359source = "registry+https://github.com/rust-lang/crates.io-index" 3360checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb" 3361dependencies = [ 3362 "zerocopy-derive", 3363] 3364 3365[[package]] 3366name = "zerocopy-derive" 3367version = "0.8.25" 3368source = "registry+https://github.com/rust-lang/crates.io-index" 3369checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef" 3370dependencies = [ 3371 "proc-macro2", 3372 "quote", 3373 "syn", 3374] 3375 3376[[package]] 3377name = "zerofrom" 3378version = "0.1.6" 3379source = "registry+https://github.com/rust-lang/crates.io-index" 3380checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 3381dependencies = [ 3382 "zerofrom-derive", 3383] 3384 3385[[package]] 3386name = "zerofrom-derive" 3387version = "0.1.6" 3388source = "registry+https://github.com/rust-lang/crates.io-index" 3389checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 3390dependencies = [ 3391 "proc-macro2", 3392 "quote", 3393 "syn", 3394 "synstructure", 3395] 3396 3397[[package]] 3398name = "zeroize" 3399version = "1.8.1" 3400source = "registry+https://github.com/rust-lang/crates.io-index" 3401checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 3402dependencies = [ 3403 "zeroize_derive", 3404] 3405 3406[[package]] 3407name = "zeroize_derive" 3408version = "1.4.2" 3409source = "registry+https://github.com/rust-lang/crates.io-index" 3410checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" 3411dependencies = [ 3412 "proc-macro2", 3413 "quote", 3414 "syn", 3415] 3416 3417[[package]] 3418name = "zerotrie" 3419version = "0.2.2" 3420source = "registry+https://github.com/rust-lang/crates.io-index" 3421checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" 3422dependencies = [ 3423 "displaydoc", 3424 "yoke", 3425 "zerofrom", 3426] 3427 3428[[package]] 3429name = "zerovec" 3430version = "0.11.2" 3431source = "registry+https://github.com/rust-lang/crates.io-index" 3432checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428" 3433dependencies = [ 3434 "yoke", 3435 "zerofrom", 3436 "zerovec-derive", 3437] 3438 3439[[package]] 3440name = "zerovec-derive" 3441version = "0.11.1" 3442source = "registry+https://github.com/rust-lang/crates.io-index" 3443checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" 3444dependencies = [ 3445 "proc-macro2", 3446 "quote", 3447 "syn", 3448] 3449 3450[[package]] 3451name = "zstd" 3452version = "0.13.3" 3453source = "registry+https://github.com/rust-lang/crates.io-index" 3454checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" 3455dependencies = [ 3456 "zstd-safe", 3457] 3458 3459[[package]] 3460name = "zstd-safe" 3461version = "7.2.4" 3462source = "registry+https://github.com/rust-lang/crates.io-index" 3463checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d" 3464dependencies = [ 3465 "zstd-sys", 3466] 3467 3468[[package]] 3469name = "zstd-sys" 3470version = "2.0.15+zstd.1.5.7" 3471source = "registry+https://github.com/rust-lang/crates.io-index" 3472checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237" 3473dependencies = [ 3474 "cc", 3475 "pkg-config", 3476]