Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

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

gleam / Cargo.lock
102 kB 4134 lines
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "adler2" 7version = "2.0.0" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" 10 11[[package]] 12name = "aead" 13version = "0.5.2" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" 16dependencies = [ 17 "crypto-common", 18 "generic-array", 19] 20 21[[package]] 22name = "age" 23version = "0.11.1" 24source = "registry+https://github.com/rust-lang/crates.io-index" 25checksum = "57fc171f4874fa10887e47088f81a55fcf030cd421aa31ec2b370cafebcc608a" 26dependencies = [ 27 "age-core", 28 "base64 0.21.7", 29 "bech32", 30 "chacha20poly1305", 31 "cookie-factory", 32 "hmac", 33 "i18n-embed", 34 "i18n-embed-fl", 35 "lazy_static", 36 "nom", 37 "pin-project", 38 "rand 0.8.5", 39 "rust-embed", 40 "scrypt", 41 "sha2", 42 "subtle", 43 "x25519-dalek", 44 "zeroize", 45] 46 47[[package]] 48name = "age-core" 49version = "0.11.0" 50source = "registry+https://github.com/rust-lang/crates.io-index" 51checksum = "e2bf6a89c984ca9d850913ece2da39e1d200563b0a94b002b253beee4c5acf99" 52dependencies = [ 53 "base64 0.21.7", 54 "chacha20poly1305", 55 "cookie-factory", 56 "hkdf", 57 "io_tee", 58 "nom", 59 "rand 0.8.5", 60 "secrecy", 61 "sha2", 62] 63 64[[package]] 65name = "aho-corasick" 66version = "1.1.3" 67source = "registry+https://github.com/rust-lang/crates.io-index" 68checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 69dependencies = [ 70 "memchr", 71] 72 73[[package]] 74name = "anstream" 75version = "0.6.14" 76source = "registry+https://github.com/rust-lang/crates.io-index" 77checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b" 78dependencies = [ 79 "anstyle", 80 "anstyle-parse", 81 "anstyle-query", 82 "anstyle-wincon", 83 "colorchoice", 84 "is_terminal_polyfill", 85 "utf8parse", 86] 87 88[[package]] 89name = "anstyle" 90version = "1.0.8" 91source = "registry+https://github.com/rust-lang/crates.io-index" 92checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" 93 94[[package]] 95name = "anstyle-parse" 96version = "0.2.4" 97source = "registry+https://github.com/rust-lang/crates.io-index" 98checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4" 99dependencies = [ 100 "utf8parse", 101] 102 103[[package]] 104name = "anstyle-query" 105version = "1.1.0" 106source = "registry+https://github.com/rust-lang/crates.io-index" 107checksum = "ad186efb764318d35165f1758e7dcef3b10628e26d41a44bc5550652e6804391" 108dependencies = [ 109 "windows-sys 0.52.0", 110] 111 112[[package]] 113name = "anstyle-wincon" 114version = "3.0.3" 115source = "registry+https://github.com/rust-lang/crates.io-index" 116checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19" 117dependencies = [ 118 "anstyle", 119 "windows-sys 0.52.0", 120] 121 122[[package]] 123name = "anyhow" 124version = "1.0.86" 125source = "registry+https://github.com/rust-lang/crates.io-index" 126checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" 127 128[[package]] 129name = "arc-swap" 130version = "1.7.1" 131source = "registry+https://github.com/rust-lang/crates.io-index" 132checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" 133 134[[package]] 135name = "askama" 136version = "0.12.1" 137source = "registry+https://github.com/rust-lang/crates.io-index" 138checksum = "b79091df18a97caea757e28cd2d5fda49c6cd4bd01ddffd7ff01ace0c0ad2c28" 139dependencies = [ 140 "askama_derive", 141 "askama_escape", 142 "humansize", 143 "num-traits", 144 "percent-encoding", 145] 146 147[[package]] 148name = "askama_derive" 149version = "0.12.5" 150source = "registry+https://github.com/rust-lang/crates.io-index" 151checksum = "19fe8d6cb13c4714962c072ea496f3392015f0989b1a2847bb4b2d9effd71d83" 152dependencies = [ 153 "askama_parser", 154 "basic-toml", 155 "mime", 156 "mime_guess", 157 "proc-macro2", 158 "quote", 159 "serde", 160 "syn 2.0.101", 161] 162 163[[package]] 164name = "askama_escape" 165version = "0.10.3" 166source = "registry+https://github.com/rust-lang/crates.io-index" 167checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341" 168 169[[package]] 170name = "askama_parser" 171version = "0.2.1" 172source = "registry+https://github.com/rust-lang/crates.io-index" 173checksum = "acb1161c6b64d1c3d83108213c2a2533a342ac225aabd0bda218278c2ddb00c0" 174dependencies = [ 175 "nom", 176] 177 178[[package]] 179name = "asn1-rs" 180version = "0.5.2" 181source = "registry+https://github.com/rust-lang/crates.io-index" 182checksum = "7f6fd5ddaf0351dff5b8da21b2fb4ff8e08ddd02857f0bf69c47639106c0fff0" 183dependencies = [ 184 "asn1-rs-derive", 185 "asn1-rs-impl", 186 "displaydoc", 187 "nom", 188 "num-traits", 189 "rusticata-macros", 190 "thiserror 1.0.69", 191 "time", 192] 193 194[[package]] 195name = "asn1-rs-derive" 196version = "0.4.0" 197source = "registry+https://github.com/rust-lang/crates.io-index" 198checksum = "726535892e8eae7e70657b4c8ea93d26b8553afb1ce617caee529ef96d7dee6c" 199dependencies = [ 200 "proc-macro2", 201 "quote", 202 "syn 1.0.109", 203 "synstructure 0.12.6", 204] 205 206[[package]] 207name = "asn1-rs-impl" 208version = "0.1.0" 209source = "registry+https://github.com/rust-lang/crates.io-index" 210checksum = "2777730b2039ac0f95f093556e61b6d26cebed5393ca6f152717777cec3a42ed" 211dependencies = [ 212 "proc-macro2", 213 "quote", 214 "syn 1.0.109", 215] 216 217[[package]] 218name = "async-trait" 219version = "0.1.89" 220source = "registry+https://github.com/rust-lang/crates.io-index" 221checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" 222dependencies = [ 223 "proc-macro2", 224 "quote", 225 "syn 2.0.101", 226] 227 228[[package]] 229name = "autocfg" 230version = "1.3.0" 231source = "registry+https://github.com/rust-lang/crates.io-index" 232checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 233 234[[package]] 235name = "base16" 236version = "0.2.1" 237source = "registry+https://github.com/rust-lang/crates.io-index" 238checksum = "d27c3610c36aee21ce8ac510e6224498de4228ad772a171ed65643a24693a5a8" 239 240[[package]] 241name = "base64" 242version = "0.13.1" 243source = "registry+https://github.com/rust-lang/crates.io-index" 244checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 245 246[[package]] 247name = "base64" 248version = "0.21.7" 249source = "registry+https://github.com/rust-lang/crates.io-index" 250checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 251 252[[package]] 253name = "base64" 254version = "0.22.0" 255source = "registry+https://github.com/rust-lang/crates.io-index" 256checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51" 257 258[[package]] 259name = "basic-toml" 260version = "0.1.9" 261source = "registry+https://github.com/rust-lang/crates.io-index" 262checksum = "823388e228f614e9558c6804262db37960ec8821856535f5c3f59913140558f8" 263dependencies = [ 264 "serde", 265] 266 267[[package]] 268name = "bech32" 269version = "0.9.1" 270source = "registry+https://github.com/rust-lang/crates.io-index" 271checksum = "d86b93f97252c47b41663388e6d155714a9d0c398b99f1005cbc5f978b29f445" 272 273[[package]] 274name = "bimap" 275version = "0.6.3" 276source = "registry+https://github.com/rust-lang/crates.io-index" 277checksum = "230c5f1ca6a325a32553f8640d31ac9b49f2411e901e427570154868b46da4f7" 278 279[[package]] 280name = "bincode" 281version = "1.3.3" 282source = "registry+https://github.com/rust-lang/crates.io-index" 283checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 284dependencies = [ 285 "serde", 286] 287 288[[package]] 289name = "bitflags" 290version = "1.3.2" 291source = "registry+https://github.com/rust-lang/crates.io-index" 292checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 293 294[[package]] 295name = "bitflags" 296version = "2.5.0" 297source = "registry+https://github.com/rust-lang/crates.io-index" 298checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" 299 300[[package]] 301name = "bitmaps" 302version = "2.1.0" 303source = "registry+https://github.com/rust-lang/crates.io-index" 304checksum = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2" 305dependencies = [ 306 "typenum", 307] 308 309[[package]] 310name = "bitvec" 311version = "1.0.1" 312source = "registry+https://github.com/rust-lang/crates.io-index" 313checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 314dependencies = [ 315 "funty", 316 "radium", 317 "serde", 318 "tap", 319 "wyz", 320] 321 322[[package]] 323name = "block-buffer" 324version = "0.10.4" 325source = "registry+https://github.com/rust-lang/crates.io-index" 326checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 327dependencies = [ 328 "generic-array", 329] 330 331[[package]] 332name = "bstr" 333version = "1.9.1" 334source = "registry+https://github.com/rust-lang/crates.io-index" 335checksum = "05efc5cfd9110c8416e471df0e96702d58690178e206e61b7173706673c93706" 336dependencies = [ 337 "memchr", 338 "regex-automata", 339 "serde", 340] 341 342[[package]] 343name = "bumpalo" 344version = "3.15.4" 345source = "registry+https://github.com/rust-lang/crates.io-index" 346checksum = "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa" 347 348[[package]] 349name = "bytes" 350version = "1.10.0" 351source = "registry+https://github.com/rust-lang/crates.io-index" 352checksum = "f61dac84819c6588b558454b194026eb1f09c293b9036ae9b159e74e73ab6cf9" 353 354[[package]] 355name = "camino" 356version = "1.2.1" 357source = "registry+https://github.com/rust-lang/crates.io-index" 358checksum = "276a59bf2b2c967788139340c9f0c5b12d7fd6630315c15c217e559de85d2609" 359dependencies = [ 360 "serde_core", 361] 362 363[[package]] 364name = "capnp" 365version = "0.21.5" 366source = "registry+https://github.com/rust-lang/crates.io-index" 367checksum = "f62fcad97587224e2a1bd12ec1c7c0e95b93cefd285763a174cf1b34048c6437" 368dependencies = [ 369 "embedded-io", 370] 371 372[[package]] 373name = "capnpc" 374version = "0.21.4" 375source = "registry+https://github.com/rust-lang/crates.io-index" 376checksum = "6da96dcb0a0e0c526daf42bac55e1550f18ad973df9ef9ba75204f332c80ad16" 377dependencies = [ 378 "capnp", 379] 380 381[[package]] 382name = "cc" 383version = "1.2.16" 384source = "registry+https://github.com/rust-lang/crates.io-index" 385checksum = "be714c154be609ec7f5dad223a33bf1482fff90472de28f7362806e6d4832b8c" 386dependencies = [ 387 "shlex", 388] 389 390[[package]] 391name = "cfg-if" 392version = "1.0.0" 393source = "registry+https://github.com/rust-lang/crates.io-index" 394checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 395 396[[package]] 397name = "cfg_aliases" 398version = "0.2.1" 399source = "registry+https://github.com/rust-lang/crates.io-index" 400checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 401 402[[package]] 403name = "chacha20" 404version = "0.9.1" 405source = "registry+https://github.com/rust-lang/crates.io-index" 406checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818" 407dependencies = [ 408 "cfg-if", 409 "cipher", 410 "cpufeatures", 411] 412 413[[package]] 414name = "chacha20poly1305" 415version = "0.10.1" 416source = "registry+https://github.com/rust-lang/crates.io-index" 417checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35" 418dependencies = [ 419 "aead", 420 "chacha20", 421 "cipher", 422 "poly1305", 423 "zeroize", 424] 425 426[[package]] 427name = "cipher" 428version = "0.4.4" 429source = "registry+https://github.com/rust-lang/crates.io-index" 430checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 431dependencies = [ 432 "crypto-common", 433 "inout", 434 "zeroize", 435] 436 437[[package]] 438name = "clap" 439version = "4.5.49" 440source = "registry+https://github.com/rust-lang/crates.io-index" 441checksum = "f4512b90fa68d3a9932cea5184017c5d200f5921df706d45e853537dea51508f" 442dependencies = [ 443 "clap_builder", 444 "clap_derive", 445] 446 447[[package]] 448name = "clap_builder" 449version = "4.5.49" 450source = "registry+https://github.com/rust-lang/crates.io-index" 451checksum = "0025e98baa12e766c67ba13ff4695a887a1eba19569aad00a472546795bd6730" 452dependencies = [ 453 "anstream", 454 "anstyle", 455 "clap_lex", 456 "strsim", 457] 458 459[[package]] 460name = "clap_derive" 461version = "4.5.49" 462source = "registry+https://github.com/rust-lang/crates.io-index" 463checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671" 464dependencies = [ 465 "heck", 466 "proc-macro2", 467 "quote", 468 "syn 2.0.101", 469] 470 471[[package]] 472name = "clap_lex" 473version = "0.7.6" 474source = "registry+https://github.com/rust-lang/crates.io-index" 475checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d" 476 477[[package]] 478name = "codespan-reporting" 479version = "0.12.0" 480source = "registry+https://github.com/rust-lang/crates.io-index" 481checksum = "fe6d2e5af09e8c8ad56c969f2157a3d4238cebc7c55f0a517728c38f7b200f81" 482dependencies = [ 483 "serde", 484 "termcolor", 485 "unicode-width", 486] 487 488[[package]] 489name = "colorchoice" 490version = "1.0.0" 491source = "registry+https://github.com/rust-lang/crates.io-index" 492checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 493 494[[package]] 495name = "console" 496version = "0.15.8" 497source = "registry+https://github.com/rust-lang/crates.io-index" 498checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" 499dependencies = [ 500 "encode_unicode", 501 "lazy_static", 502 "libc", 503 "windows-sys 0.52.0", 504] 505 506[[package]] 507name = "console_error_panic_hook" 508version = "0.1.7" 509source = "registry+https://github.com/rust-lang/crates.io-index" 510checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc" 511dependencies = [ 512 "cfg-if", 513 "wasm-bindgen", 514] 515 516[[package]] 517name = "cookie-factory" 518version = "0.3.3" 519source = "registry+https://github.com/rust-lang/crates.io-index" 520checksum = "9885fa71e26b8ab7855e2ec7cae6e9b380edff76cd052e07c683a0319d51b3a2" 521dependencies = [ 522 "futures", 523] 524 525[[package]] 526name = "cpufeatures" 527version = "0.2.12" 528source = "registry+https://github.com/rust-lang/crates.io-index" 529checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 530dependencies = [ 531 "libc", 532] 533 534[[package]] 535name = "crc32fast" 536version = "1.4.0" 537source = "registry+https://github.com/rust-lang/crates.io-index" 538checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa" 539dependencies = [ 540 "cfg-if", 541] 542 543[[package]] 544name = "crossbeam-channel" 545version = "0.5.15" 546source = "registry+https://github.com/rust-lang/crates.io-index" 547checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" 548dependencies = [ 549 "crossbeam-utils", 550] 551 552[[package]] 553name = "crossbeam-deque" 554version = "0.8.5" 555source = "registry+https://github.com/rust-lang/crates.io-index" 556checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 557dependencies = [ 558 "crossbeam-epoch", 559 "crossbeam-utils", 560] 561 562[[package]] 563name = "crossbeam-epoch" 564version = "0.9.18" 565source = "registry+https://github.com/rust-lang/crates.io-index" 566checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 567dependencies = [ 568 "crossbeam-utils", 569] 570 571[[package]] 572name = "crossbeam-utils" 573version = "0.8.19" 574source = "registry+https://github.com/rust-lang/crates.io-index" 575checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 576 577[[package]] 578name = "crypto-common" 579version = "0.1.6" 580source = "registry+https://github.com/rust-lang/crates.io-index" 581checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 582dependencies = [ 583 "generic-array", 584 "typenum", 585] 586 587[[package]] 588name = "ctrlc" 589version = "3.4.5" 590source = "registry+https://github.com/rust-lang/crates.io-index" 591checksum = "90eeab0aa92f3f9b4e87f258c72b139c207d251f9cbc1080a0086b86a8870dd3" 592dependencies = [ 593 "nix", 594 "windows-sys 0.59.0", 595] 596 597[[package]] 598name = "curve25519-dalek" 599version = "4.1.3" 600source = "registry+https://github.com/rust-lang/crates.io-index" 601checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" 602dependencies = [ 603 "cfg-if", 604 "cpufeatures", 605 "curve25519-dalek-derive", 606 "fiat-crypto", 607 "rustc_version", 608 "subtle", 609 "zeroize", 610] 611 612[[package]] 613name = "curve25519-dalek-derive" 614version = "0.1.1" 615source = "registry+https://github.com/rust-lang/crates.io-index" 616checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" 617dependencies = [ 618 "proc-macro2", 619 "quote", 620 "syn 2.0.101", 621] 622 623[[package]] 624name = "dashmap" 625version = "6.1.0" 626source = "registry+https://github.com/rust-lang/crates.io-index" 627checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" 628dependencies = [ 629 "cfg-if", 630 "crossbeam-utils", 631 "hashbrown 0.14.3", 632 "lock_api", 633 "once_cell", 634 "parking_lot_core", 635] 636 637[[package]] 638name = "data-encoding" 639version = "2.5.0" 640source = "registry+https://github.com/rust-lang/crates.io-index" 641checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5" 642 643[[package]] 644name = "dbus" 645version = "0.9.7" 646source = "registry+https://github.com/rust-lang/crates.io-index" 647checksum = "1bb21987b9fb1613058ba3843121dd18b163b254d8a6e797e144cbac14d96d1b" 648dependencies = [ 649 "libc", 650 "libdbus-sys", 651 "winapi", 652] 653 654[[package]] 655name = "debug-ignore" 656version = "1.0.5" 657source = "registry+https://github.com/rust-lang/crates.io-index" 658checksum = "ffe7ed1d93f4553003e20b629abe9085e1e81b1429520f897f8f8860bc6dfc21" 659 660[[package]] 661name = "der-parser" 662version = "8.2.0" 663source = "registry+https://github.com/rust-lang/crates.io-index" 664checksum = "dbd676fbbab537128ef0278adb5576cf363cff6aa22a7b24effe97347cfab61e" 665dependencies = [ 666 "asn1-rs", 667 "displaydoc", 668 "nom", 669 "num-bigint", 670 "num-traits", 671 "rusticata-macros", 672] 673 674[[package]] 675name = "deranged" 676version = "0.3.11" 677source = "registry+https://github.com/rust-lang/crates.io-index" 678checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 679dependencies = [ 680 "powerfmt", 681] 682 683[[package]] 684name = "diff" 685version = "0.1.13" 686source = "registry+https://github.com/rust-lang/crates.io-index" 687checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" 688 689[[package]] 690name = "digest" 691version = "0.10.7" 692source = "registry+https://github.com/rust-lang/crates.io-index" 693checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 694dependencies = [ 695 "block-buffer", 696 "crypto-common", 697 "subtle", 698] 699 700[[package]] 701name = "dirs-next" 702version = "2.0.0" 703source = "registry+https://github.com/rust-lang/crates.io-index" 704checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 705dependencies = [ 706 "cfg-if", 707 "dirs-sys-next", 708] 709 710[[package]] 711name = "dirs-sys-next" 712version = "0.1.2" 713source = "registry+https://github.com/rust-lang/crates.io-index" 714checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 715dependencies = [ 716 "libc", 717 "redox_users", 718 "winapi", 719] 720 721[[package]] 722name = "displaydoc" 723version = "0.2.4" 724source = "registry+https://github.com/rust-lang/crates.io-index" 725checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" 726dependencies = [ 727 "proc-macro2", 728 "quote", 729 "syn 2.0.101", 730] 731 732[[package]] 733name = "ecow" 734version = "0.2.6" 735source = "registry+https://github.com/rust-lang/crates.io-index" 736checksum = "78e4f79b296fbaab6ce2e22d52cb4c7f010fe0ebe7a32e34fa25885fd797bd02" 737dependencies = [ 738 "serde", 739] 740 741[[package]] 742name = "either" 743version = "1.10.0" 744source = "registry+https://github.com/rust-lang/crates.io-index" 745checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a" 746 747[[package]] 748name = "embedded-io" 749version = "0.6.1" 750source = "registry+https://github.com/rust-lang/crates.io-index" 751checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" 752 753[[package]] 754name = "encode_unicode" 755version = "0.3.6" 756source = "registry+https://github.com/rust-lang/crates.io-index" 757checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 758 759[[package]] 760name = "endian-type" 761version = "0.1.2" 762source = "registry+https://github.com/rust-lang/crates.io-index" 763checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d" 764 765[[package]] 766name = "equivalent" 767version = "1.0.1" 768source = "registry+https://github.com/rust-lang/crates.io-index" 769checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 770 771[[package]] 772name = "errno" 773version = "0.3.8" 774source = "registry+https://github.com/rust-lang/crates.io-index" 775checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 776dependencies = [ 777 "libc", 778 "windows-sys 0.52.0", 779] 780 781[[package]] 782name = "fastrand" 783version = "2.0.2" 784source = "registry+https://github.com/rust-lang/crates.io-index" 785checksum = "658bd65b1cf4c852a3cc96f18a8ce7b5640f6b703f905c7d74532294c2a63984" 786 787[[package]] 788name = "fiat-crypto" 789version = "0.2.9" 790source = "registry+https://github.com/rust-lang/crates.io-index" 791checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" 792 793[[package]] 794name = "filetime" 795version = "0.2.23" 796source = "registry+https://github.com/rust-lang/crates.io-index" 797checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" 798dependencies = [ 799 "cfg-if", 800 "libc", 801 "redox_syscall 0.4.1", 802 "windows-sys 0.52.0", 803] 804 805[[package]] 806name = "find-crate" 807version = "0.6.3" 808source = "registry+https://github.com/rust-lang/crates.io-index" 809checksum = "59a98bbaacea1c0eb6a0876280051b892eb73594fd90cf3b20e9c817029c57d2" 810dependencies = [ 811 "toml 0.5.11", 812] 813 814[[package]] 815name = "fixedbitset" 816version = "0.5.7" 817source = "registry+https://github.com/rust-lang/crates.io-index" 818checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99" 819 820[[package]] 821name = "flate2" 822version = "1.1.2" 823source = "registry+https://github.com/rust-lang/crates.io-index" 824checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d" 825dependencies = [ 826 "crc32fast", 827 "miniz_oxide", 828] 829 830[[package]] 831name = "fluent" 832version = "0.16.1" 833source = "registry+https://github.com/rust-lang/crates.io-index" 834checksum = "bb74634707bebd0ce645a981148e8fb8c7bccd4c33c652aeffd28bf2f96d555a" 835dependencies = [ 836 "fluent-bundle", 837 "unic-langid", 838] 839 840[[package]] 841name = "fluent-bundle" 842version = "0.15.3" 843source = "registry+https://github.com/rust-lang/crates.io-index" 844checksum = "7fe0a21ee80050c678013f82edf4b705fe2f26f1f9877593d13198612503f493" 845dependencies = [ 846 "fluent-langneg", 847 "fluent-syntax", 848 "intl-memoizer", 849 "intl_pluralrules", 850 "rustc-hash 1.1.0", 851 "self_cell 0.10.3", 852 "smallvec", 853 "unic-langid", 854] 855 856[[package]] 857name = "fluent-langneg" 858version = "0.13.0" 859source = "registry+https://github.com/rust-lang/crates.io-index" 860checksum = "2c4ad0989667548f06ccd0e306ed56b61bd4d35458d54df5ec7587c0e8ed5e94" 861dependencies = [ 862 "unic-langid", 863] 864 865[[package]] 866name = "fluent-syntax" 867version = "0.11.1" 868source = "registry+https://github.com/rust-lang/crates.io-index" 869checksum = "2a530c4694a6a8d528794ee9bbd8ba0122e779629ac908d15ad5a7ae7763a33d" 870dependencies = [ 871 "thiserror 1.0.69", 872] 873 874[[package]] 875name = "fnv" 876version = "1.0.7" 877source = "registry+https://github.com/rust-lang/crates.io-index" 878checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 879 880[[package]] 881name = "foldhash" 882version = "0.1.5" 883source = "registry+https://github.com/rust-lang/crates.io-index" 884checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" 885 886[[package]] 887name = "form_urlencoded" 888version = "1.2.1" 889source = "registry+https://github.com/rust-lang/crates.io-index" 890checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 891dependencies = [ 892 "percent-encoding", 893] 894 895[[package]] 896name = "fs_extra" 897version = "1.3.0" 898source = "registry+https://github.com/rust-lang/crates.io-index" 899checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c" 900 901[[package]] 902name = "fslock" 903version = "0.2.1" 904source = "registry+https://github.com/rust-lang/crates.io-index" 905checksum = "04412b8935272e3a9bae6f48c7bfff74c2911f60525404edfdd28e49884c3bfb" 906dependencies = [ 907 "libc", 908 "winapi", 909] 910 911[[package]] 912name = "funty" 913version = "2.0.0" 914source = "registry+https://github.com/rust-lang/crates.io-index" 915checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 916 917[[package]] 918name = "futures" 919version = "0.3.31" 920source = "registry+https://github.com/rust-lang/crates.io-index" 921checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" 922dependencies = [ 923 "futures-channel", 924 "futures-core", 925 "futures-executor", 926 "futures-io", 927 "futures-sink", 928 "futures-task", 929 "futures-util", 930] 931 932[[package]] 933name = "futures-channel" 934version = "0.3.31" 935source = "registry+https://github.com/rust-lang/crates.io-index" 936checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 937dependencies = [ 938 "futures-core", 939 "futures-sink", 940] 941 942[[package]] 943name = "futures-core" 944version = "0.3.31" 945source = "registry+https://github.com/rust-lang/crates.io-index" 946checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 947 948[[package]] 949name = "futures-executor" 950version = "0.3.31" 951source = "registry+https://github.com/rust-lang/crates.io-index" 952checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" 953dependencies = [ 954 "futures-core", 955 "futures-task", 956 "futures-util", 957] 958 959[[package]] 960name = "futures-io" 961version = "0.3.31" 962source = "registry+https://github.com/rust-lang/crates.io-index" 963checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 964 965[[package]] 966name = "futures-macro" 967version = "0.3.31" 968source = "registry+https://github.com/rust-lang/crates.io-index" 969checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 970dependencies = [ 971 "proc-macro2", 972 "quote", 973 "syn 2.0.101", 974] 975 976[[package]] 977name = "futures-sink" 978version = "0.3.31" 979source = "registry+https://github.com/rust-lang/crates.io-index" 980checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 981 982[[package]] 983name = "futures-task" 984version = "0.3.31" 985source = "registry+https://github.com/rust-lang/crates.io-index" 986checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 987 988[[package]] 989name = "futures-util" 990version = "0.3.31" 991source = "registry+https://github.com/rust-lang/crates.io-index" 992checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 993dependencies = [ 994 "futures-channel", 995 "futures-core", 996 "futures-io", 997 "futures-macro", 998 "futures-sink", 999 "futures-task", 1000 "memchr", 1001 "pin-project-lite", 1002 "pin-utils", 1003 "slab", 1004] 1005 1006[[package]] 1007name = "generic-array" 1008version = "0.14.7" 1009source = "registry+https://github.com/rust-lang/crates.io-index" 1010checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1011dependencies = [ 1012 "typenum", 1013 "version_check", 1014] 1015 1016[[package]] 1017name = "getrandom" 1018version = "0.2.15" 1019source = "registry+https://github.com/rust-lang/crates.io-index" 1020checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 1021dependencies = [ 1022 "cfg-if", 1023 "js-sys", 1024 "libc", 1025 "wasi 0.11.0+wasi-snapshot-preview1", 1026 "wasm-bindgen", 1027] 1028 1029[[package]] 1030name = "getrandom" 1031version = "0.3.3" 1032source = "registry+https://github.com/rust-lang/crates.io-index" 1033checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" 1034dependencies = [ 1035 "cfg-if", 1036 "libc", 1037 "r-efi", 1038 "wasi 0.14.2+wasi-0.2.4", 1039] 1040 1041[[package]] 1042name = "gleam" 1043version = "1.13.0" 1044dependencies = [ 1045 "gleam-cli", 1046 "static_vcruntime", 1047] 1048 1049[[package]] 1050name = "gleam-cli" 1051version = "1.13.0" 1052dependencies = [ 1053 "async-trait", 1054 "base16", 1055 "camino", 1056 "clap", 1057 "ctrlc", 1058 "debug-ignore", 1059 "ecow", 1060 "flate2", 1061 "fs_extra", 1062 "fslock", 1063 "futures", 1064 "gleam-core", 1065 "hexpm", 1066 "hostname", 1067 "http", 1068 "ignore", 1069 "im", 1070 "insta", 1071 "itertools", 1072 "lsp-server", 1073 "lsp-types", 1074 "opener", 1075 "pretty_assertions", 1076 "pubgrub", 1077 "regex", 1078 "reqwest", 1079 "rpassword", 1080 "same-file", 1081 "serde", 1082 "serde_json", 1083 "sha2", 1084 "strum", 1085 "tar", 1086 "tempfile", 1087 "termcolor", 1088 "tokio", 1089 "toml 0.9.7", 1090 "toml_edit", 1091 "tracing", 1092 "tracing-subscriber", 1093] 1094 1095[[package]] 1096name = "gleam-core" 1097version = "1.13.0" 1098dependencies = [ 1099 "age", 1100 "askama", 1101 "async-trait", 1102 "base16", 1103 "bimap", 1104 "bincode", 1105 "bitvec", 1106 "camino", 1107 "capnp", 1108 "capnpc", 1109 "codespan-reporting", 1110 "debug-ignore", 1111 "dirs-next", 1112 "ecow", 1113 "flate2", 1114 "futures", 1115 "globset", 1116 "hexpm", 1117 "http", 1118 "id-arena", 1119 "im", 1120 "insta", 1121 "itertools", 1122 "lsp-server", 1123 "lsp-types", 1124 "num-bigint", 1125 "num-traits", 1126 "pathdiff", 1127 "petgraph 0.8.3", 1128 "pretty_assertions", 1129 "pubgrub", 1130 "pulldown-cmark", 1131 "radix_trie", 1132 "rand 0.9.2", 1133 "regex", 1134 "serde", 1135 "serde_derive", 1136 "serde_json", 1137 "spdx", 1138 "stacker", 1139 "strum", 1140 "tar", 1141 "termcolor", 1142 "thiserror 2.0.12", 1143 "toml 0.9.7", 1144 "tracing", 1145 "unicode-segmentation", 1146 "vec1", 1147 "xxhash-rust", 1148] 1149 1150[[package]] 1151name = "gleam-wasm" 1152version = "1.13.0" 1153dependencies = [ 1154 "camino", 1155 "console_error_panic_hook", 1156 "getrandom 0.2.15", 1157 "gleam-core", 1158 "hexpm", 1159 "im", 1160 "itertools", 1161 "serde", 1162 "serde-wasm-bindgen", 1163 "termcolor", 1164 "tracing", 1165 "tracing-wasm", 1166 "wasm-bindgen", 1167 "wasm-bindgen-test", 1168] 1169 1170[[package]] 1171name = "globset" 1172version = "0.4.18" 1173source = "registry+https://github.com/rust-lang/crates.io-index" 1174checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3" 1175dependencies = [ 1176 "aho-corasick", 1177 "bstr", 1178 "log", 1179 "regex-automata", 1180 "regex-syntax", 1181 "serde", 1182] 1183 1184[[package]] 1185name = "hashbrown" 1186version = "0.14.3" 1187source = "registry+https://github.com/rust-lang/crates.io-index" 1188checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 1189 1190[[package]] 1191name = "hashbrown" 1192version = "0.15.3" 1193source = "registry+https://github.com/rust-lang/crates.io-index" 1194checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3" 1195dependencies = [ 1196 "foldhash", 1197] 1198 1199[[package]] 1200name = "heck" 1201version = "0.5.0" 1202source = "registry+https://github.com/rust-lang/crates.io-index" 1203checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1204 1205[[package]] 1206name = "hermit-abi" 1207version = "0.3.9" 1208source = "registry+https://github.com/rust-lang/crates.io-index" 1209checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 1210 1211[[package]] 1212name = "hexpm" 1213version = "5.0.0" 1214source = "registry+https://github.com/rust-lang/crates.io-index" 1215checksum = "4ce8e2213e16eb879d50d9db4001f62b485e3ac96140bfa886f6c79bbfa97aef" 1216dependencies = [ 1217 "base16", 1218 "bytes", 1219 "flate2", 1220 "http", 1221 "http-auth-basic", 1222 "lazy_static", 1223 "prost", 1224 "prost-build", 1225 "pubgrub", 1226 "regex", 1227 "ring", 1228 "serde", 1229 "serde_json", 1230 "thiserror 1.0.69", 1231 "url", 1232 "x509-parser", 1233] 1234 1235[[package]] 1236name = "hkdf" 1237version = "0.12.4" 1238source = "registry+https://github.com/rust-lang/crates.io-index" 1239checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 1240dependencies = [ 1241 "hmac", 1242] 1243 1244[[package]] 1245name = "hmac" 1246version = "0.12.1" 1247source = "registry+https://github.com/rust-lang/crates.io-index" 1248checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1249dependencies = [ 1250 "digest", 1251] 1252 1253[[package]] 1254name = "hostname" 1255version = "0.4.1" 1256source = "registry+https://github.com/rust-lang/crates.io-index" 1257checksum = "a56f203cd1c76362b69e3863fd987520ac36cf70a8c92627449b2f64a8cf7d65" 1258dependencies = [ 1259 "cfg-if", 1260 "libc", 1261 "windows-link 0.1.1", 1262] 1263 1264[[package]] 1265name = "http" 1266version = "1.3.1" 1267source = "registry+https://github.com/rust-lang/crates.io-index" 1268checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" 1269dependencies = [ 1270 "bytes", 1271 "fnv", 1272 "itoa", 1273] 1274 1275[[package]] 1276name = "http-auth-basic" 1277version = "0.3.3" 1278source = "registry+https://github.com/rust-lang/crates.io-index" 1279checksum = "dd2e17aacf7f4a2428def798e2ff4f4f883c0987bdaf47dd5c8bc027bc9f1ebc" 1280dependencies = [ 1281 "base64 0.13.1", 1282] 1283 1284[[package]] 1285name = "http-body" 1286version = "1.0.0" 1287source = "registry+https://github.com/rust-lang/crates.io-index" 1288checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643" 1289dependencies = [ 1290 "bytes", 1291 "http", 1292] 1293 1294[[package]] 1295name = "http-body-util" 1296version = "0.1.1" 1297source = "registry+https://github.com/rust-lang/crates.io-index" 1298checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d" 1299dependencies = [ 1300 "bytes", 1301 "futures-core", 1302 "http", 1303 "http-body", 1304 "pin-project-lite", 1305] 1306 1307[[package]] 1308name = "httparse" 1309version = "1.8.0" 1310source = "registry+https://github.com/rust-lang/crates.io-index" 1311checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 1312 1313[[package]] 1314name = "humansize" 1315version = "2.1.3" 1316source = "registry+https://github.com/rust-lang/crates.io-index" 1317checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7" 1318dependencies = [ 1319 "libm", 1320] 1321 1322[[package]] 1323name = "hyper" 1324version = "1.5.2" 1325source = "registry+https://github.com/rust-lang/crates.io-index" 1326checksum = "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0" 1327dependencies = [ 1328 "bytes", 1329 "futures-channel", 1330 "futures-util", 1331 "http", 1332 "http-body", 1333 "httparse", 1334 "itoa", 1335 "pin-project-lite", 1336 "smallvec", 1337 "tokio", 1338 "want", 1339] 1340 1341[[package]] 1342name = "hyper-rustls" 1343version = "0.27.2" 1344source = "registry+https://github.com/rust-lang/crates.io-index" 1345checksum = "5ee4be2c948921a1a5320b629c4193916ed787a7f7f293fd3f7f5a6c9de74155" 1346dependencies = [ 1347 "futures-util", 1348 "http", 1349 "hyper", 1350 "hyper-util", 1351 "rustls", 1352 "rustls-pki-types", 1353 "tokio", 1354 "tokio-rustls", 1355 "tower-service", 1356 "webpki-roots", 1357] 1358 1359[[package]] 1360name = "hyper-util" 1361version = "0.1.10" 1362source = "registry+https://github.com/rust-lang/crates.io-index" 1363checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4" 1364dependencies = [ 1365 "bytes", 1366 "futures-channel", 1367 "futures-util", 1368 "http", 1369 "http-body", 1370 "hyper", 1371 "pin-project-lite", 1372 "socket2 0.5.6", 1373 "tokio", 1374 "tower-service", 1375 "tracing", 1376] 1377 1378[[package]] 1379name = "i18n-config" 1380version = "0.4.7" 1381source = "registry+https://github.com/rust-lang/crates.io-index" 1382checksum = "8e88074831c0be5b89181b05e6748c4915f77769ecc9a4c372f88b169a8509c9" 1383dependencies = [ 1384 "basic-toml", 1385 "log", 1386 "serde", 1387 "serde_derive", 1388 "thiserror 1.0.69", 1389 "unic-langid", 1390] 1391 1392[[package]] 1393name = "i18n-embed" 1394version = "0.15.2" 1395source = "registry+https://github.com/rust-lang/crates.io-index" 1396checksum = "a7839d8c7bb8da7bd58c1112d3a1aeb7f178ff3df4ae87783e758ca3bfb750b7" 1397dependencies = [ 1398 "arc-swap", 1399 "fluent", 1400 "fluent-langneg", 1401 "fluent-syntax", 1402 "i18n-embed-impl", 1403 "intl-memoizer", 1404 "lazy_static", 1405 "log", 1406 "parking_lot", 1407 "rust-embed", 1408 "thiserror 1.0.69", 1409 "unic-langid", 1410 "walkdir", 1411] 1412 1413[[package]] 1414name = "i18n-embed-fl" 1415version = "0.9.2" 1416source = "registry+https://github.com/rust-lang/crates.io-index" 1417checksum = "f6e9571c3cba9eba538eaa5ee40031b26debe76f0c7e17bafc97ea57a76cd82e" 1418dependencies = [ 1419 "dashmap", 1420 "find-crate", 1421 "fluent", 1422 "fluent-syntax", 1423 "i18n-config", 1424 "i18n-embed", 1425 "lazy_static", 1426 "proc-macro-error2", 1427 "proc-macro2", 1428 "quote", 1429 "strsim", 1430 "syn 2.0.101", 1431 "unic-langid", 1432] 1433 1434[[package]] 1435name = "i18n-embed-impl" 1436version = "0.8.4" 1437source = "registry+https://github.com/rust-lang/crates.io-index" 1438checksum = "0f2cc0e0523d1fe6fc2c6f66e5038624ea8091b3e7748b5e8e0c84b1698db6c2" 1439dependencies = [ 1440 "find-crate", 1441 "i18n-config", 1442 "proc-macro2", 1443 "quote", 1444 "syn 2.0.101", 1445] 1446 1447[[package]] 1448name = "icu_collections" 1449version = "1.5.0" 1450source = "registry+https://github.com/rust-lang/crates.io-index" 1451checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526" 1452dependencies = [ 1453 "displaydoc", 1454 "yoke", 1455 "zerofrom", 1456 "zerovec", 1457] 1458 1459[[package]] 1460name = "icu_locid" 1461version = "1.5.0" 1462source = "registry+https://github.com/rust-lang/crates.io-index" 1463checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637" 1464dependencies = [ 1465 "displaydoc", 1466 "litemap", 1467 "tinystr", 1468 "writeable", 1469 "zerovec", 1470] 1471 1472[[package]] 1473name = "icu_locid_transform" 1474version = "1.5.0" 1475source = "registry+https://github.com/rust-lang/crates.io-index" 1476checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e" 1477dependencies = [ 1478 "displaydoc", 1479 "icu_locid", 1480 "icu_locid_transform_data", 1481 "icu_provider", 1482 "tinystr", 1483 "zerovec", 1484] 1485 1486[[package]] 1487name = "icu_locid_transform_data" 1488version = "1.5.0" 1489source = "registry+https://github.com/rust-lang/crates.io-index" 1490checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e" 1491 1492[[package]] 1493name = "icu_normalizer" 1494version = "1.5.0" 1495source = "registry+https://github.com/rust-lang/crates.io-index" 1496checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f" 1497dependencies = [ 1498 "displaydoc", 1499 "icu_collections", 1500 "icu_normalizer_data", 1501 "icu_properties", 1502 "icu_provider", 1503 "smallvec", 1504 "utf16_iter", 1505 "utf8_iter", 1506 "write16", 1507 "zerovec", 1508] 1509 1510[[package]] 1511name = "icu_normalizer_data" 1512version = "1.5.0" 1513source = "registry+https://github.com/rust-lang/crates.io-index" 1514checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516" 1515 1516[[package]] 1517name = "icu_properties" 1518version = "1.5.1" 1519source = "registry+https://github.com/rust-lang/crates.io-index" 1520checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5" 1521dependencies = [ 1522 "displaydoc", 1523 "icu_collections", 1524 "icu_locid_transform", 1525 "icu_properties_data", 1526 "icu_provider", 1527 "tinystr", 1528 "zerovec", 1529] 1530 1531[[package]] 1532name = "icu_properties_data" 1533version = "1.5.0" 1534source = "registry+https://github.com/rust-lang/crates.io-index" 1535checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569" 1536 1537[[package]] 1538name = "icu_provider" 1539version = "1.5.0" 1540source = "registry+https://github.com/rust-lang/crates.io-index" 1541checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9" 1542dependencies = [ 1543 "displaydoc", 1544 "icu_locid", 1545 "icu_provider_macros", 1546 "stable_deref_trait", 1547 "tinystr", 1548 "writeable", 1549 "yoke", 1550 "zerofrom", 1551 "zerovec", 1552] 1553 1554[[package]] 1555name = "icu_provider_macros" 1556version = "1.5.0" 1557source = "registry+https://github.com/rust-lang/crates.io-index" 1558checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" 1559dependencies = [ 1560 "proc-macro2", 1561 "quote", 1562 "syn 2.0.101", 1563] 1564 1565[[package]] 1566name = "id-arena" 1567version = "2.2.1" 1568source = "registry+https://github.com/rust-lang/crates.io-index" 1569checksum = "25a2bc672d1148e28034f176e01fffebb08b35768468cc954630da77a1449005" 1570 1571[[package]] 1572name = "idna" 1573version = "1.0.3" 1574source = "registry+https://github.com/rust-lang/crates.io-index" 1575checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" 1576dependencies = [ 1577 "idna_adapter", 1578 "smallvec", 1579 "utf8_iter", 1580] 1581 1582[[package]] 1583name = "idna_adapter" 1584version = "1.2.0" 1585source = "registry+https://github.com/rust-lang/crates.io-index" 1586checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71" 1587dependencies = [ 1588 "icu_normalizer", 1589 "icu_properties", 1590] 1591 1592[[package]] 1593name = "ignore" 1594version = "0.4.22" 1595source = "registry+https://github.com/rust-lang/crates.io-index" 1596checksum = "b46810df39e66e925525d6e38ce1e7f6e1d208f72dc39757880fcb66e2c58af1" 1597dependencies = [ 1598 "crossbeam-deque", 1599 "globset", 1600 "log", 1601 "memchr", 1602 "regex-automata", 1603 "same-file", 1604 "walkdir", 1605 "winapi-util", 1606] 1607 1608[[package]] 1609name = "im" 1610version = "15.1.0" 1611source = "registry+https://github.com/rust-lang/crates.io-index" 1612checksum = "d0acd33ff0285af998aaf9b57342af478078f53492322fafc47450e09397e0e9" 1613dependencies = [ 1614 "bitmaps", 1615 "rand_core 0.6.4", 1616 "rand_xoshiro", 1617 "serde", 1618 "sized-chunks", 1619 "typenum", 1620 "version_check", 1621] 1622 1623[[package]] 1624name = "indexmap" 1625version = "2.11.4" 1626source = "registry+https://github.com/rust-lang/crates.io-index" 1627checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5" 1628dependencies = [ 1629 "equivalent", 1630 "hashbrown 0.15.3", 1631] 1632 1633[[package]] 1634name = "inout" 1635version = "0.1.3" 1636source = "registry+https://github.com/rust-lang/crates.io-index" 1637checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 1638dependencies = [ 1639 "generic-array", 1640] 1641 1642[[package]] 1643name = "insta" 1644version = "1.41.1" 1645source = "registry+https://github.com/rust-lang/crates.io-index" 1646checksum = "7e9ffc4d4892617c50a928c52b2961cb5174b6fc6ebf252b2fac9d21955c48b8" 1647dependencies = [ 1648 "console", 1649 "globset", 1650 "lazy_static", 1651 "linked-hash-map", 1652 "similar", 1653 "walkdir", 1654] 1655 1656[[package]] 1657name = "intl-memoizer" 1658version = "0.5.2" 1659source = "registry+https://github.com/rust-lang/crates.io-index" 1660checksum = "fe22e020fce238ae18a6d5d8c502ee76a52a6e880d99477657e6acc30ec57bda" 1661dependencies = [ 1662 "type-map", 1663 "unic-langid", 1664] 1665 1666[[package]] 1667name = "intl_pluralrules" 1668version = "7.0.2" 1669source = "registry+https://github.com/rust-lang/crates.io-index" 1670checksum = "078ea7b7c29a2b4df841a7f6ac8775ff6074020c6776d48491ce2268e068f972" 1671dependencies = [ 1672 "unic-langid", 1673] 1674 1675[[package]] 1676name = "io_tee" 1677version = "0.1.1" 1678source = "registry+https://github.com/rust-lang/crates.io-index" 1679checksum = "4b3f7cef34251886990511df1c61443aa928499d598a9473929ab5a90a527304" 1680 1681[[package]] 1682name = "ipnet" 1683version = "2.9.0" 1684source = "registry+https://github.com/rust-lang/crates.io-index" 1685checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" 1686 1687[[package]] 1688name = "is_terminal_polyfill" 1689version = "1.70.0" 1690source = "registry+https://github.com/rust-lang/crates.io-index" 1691checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" 1692 1693[[package]] 1694name = "itertools" 1695version = "0.14.0" 1696source = "registry+https://github.com/rust-lang/crates.io-index" 1697checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" 1698dependencies = [ 1699 "either", 1700] 1701 1702[[package]] 1703name = "itoa" 1704version = "1.0.11" 1705source = "registry+https://github.com/rust-lang/crates.io-index" 1706checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 1707 1708[[package]] 1709name = "js-sys" 1710version = "0.3.69" 1711source = "registry+https://github.com/rust-lang/crates.io-index" 1712checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 1713dependencies = [ 1714 "wasm-bindgen", 1715] 1716 1717[[package]] 1718name = "lazy_static" 1719version = "1.4.0" 1720source = "registry+https://github.com/rust-lang/crates.io-index" 1721checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1722 1723[[package]] 1724name = "libc" 1725version = "0.2.172" 1726source = "registry+https://github.com/rust-lang/crates.io-index" 1727checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa" 1728 1729[[package]] 1730name = "libdbus-sys" 1731version = "0.2.5" 1732source = "registry+https://github.com/rust-lang/crates.io-index" 1733checksum = "06085512b750d640299b79be4bad3d2fa90a9c00b1fd9e1b46364f66f0485c72" 1734dependencies = [ 1735 "cc", 1736 "pkg-config", 1737] 1738 1739[[package]] 1740name = "libm" 1741version = "0.2.8" 1742source = "registry+https://github.com/rust-lang/crates.io-index" 1743checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 1744 1745[[package]] 1746name = "libredox" 1747version = "0.1.3" 1748source = "registry+https://github.com/rust-lang/crates.io-index" 1749checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" 1750dependencies = [ 1751 "bitflags 2.5.0", 1752 "libc", 1753] 1754 1755[[package]] 1756name = "linked-hash-map" 1757version = "0.5.6" 1758source = "registry+https://github.com/rust-lang/crates.io-index" 1759checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 1760 1761[[package]] 1762name = "linux-raw-sys" 1763version = "0.4.13" 1764source = "registry+https://github.com/rust-lang/crates.io-index" 1765checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" 1766 1767[[package]] 1768name = "litemap" 1769version = "0.7.4" 1770source = "registry+https://github.com/rust-lang/crates.io-index" 1771checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104" 1772 1773[[package]] 1774name = "lock_api" 1775version = "0.4.12" 1776source = "registry+https://github.com/rust-lang/crates.io-index" 1777checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 1778dependencies = [ 1779 "autocfg", 1780 "scopeguard", 1781] 1782 1783[[package]] 1784name = "log" 1785version = "0.4.22" 1786source = "registry+https://github.com/rust-lang/crates.io-index" 1787checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 1788 1789[[package]] 1790name = "lsp-server" 1791version = "0.7.8" 1792source = "registry+https://github.com/rust-lang/crates.io-index" 1793checksum = "9462c4dc73e17f971ec1f171d44bfffb72e65a130117233388a0ebc7ec5656f9" 1794dependencies = [ 1795 "crossbeam-channel", 1796 "log", 1797 "serde", 1798 "serde_derive", 1799 "serde_json", 1800] 1801 1802[[package]] 1803name = "lsp-types" 1804version = "0.95.1" 1805source = "registry+https://github.com/rust-lang/crates.io-index" 1806checksum = "8e34d33a8e9b006cd3fc4fe69a921affa097bae4bb65f76271f4644f9a334365" 1807dependencies = [ 1808 "bitflags 1.3.2", 1809 "serde", 1810 "serde_json", 1811 "serde_repr", 1812 "url", 1813] 1814 1815[[package]] 1816name = "matchers" 1817version = "0.2.0" 1818source = "registry+https://github.com/rust-lang/crates.io-index" 1819checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" 1820dependencies = [ 1821 "regex-automata", 1822] 1823 1824[[package]] 1825name = "memchr" 1826version = "2.7.2" 1827source = "registry+https://github.com/rust-lang/crates.io-index" 1828checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" 1829 1830[[package]] 1831name = "mime" 1832version = "0.3.17" 1833source = "registry+https://github.com/rust-lang/crates.io-index" 1834checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1835 1836[[package]] 1837name = "mime_guess" 1838version = "2.0.4" 1839source = "registry+https://github.com/rust-lang/crates.io-index" 1840checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" 1841dependencies = [ 1842 "mime", 1843 "unicase", 1844] 1845 1846[[package]] 1847name = "minimal-lexical" 1848version = "0.2.1" 1849source = "registry+https://github.com/rust-lang/crates.io-index" 1850checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 1851 1852[[package]] 1853name = "miniz_oxide" 1854version = "0.8.8" 1855source = "registry+https://github.com/rust-lang/crates.io-index" 1856checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a" 1857dependencies = [ 1858 "adler2", 1859] 1860 1861[[package]] 1862name = "mio" 1863version = "1.0.1" 1864source = "registry+https://github.com/rust-lang/crates.io-index" 1865checksum = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4" 1866dependencies = [ 1867 "hermit-abi", 1868 "libc", 1869 "wasi 0.11.0+wasi-snapshot-preview1", 1870 "windows-sys 0.52.0", 1871] 1872 1873[[package]] 1874name = "multimap" 1875version = "0.10.0" 1876source = "registry+https://github.com/rust-lang/crates.io-index" 1877checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03" 1878 1879[[package]] 1880name = "nibble_vec" 1881version = "0.1.0" 1882source = "registry+https://github.com/rust-lang/crates.io-index" 1883checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43" 1884dependencies = [ 1885 "smallvec", 1886] 1887 1888[[package]] 1889name = "nix" 1890version = "0.29.0" 1891source = "registry+https://github.com/rust-lang/crates.io-index" 1892checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" 1893dependencies = [ 1894 "bitflags 2.5.0", 1895 "cfg-if", 1896 "cfg_aliases", 1897 "libc", 1898] 1899 1900[[package]] 1901name = "nom" 1902version = "7.1.3" 1903source = "registry+https://github.com/rust-lang/crates.io-index" 1904checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 1905dependencies = [ 1906 "memchr", 1907 "minimal-lexical", 1908] 1909 1910[[package]] 1911name = "normpath" 1912version = "1.2.0" 1913source = "registry+https://github.com/rust-lang/crates.io-index" 1914checksum = "5831952a9476f2fed74b77d74182fa5ddc4d21c72ec45a333b250e3ed0272804" 1915dependencies = [ 1916 "windows-sys 0.52.0", 1917] 1918 1919[[package]] 1920name = "nu-ansi-term" 1921version = "0.50.1" 1922source = "registry+https://github.com/rust-lang/crates.io-index" 1923checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399" 1924dependencies = [ 1925 "windows-sys 0.52.0", 1926] 1927 1928[[package]] 1929name = "num-bigint" 1930version = "0.4.6" 1931source = "registry+https://github.com/rust-lang/crates.io-index" 1932checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" 1933dependencies = [ 1934 "num-integer", 1935 "num-traits", 1936 "serde", 1937] 1938 1939[[package]] 1940name = "num-conv" 1941version = "0.1.0" 1942source = "registry+https://github.com/rust-lang/crates.io-index" 1943checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 1944 1945[[package]] 1946name = "num-integer" 1947version = "0.1.46" 1948source = "registry+https://github.com/rust-lang/crates.io-index" 1949checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 1950dependencies = [ 1951 "num-traits", 1952] 1953 1954[[package]] 1955name = "num-traits" 1956version = "0.2.19" 1957source = "registry+https://github.com/rust-lang/crates.io-index" 1958checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 1959dependencies = [ 1960 "autocfg", 1961] 1962 1963[[package]] 1964name = "oid-registry" 1965version = "0.6.1" 1966source = "registry+https://github.com/rust-lang/crates.io-index" 1967checksum = "9bedf36ffb6ba96c2eb7144ef6270557b52e54b20c0a8e1eb2ff99a6c6959bff" 1968dependencies = [ 1969 "asn1-rs", 1970] 1971 1972[[package]] 1973name = "once_cell" 1974version = "1.19.0" 1975source = "registry+https://github.com/rust-lang/crates.io-index" 1976checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 1977 1978[[package]] 1979name = "opaque-debug" 1980version = "0.3.1" 1981source = "registry+https://github.com/rust-lang/crates.io-index" 1982checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" 1983 1984[[package]] 1985name = "opener" 1986version = "0.7.2" 1987source = "registry+https://github.com/rust-lang/crates.io-index" 1988checksum = "d0812e5e4df08da354c851a3376fead46db31c2214f849d3de356d774d057681" 1989dependencies = [ 1990 "bstr", 1991 "dbus", 1992 "normpath", 1993 "windows-sys 0.59.0", 1994] 1995 1996[[package]] 1997name = "parking_lot" 1998version = "0.12.3" 1999source = "registry+https://github.com/rust-lang/crates.io-index" 2000checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 2001dependencies = [ 2002 "lock_api", 2003 "parking_lot_core", 2004] 2005 2006[[package]] 2007name = "parking_lot_core" 2008version = "0.9.10" 2009source = "registry+https://github.com/rust-lang/crates.io-index" 2010checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 2011dependencies = [ 2012 "cfg-if", 2013 "libc", 2014 "redox_syscall 0.5.7", 2015 "smallvec", 2016 "windows-targets 0.52.6", 2017] 2018 2019[[package]] 2020name = "pathdiff" 2021version = "0.2.3" 2022source = "registry+https://github.com/rust-lang/crates.io-index" 2023checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" 2024dependencies = [ 2025 "camino", 2026] 2027 2028[[package]] 2029name = "pbkdf2" 2030version = "0.12.2" 2031source = "registry+https://github.com/rust-lang/crates.io-index" 2032checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" 2033dependencies = [ 2034 "digest", 2035 "hmac", 2036] 2037 2038[[package]] 2039name = "percent-encoding" 2040version = "2.3.1" 2041source = "registry+https://github.com/rust-lang/crates.io-index" 2042checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 2043 2044[[package]] 2045name = "petgraph" 2046version = "0.7.1" 2047source = "registry+https://github.com/rust-lang/crates.io-index" 2048checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772" 2049dependencies = [ 2050 "fixedbitset", 2051 "indexmap", 2052] 2053 2054[[package]] 2055name = "petgraph" 2056version = "0.8.3" 2057source = "registry+https://github.com/rust-lang/crates.io-index" 2058checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455" 2059dependencies = [ 2060 "fixedbitset", 2061 "hashbrown 0.15.3", 2062 "indexmap", 2063 "serde", 2064] 2065 2066[[package]] 2067name = "pin-project" 2068version = "1.1.5" 2069source = "registry+https://github.com/rust-lang/crates.io-index" 2070checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" 2071dependencies = [ 2072 "pin-project-internal", 2073] 2074 2075[[package]] 2076name = "pin-project-internal" 2077version = "1.1.5" 2078source = "registry+https://github.com/rust-lang/crates.io-index" 2079checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" 2080dependencies = [ 2081 "proc-macro2", 2082 "quote", 2083 "syn 2.0.101", 2084] 2085 2086[[package]] 2087name = "pin-project-lite" 2088version = "0.2.14" 2089source = "registry+https://github.com/rust-lang/crates.io-index" 2090checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 2091 2092[[package]] 2093name = "pin-utils" 2094version = "0.1.0" 2095source = "registry+https://github.com/rust-lang/crates.io-index" 2096checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2097 2098[[package]] 2099name = "pkg-config" 2100version = "0.3.30" 2101source = "registry+https://github.com/rust-lang/crates.io-index" 2102checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 2103 2104[[package]] 2105name = "poly1305" 2106version = "0.8.0" 2107source = "registry+https://github.com/rust-lang/crates.io-index" 2108checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf" 2109dependencies = [ 2110 "cpufeatures", 2111 "opaque-debug", 2112 "universal-hash", 2113] 2114 2115[[package]] 2116name = "powerfmt" 2117version = "0.2.0" 2118source = "registry+https://github.com/rust-lang/crates.io-index" 2119checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 2120 2121[[package]] 2122name = "ppv-lite86" 2123version = "0.2.17" 2124source = "registry+https://github.com/rust-lang/crates.io-index" 2125checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 2126 2127[[package]] 2128name = "pretty_assertions" 2129version = "1.4.1" 2130source = "registry+https://github.com/rust-lang/crates.io-index" 2131checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" 2132dependencies = [ 2133 "diff", 2134 "yansi", 2135] 2136 2137[[package]] 2138name = "prettyplease" 2139version = "0.2.17" 2140source = "registry+https://github.com/rust-lang/crates.io-index" 2141checksum = "8d3928fb5db768cb86f891ff014f0144589297e3c6a1aba6ed7cecfdace270c7" 2142dependencies = [ 2143 "proc-macro2", 2144 "syn 2.0.101", 2145] 2146 2147[[package]] 2148name = "priority-queue" 2149version = "2.3.1" 2150source = "registry+https://github.com/rust-lang/crates.io-index" 2151checksum = "ef08705fa1589a1a59aa924ad77d14722cb0cd97b67dd5004ed5f4a4873fce8d" 2152dependencies = [ 2153 "autocfg", 2154 "equivalent", 2155 "indexmap", 2156] 2157 2158[[package]] 2159name = "proc-macro-error-attr2" 2160version = "2.0.0" 2161source = "registry+https://github.com/rust-lang/crates.io-index" 2162checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5" 2163dependencies = [ 2164 "proc-macro2", 2165 "quote", 2166] 2167 2168[[package]] 2169name = "proc-macro-error2" 2170version = "2.0.1" 2171source = "registry+https://github.com/rust-lang/crates.io-index" 2172checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802" 2173dependencies = [ 2174 "proc-macro-error-attr2", 2175 "proc-macro2", 2176 "quote", 2177 "syn 2.0.101", 2178] 2179 2180[[package]] 2181name = "proc-macro2" 2182version = "1.0.95" 2183source = "registry+https://github.com/rust-lang/crates.io-index" 2184checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" 2185dependencies = [ 2186 "unicode-ident", 2187] 2188 2189[[package]] 2190name = "prost" 2191version = "0.13.5" 2192source = "registry+https://github.com/rust-lang/crates.io-index" 2193checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5" 2194dependencies = [ 2195 "bytes", 2196 "prost-derive", 2197] 2198 2199[[package]] 2200name = "prost-build" 2201version = "0.13.5" 2202source = "registry+https://github.com/rust-lang/crates.io-index" 2203checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf" 2204dependencies = [ 2205 "heck", 2206 "itertools", 2207 "log", 2208 "multimap", 2209 "once_cell", 2210 "petgraph 0.7.1", 2211 "prettyplease", 2212 "prost", 2213 "prost-types", 2214 "regex", 2215 "syn 2.0.101", 2216 "tempfile", 2217] 2218 2219[[package]] 2220name = "prost-derive" 2221version = "0.13.5" 2222source = "registry+https://github.com/rust-lang/crates.io-index" 2223checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d" 2224dependencies = [ 2225 "anyhow", 2226 "itertools", 2227 "proc-macro2", 2228 "quote", 2229 "syn 2.0.101", 2230] 2231 2232[[package]] 2233name = "prost-types" 2234version = "0.13.5" 2235source = "registry+https://github.com/rust-lang/crates.io-index" 2236checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16" 2237dependencies = [ 2238 "prost", 2239] 2240 2241[[package]] 2242name = "psm" 2243version = "0.1.26" 2244source = "registry+https://github.com/rust-lang/crates.io-index" 2245checksum = "6e944464ec8536cd1beb0bbfd96987eb5e3b72f2ecdafdc5c769a37f1fa2ae1f" 2246dependencies = [ 2247 "cc", 2248] 2249 2250[[package]] 2251name = "pubgrub" 2252version = "0.3.0" 2253source = "registry+https://github.com/rust-lang/crates.io-index" 2254checksum = "3f5df7e552bc7edd075f5783a87fbfc21d6a546e32c16985679c488c18192d83" 2255dependencies = [ 2256 "indexmap", 2257 "log", 2258 "priority-queue", 2259 "rustc-hash 2.0.0", 2260 "thiserror 2.0.12", 2261 "version-ranges", 2262] 2263 2264[[package]] 2265name = "pulldown-cmark" 2266version = "0.13.0" 2267source = "registry+https://github.com/rust-lang/crates.io-index" 2268checksum = "1e8bbe1a966bd2f362681a44f6edce3c2310ac21e4d5067a6e7ec396297a6ea0" 2269dependencies = [ 2270 "bitflags 2.5.0", 2271 "memchr", 2272 "pulldown-cmark-escape", 2273 "unicase", 2274] 2275 2276[[package]] 2277name = "pulldown-cmark-escape" 2278version = "0.11.0" 2279source = "registry+https://github.com/rust-lang/crates.io-index" 2280checksum = "007d8adb5ddab6f8e3f491ac63566a7d5002cc7ed73901f72057943fa71ae1ae" 2281 2282[[package]] 2283name = "quinn" 2284version = "0.11.2" 2285source = "registry+https://github.com/rust-lang/crates.io-index" 2286checksum = "e4ceeeeabace7857413798eb1ffa1e9c905a9946a57d81fb69b4b71c4d8eb3ad" 2287dependencies = [ 2288 "bytes", 2289 "pin-project-lite", 2290 "quinn-proto", 2291 "quinn-udp", 2292 "rustc-hash 1.1.0", 2293 "rustls", 2294 "thiserror 1.0.69", 2295 "tokio", 2296 "tracing", 2297] 2298 2299[[package]] 2300name = "quinn-proto" 2301version = "0.11.8" 2302source = "registry+https://github.com/rust-lang/crates.io-index" 2303checksum = "fadfaed2cd7f389d0161bb73eeb07b7b78f8691047a6f3e73caaeae55310a4a6" 2304dependencies = [ 2305 "bytes", 2306 "rand 0.8.5", 2307 "ring", 2308 "rustc-hash 2.0.0", 2309 "rustls", 2310 "slab", 2311 "thiserror 1.0.69", 2312 "tinyvec", 2313 "tracing", 2314] 2315 2316[[package]] 2317name = "quinn-udp" 2318version = "0.5.4" 2319source = "registry+https://github.com/rust-lang/crates.io-index" 2320checksum = "8bffec3605b73c6f1754535084a85229fa8a30f86014e6c81aeec4abb68b0285" 2321dependencies = [ 2322 "libc", 2323 "once_cell", 2324 "socket2 0.5.6", 2325 "windows-sys 0.52.0", 2326] 2327 2328[[package]] 2329name = "quote" 2330version = "1.0.35" 2331source = "registry+https://github.com/rust-lang/crates.io-index" 2332checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 2333dependencies = [ 2334 "proc-macro2", 2335] 2336 2337[[package]] 2338name = "r-efi" 2339version = "5.2.0" 2340source = "registry+https://github.com/rust-lang/crates.io-index" 2341checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5" 2342 2343[[package]] 2344name = "radium" 2345version = "0.7.0" 2346source = "registry+https://github.com/rust-lang/crates.io-index" 2347checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 2348 2349[[package]] 2350name = "radix_trie" 2351version = "0.2.1" 2352source = "registry+https://github.com/rust-lang/crates.io-index" 2353checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd" 2354dependencies = [ 2355 "endian-type", 2356 "nibble_vec", 2357] 2358 2359[[package]] 2360name = "rand" 2361version = "0.8.5" 2362source = "registry+https://github.com/rust-lang/crates.io-index" 2363checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2364dependencies = [ 2365 "libc", 2366 "rand_chacha 0.3.1", 2367 "rand_core 0.6.4", 2368] 2369 2370[[package]] 2371name = "rand" 2372version = "0.9.2" 2373source = "registry+https://github.com/rust-lang/crates.io-index" 2374checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 2375dependencies = [ 2376 "rand_chacha 0.9.0", 2377 "rand_core 0.9.3", 2378] 2379 2380[[package]] 2381name = "rand_chacha" 2382version = "0.3.1" 2383source = "registry+https://github.com/rust-lang/crates.io-index" 2384checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2385dependencies = [ 2386 "ppv-lite86", 2387 "rand_core 0.6.4", 2388] 2389 2390[[package]] 2391name = "rand_chacha" 2392version = "0.9.0" 2393source = "registry+https://github.com/rust-lang/crates.io-index" 2394checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 2395dependencies = [ 2396 "ppv-lite86", 2397 "rand_core 0.9.3", 2398] 2399 2400[[package]] 2401name = "rand_core" 2402version = "0.6.4" 2403source = "registry+https://github.com/rust-lang/crates.io-index" 2404checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2405dependencies = [ 2406 "getrandom 0.2.15", 2407] 2408 2409[[package]] 2410name = "rand_core" 2411version = "0.9.3" 2412source = "registry+https://github.com/rust-lang/crates.io-index" 2413checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" 2414dependencies = [ 2415 "getrandom 0.3.3", 2416] 2417 2418[[package]] 2419name = "rand_xoshiro" 2420version = "0.6.0" 2421source = "registry+https://github.com/rust-lang/crates.io-index" 2422checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa" 2423dependencies = [ 2424 "rand_core 0.6.4", 2425] 2426 2427[[package]] 2428name = "redox_syscall" 2429version = "0.4.1" 2430source = "registry+https://github.com/rust-lang/crates.io-index" 2431checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 2432dependencies = [ 2433 "bitflags 1.3.2", 2434] 2435 2436[[package]] 2437name = "redox_syscall" 2438version = "0.5.7" 2439source = "registry+https://github.com/rust-lang/crates.io-index" 2440checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f" 2441dependencies = [ 2442 "bitflags 2.5.0", 2443] 2444 2445[[package]] 2446name = "redox_users" 2447version = "0.4.5" 2448source = "registry+https://github.com/rust-lang/crates.io-index" 2449checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891" 2450dependencies = [ 2451 "getrandom 0.2.15", 2452 "libredox", 2453 "thiserror 1.0.69", 2454] 2455 2456[[package]] 2457name = "regex" 2458version = "1.10.5" 2459source = "registry+https://github.com/rust-lang/crates.io-index" 2460checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f" 2461dependencies = [ 2462 "aho-corasick", 2463 "memchr", 2464 "regex-automata", 2465 "regex-syntax", 2466] 2467 2468[[package]] 2469name = "regex-automata" 2470version = "0.4.6" 2471source = "registry+https://github.com/rust-lang/crates.io-index" 2472checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" 2473dependencies = [ 2474 "aho-corasick", 2475 "memchr", 2476 "regex-syntax", 2477] 2478 2479[[package]] 2480name = "regex-syntax" 2481version = "0.8.3" 2482source = "registry+https://github.com/rust-lang/crates.io-index" 2483checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" 2484 2485[[package]] 2486name = "reqwest" 2487version = "0.12.12" 2488source = "registry+https://github.com/rust-lang/crates.io-index" 2489checksum = "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da" 2490dependencies = [ 2491 "base64 0.22.0", 2492 "bytes", 2493 "futures-core", 2494 "futures-util", 2495 "http", 2496 "http-body", 2497 "http-body-util", 2498 "hyper", 2499 "hyper-rustls", 2500 "hyper-util", 2501 "ipnet", 2502 "js-sys", 2503 "log", 2504 "mime", 2505 "once_cell", 2506 "percent-encoding", 2507 "pin-project-lite", 2508 "quinn", 2509 "rustls", 2510 "rustls-pemfile", 2511 "rustls-pki-types", 2512 "serde", 2513 "serde_json", 2514 "serde_urlencoded", 2515 "sync_wrapper", 2516 "tokio", 2517 "tokio-rustls", 2518 "tower", 2519 "tower-service", 2520 "url", 2521 "wasm-bindgen", 2522 "wasm-bindgen-futures", 2523 "web-sys", 2524 "webpki-roots", 2525 "windows-registry", 2526] 2527 2528[[package]] 2529name = "ring" 2530version = "0.17.13" 2531source = "registry+https://github.com/rust-lang/crates.io-index" 2532checksum = "70ac5d832aa16abd7d1def883a8545280c20a60f523a370aa3a9617c2b8550ee" 2533dependencies = [ 2534 "cc", 2535 "cfg-if", 2536 "getrandom 0.2.15", 2537 "libc", 2538 "untrusted", 2539 "windows-sys 0.52.0", 2540] 2541 2542[[package]] 2543name = "rpassword" 2544version = "7.4.0" 2545source = "registry+https://github.com/rust-lang/crates.io-index" 2546checksum = "66d4c8b64f049c6721ec8ccec37ddfc3d641c4a7fca57e8f2a89de509c73df39" 2547dependencies = [ 2548 "libc", 2549 "rtoolbox", 2550 "windows-sys 0.59.0", 2551] 2552 2553[[package]] 2554name = "rtoolbox" 2555version = "0.0.2" 2556source = "registry+https://github.com/rust-lang/crates.io-index" 2557checksum = "c247d24e63230cdb56463ae328478bd5eac8b8faa8c69461a77e8e323afac90e" 2558dependencies = [ 2559 "libc", 2560 "windows-sys 0.48.0", 2561] 2562 2563[[package]] 2564name = "rust-embed" 2565version = "8.5.0" 2566source = "registry+https://github.com/rust-lang/crates.io-index" 2567checksum = "fa66af4a4fdd5e7ebc276f115e895611a34739a9c1c01028383d612d550953c0" 2568dependencies = [ 2569 "rust-embed-impl", 2570 "rust-embed-utils", 2571 "walkdir", 2572] 2573 2574[[package]] 2575name = "rust-embed-impl" 2576version = "8.5.0" 2577source = "registry+https://github.com/rust-lang/crates.io-index" 2578checksum = "6125dbc8867951125eec87294137f4e9c2c96566e61bf72c45095a7c77761478" 2579dependencies = [ 2580 "proc-macro2", 2581 "quote", 2582 "rust-embed-utils", 2583 "syn 2.0.101", 2584 "walkdir", 2585] 2586 2587[[package]] 2588name = "rust-embed-utils" 2589version = "8.5.0" 2590source = "registry+https://github.com/rust-lang/crates.io-index" 2591checksum = "2e5347777e9aacb56039b0e1f28785929a8a3b709e87482e7442c72e7c12529d" 2592dependencies = [ 2593 "sha2", 2594 "walkdir", 2595] 2596 2597[[package]] 2598name = "rustc-hash" 2599version = "1.1.0" 2600source = "registry+https://github.com/rust-lang/crates.io-index" 2601checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 2602 2603[[package]] 2604name = "rustc-hash" 2605version = "2.0.0" 2606source = "registry+https://github.com/rust-lang/crates.io-index" 2607checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" 2608 2609[[package]] 2610name = "rustc_version" 2611version = "0.4.1" 2612source = "registry+https://github.com/rust-lang/crates.io-index" 2613checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 2614dependencies = [ 2615 "semver", 2616] 2617 2618[[package]] 2619name = "rusticata-macros" 2620version = "4.1.0" 2621source = "registry+https://github.com/rust-lang/crates.io-index" 2622checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" 2623dependencies = [ 2624 "nom", 2625] 2626 2627[[package]] 2628name = "rustix" 2629version = "0.38.32" 2630source = "registry+https://github.com/rust-lang/crates.io-index" 2631checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89" 2632dependencies = [ 2633 "bitflags 2.5.0", 2634 "errno", 2635 "libc", 2636 "linux-raw-sys", 2637 "windows-sys 0.52.0", 2638] 2639 2640[[package]] 2641name = "rustls" 2642version = "0.23.7" 2643source = "registry+https://github.com/rust-lang/crates.io-index" 2644checksum = "ebbbdb961df0ad3f2652da8f3fdc4b36122f568f968f45ad3316f26c025c677b" 2645dependencies = [ 2646 "once_cell", 2647 "ring", 2648 "rustls-pki-types", 2649 "rustls-webpki", 2650 "subtle", 2651 "zeroize", 2652] 2653 2654[[package]] 2655name = "rustls-pemfile" 2656version = "2.1.2" 2657source = "registry+https://github.com/rust-lang/crates.io-index" 2658checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d" 2659dependencies = [ 2660 "base64 0.22.0", 2661 "rustls-pki-types", 2662] 2663 2664[[package]] 2665name = "rustls-pki-types" 2666version = "1.4.1" 2667source = "registry+https://github.com/rust-lang/crates.io-index" 2668checksum = "ecd36cc4259e3e4514335c4a138c6b43171a8d61d8f5c9348f9fc7529416f247" 2669 2670[[package]] 2671name = "rustls-webpki" 2672version = "0.102.2" 2673source = "registry+https://github.com/rust-lang/crates.io-index" 2674checksum = "faaa0a62740bedb9b2ef5afa303da42764c012f743917351dc9a237ea1663610" 2675dependencies = [ 2676 "ring", 2677 "rustls-pki-types", 2678 "untrusted", 2679] 2680 2681[[package]] 2682name = "ryu" 2683version = "1.0.17" 2684source = "registry+https://github.com/rust-lang/crates.io-index" 2685checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" 2686 2687[[package]] 2688name = "salsa20" 2689version = "0.10.2" 2690source = "registry+https://github.com/rust-lang/crates.io-index" 2691checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213" 2692dependencies = [ 2693 "cipher", 2694] 2695 2696[[package]] 2697name = "same-file" 2698version = "1.0.6" 2699source = "registry+https://github.com/rust-lang/crates.io-index" 2700checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2701dependencies = [ 2702 "winapi-util", 2703] 2704 2705[[package]] 2706name = "scoped-tls" 2707version = "1.0.1" 2708source = "registry+https://github.com/rust-lang/crates.io-index" 2709checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 2710 2711[[package]] 2712name = "scopeguard" 2713version = "1.2.0" 2714source = "registry+https://github.com/rust-lang/crates.io-index" 2715checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2716 2717[[package]] 2718name = "scrypt" 2719version = "0.11.0" 2720source = "registry+https://github.com/rust-lang/crates.io-index" 2721checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f" 2722dependencies = [ 2723 "pbkdf2", 2724 "salsa20", 2725 "sha2", 2726] 2727 2728[[package]] 2729name = "secrecy" 2730version = "0.10.3" 2731source = "registry+https://github.com/rust-lang/crates.io-index" 2732checksum = "e891af845473308773346dc847b2c23ee78fe442e0472ac50e22a18a93d3ae5a" 2733dependencies = [ 2734 "zeroize", 2735] 2736 2737[[package]] 2738name = "self_cell" 2739version = "0.10.3" 2740source = "registry+https://github.com/rust-lang/crates.io-index" 2741checksum = "e14e4d63b804dc0c7ec4a1e52bcb63f02c7ac94476755aa579edac21e01f915d" 2742dependencies = [ 2743 "self_cell 1.0.4", 2744] 2745 2746[[package]] 2747name = "self_cell" 2748version = "1.0.4" 2749source = "registry+https://github.com/rust-lang/crates.io-index" 2750checksum = "d369a96f978623eb3dc28807c4852d6cc617fed53da5d3c400feff1ef34a714a" 2751 2752[[package]] 2753name = "semver" 2754version = "1.0.23" 2755source = "registry+https://github.com/rust-lang/crates.io-index" 2756checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" 2757 2758[[package]] 2759name = "serde" 2760version = "1.0.228" 2761source = "registry+https://github.com/rust-lang/crates.io-index" 2762checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 2763dependencies = [ 2764 "serde_core", 2765 "serde_derive", 2766] 2767 2768[[package]] 2769name = "serde-wasm-bindgen" 2770version = "0.6.5" 2771source = "registry+https://github.com/rust-lang/crates.io-index" 2772checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b" 2773dependencies = [ 2774 "js-sys", 2775 "serde", 2776 "wasm-bindgen", 2777] 2778 2779[[package]] 2780name = "serde_core" 2781version = "1.0.228" 2782source = "registry+https://github.com/rust-lang/crates.io-index" 2783checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 2784dependencies = [ 2785 "serde_derive", 2786] 2787 2788[[package]] 2789name = "serde_derive" 2790version = "1.0.228" 2791source = "registry+https://github.com/rust-lang/crates.io-index" 2792checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 2793dependencies = [ 2794 "proc-macro2", 2795 "quote", 2796 "syn 2.0.101", 2797] 2798 2799[[package]] 2800name = "serde_json" 2801version = "1.0.145" 2802source = "registry+https://github.com/rust-lang/crates.io-index" 2803checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" 2804dependencies = [ 2805 "itoa", 2806 "memchr", 2807 "ryu", 2808 "serde", 2809 "serde_core", 2810] 2811 2812[[package]] 2813name = "serde_repr" 2814version = "0.1.18" 2815source = "registry+https://github.com/rust-lang/crates.io-index" 2816checksum = "0b2e6b945e9d3df726b65d6ee24060aff8e3533d431f677a9695db04eff9dfdb" 2817dependencies = [ 2818 "proc-macro2", 2819 "quote", 2820 "syn 2.0.101", 2821] 2822 2823[[package]] 2824name = "serde_spanned" 2825version = "1.0.2" 2826source = "registry+https://github.com/rust-lang/crates.io-index" 2827checksum = "5417783452c2be558477e104686f7de5dae53dba813c28435e0e70f82d9b04ee" 2828dependencies = [ 2829 "serde_core", 2830] 2831 2832[[package]] 2833name = "serde_urlencoded" 2834version = "0.7.1" 2835source = "registry+https://github.com/rust-lang/crates.io-index" 2836checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2837dependencies = [ 2838 "form_urlencoded", 2839 "itoa", 2840 "ryu", 2841 "serde", 2842] 2843 2844[[package]] 2845name = "sha2" 2846version = "0.10.8" 2847source = "registry+https://github.com/rust-lang/crates.io-index" 2848checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 2849dependencies = [ 2850 "cfg-if", 2851 "cpufeatures", 2852 "digest", 2853] 2854 2855[[package]] 2856name = "sharded-slab" 2857version = "0.1.7" 2858source = "registry+https://github.com/rust-lang/crates.io-index" 2859checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 2860dependencies = [ 2861 "lazy_static", 2862] 2863 2864[[package]] 2865name = "shlex" 2866version = "1.3.0" 2867source = "registry+https://github.com/rust-lang/crates.io-index" 2868checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 2869 2870[[package]] 2871name = "similar" 2872version = "2.5.0" 2873source = "registry+https://github.com/rust-lang/crates.io-index" 2874checksum = "fa42c91313f1d05da9b26f267f931cf178d4aba455b4c4622dd7355eb80c6640" 2875 2876[[package]] 2877name = "sized-chunks" 2878version = "0.6.5" 2879source = "registry+https://github.com/rust-lang/crates.io-index" 2880checksum = "16d69225bde7a69b235da73377861095455d298f2b970996eec25ddbb42b3d1e" 2881dependencies = [ 2882 "bitmaps", 2883 "typenum", 2884] 2885 2886[[package]] 2887name = "slab" 2888version = "0.4.9" 2889source = "registry+https://github.com/rust-lang/crates.io-index" 2890checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 2891dependencies = [ 2892 "autocfg", 2893] 2894 2895[[package]] 2896name = "smallvec" 2897version = "1.13.2" 2898source = "registry+https://github.com/rust-lang/crates.io-index" 2899checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 2900 2901[[package]] 2902name = "socket2" 2903version = "0.5.6" 2904source = "registry+https://github.com/rust-lang/crates.io-index" 2905checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871" 2906dependencies = [ 2907 "libc", 2908 "windows-sys 0.52.0", 2909] 2910 2911[[package]] 2912name = "socket2" 2913version = "0.6.0" 2914source = "registry+https://github.com/rust-lang/crates.io-index" 2915checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807" 2916dependencies = [ 2917 "libc", 2918 "windows-sys 0.59.0", 2919] 2920 2921[[package]] 2922name = "spdx" 2923version = "0.10.8" 2924source = "registry+https://github.com/rust-lang/crates.io-index" 2925checksum = "58b69356da67e2fc1f542c71ea7e654a361a79c938e4424392ecf4fa065d2193" 2926dependencies = [ 2927 "smallvec", 2928] 2929 2930[[package]] 2931name = "stable_deref_trait" 2932version = "1.2.0" 2933source = "registry+https://github.com/rust-lang/crates.io-index" 2934checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 2935 2936[[package]] 2937name = "stacker" 2938version = "0.1.21" 2939source = "registry+https://github.com/rust-lang/crates.io-index" 2940checksum = "cddb07e32ddb770749da91081d8d0ac3a16f1a569a18b20348cd371f5dead06b" 2941dependencies = [ 2942 "cc", 2943 "cfg-if", 2944 "libc", 2945 "psm", 2946 "windows-sys 0.59.0", 2947] 2948 2949[[package]] 2950name = "static_vcruntime" 2951version = "2.0.0" 2952source = "registry+https://github.com/rust-lang/crates.io-index" 2953checksum = "954e3e877803def9dc46075bf4060147c55cd70db97873077232eae0269dc89b" 2954 2955[[package]] 2956name = "strsim" 2957version = "0.11.1" 2958source = "registry+https://github.com/rust-lang/crates.io-index" 2959checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 2960 2961[[package]] 2962name = "strum" 2963version = "0.27.2" 2964source = "registry+https://github.com/rust-lang/crates.io-index" 2965checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf" 2966dependencies = [ 2967 "strum_macros", 2968] 2969 2970[[package]] 2971name = "strum_macros" 2972version = "0.27.2" 2973source = "registry+https://github.com/rust-lang/crates.io-index" 2974checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7" 2975dependencies = [ 2976 "heck", 2977 "proc-macro2", 2978 "quote", 2979 "syn 2.0.101", 2980] 2981 2982[[package]] 2983name = "subtle" 2984version = "2.5.0" 2985source = "registry+https://github.com/rust-lang/crates.io-index" 2986checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 2987 2988[[package]] 2989name = "syn" 2990version = "1.0.109" 2991source = "registry+https://github.com/rust-lang/crates.io-index" 2992checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 2993dependencies = [ 2994 "proc-macro2", 2995 "quote", 2996 "unicode-ident", 2997] 2998 2999[[package]] 3000name = "syn" 3001version = "2.0.101" 3002source = "registry+https://github.com/rust-lang/crates.io-index" 3003checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf" 3004dependencies = [ 3005 "proc-macro2", 3006 "quote", 3007 "unicode-ident", 3008] 3009 3010[[package]] 3011name = "sync_wrapper" 3012version = "1.0.1" 3013source = "registry+https://github.com/rust-lang/crates.io-index" 3014checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" 3015dependencies = [ 3016 "futures-core", 3017] 3018 3019[[package]] 3020name = "synstructure" 3021version = "0.12.6" 3022source = "registry+https://github.com/rust-lang/crates.io-index" 3023checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" 3024dependencies = [ 3025 "proc-macro2", 3026 "quote", 3027 "syn 1.0.109", 3028 "unicode-xid", 3029] 3030 3031[[package]] 3032name = "synstructure" 3033version = "0.13.1" 3034source = "registry+https://github.com/rust-lang/crates.io-index" 3035checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" 3036dependencies = [ 3037 "proc-macro2", 3038 "quote", 3039 "syn 2.0.101", 3040] 3041 3042[[package]] 3043name = "tap" 3044version = "1.0.1" 3045source = "registry+https://github.com/rust-lang/crates.io-index" 3046checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 3047 3048[[package]] 3049name = "tar" 3050version = "0.4.44" 3051source = "registry+https://github.com/rust-lang/crates.io-index" 3052checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a" 3053dependencies = [ 3054 "filetime", 3055 "libc", 3056 "xattr", 3057] 3058 3059[[package]] 3060name = "tempfile" 3061version = "3.12.0" 3062source = "registry+https://github.com/rust-lang/crates.io-index" 3063checksum = "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64" 3064dependencies = [ 3065 "cfg-if", 3066 "fastrand", 3067 "once_cell", 3068 "rustix", 3069 "windows-sys 0.59.0", 3070] 3071 3072[[package]] 3073name = "termcolor" 3074version = "1.4.1" 3075source = "registry+https://github.com/rust-lang/crates.io-index" 3076checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 3077dependencies = [ 3078 "winapi-util", 3079] 3080 3081[[package]] 3082name = "test-helpers-rs" 3083version = "0.1.0" 3084dependencies = [ 3085 "camino", 3086 "gleam-core", 3087 "im", 3088 "insta", 3089 "itertools", 3090 "regex", 3091 "toml 0.9.7", 3092 "walkdir", 3093] 3094 3095[[package]] 3096name = "test-output" 3097version = "1.13.0" 3098dependencies = [ 3099 "camino", 3100 "gleam-cli", 3101 "gleam-core", 3102 "insta", 3103 "test-helpers-rs", 3104] 3105 3106[[package]] 3107name = "test-package-compiler" 3108version = "1.13.0" 3109dependencies = [ 3110 "camino", 3111 "gleam-core", 3112 "im", 3113 "insta", 3114 "itertools", 3115 "regex", 3116 "test-helpers-rs", 3117 "toml 0.9.7", 3118] 3119 3120[[package]] 3121name = "test-project-compiler" 3122version = "1.13.0" 3123dependencies = [ 3124 "camino", 3125 "gleam-core", 3126 "im", 3127 "insta", 3128 "itertools", 3129 "regex", 3130 "test-helpers-rs", 3131 "toml 0.9.7", 3132] 3133 3134[[package]] 3135name = "thiserror" 3136version = "1.0.69" 3137source = "registry+https://github.com/rust-lang/crates.io-index" 3138checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 3139dependencies = [ 3140 "thiserror-impl 1.0.69", 3141] 3142 3143[[package]] 3144name = "thiserror" 3145version = "2.0.12" 3146source = "registry+https://github.com/rust-lang/crates.io-index" 3147checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" 3148dependencies = [ 3149 "thiserror-impl 2.0.12", 3150] 3151 3152[[package]] 3153name = "thiserror-impl" 3154version = "1.0.69" 3155source = "registry+https://github.com/rust-lang/crates.io-index" 3156checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 3157dependencies = [ 3158 "proc-macro2", 3159 "quote", 3160 "syn 2.0.101", 3161] 3162 3163[[package]] 3164name = "thiserror-impl" 3165version = "2.0.12" 3166source = "registry+https://github.com/rust-lang/crates.io-index" 3167checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" 3168dependencies = [ 3169 "proc-macro2", 3170 "quote", 3171 "syn 2.0.101", 3172] 3173 3174[[package]] 3175name = "thread_local" 3176version = "1.1.8" 3177source = "registry+https://github.com/rust-lang/crates.io-index" 3178checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" 3179dependencies = [ 3180 "cfg-if", 3181 "once_cell", 3182] 3183 3184[[package]] 3185name = "time" 3186version = "0.3.36" 3187source = "registry+https://github.com/rust-lang/crates.io-index" 3188checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 3189dependencies = [ 3190 "deranged", 3191 "itoa", 3192 "num-conv", 3193 "powerfmt", 3194 "serde", 3195 "time-core", 3196 "time-macros", 3197] 3198 3199[[package]] 3200name = "time-core" 3201version = "0.1.2" 3202source = "registry+https://github.com/rust-lang/crates.io-index" 3203checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 3204 3205[[package]] 3206name = "time-macros" 3207version = "0.2.18" 3208source = "registry+https://github.com/rust-lang/crates.io-index" 3209checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 3210dependencies = [ 3211 "num-conv", 3212 "time-core", 3213] 3214 3215[[package]] 3216name = "tinystr" 3217version = "0.7.6" 3218source = "registry+https://github.com/rust-lang/crates.io-index" 3219checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" 3220dependencies = [ 3221 "displaydoc", 3222 "zerovec", 3223] 3224 3225[[package]] 3226name = "tinyvec" 3227version = "1.6.0" 3228source = "registry+https://github.com/rust-lang/crates.io-index" 3229checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 3230dependencies = [ 3231 "tinyvec_macros", 3232] 3233 3234[[package]] 3235name = "tinyvec_macros" 3236version = "0.1.1" 3237source = "registry+https://github.com/rust-lang/crates.io-index" 3238checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 3239 3240[[package]] 3241name = "tokio" 3242version = "1.48.0" 3243source = "registry+https://github.com/rust-lang/crates.io-index" 3244checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408" 3245dependencies = [ 3246 "bytes", 3247 "libc", 3248 "mio", 3249 "pin-project-lite", 3250 "socket2 0.6.0", 3251 "windows-sys 0.61.2", 3252] 3253 3254[[package]] 3255name = "tokio-rustls" 3256version = "0.26.0" 3257source = "registry+https://github.com/rust-lang/crates.io-index" 3258checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" 3259dependencies = [ 3260 "rustls", 3261 "rustls-pki-types", 3262 "tokio", 3263] 3264 3265[[package]] 3266name = "toml" 3267version = "0.5.11" 3268source = "registry+https://github.com/rust-lang/crates.io-index" 3269checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 3270dependencies = [ 3271 "serde", 3272] 3273 3274[[package]] 3275name = "toml" 3276version = "0.9.7" 3277source = "registry+https://github.com/rust-lang/crates.io-index" 3278checksum = "00e5e5d9bf2475ac9d4f0d9edab68cc573dc2fd644b0dba36b0c30a92dd9eaa0" 3279dependencies = [ 3280 "indexmap", 3281 "serde_core", 3282 "serde_spanned", 3283 "toml_datetime 0.7.2", 3284 "toml_parser", 3285 "toml_writer", 3286 "winnow", 3287] 3288 3289[[package]] 3290name = "toml_datetime" 3291version = "0.6.9" 3292source = "registry+https://github.com/rust-lang/crates.io-index" 3293checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3" 3294 3295[[package]] 3296name = "toml_datetime" 3297version = "0.7.2" 3298source = "registry+https://github.com/rust-lang/crates.io-index" 3299checksum = "32f1085dec27c2b6632b04c80b3bb1b4300d6495d1e129693bdda7d91e72eec1" 3300dependencies = [ 3301 "serde_core", 3302] 3303 3304[[package]] 3305name = "toml_edit" 3306version = "0.22.26" 3307source = "registry+https://github.com/rust-lang/crates.io-index" 3308checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e" 3309dependencies = [ 3310 "indexmap", 3311 "toml_datetime 0.6.9", 3312 "toml_write", 3313 "winnow", 3314] 3315 3316[[package]] 3317name = "toml_parser" 3318version = "1.0.3" 3319source = "registry+https://github.com/rust-lang/crates.io-index" 3320checksum = "4cf893c33be71572e0e9aa6dd15e6677937abd686b066eac3f8cd3531688a627" 3321dependencies = [ 3322 "winnow", 3323] 3324 3325[[package]] 3326name = "toml_write" 3327version = "0.1.1" 3328source = "registry+https://github.com/rust-lang/crates.io-index" 3329checksum = "bfb942dfe1d8e29a7ee7fcbde5bd2b9a25fb89aa70caea2eba3bee836ff41076" 3330 3331[[package]] 3332name = "toml_writer" 3333version = "1.0.3" 3334source = "registry+https://github.com/rust-lang/crates.io-index" 3335checksum = "d163a63c116ce562a22cda521fcc4d79152e7aba014456fb5eb442f6d6a10109" 3336 3337[[package]] 3338name = "tower" 3339version = "0.5.2" 3340source = "registry+https://github.com/rust-lang/crates.io-index" 3341checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" 3342dependencies = [ 3343 "futures-core", 3344 "futures-util", 3345 "pin-project-lite", 3346 "sync_wrapper", 3347 "tokio", 3348 "tower-layer", 3349 "tower-service", 3350] 3351 3352[[package]] 3353name = "tower-layer" 3354version = "0.3.3" 3355source = "registry+https://github.com/rust-lang/crates.io-index" 3356checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 3357 3358[[package]] 3359name = "tower-service" 3360version = "0.3.3" 3361source = "registry+https://github.com/rust-lang/crates.io-index" 3362checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 3363 3364[[package]] 3365name = "tracing" 3366version = "0.1.41" 3367source = "registry+https://github.com/rust-lang/crates.io-index" 3368checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 3369dependencies = [ 3370 "pin-project-lite", 3371 "tracing-attributes", 3372 "tracing-core", 3373] 3374 3375[[package]] 3376name = "tracing-attributes" 3377version = "0.1.30" 3378source = "registry+https://github.com/rust-lang/crates.io-index" 3379checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" 3380dependencies = [ 3381 "proc-macro2", 3382 "quote", 3383 "syn 2.0.101", 3384] 3385 3386[[package]] 3387name = "tracing-core" 3388version = "0.1.34" 3389source = "registry+https://github.com/rust-lang/crates.io-index" 3390checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" 3391dependencies = [ 3392 "once_cell", 3393 "valuable", 3394] 3395 3396[[package]] 3397name = "tracing-log" 3398version = "0.2.0" 3399source = "registry+https://github.com/rust-lang/crates.io-index" 3400checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 3401dependencies = [ 3402 "log", 3403 "once_cell", 3404 "tracing-core", 3405] 3406 3407[[package]] 3408name = "tracing-subscriber" 3409version = "0.3.20" 3410source = "registry+https://github.com/rust-lang/crates.io-index" 3411checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5" 3412dependencies = [ 3413 "matchers", 3414 "nu-ansi-term", 3415 "once_cell", 3416 "regex-automata", 3417 "sharded-slab", 3418 "smallvec", 3419 "thread_local", 3420 "tracing", 3421 "tracing-core", 3422 "tracing-log", 3423] 3424 3425[[package]] 3426name = "tracing-wasm" 3427version = "0.2.1" 3428source = "registry+https://github.com/rust-lang/crates.io-index" 3429checksum = "4575c663a174420fa2d78f4108ff68f65bf2fbb7dd89f33749b6e826b3626e07" 3430dependencies = [ 3431 "tracing", 3432 "tracing-subscriber", 3433 "wasm-bindgen", 3434] 3435 3436[[package]] 3437name = "try-lock" 3438version = "0.2.5" 3439source = "registry+https://github.com/rust-lang/crates.io-index" 3440checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 3441 3442[[package]] 3443name = "type-map" 3444version = "0.5.0" 3445source = "registry+https://github.com/rust-lang/crates.io-index" 3446checksum = "deb68604048ff8fa93347f02441e4487594adc20bb8a084f9e564d2b827a0a9f" 3447dependencies = [ 3448 "rustc-hash 1.1.0", 3449] 3450 3451[[package]] 3452name = "typenum" 3453version = "1.17.0" 3454source = "registry+https://github.com/rust-lang/crates.io-index" 3455checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 3456 3457[[package]] 3458name = "unic-langid" 3459version = "0.9.5" 3460source = "registry+https://github.com/rust-lang/crates.io-index" 3461checksum = "23dd9d1e72a73b25e07123a80776aae3e7b0ec461ef94f9151eed6ec88005a44" 3462dependencies = [ 3463 "unic-langid-impl", 3464] 3465 3466[[package]] 3467name = "unic-langid-impl" 3468version = "0.9.5" 3469source = "registry+https://github.com/rust-lang/crates.io-index" 3470checksum = "0a5422c1f65949306c99240b81de9f3f15929f5a8bfe05bb44b034cc8bf593e5" 3471dependencies = [ 3472 "serde", 3473 "tinystr", 3474] 3475 3476[[package]] 3477name = "unicase" 3478version = "2.7.0" 3479source = "registry+https://github.com/rust-lang/crates.io-index" 3480checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" 3481dependencies = [ 3482 "version_check", 3483] 3484 3485[[package]] 3486name = "unicode-ident" 3487version = "1.0.12" 3488source = "registry+https://github.com/rust-lang/crates.io-index" 3489checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 3490 3491[[package]] 3492name = "unicode-segmentation" 3493version = "1.12.0" 3494source = "registry+https://github.com/rust-lang/crates.io-index" 3495checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" 3496 3497[[package]] 3498name = "unicode-width" 3499version = "0.1.11" 3500source = "registry+https://github.com/rust-lang/crates.io-index" 3501checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" 3502 3503[[package]] 3504name = "unicode-xid" 3505version = "0.2.4" 3506source = "registry+https://github.com/rust-lang/crates.io-index" 3507checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 3508 3509[[package]] 3510name = "universal-hash" 3511version = "0.5.1" 3512source = "registry+https://github.com/rust-lang/crates.io-index" 3513checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" 3514dependencies = [ 3515 "crypto-common", 3516 "subtle", 3517] 3518 3519[[package]] 3520name = "untrusted" 3521version = "0.9.0" 3522source = "registry+https://github.com/rust-lang/crates.io-index" 3523checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 3524 3525[[package]] 3526name = "url" 3527version = "2.5.4" 3528source = "registry+https://github.com/rust-lang/crates.io-index" 3529checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" 3530dependencies = [ 3531 "form_urlencoded", 3532 "idna", 3533 "percent-encoding", 3534 "serde", 3535] 3536 3537[[package]] 3538name = "utf16_iter" 3539version = "1.0.5" 3540source = "registry+https://github.com/rust-lang/crates.io-index" 3541checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" 3542 3543[[package]] 3544name = "utf8_iter" 3545version = "1.0.4" 3546source = "registry+https://github.com/rust-lang/crates.io-index" 3547checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 3548 3549[[package]] 3550name = "utf8parse" 3551version = "0.2.1" 3552source = "registry+https://github.com/rust-lang/crates.io-index" 3553checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 3554 3555[[package]] 3556name = "valuable" 3557version = "0.1.0" 3558source = "registry+https://github.com/rust-lang/crates.io-index" 3559checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 3560 3561[[package]] 3562name = "vec1" 3563version = "1.12.1" 3564source = "registry+https://github.com/rust-lang/crates.io-index" 3565checksum = "eab68b56840f69efb0fefbe3ab6661499217ffdc58e2eef7c3f6f69835386322" 3566 3567[[package]] 3568name = "version-ranges" 3569version = "0.1.1" 3570source = "registry+https://github.com/rust-lang/crates.io-index" 3571checksum = "f8d079415ceb2be83fc355adbadafe401307d5c309c7e6ade6638e6f9f42f42d" 3572dependencies = [ 3573 "smallvec", 3574] 3575 3576[[package]] 3577name = "version_check" 3578version = "0.9.4" 3579source = "registry+https://github.com/rust-lang/crates.io-index" 3580checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 3581 3582[[package]] 3583name = "walkdir" 3584version = "2.5.0" 3585source = "registry+https://github.com/rust-lang/crates.io-index" 3586checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 3587dependencies = [ 3588 "same-file", 3589 "winapi-util", 3590] 3591 3592[[package]] 3593name = "want" 3594version = "0.3.1" 3595source = "registry+https://github.com/rust-lang/crates.io-index" 3596checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 3597dependencies = [ 3598 "try-lock", 3599] 3600 3601[[package]] 3602name = "wasi" 3603version = "0.11.0+wasi-snapshot-preview1" 3604source = "registry+https://github.com/rust-lang/crates.io-index" 3605checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 3606 3607[[package]] 3608name = "wasi" 3609version = "0.14.2+wasi-0.2.4" 3610source = "registry+https://github.com/rust-lang/crates.io-index" 3611checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" 3612dependencies = [ 3613 "wit-bindgen-rt", 3614] 3615 3616[[package]] 3617name = "wasm-bindgen" 3618version = "0.2.99" 3619source = "registry+https://github.com/rust-lang/crates.io-index" 3620checksum = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396" 3621dependencies = [ 3622 "cfg-if", 3623 "once_cell", 3624 "serde", 3625 "serde_json", 3626 "wasm-bindgen-macro", 3627] 3628 3629[[package]] 3630name = "wasm-bindgen-backend" 3631version = "0.2.99" 3632source = "registry+https://github.com/rust-lang/crates.io-index" 3633checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79" 3634dependencies = [ 3635 "bumpalo", 3636 "log", 3637 "proc-macro2", 3638 "quote", 3639 "syn 2.0.101", 3640 "wasm-bindgen-shared", 3641] 3642 3643[[package]] 3644name = "wasm-bindgen-futures" 3645version = "0.4.42" 3646source = "registry+https://github.com/rust-lang/crates.io-index" 3647checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" 3648dependencies = [ 3649 "cfg-if", 3650 "js-sys", 3651 "wasm-bindgen", 3652 "web-sys", 3653] 3654 3655[[package]] 3656name = "wasm-bindgen-macro" 3657version = "0.2.99" 3658source = "registry+https://github.com/rust-lang/crates.io-index" 3659checksum = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe" 3660dependencies = [ 3661 "quote", 3662 "wasm-bindgen-macro-support", 3663] 3664 3665[[package]] 3666name = "wasm-bindgen-macro-support" 3667version = "0.2.99" 3668source = "registry+https://github.com/rust-lang/crates.io-index" 3669checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2" 3670dependencies = [ 3671 "proc-macro2", 3672 "quote", 3673 "syn 2.0.101", 3674 "wasm-bindgen-backend", 3675 "wasm-bindgen-shared", 3676] 3677 3678[[package]] 3679name = "wasm-bindgen-shared" 3680version = "0.2.99" 3681source = "registry+https://github.com/rust-lang/crates.io-index" 3682checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6" 3683 3684[[package]] 3685name = "wasm-bindgen-test" 3686version = "0.3.42" 3687source = "registry+https://github.com/rust-lang/crates.io-index" 3688checksum = "d9bf62a58e0780af3e852044583deee40983e5886da43a271dd772379987667b" 3689dependencies = [ 3690 "console_error_panic_hook", 3691 "js-sys", 3692 "scoped-tls", 3693 "wasm-bindgen", 3694 "wasm-bindgen-futures", 3695 "wasm-bindgen-test-macro", 3696] 3697 3698[[package]] 3699name = "wasm-bindgen-test-macro" 3700version = "0.3.42" 3701source = "registry+https://github.com/rust-lang/crates.io-index" 3702checksum = "b7f89739351a2e03cb94beb799d47fb2cac01759b40ec441f7de39b00cbf7ef0" 3703dependencies = [ 3704 "proc-macro2", 3705 "quote", 3706 "syn 2.0.101", 3707] 3708 3709[[package]] 3710name = "web-sys" 3711version = "0.3.69" 3712source = "registry+https://github.com/rust-lang/crates.io-index" 3713checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" 3714dependencies = [ 3715 "js-sys", 3716 "wasm-bindgen", 3717] 3718 3719[[package]] 3720name = "webpki-roots" 3721version = "0.26.1" 3722source = "registry+https://github.com/rust-lang/crates.io-index" 3723checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009" 3724dependencies = [ 3725 "rustls-pki-types", 3726] 3727 3728[[package]] 3729name = "winapi" 3730version = "0.3.9" 3731source = "registry+https://github.com/rust-lang/crates.io-index" 3732checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 3733dependencies = [ 3734 "winapi-i686-pc-windows-gnu", 3735 "winapi-x86_64-pc-windows-gnu", 3736] 3737 3738[[package]] 3739name = "winapi-i686-pc-windows-gnu" 3740version = "0.4.0" 3741source = "registry+https://github.com/rust-lang/crates.io-index" 3742checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 3743 3744[[package]] 3745name = "winapi-util" 3746version = "0.1.6" 3747source = "registry+https://github.com/rust-lang/crates.io-index" 3748checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 3749dependencies = [ 3750 "winapi", 3751] 3752 3753[[package]] 3754name = "winapi-x86_64-pc-windows-gnu" 3755version = "0.4.0" 3756source = "registry+https://github.com/rust-lang/crates.io-index" 3757checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3758 3759[[package]] 3760name = "windows-link" 3761version = "0.1.1" 3762source = "registry+https://github.com/rust-lang/crates.io-index" 3763checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38" 3764 3765[[package]] 3766name = "windows-link" 3767version = "0.2.1" 3768source = "registry+https://github.com/rust-lang/crates.io-index" 3769checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 3770 3771[[package]] 3772name = "windows-registry" 3773version = "0.2.0" 3774source = "registry+https://github.com/rust-lang/crates.io-index" 3775checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0" 3776dependencies = [ 3777 "windows-result", 3778 "windows-strings", 3779 "windows-targets 0.52.6", 3780] 3781 3782[[package]] 3783name = "windows-result" 3784version = "0.2.0" 3785source = "registry+https://github.com/rust-lang/crates.io-index" 3786checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e" 3787dependencies = [ 3788 "windows-targets 0.52.6", 3789] 3790 3791[[package]] 3792name = "windows-strings" 3793version = "0.1.0" 3794source = "registry+https://github.com/rust-lang/crates.io-index" 3795checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" 3796dependencies = [ 3797 "windows-result", 3798 "windows-targets 0.52.6", 3799] 3800 3801[[package]] 3802name = "windows-sys" 3803version = "0.48.0" 3804source = "registry+https://github.com/rust-lang/crates.io-index" 3805checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 3806dependencies = [ 3807 "windows-targets 0.48.5", 3808] 3809 3810[[package]] 3811name = "windows-sys" 3812version = "0.52.0" 3813source = "registry+https://github.com/rust-lang/crates.io-index" 3814checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 3815dependencies = [ 3816 "windows-targets 0.52.6", 3817] 3818 3819[[package]] 3820name = "windows-sys" 3821version = "0.59.0" 3822source = "registry+https://github.com/rust-lang/crates.io-index" 3823checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 3824dependencies = [ 3825 "windows-targets 0.52.6", 3826] 3827 3828[[package]] 3829name = "windows-sys" 3830version = "0.61.2" 3831source = "registry+https://github.com/rust-lang/crates.io-index" 3832checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 3833dependencies = [ 3834 "windows-link 0.2.1", 3835] 3836 3837[[package]] 3838name = "windows-targets" 3839version = "0.48.5" 3840source = "registry+https://github.com/rust-lang/crates.io-index" 3841checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 3842dependencies = [ 3843 "windows_aarch64_gnullvm 0.48.5", 3844 "windows_aarch64_msvc 0.48.5", 3845 "windows_i686_gnu 0.48.5", 3846 "windows_i686_msvc 0.48.5", 3847 "windows_x86_64_gnu 0.48.5", 3848 "windows_x86_64_gnullvm 0.48.5", 3849 "windows_x86_64_msvc 0.48.5", 3850] 3851 3852[[package]] 3853name = "windows-targets" 3854version = "0.52.6" 3855source = "registry+https://github.com/rust-lang/crates.io-index" 3856checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 3857dependencies = [ 3858 "windows_aarch64_gnullvm 0.52.6", 3859 "windows_aarch64_msvc 0.52.6", 3860 "windows_i686_gnu 0.52.6", 3861 "windows_i686_gnullvm", 3862 "windows_i686_msvc 0.52.6", 3863 "windows_x86_64_gnu 0.52.6", 3864 "windows_x86_64_gnullvm 0.52.6", 3865 "windows_x86_64_msvc 0.52.6", 3866] 3867 3868[[package]] 3869name = "windows_aarch64_gnullvm" 3870version = "0.48.5" 3871source = "registry+https://github.com/rust-lang/crates.io-index" 3872checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 3873 3874[[package]] 3875name = "windows_aarch64_gnullvm" 3876version = "0.52.6" 3877source = "registry+https://github.com/rust-lang/crates.io-index" 3878checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 3879 3880[[package]] 3881name = "windows_aarch64_msvc" 3882version = "0.48.5" 3883source = "registry+https://github.com/rust-lang/crates.io-index" 3884checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 3885 3886[[package]] 3887name = "windows_aarch64_msvc" 3888version = "0.52.6" 3889source = "registry+https://github.com/rust-lang/crates.io-index" 3890checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 3891 3892[[package]] 3893name = "windows_i686_gnu" 3894version = "0.48.5" 3895source = "registry+https://github.com/rust-lang/crates.io-index" 3896checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 3897 3898[[package]] 3899name = "windows_i686_gnu" 3900version = "0.52.6" 3901source = "registry+https://github.com/rust-lang/crates.io-index" 3902checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 3903 3904[[package]] 3905name = "windows_i686_gnullvm" 3906version = "0.52.6" 3907source = "registry+https://github.com/rust-lang/crates.io-index" 3908checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 3909 3910[[package]] 3911name = "windows_i686_msvc" 3912version = "0.48.5" 3913source = "registry+https://github.com/rust-lang/crates.io-index" 3914checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 3915 3916[[package]] 3917name = "windows_i686_msvc" 3918version = "0.52.6" 3919source = "registry+https://github.com/rust-lang/crates.io-index" 3920checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 3921 3922[[package]] 3923name = "windows_x86_64_gnu" 3924version = "0.48.5" 3925source = "registry+https://github.com/rust-lang/crates.io-index" 3926checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 3927 3928[[package]] 3929name = "windows_x86_64_gnu" 3930version = "0.52.6" 3931source = "registry+https://github.com/rust-lang/crates.io-index" 3932checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 3933 3934[[package]] 3935name = "windows_x86_64_gnullvm" 3936version = "0.48.5" 3937source = "registry+https://github.com/rust-lang/crates.io-index" 3938checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 3939 3940[[package]] 3941name = "windows_x86_64_gnullvm" 3942version = "0.52.6" 3943source = "registry+https://github.com/rust-lang/crates.io-index" 3944checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 3945 3946[[package]] 3947name = "windows_x86_64_msvc" 3948version = "0.48.5" 3949source = "registry+https://github.com/rust-lang/crates.io-index" 3950checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 3951 3952[[package]] 3953name = "windows_x86_64_msvc" 3954version = "0.52.6" 3955source = "registry+https://github.com/rust-lang/crates.io-index" 3956checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 3957 3958[[package]] 3959name = "winnow" 3960version = "0.7.13" 3961source = "registry+https://github.com/rust-lang/crates.io-index" 3962checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf" 3963dependencies = [ 3964 "memchr", 3965] 3966 3967[[package]] 3968name = "wit-bindgen-rt" 3969version = "0.39.0" 3970source = "registry+https://github.com/rust-lang/crates.io-index" 3971checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" 3972dependencies = [ 3973 "bitflags 2.5.0", 3974] 3975 3976[[package]] 3977name = "write16" 3978version = "1.0.0" 3979source = "registry+https://github.com/rust-lang/crates.io-index" 3980checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936" 3981 3982[[package]] 3983name = "writeable" 3984version = "0.5.5" 3985source = "registry+https://github.com/rust-lang/crates.io-index" 3986checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" 3987 3988[[package]] 3989name = "wyz" 3990version = "0.5.1" 3991source = "registry+https://github.com/rust-lang/crates.io-index" 3992checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 3993dependencies = [ 3994 "tap", 3995] 3996 3997[[package]] 3998name = "x25519-dalek" 3999version = "2.0.1" 4000source = "registry+https://github.com/rust-lang/crates.io-index" 4001checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277" 4002dependencies = [ 4003 "curve25519-dalek", 4004 "rand_core 0.6.4", 4005 "serde", 4006 "zeroize", 4007] 4008 4009[[package]] 4010name = "x509-parser" 4011version = "0.15.1" 4012source = "registry+https://github.com/rust-lang/crates.io-index" 4013checksum = "7069fba5b66b9193bd2c5d3d4ff12b839118f6bcbef5328efafafb5395cf63da" 4014dependencies = [ 4015 "asn1-rs", 4016 "data-encoding", 4017 "der-parser", 4018 "lazy_static", 4019 "nom", 4020 "oid-registry", 4021 "rusticata-macros", 4022 "thiserror 1.0.69", 4023 "time", 4024] 4025 4026[[package]] 4027name = "xattr" 4028version = "1.3.1" 4029source = "registry+https://github.com/rust-lang/crates.io-index" 4030checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" 4031dependencies = [ 4032 "libc", 4033 "linux-raw-sys", 4034 "rustix", 4035] 4036 4037[[package]] 4038name = "xxhash-rust" 4039version = "0.8.15" 4040source = "registry+https://github.com/rust-lang/crates.io-index" 4041checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3" 4042 4043[[package]] 4044name = "yansi" 4045version = "1.0.1" 4046source = "registry+https://github.com/rust-lang/crates.io-index" 4047checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" 4048 4049[[package]] 4050name = "yoke" 4051version = "0.7.5" 4052source = "registry+https://github.com/rust-lang/crates.io-index" 4053checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" 4054dependencies = [ 4055 "serde", 4056 "stable_deref_trait", 4057 "yoke-derive", 4058 "zerofrom", 4059] 4060 4061[[package]] 4062name = "yoke-derive" 4063version = "0.7.5" 4064source = "registry+https://github.com/rust-lang/crates.io-index" 4065checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" 4066dependencies = [ 4067 "proc-macro2", 4068 "quote", 4069 "syn 2.0.101", 4070 "synstructure 0.13.1", 4071] 4072 4073[[package]] 4074name = "zerofrom" 4075version = "0.1.5" 4076source = "registry+https://github.com/rust-lang/crates.io-index" 4077checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e" 4078dependencies = [ 4079 "zerofrom-derive", 4080] 4081 4082[[package]] 4083name = "zerofrom-derive" 4084version = "0.1.5" 4085source = "registry+https://github.com/rust-lang/crates.io-index" 4086checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808" 4087dependencies = [ 4088 "proc-macro2", 4089 "quote", 4090 "syn 2.0.101", 4091 "synstructure 0.13.1", 4092] 4093 4094[[package]] 4095name = "zeroize" 4096version = "1.7.0" 4097source = "registry+https://github.com/rust-lang/crates.io-index" 4098checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" 4099dependencies = [ 4100 "zeroize_derive", 4101] 4102 4103[[package]] 4104name = "zeroize_derive" 4105version = "1.4.2" 4106source = "registry+https://github.com/rust-lang/crates.io-index" 4107checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" 4108dependencies = [ 4109 "proc-macro2", 4110 "quote", 4111 "syn 2.0.101", 4112] 4113 4114[[package]] 4115name = "zerovec" 4116version = "0.10.4" 4117source = "registry+https://github.com/rust-lang/crates.io-index" 4118checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079" 4119dependencies = [ 4120 "yoke", 4121 "zerofrom", 4122 "zerovec-derive", 4123] 4124 4125[[package]] 4126name = "zerovec-derive" 4127version = "0.10.3" 4128source = "registry+https://github.com/rust-lang/crates.io-index" 4129checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" 4130dependencies = [ 4131 "proc-macro2", 4132 "quote", 4133 "syn 2.0.101", 4134]