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
75 kB 2995 lines
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "addr2line" 7version = "0.21.0" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" 10dependencies = [ 11 "gimli", 12] 13 14[[package]] 15name = "adler" 16version = "1.0.2" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 20[[package]] 21name = "aho-corasick" 22version = "1.1.2" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 25dependencies = [ 26 "memchr", 27] 28 29[[package]] 30name = "askama" 31version = "0.12.1" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "b79091df18a97caea757e28cd2d5fda49c6cd4bd01ddffd7ff01ace0c0ad2c28" 34dependencies = [ 35 "askama_derive", 36 "askama_escape", 37 "humansize", 38 "num-traits", 39 "percent-encoding", 40] 41 42[[package]] 43name = "askama_derive" 44version = "0.12.2" 45source = "registry+https://github.com/rust-lang/crates.io-index" 46checksum = "9a0fc7dcf8bd4ead96b1d36b41df47c14beedf7b0301fc543d8f2384e66a2ec0" 47dependencies = [ 48 "askama_parser", 49 "basic-toml", 50 "mime", 51 "mime_guess", 52 "proc-macro2", 53 "quote", 54 "serde", 55 "syn 2.0.41", 56] 57 58[[package]] 59name = "askama_escape" 60version = "0.10.3" 61source = "registry+https://github.com/rust-lang/crates.io-index" 62checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341" 63 64[[package]] 65name = "askama_parser" 66version = "0.1.1" 67source = "registry+https://github.com/rust-lang/crates.io-index" 68checksum = "c268a96e01a4c47c8c5c2472aaa570707e006a875ea63e819f75474ceedaf7b4" 69dependencies = [ 70 "nom", 71] 72 73[[package]] 74name = "asn1-rs" 75version = "0.5.2" 76source = "registry+https://github.com/rust-lang/crates.io-index" 77checksum = "7f6fd5ddaf0351dff5b8da21b2fb4ff8e08ddd02857f0bf69c47639106c0fff0" 78dependencies = [ 79 "asn1-rs-derive", 80 "asn1-rs-impl", 81 "displaydoc", 82 "nom", 83 "num-traits", 84 "rusticata-macros", 85 "thiserror", 86 "time", 87] 88 89[[package]] 90name = "asn1-rs-derive" 91version = "0.4.0" 92source = "registry+https://github.com/rust-lang/crates.io-index" 93checksum = "726535892e8eae7e70657b4c8ea93d26b8553afb1ce617caee529ef96d7dee6c" 94dependencies = [ 95 "proc-macro2", 96 "quote", 97 "syn 1.0.109", 98 "synstructure", 99] 100 101[[package]] 102name = "asn1-rs-impl" 103version = "0.1.0" 104source = "registry+https://github.com/rust-lang/crates.io-index" 105checksum = "2777730b2039ac0f95f093556e61b6d26cebed5393ca6f152717777cec3a42ed" 106dependencies = [ 107 "proc-macro2", 108 "quote", 109 "syn 1.0.109", 110] 111 112[[package]] 113name = "async-trait" 114version = "0.1.74" 115source = "registry+https://github.com/rust-lang/crates.io-index" 116checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9" 117dependencies = [ 118 "proc-macro2", 119 "quote", 120 "syn 2.0.41", 121] 122 123[[package]] 124name = "atty" 125version = "0.2.14" 126source = "registry+https://github.com/rust-lang/crates.io-index" 127checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 128dependencies = [ 129 "hermit-abi 0.1.19", 130 "libc", 131 "winapi", 132] 133 134[[package]] 135name = "autocfg" 136version = "1.1.0" 137source = "registry+https://github.com/rust-lang/crates.io-index" 138checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 139 140[[package]] 141name = "backtrace" 142version = "0.3.69" 143source = "registry+https://github.com/rust-lang/crates.io-index" 144checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" 145dependencies = [ 146 "addr2line", 147 "cc", 148 "cfg-if", 149 "libc", 150 "miniz_oxide", 151 "object", 152 "rustc-demangle", 153] 154 155[[package]] 156name = "base16" 157version = "0.2.1" 158source = "registry+https://github.com/rust-lang/crates.io-index" 159checksum = "d27c3610c36aee21ce8ac510e6224498de4228ad772a171ed65643a24693a5a8" 160 161[[package]] 162name = "base64" 163version = "0.13.1" 164source = "registry+https://github.com/rust-lang/crates.io-index" 165checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 166 167[[package]] 168name = "base64" 169version = "0.21.5" 170source = "registry+https://github.com/rust-lang/crates.io-index" 171checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 172 173[[package]] 174name = "basic-toml" 175version = "0.1.7" 176source = "registry+https://github.com/rust-lang/crates.io-index" 177checksum = "2f2139706359229bfa8f19142ac1155b4b80beafb7a60471ac5dd109d4a19778" 178dependencies = [ 179 "serde", 180] 181 182[[package]] 183name = "bincode" 184version = "1.3.3" 185source = "registry+https://github.com/rust-lang/crates.io-index" 186checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 187dependencies = [ 188 "serde", 189] 190 191[[package]] 192name = "bitflags" 193version = "1.3.2" 194source = "registry+https://github.com/rust-lang/crates.io-index" 195checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 196 197[[package]] 198name = "bitflags" 199version = "2.4.1" 200source = "registry+https://github.com/rust-lang/crates.io-index" 201checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" 202 203[[package]] 204name = "bitmaps" 205version = "2.1.0" 206source = "registry+https://github.com/rust-lang/crates.io-index" 207checksum = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2" 208dependencies = [ 209 "typenum", 210] 211 212[[package]] 213name = "block-buffer" 214version = "0.9.0" 215source = "registry+https://github.com/rust-lang/crates.io-index" 216checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" 217dependencies = [ 218 "generic-array", 219] 220 221[[package]] 222name = "bstr" 223version = "1.8.0" 224source = "registry+https://github.com/rust-lang/crates.io-index" 225checksum = "542f33a8835a0884b006a0c3df3dadd99c0c3f296ed26c2fdc8028e01ad6230c" 226dependencies = [ 227 "memchr", 228 "regex-automata 0.4.3", 229 "serde", 230] 231 232[[package]] 233name = "bumpalo" 234version = "3.14.0" 235source = "registry+https://github.com/rust-lang/crates.io-index" 236checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 237 238[[package]] 239name = "bytes" 240version = "1.5.0" 241source = "registry+https://github.com/rust-lang/crates.io-index" 242checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 243 244[[package]] 245name = "camino" 246version = "1.1.6" 247source = "registry+https://github.com/rust-lang/crates.io-index" 248checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c" 249dependencies = [ 250 "serde", 251] 252 253[[package]] 254name = "capnp" 255version = "0.14.11" 256source = "registry+https://github.com/rust-lang/crates.io-index" 257checksum = "2dca085c2c7d9d65ad749d450b19b551efaa8e3476a439bdca07aca8533097f3" 258 259[[package]] 260name = "capnpc" 261version = "0.14.9" 262source = "registry+https://github.com/rust-lang/crates.io-index" 263checksum = "bdc9f1dc84666d4ff007b1a16c8f97db80764a624625979be05d869bcff43aaa" 264dependencies = [ 265 "capnp", 266] 267 268[[package]] 269name = "cc" 270version = "1.0.83" 271source = "registry+https://github.com/rust-lang/crates.io-index" 272checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 273dependencies = [ 274 "libc", 275] 276 277[[package]] 278name = "cfg-if" 279version = "1.0.0" 280source = "registry+https://github.com/rust-lang/crates.io-index" 281checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 282 283[[package]] 284name = "clap" 285version = "3.2.25" 286source = "registry+https://github.com/rust-lang/crates.io-index" 287checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123" 288dependencies = [ 289 "atty", 290 "bitflags 1.3.2", 291 "clap_derive", 292 "clap_lex", 293 "indexmap 1.9.3", 294 "once_cell", 295 "strsim", 296 "termcolor", 297 "textwrap 0.16.0", 298] 299 300[[package]] 301name = "clap_derive" 302version = "3.2.25" 303source = "registry+https://github.com/rust-lang/crates.io-index" 304checksum = "ae6371b8bdc8b7d3959e9cf7b22d4435ef3e79e138688421ec654acf8c81b008" 305dependencies = [ 306 "heck", 307 "proc-macro-error", 308 "proc-macro2", 309 "quote", 310 "syn 1.0.109", 311] 312 313[[package]] 314name = "clap_lex" 315version = "0.2.4" 316source = "registry+https://github.com/rust-lang/crates.io-index" 317checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 318dependencies = [ 319 "os_str_bytes", 320] 321 322[[package]] 323name = "codespan-reporting" 324version = "0.11.1" 325source = "registry+https://github.com/rust-lang/crates.io-index" 326checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 327dependencies = [ 328 "termcolor", 329 "unicode-width", 330] 331 332[[package]] 333name = "combine" 334version = "4.6.6" 335source = "registry+https://github.com/rust-lang/crates.io-index" 336checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" 337dependencies = [ 338 "bytes", 339 "memchr", 340] 341 342[[package]] 343name = "console" 344version = "0.15.7" 345source = "registry+https://github.com/rust-lang/crates.io-index" 346checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" 347dependencies = [ 348 "encode_unicode", 349 "lazy_static", 350 "libc", 351 "windows-sys 0.45.0", 352] 353 354[[package]] 355name = "console_error_panic_hook" 356version = "0.1.7" 357source = "registry+https://github.com/rust-lang/crates.io-index" 358checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc" 359dependencies = [ 360 "cfg-if", 361 "wasm-bindgen", 362] 363 364[[package]] 365name = "core-foundation" 366version = "0.9.4" 367source = "registry+https://github.com/rust-lang/crates.io-index" 368checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 369dependencies = [ 370 "core-foundation-sys", 371 "libc", 372] 373 374[[package]] 375name = "core-foundation-sys" 376version = "0.8.6" 377source = "registry+https://github.com/rust-lang/crates.io-index" 378checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 379 380[[package]] 381name = "cpufeatures" 382version = "0.2.11" 383source = "registry+https://github.com/rust-lang/crates.io-index" 384checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" 385dependencies = [ 386 "libc", 387] 388 389[[package]] 390name = "crc32fast" 391version = "1.3.2" 392source = "registry+https://github.com/rust-lang/crates.io-index" 393checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 394dependencies = [ 395 "cfg-if", 396] 397 398[[package]] 399name = "crossbeam-channel" 400version = "0.5.9" 401source = "registry+https://github.com/rust-lang/crates.io-index" 402checksum = "14c3242926edf34aec4ac3a77108ad4854bffaa2e4ddc1824124ce59231302d5" 403dependencies = [ 404 "cfg-if", 405 "crossbeam-utils", 406] 407 408[[package]] 409name = "crossbeam-deque" 410version = "0.8.4" 411source = "registry+https://github.com/rust-lang/crates.io-index" 412checksum = "fca89a0e215bab21874660c67903c5f143333cab1da83d041c7ded6053774751" 413dependencies = [ 414 "cfg-if", 415 "crossbeam-epoch", 416 "crossbeam-utils", 417] 418 419[[package]] 420name = "crossbeam-epoch" 421version = "0.9.16" 422source = "registry+https://github.com/rust-lang/crates.io-index" 423checksum = "2d2fe95351b870527a5d09bf563ed3c97c0cffb87cf1c78a591bf48bb218d9aa" 424dependencies = [ 425 "autocfg", 426 "cfg-if", 427 "crossbeam-utils", 428 "memoffset", 429] 430 431[[package]] 432name = "crossbeam-utils" 433version = "0.8.17" 434source = "registry+https://github.com/rust-lang/crates.io-index" 435checksum = "c06d96137f14f244c37f989d9fff8f95e6c18b918e71f36638f8c49112e4c78f" 436dependencies = [ 437 "cfg-if", 438] 439 440[[package]] 441name = "ctrlc" 442version = "3.4.1" 443source = "registry+https://github.com/rust-lang/crates.io-index" 444checksum = "82e95fbd621905b854affdc67943b043a0fbb6ed7385fd5a25650d19a8a6cfdf" 445dependencies = [ 446 "nix", 447 "windows-sys 0.48.0", 448] 449 450[[package]] 451name = "data-encoding" 452version = "2.5.0" 453source = "registry+https://github.com/rust-lang/crates.io-index" 454checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5" 455 456[[package]] 457name = "debug-ignore" 458version = "1.0.5" 459source = "registry+https://github.com/rust-lang/crates.io-index" 460checksum = "ffe7ed1d93f4553003e20b629abe9085e1e81b1429520f897f8f8860bc6dfc21" 461 462[[package]] 463name = "der-parser" 464version = "8.2.0" 465source = "registry+https://github.com/rust-lang/crates.io-index" 466checksum = "dbd676fbbab537128ef0278adb5576cf363cff6aa22a7b24effe97347cfab61e" 467dependencies = [ 468 "asn1-rs", 469 "displaydoc", 470 "nom", 471 "num-bigint", 472 "num-traits", 473 "rusticata-macros", 474] 475 476[[package]] 477name = "deranged" 478version = "0.3.10" 479source = "registry+https://github.com/rust-lang/crates.io-index" 480checksum = "8eb30d70a07a3b04884d2677f06bec33509dc67ca60d92949e5535352d3191dc" 481dependencies = [ 482 "powerfmt", 483] 484 485[[package]] 486name = "diff" 487version = "0.1.13" 488source = "registry+https://github.com/rust-lang/crates.io-index" 489checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" 490 491[[package]] 492name = "digest" 493version = "0.9.0" 494source = "registry+https://github.com/rust-lang/crates.io-index" 495checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" 496dependencies = [ 497 "generic-array", 498] 499 500[[package]] 501name = "dirs-next" 502version = "2.0.0" 503source = "registry+https://github.com/rust-lang/crates.io-index" 504checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 505dependencies = [ 506 "cfg-if", 507 "dirs-sys-next", 508] 509 510[[package]] 511name = "dirs-sys-next" 512version = "0.1.2" 513source = "registry+https://github.com/rust-lang/crates.io-index" 514checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 515dependencies = [ 516 "libc", 517 "redox_users", 518 "winapi", 519] 520 521[[package]] 522name = "displaydoc" 523version = "0.2.4" 524source = "registry+https://github.com/rust-lang/crates.io-index" 525checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" 526dependencies = [ 527 "proc-macro2", 528 "quote", 529 "syn 2.0.41", 530] 531 532[[package]] 533name = "ecow" 534version = "0.2.0" 535source = "registry+https://github.com/rust-lang/crates.io-index" 536checksum = "e6ea5e3f9cda726431da9d1a8d5a29785d544b31e98e1ca7a210906244002e02" 537dependencies = [ 538 "serde", 539] 540 541[[package]] 542name = "either" 543version = "1.9.0" 544source = "registry+https://github.com/rust-lang/crates.io-index" 545checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 546 547[[package]] 548name = "encode_unicode" 549version = "0.3.6" 550source = "registry+https://github.com/rust-lang/crates.io-index" 551checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 552 553[[package]] 554name = "encoding_rs" 555version = "0.8.33" 556source = "registry+https://github.com/rust-lang/crates.io-index" 557checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 558dependencies = [ 559 "cfg-if", 560] 561 562[[package]] 563name = "equivalent" 564version = "1.0.1" 565source = "registry+https://github.com/rust-lang/crates.io-index" 566checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 567 568[[package]] 569name = "errno" 570version = "0.3.8" 571source = "registry+https://github.com/rust-lang/crates.io-index" 572checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 573dependencies = [ 574 "libc", 575 "windows-sys 0.52.0", 576] 577 578[[package]] 579name = "fastrand" 580version = "2.0.1" 581source = "registry+https://github.com/rust-lang/crates.io-index" 582checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 583 584[[package]] 585name = "filetime" 586version = "0.2.23" 587source = "registry+https://github.com/rust-lang/crates.io-index" 588checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" 589dependencies = [ 590 "cfg-if", 591 "libc", 592 "redox_syscall", 593 "windows-sys 0.52.0", 594] 595 596[[package]] 597name = "fixedbitset" 598version = "0.4.2" 599source = "registry+https://github.com/rust-lang/crates.io-index" 600checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" 601 602[[package]] 603name = "flate2" 604version = "1.0.28" 605source = "registry+https://github.com/rust-lang/crates.io-index" 606checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" 607dependencies = [ 608 "crc32fast", 609 "miniz_oxide", 610] 611 612[[package]] 613name = "fnv" 614version = "1.0.7" 615source = "registry+https://github.com/rust-lang/crates.io-index" 616checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 617 618[[package]] 619name = "form_urlencoded" 620version = "1.2.1" 621source = "registry+https://github.com/rust-lang/crates.io-index" 622checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 623dependencies = [ 624 "percent-encoding", 625] 626 627[[package]] 628name = "fs_extra" 629version = "1.3.0" 630source = "registry+https://github.com/rust-lang/crates.io-index" 631checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c" 632 633[[package]] 634name = "fslock" 635version = "0.2.1" 636source = "registry+https://github.com/rust-lang/crates.io-index" 637checksum = "04412b8935272e3a9bae6f48c7bfff74c2911f60525404edfdd28e49884c3bfb" 638dependencies = [ 639 "libc", 640 "winapi", 641] 642 643[[package]] 644name = "futures" 645version = "0.3.29" 646source = "registry+https://github.com/rust-lang/crates.io-index" 647checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335" 648dependencies = [ 649 "futures-channel", 650 "futures-core", 651 "futures-executor", 652 "futures-io", 653 "futures-sink", 654 "futures-task", 655 "futures-util", 656] 657 658[[package]] 659name = "futures-channel" 660version = "0.3.29" 661source = "registry+https://github.com/rust-lang/crates.io-index" 662checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" 663dependencies = [ 664 "futures-core", 665 "futures-sink", 666] 667 668[[package]] 669name = "futures-core" 670version = "0.3.29" 671source = "registry+https://github.com/rust-lang/crates.io-index" 672checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 673 674[[package]] 675name = "futures-executor" 676version = "0.3.29" 677source = "registry+https://github.com/rust-lang/crates.io-index" 678checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc" 679dependencies = [ 680 "futures-core", 681 "futures-task", 682 "futures-util", 683] 684 685[[package]] 686name = "futures-io" 687version = "0.3.29" 688source = "registry+https://github.com/rust-lang/crates.io-index" 689checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" 690 691[[package]] 692name = "futures-macro" 693version = "0.3.29" 694source = "registry+https://github.com/rust-lang/crates.io-index" 695checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" 696dependencies = [ 697 "proc-macro2", 698 "quote", 699 "syn 2.0.41", 700] 701 702[[package]] 703name = "futures-sink" 704version = "0.3.29" 705source = "registry+https://github.com/rust-lang/crates.io-index" 706checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" 707 708[[package]] 709name = "futures-task" 710version = "0.3.29" 711source = "registry+https://github.com/rust-lang/crates.io-index" 712checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" 713 714[[package]] 715name = "futures-util" 716version = "0.3.29" 717source = "registry+https://github.com/rust-lang/crates.io-index" 718checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" 719dependencies = [ 720 "futures-channel", 721 "futures-core", 722 "futures-io", 723 "futures-macro", 724 "futures-sink", 725 "futures-task", 726 "memchr", 727 "pin-project-lite", 728 "pin-utils", 729 "slab", 730] 731 732[[package]] 733name = "generic-array" 734version = "0.14.7" 735source = "registry+https://github.com/rust-lang/crates.io-index" 736checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 737dependencies = [ 738 "typenum", 739 "version_check", 740] 741 742[[package]] 743name = "getrandom" 744version = "0.2.11" 745source = "registry+https://github.com/rust-lang/crates.io-index" 746checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" 747dependencies = [ 748 "cfg-if", 749 "libc", 750 "wasi", 751] 752 753[[package]] 754name = "gimli" 755version = "0.28.1" 756source = "registry+https://github.com/rust-lang/crates.io-index" 757checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 758 759[[package]] 760name = "gleam" 761version = "0.34.0-dev" 762dependencies = [ 763 "async-trait", 764 "atty", 765 "base16", 766 "bytes", 767 "camino", 768 "clap", 769 "ctrlc", 770 "debug-ignore", 771 "ecow", 772 "flate2", 773 "fs_extra", 774 "fslock", 775 "futures", 776 "gleam-core", 777 "hexpm", 778 "hostname", 779 "http", 780 "ignore", 781 "im", 782 "itertools", 783 "lsp-server", 784 "lsp-types", 785 "opener", 786 "pretty_assertions", 787 "regex", 788 "reqwest", 789 "rpassword", 790 "same-file", 791 "serde", 792 "serde_json", 793 "sha2", 794 "strum", 795 "tar", 796 "tempfile", 797 "termcolor", 798 "tokio", 799 "toml", 800 "toml_edit", 801 "tracing", 802 "tracing-subscriber", 803 "walkdir", 804] 805 806[[package]] 807name = "gleam-core" 808version = "0.34.0-dev" 809dependencies = [ 810 "askama", 811 "async-trait", 812 "base16", 813 "bincode", 814 "bytes", 815 "camino", 816 "capnp", 817 "capnpc", 818 "codespan-reporting", 819 "debug-ignore", 820 "dirs-next", 821 "ecow", 822 "flate2", 823 "futures", 824 "globset", 825 "heck", 826 "hexpm", 827 "http", 828 "id-arena", 829 "im", 830 "insta", 831 "itertools", 832 "lsp-server", 833 "lsp-types", 834 "pathdiff", 835 "petgraph", 836 "pretty_assertions", 837 "pubgrub", 838 "pulldown-cmark", 839 "rand", 840 "regex", 841 "serde", 842 "serde_derive", 843 "serde_json", 844 "spdx", 845 "strsim", 846 "strum", 847 "tar", 848 "termcolor", 849 "textwrap 0.15.0", 850 "thiserror", 851 "toml", 852 "tracing", 853 "vec1", 854 "xxhash-rust", 855] 856 857[[package]] 858name = "gleam-wasm" 859version = "0.34.0-dev" 860dependencies = [ 861 "camino", 862 "console_error_panic_hook", 863 "gleam-core", 864 "hexpm", 865 "im", 866 "itertools", 867 "serde", 868 "serde-wasm-bindgen", 869 "termcolor", 870 "tracing", 871 "tracing-wasm", 872 "wasm-bindgen", 873 "wasm-bindgen-test", 874] 875 876[[package]] 877name = "globset" 878version = "0.4.14" 879source = "registry+https://github.com/rust-lang/crates.io-index" 880checksum = "57da3b9b5b85bd66f31093f8c408b90a74431672542466497dcbdfdc02034be1" 881dependencies = [ 882 "aho-corasick", 883 "bstr", 884 "log", 885 "regex-automata 0.4.3", 886 "regex-syntax 0.8.2", 887 "serde", 888] 889 890[[package]] 891name = "h2" 892version = "0.3.22" 893source = "registry+https://github.com/rust-lang/crates.io-index" 894checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178" 895dependencies = [ 896 "bytes", 897 "fnv", 898 "futures-core", 899 "futures-sink", 900 "futures-util", 901 "http", 902 "indexmap 2.1.0", 903 "slab", 904 "tokio", 905 "tokio-util", 906 "tracing", 907] 908 909[[package]] 910name = "hashbrown" 911version = "0.12.3" 912source = "registry+https://github.com/rust-lang/crates.io-index" 913checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 914 915[[package]] 916name = "hashbrown" 917version = "0.14.3" 918source = "registry+https://github.com/rust-lang/crates.io-index" 919checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 920 921[[package]] 922name = "heck" 923version = "0.4.1" 924source = "registry+https://github.com/rust-lang/crates.io-index" 925checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 926 927[[package]] 928name = "hermit-abi" 929version = "0.1.19" 930source = "registry+https://github.com/rust-lang/crates.io-index" 931checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 932dependencies = [ 933 "libc", 934] 935 936[[package]] 937name = "hermit-abi" 938version = "0.3.3" 939source = "registry+https://github.com/rust-lang/crates.io-index" 940checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" 941 942[[package]] 943name = "hexpm" 944version = "2.1.1" 945source = "registry+https://github.com/rust-lang/crates.io-index" 946checksum = "3b1d50f24724b62709e6cd44c064fe95cbaf545c4c1b3c5736f159e027a9778d" 947dependencies = [ 948 "base16", 949 "bytes", 950 "flate2", 951 "http", 952 "http-auth-basic", 953 "lazy_static", 954 "protobuf", 955 "protobuf-codegen-pure", 956 "pubgrub", 957 "regex", 958 "ring 0.16.20", 959 "serde", 960 "serde_json", 961 "thiserror", 962 "url", 963 "x509-parser", 964] 965 966[[package]] 967name = "hostname" 968version = "0.3.1" 969source = "registry+https://github.com/rust-lang/crates.io-index" 970checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" 971dependencies = [ 972 "libc", 973 "match_cfg", 974 "winapi", 975] 976 977[[package]] 978name = "http" 979version = "0.2.11" 980source = "registry+https://github.com/rust-lang/crates.io-index" 981checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" 982dependencies = [ 983 "bytes", 984 "fnv", 985 "itoa", 986] 987 988[[package]] 989name = "http-auth-basic" 990version = "0.3.3" 991source = "registry+https://github.com/rust-lang/crates.io-index" 992checksum = "dd2e17aacf7f4a2428def798e2ff4f4f883c0987bdaf47dd5c8bc027bc9f1ebc" 993dependencies = [ 994 "base64 0.13.1", 995] 996 997[[package]] 998name = "http-body" 999version = "0.4.6" 1000source = "registry+https://github.com/rust-lang/crates.io-index" 1001checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 1002dependencies = [ 1003 "bytes", 1004 "http", 1005 "pin-project-lite", 1006] 1007 1008[[package]] 1009name = "httparse" 1010version = "1.8.0" 1011source = "registry+https://github.com/rust-lang/crates.io-index" 1012checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 1013 1014[[package]] 1015name = "httpdate" 1016version = "1.0.3" 1017source = "registry+https://github.com/rust-lang/crates.io-index" 1018checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 1019 1020[[package]] 1021name = "humansize" 1022version = "2.1.3" 1023source = "registry+https://github.com/rust-lang/crates.io-index" 1024checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7" 1025dependencies = [ 1026 "libm", 1027] 1028 1029[[package]] 1030name = "hyper" 1031version = "0.14.27" 1032source = "registry+https://github.com/rust-lang/crates.io-index" 1033checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 1034dependencies = [ 1035 "bytes", 1036 "futures-channel", 1037 "futures-core", 1038 "futures-util", 1039 "h2", 1040 "http", 1041 "http-body", 1042 "httparse", 1043 "httpdate", 1044 "itoa", 1045 "pin-project-lite", 1046 "socket2 0.4.10", 1047 "tokio", 1048 "tower-service", 1049 "tracing", 1050 "want", 1051] 1052 1053[[package]] 1054name = "hyper-rustls" 1055version = "0.24.2" 1056source = "registry+https://github.com/rust-lang/crates.io-index" 1057checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" 1058dependencies = [ 1059 "futures-util", 1060 "http", 1061 "hyper", 1062 "rustls", 1063 "tokio", 1064 "tokio-rustls", 1065] 1066 1067[[package]] 1068name = "id-arena" 1069version = "2.2.1" 1070source = "registry+https://github.com/rust-lang/crates.io-index" 1071checksum = "25a2bc672d1148e28034f176e01fffebb08b35768468cc954630da77a1449005" 1072 1073[[package]] 1074name = "idna" 1075version = "0.5.0" 1076source = "registry+https://github.com/rust-lang/crates.io-index" 1077checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 1078dependencies = [ 1079 "unicode-bidi", 1080 "unicode-normalization", 1081] 1082 1083[[package]] 1084name = "ignore" 1085version = "0.4.21" 1086source = "registry+https://github.com/rust-lang/crates.io-index" 1087checksum = "747ad1b4ae841a78e8aba0d63adbfbeaea26b517b63705d47856b73015d27060" 1088dependencies = [ 1089 "crossbeam-deque", 1090 "globset", 1091 "log", 1092 "memchr", 1093 "regex-automata 0.4.3", 1094 "same-file", 1095 "walkdir", 1096 "winapi-util", 1097] 1098 1099[[package]] 1100name = "im" 1101version = "15.1.0" 1102source = "registry+https://github.com/rust-lang/crates.io-index" 1103checksum = "d0acd33ff0285af998aaf9b57342af478078f53492322fafc47450e09397e0e9" 1104dependencies = [ 1105 "bitmaps", 1106 "rand_core", 1107 "rand_xoshiro", 1108 "sized-chunks", 1109 "typenum", 1110 "version_check", 1111] 1112 1113[[package]] 1114name = "indexmap" 1115version = "1.9.3" 1116source = "registry+https://github.com/rust-lang/crates.io-index" 1117checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 1118dependencies = [ 1119 "autocfg", 1120 "hashbrown 0.12.3", 1121] 1122 1123[[package]] 1124name = "indexmap" 1125version = "2.1.0" 1126source = "registry+https://github.com/rust-lang/crates.io-index" 1127checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" 1128dependencies = [ 1129 "equivalent", 1130 "hashbrown 0.14.3", 1131] 1132 1133[[package]] 1134name = "insta" 1135version = "1.34.0" 1136source = "registry+https://github.com/rust-lang/crates.io-index" 1137checksum = "5d64600be34b2fcfc267740a243fa7744441bb4947a619ac4e5bb6507f35fbfc" 1138dependencies = [ 1139 "console", 1140 "lazy_static", 1141 "linked-hash-map", 1142 "similar", 1143 "yaml-rust", 1144] 1145 1146[[package]] 1147name = "ipnet" 1148version = "2.9.0" 1149source = "registry+https://github.com/rust-lang/crates.io-index" 1150checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" 1151 1152[[package]] 1153name = "itertools" 1154version = "0.10.5" 1155source = "registry+https://github.com/rust-lang/crates.io-index" 1156checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 1157dependencies = [ 1158 "either", 1159] 1160 1161[[package]] 1162name = "itoa" 1163version = "1.0.10" 1164source = "registry+https://github.com/rust-lang/crates.io-index" 1165checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" 1166 1167[[package]] 1168name = "js-sys" 1169version = "0.3.66" 1170source = "registry+https://github.com/rust-lang/crates.io-index" 1171checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca" 1172dependencies = [ 1173 "wasm-bindgen", 1174] 1175 1176[[package]] 1177name = "kstring" 1178version = "1.0.6" 1179source = "registry+https://github.com/rust-lang/crates.io-index" 1180checksum = "8b310ccceade8121d7d77fee406160e457c2f4e7c7982d589da3499bc7ea4526" 1181dependencies = [ 1182 "serde", 1183] 1184 1185[[package]] 1186name = "lazy_static" 1187version = "1.4.0" 1188source = "registry+https://github.com/rust-lang/crates.io-index" 1189checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1190 1191[[package]] 1192name = "libc" 1193version = "0.2.151" 1194source = "registry+https://github.com/rust-lang/crates.io-index" 1195checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4" 1196 1197[[package]] 1198name = "libm" 1199version = "0.2.8" 1200source = "registry+https://github.com/rust-lang/crates.io-index" 1201checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 1202 1203[[package]] 1204name = "libredox" 1205version = "0.0.1" 1206source = "registry+https://github.com/rust-lang/crates.io-index" 1207checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 1208dependencies = [ 1209 "bitflags 2.4.1", 1210 "libc", 1211 "redox_syscall", 1212] 1213 1214[[package]] 1215name = "linked-hash-map" 1216version = "0.5.6" 1217source = "registry+https://github.com/rust-lang/crates.io-index" 1218checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 1219 1220[[package]] 1221name = "linux-raw-sys" 1222version = "0.4.12" 1223source = "registry+https://github.com/rust-lang/crates.io-index" 1224checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" 1225 1226[[package]] 1227name = "log" 1228version = "0.4.20" 1229source = "registry+https://github.com/rust-lang/crates.io-index" 1230checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 1231 1232[[package]] 1233name = "lsp-server" 1234version = "0.7.5" 1235source = "registry+https://github.com/rust-lang/crates.io-index" 1236checksum = "fb69ba934913ebf0ef3b3dd762f0149bf993decd571d094b646de09c2e456732" 1237dependencies = [ 1238 "crossbeam-channel", 1239 "log", 1240 "serde", 1241 "serde_json", 1242] 1243 1244[[package]] 1245name = "lsp-types" 1246version = "0.94.1" 1247source = "registry+https://github.com/rust-lang/crates.io-index" 1248checksum = "c66bfd44a06ae10647fe3f8214762e9369fd4248df1350924b4ef9e770a85ea1" 1249dependencies = [ 1250 "bitflags 1.3.2", 1251 "serde", 1252 "serde_json", 1253 "serde_repr", 1254 "url", 1255] 1256 1257[[package]] 1258name = "match_cfg" 1259version = "0.1.0" 1260source = "registry+https://github.com/rust-lang/crates.io-index" 1261checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" 1262 1263[[package]] 1264name = "matchers" 1265version = "0.1.0" 1266source = "registry+https://github.com/rust-lang/crates.io-index" 1267checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 1268dependencies = [ 1269 "regex-automata 0.1.10", 1270] 1271 1272[[package]] 1273name = "memchr" 1274version = "2.6.4" 1275source = "registry+https://github.com/rust-lang/crates.io-index" 1276checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 1277 1278[[package]] 1279name = "memoffset" 1280version = "0.9.0" 1281source = "registry+https://github.com/rust-lang/crates.io-index" 1282checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 1283dependencies = [ 1284 "autocfg", 1285] 1286 1287[[package]] 1288name = "mime" 1289version = "0.3.17" 1290source = "registry+https://github.com/rust-lang/crates.io-index" 1291checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1292 1293[[package]] 1294name = "mime_guess" 1295version = "2.0.4" 1296source = "registry+https://github.com/rust-lang/crates.io-index" 1297checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" 1298dependencies = [ 1299 "mime", 1300 "unicase", 1301] 1302 1303[[package]] 1304name = "minimal-lexical" 1305version = "0.2.1" 1306source = "registry+https://github.com/rust-lang/crates.io-index" 1307checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 1308 1309[[package]] 1310name = "miniz_oxide" 1311version = "0.7.1" 1312source = "registry+https://github.com/rust-lang/crates.io-index" 1313checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 1314dependencies = [ 1315 "adler", 1316] 1317 1318[[package]] 1319name = "mio" 1320version = "0.8.10" 1321source = "registry+https://github.com/rust-lang/crates.io-index" 1322checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" 1323dependencies = [ 1324 "libc", 1325 "wasi", 1326 "windows-sys 0.48.0", 1327] 1328 1329[[package]] 1330name = "nix" 1331version = "0.27.1" 1332source = "registry+https://github.com/rust-lang/crates.io-index" 1333checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" 1334dependencies = [ 1335 "bitflags 2.4.1", 1336 "cfg-if", 1337 "libc", 1338] 1339 1340[[package]] 1341name = "nom" 1342version = "7.1.3" 1343source = "registry+https://github.com/rust-lang/crates.io-index" 1344checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 1345dependencies = [ 1346 "memchr", 1347 "minimal-lexical", 1348] 1349 1350[[package]] 1351name = "normpath" 1352version = "1.1.1" 1353source = "registry+https://github.com/rust-lang/crates.io-index" 1354checksum = "ec60c60a693226186f5d6edf073232bfb6464ed97eb22cf3b01c1e8198fd97f5" 1355dependencies = [ 1356 "windows-sys 0.48.0", 1357] 1358 1359[[package]] 1360name = "nu-ansi-term" 1361version = "0.46.0" 1362source = "registry+https://github.com/rust-lang/crates.io-index" 1363checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 1364dependencies = [ 1365 "overload", 1366 "winapi", 1367] 1368 1369[[package]] 1370name = "num-bigint" 1371version = "0.4.4" 1372source = "registry+https://github.com/rust-lang/crates.io-index" 1373checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" 1374dependencies = [ 1375 "autocfg", 1376 "num-integer", 1377 "num-traits", 1378] 1379 1380[[package]] 1381name = "num-integer" 1382version = "0.1.45" 1383source = "registry+https://github.com/rust-lang/crates.io-index" 1384checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1385dependencies = [ 1386 "autocfg", 1387 "num-traits", 1388] 1389 1390[[package]] 1391name = "num-traits" 1392version = "0.2.17" 1393source = "registry+https://github.com/rust-lang/crates.io-index" 1394checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" 1395dependencies = [ 1396 "autocfg", 1397] 1398 1399[[package]] 1400name = "num_cpus" 1401version = "1.16.0" 1402source = "registry+https://github.com/rust-lang/crates.io-index" 1403checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 1404dependencies = [ 1405 "hermit-abi 0.3.3", 1406 "libc", 1407] 1408 1409[[package]] 1410name = "object" 1411version = "0.32.1" 1412source = "registry+https://github.com/rust-lang/crates.io-index" 1413checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" 1414dependencies = [ 1415 "memchr", 1416] 1417 1418[[package]] 1419name = "oid-registry" 1420version = "0.6.1" 1421source = "registry+https://github.com/rust-lang/crates.io-index" 1422checksum = "9bedf36ffb6ba96c2eb7144ef6270557b52e54b20c0a8e1eb2ff99a6c6959bff" 1423dependencies = [ 1424 "asn1-rs", 1425] 1426 1427[[package]] 1428name = "once_cell" 1429version = "1.19.0" 1430source = "registry+https://github.com/rust-lang/crates.io-index" 1431checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 1432 1433[[package]] 1434name = "opaque-debug" 1435version = "0.3.0" 1436source = "registry+https://github.com/rust-lang/crates.io-index" 1437checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 1438 1439[[package]] 1440name = "opener" 1441version = "0.6.1" 1442source = "registry+https://github.com/rust-lang/crates.io-index" 1443checksum = "6c62dcb6174f9cb326eac248f07e955d5d559c272730b6c03e396b443b562788" 1444dependencies = [ 1445 "bstr", 1446 "normpath", 1447 "winapi", 1448] 1449 1450[[package]] 1451name = "openssl-probe" 1452version = "0.1.5" 1453source = "registry+https://github.com/rust-lang/crates.io-index" 1454checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 1455 1456[[package]] 1457name = "os_str_bytes" 1458version = "6.6.1" 1459source = "registry+https://github.com/rust-lang/crates.io-index" 1460checksum = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1" 1461 1462[[package]] 1463name = "overload" 1464version = "0.1.1" 1465source = "registry+https://github.com/rust-lang/crates.io-index" 1466checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 1467 1468[[package]] 1469name = "pathdiff" 1470version = "0.2.1" 1471source = "registry+https://github.com/rust-lang/crates.io-index" 1472checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" 1473dependencies = [ 1474 "camino", 1475] 1476 1477[[package]] 1478name = "percent-encoding" 1479version = "2.3.1" 1480source = "registry+https://github.com/rust-lang/crates.io-index" 1481checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 1482 1483[[package]] 1484name = "petgraph" 1485version = "0.6.4" 1486source = "registry+https://github.com/rust-lang/crates.io-index" 1487checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" 1488dependencies = [ 1489 "fixedbitset", 1490 "indexmap 2.1.0", 1491] 1492 1493[[package]] 1494name = "pin-project-lite" 1495version = "0.2.13" 1496source = "registry+https://github.com/rust-lang/crates.io-index" 1497checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 1498 1499[[package]] 1500name = "pin-utils" 1501version = "0.1.0" 1502source = "registry+https://github.com/rust-lang/crates.io-index" 1503checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1504 1505[[package]] 1506name = "powerfmt" 1507version = "0.2.0" 1508source = "registry+https://github.com/rust-lang/crates.io-index" 1509checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 1510 1511[[package]] 1512name = "ppv-lite86" 1513version = "0.2.17" 1514source = "registry+https://github.com/rust-lang/crates.io-index" 1515checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 1516 1517[[package]] 1518name = "pretty_assertions" 1519version = "1.4.0" 1520source = "registry+https://github.com/rust-lang/crates.io-index" 1521checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66" 1522dependencies = [ 1523 "diff", 1524 "yansi", 1525] 1526 1527[[package]] 1528name = "proc-macro-error" 1529version = "1.0.4" 1530source = "registry+https://github.com/rust-lang/crates.io-index" 1531checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 1532dependencies = [ 1533 "proc-macro-error-attr", 1534 "proc-macro2", 1535 "quote", 1536 "syn 1.0.109", 1537 "version_check", 1538] 1539 1540[[package]] 1541name = "proc-macro-error-attr" 1542version = "1.0.4" 1543source = "registry+https://github.com/rust-lang/crates.io-index" 1544checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 1545dependencies = [ 1546 "proc-macro2", 1547 "quote", 1548 "version_check", 1549] 1550 1551[[package]] 1552name = "proc-macro2" 1553version = "1.0.70" 1554source = "registry+https://github.com/rust-lang/crates.io-index" 1555checksum = "39278fbbf5fb4f646ce651690877f89d1c5811a3d4acb27700c1cb3cdb78fd3b" 1556dependencies = [ 1557 "unicode-ident", 1558] 1559 1560[[package]] 1561name = "protobuf" 1562version = "2.28.0" 1563source = "registry+https://github.com/rust-lang/crates.io-index" 1564checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94" 1565 1566[[package]] 1567name = "protobuf-codegen" 1568version = "2.28.0" 1569source = "registry+https://github.com/rust-lang/crates.io-index" 1570checksum = "033460afb75cf755fcfc16dfaed20b86468082a2ea24e05ac35ab4a099a017d6" 1571dependencies = [ 1572 "protobuf", 1573] 1574 1575[[package]] 1576name = "protobuf-codegen-pure" 1577version = "2.28.0" 1578source = "registry+https://github.com/rust-lang/crates.io-index" 1579checksum = "95a29399fc94bcd3eeaa951c715f7bea69409b2445356b00519740bcd6ddd865" 1580dependencies = [ 1581 "protobuf", 1582 "protobuf-codegen", 1583] 1584 1585[[package]] 1586name = "pubgrub" 1587version = "0.2.1" 1588source = "registry+https://github.com/rust-lang/crates.io-index" 1589checksum = "cdd14552ad5f5d743a323c10d576f26822a044355d6601f377d813ece46f38fd" 1590dependencies = [ 1591 "rustc-hash", 1592 "thiserror", 1593] 1594 1595[[package]] 1596name = "pulldown-cmark" 1597version = "0.8.0" 1598source = "registry+https://github.com/rust-lang/crates.io-index" 1599checksum = "ffade02495f22453cd593159ea2f59827aae7f53fa8323f756799b670881dcf8" 1600dependencies = [ 1601 "bitflags 1.3.2", 1602 "memchr", 1603 "unicase", 1604] 1605 1606[[package]] 1607name = "quote" 1608version = "1.0.33" 1609source = "registry+https://github.com/rust-lang/crates.io-index" 1610checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 1611dependencies = [ 1612 "proc-macro2", 1613] 1614 1615[[package]] 1616name = "rand" 1617version = "0.8.5" 1618source = "registry+https://github.com/rust-lang/crates.io-index" 1619checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1620dependencies = [ 1621 "libc", 1622 "rand_chacha", 1623 "rand_core", 1624] 1625 1626[[package]] 1627name = "rand_chacha" 1628version = "0.3.1" 1629source = "registry+https://github.com/rust-lang/crates.io-index" 1630checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1631dependencies = [ 1632 "ppv-lite86", 1633 "rand_core", 1634] 1635 1636[[package]] 1637name = "rand_core" 1638version = "0.6.4" 1639source = "registry+https://github.com/rust-lang/crates.io-index" 1640checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1641dependencies = [ 1642 "getrandom", 1643] 1644 1645[[package]] 1646name = "rand_xoshiro" 1647version = "0.6.0" 1648source = "registry+https://github.com/rust-lang/crates.io-index" 1649checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa" 1650dependencies = [ 1651 "rand_core", 1652] 1653 1654[[package]] 1655name = "redox_syscall" 1656version = "0.4.1" 1657source = "registry+https://github.com/rust-lang/crates.io-index" 1658checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 1659dependencies = [ 1660 "bitflags 1.3.2", 1661] 1662 1663[[package]] 1664name = "redox_users" 1665version = "0.4.4" 1666source = "registry+https://github.com/rust-lang/crates.io-index" 1667checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" 1668dependencies = [ 1669 "getrandom", 1670 "libredox", 1671 "thiserror", 1672] 1673 1674[[package]] 1675name = "regex" 1676version = "1.10.2" 1677source = "registry+https://github.com/rust-lang/crates.io-index" 1678checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" 1679dependencies = [ 1680 "aho-corasick", 1681 "memchr", 1682 "regex-automata 0.4.3", 1683 "regex-syntax 0.8.2", 1684] 1685 1686[[package]] 1687name = "regex-automata" 1688version = "0.1.10" 1689source = "registry+https://github.com/rust-lang/crates.io-index" 1690checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 1691dependencies = [ 1692 "regex-syntax 0.6.29", 1693] 1694 1695[[package]] 1696name = "regex-automata" 1697version = "0.4.3" 1698source = "registry+https://github.com/rust-lang/crates.io-index" 1699checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" 1700dependencies = [ 1701 "aho-corasick", 1702 "memchr", 1703 "regex-syntax 0.8.2", 1704] 1705 1706[[package]] 1707name = "regex-syntax" 1708version = "0.6.29" 1709source = "registry+https://github.com/rust-lang/crates.io-index" 1710checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 1711 1712[[package]] 1713name = "regex-syntax" 1714version = "0.8.2" 1715source = "registry+https://github.com/rust-lang/crates.io-index" 1716checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 1717 1718[[package]] 1719name = "reqwest" 1720version = "0.11.22" 1721source = "registry+https://github.com/rust-lang/crates.io-index" 1722checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b" 1723dependencies = [ 1724 "base64 0.21.5", 1725 "bytes", 1726 "encoding_rs", 1727 "futures-core", 1728 "futures-util", 1729 "h2", 1730 "http", 1731 "http-body", 1732 "hyper", 1733 "hyper-rustls", 1734 "ipnet", 1735 "js-sys", 1736 "log", 1737 "mime", 1738 "once_cell", 1739 "percent-encoding", 1740 "pin-project-lite", 1741 "rustls", 1742 "rustls-native-certs", 1743 "rustls-pemfile", 1744 "serde", 1745 "serde_json", 1746 "serde_urlencoded", 1747 "system-configuration", 1748 "tokio", 1749 "tokio-rustls", 1750 "tower-service", 1751 "url", 1752 "wasm-bindgen", 1753 "wasm-bindgen-futures", 1754 "web-sys", 1755 "winreg", 1756] 1757 1758[[package]] 1759name = "ring" 1760version = "0.16.20" 1761source = "registry+https://github.com/rust-lang/crates.io-index" 1762checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 1763dependencies = [ 1764 "cc", 1765 "libc", 1766 "once_cell", 1767 "spin 0.5.2", 1768 "untrusted 0.7.1", 1769 "web-sys", 1770 "winapi", 1771] 1772 1773[[package]] 1774name = "ring" 1775version = "0.17.7" 1776source = "registry+https://github.com/rust-lang/crates.io-index" 1777checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" 1778dependencies = [ 1779 "cc", 1780 "getrandom", 1781 "libc", 1782 "spin 0.9.8", 1783 "untrusted 0.9.0", 1784 "windows-sys 0.48.0", 1785] 1786 1787[[package]] 1788name = "rpassword" 1789version = "5.0.1" 1790source = "registry+https://github.com/rust-lang/crates.io-index" 1791checksum = "ffc936cf8a7ea60c58f030fd36a612a48f440610214dc54bc36431f9ea0c3efb" 1792dependencies = [ 1793 "libc", 1794 "winapi", 1795] 1796 1797[[package]] 1798name = "rustc-demangle" 1799version = "0.1.23" 1800source = "registry+https://github.com/rust-lang/crates.io-index" 1801checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 1802 1803[[package]] 1804name = "rustc-hash" 1805version = "1.1.0" 1806source = "registry+https://github.com/rust-lang/crates.io-index" 1807checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 1808 1809[[package]] 1810name = "rusticata-macros" 1811version = "4.1.0" 1812source = "registry+https://github.com/rust-lang/crates.io-index" 1813checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" 1814dependencies = [ 1815 "nom", 1816] 1817 1818[[package]] 1819name = "rustix" 1820version = "0.38.28" 1821source = "registry+https://github.com/rust-lang/crates.io-index" 1822checksum = "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316" 1823dependencies = [ 1824 "bitflags 2.4.1", 1825 "errno", 1826 "libc", 1827 "linux-raw-sys", 1828 "windows-sys 0.52.0", 1829] 1830 1831[[package]] 1832name = "rustls" 1833version = "0.21.10" 1834source = "registry+https://github.com/rust-lang/crates.io-index" 1835checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba" 1836dependencies = [ 1837 "log", 1838 "ring 0.17.7", 1839 "rustls-webpki", 1840 "sct", 1841] 1842 1843[[package]] 1844name = "rustls-native-certs" 1845version = "0.6.3" 1846source = "registry+https://github.com/rust-lang/crates.io-index" 1847checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" 1848dependencies = [ 1849 "openssl-probe", 1850 "rustls-pemfile", 1851 "schannel", 1852 "security-framework", 1853] 1854 1855[[package]] 1856name = "rustls-pemfile" 1857version = "1.0.4" 1858source = "registry+https://github.com/rust-lang/crates.io-index" 1859checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 1860dependencies = [ 1861 "base64 0.21.5", 1862] 1863 1864[[package]] 1865name = "rustls-webpki" 1866version = "0.101.7" 1867source = "registry+https://github.com/rust-lang/crates.io-index" 1868checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 1869dependencies = [ 1870 "ring 0.17.7", 1871 "untrusted 0.9.0", 1872] 1873 1874[[package]] 1875name = "rustversion" 1876version = "1.0.14" 1877source = "registry+https://github.com/rust-lang/crates.io-index" 1878checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" 1879 1880[[package]] 1881name = "ryu" 1882version = "1.0.16" 1883source = "registry+https://github.com/rust-lang/crates.io-index" 1884checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" 1885 1886[[package]] 1887name = "same-file" 1888version = "1.0.6" 1889source = "registry+https://github.com/rust-lang/crates.io-index" 1890checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 1891dependencies = [ 1892 "winapi-util", 1893] 1894 1895[[package]] 1896name = "schannel" 1897version = "0.1.22" 1898source = "registry+https://github.com/rust-lang/crates.io-index" 1899checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" 1900dependencies = [ 1901 "windows-sys 0.48.0", 1902] 1903 1904[[package]] 1905name = "scoped-tls" 1906version = "1.0.1" 1907source = "registry+https://github.com/rust-lang/crates.io-index" 1908checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 1909 1910[[package]] 1911name = "sct" 1912version = "0.7.1" 1913source = "registry+https://github.com/rust-lang/crates.io-index" 1914checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 1915dependencies = [ 1916 "ring 0.17.7", 1917 "untrusted 0.9.0", 1918] 1919 1920[[package]] 1921name = "security-framework" 1922version = "2.9.2" 1923source = "registry+https://github.com/rust-lang/crates.io-index" 1924checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" 1925dependencies = [ 1926 "bitflags 1.3.2", 1927 "core-foundation", 1928 "core-foundation-sys", 1929 "libc", 1930 "security-framework-sys", 1931] 1932 1933[[package]] 1934name = "security-framework-sys" 1935version = "2.9.1" 1936source = "registry+https://github.com/rust-lang/crates.io-index" 1937checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" 1938dependencies = [ 1939 "core-foundation-sys", 1940 "libc", 1941] 1942 1943[[package]] 1944name = "serde" 1945version = "1.0.193" 1946source = "registry+https://github.com/rust-lang/crates.io-index" 1947checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89" 1948dependencies = [ 1949 "serde_derive", 1950] 1951 1952[[package]] 1953name = "serde-wasm-bindgen" 1954version = "0.4.5" 1955source = "registry+https://github.com/rust-lang/crates.io-index" 1956checksum = "e3b4c031cd0d9014307d82b8abf653c0290fbdaeb4c02d00c63cf52f728628bf" 1957dependencies = [ 1958 "js-sys", 1959 "serde", 1960 "wasm-bindgen", 1961] 1962 1963[[package]] 1964name = "serde_derive" 1965version = "1.0.193" 1966source = "registry+https://github.com/rust-lang/crates.io-index" 1967checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3" 1968dependencies = [ 1969 "proc-macro2", 1970 "quote", 1971 "syn 2.0.41", 1972] 1973 1974[[package]] 1975name = "serde_json" 1976version = "1.0.108" 1977source = "registry+https://github.com/rust-lang/crates.io-index" 1978checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" 1979dependencies = [ 1980 "itoa", 1981 "ryu", 1982 "serde", 1983] 1984 1985[[package]] 1986name = "serde_repr" 1987version = "0.1.17" 1988source = "registry+https://github.com/rust-lang/crates.io-index" 1989checksum = "3081f5ffbb02284dda55132aa26daecedd7372a42417bbbab6f14ab7d6bb9145" 1990dependencies = [ 1991 "proc-macro2", 1992 "quote", 1993 "syn 2.0.41", 1994] 1995 1996[[package]] 1997name = "serde_urlencoded" 1998version = "0.7.1" 1999source = "registry+https://github.com/rust-lang/crates.io-index" 2000checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2001dependencies = [ 2002 "form_urlencoded", 2003 "itoa", 2004 "ryu", 2005 "serde", 2006] 2007 2008[[package]] 2009name = "sha2" 2010version = "0.9.9" 2011source = "registry+https://github.com/rust-lang/crates.io-index" 2012checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800" 2013dependencies = [ 2014 "block-buffer", 2015 "cfg-if", 2016 "cpufeatures", 2017 "digest", 2018 "opaque-debug", 2019] 2020 2021[[package]] 2022name = "sharded-slab" 2023version = "0.1.7" 2024source = "registry+https://github.com/rust-lang/crates.io-index" 2025checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 2026dependencies = [ 2027 "lazy_static", 2028] 2029 2030[[package]] 2031name = "similar" 2032version = "2.3.0" 2033source = "registry+https://github.com/rust-lang/crates.io-index" 2034checksum = "2aeaf503862c419d66959f5d7ca015337d864e9c49485d771b732e2a20453597" 2035 2036[[package]] 2037name = "sized-chunks" 2038version = "0.6.5" 2039source = "registry+https://github.com/rust-lang/crates.io-index" 2040checksum = "16d69225bde7a69b235da73377861095455d298f2b970996eec25ddbb42b3d1e" 2041dependencies = [ 2042 "bitmaps", 2043 "typenum", 2044] 2045 2046[[package]] 2047name = "slab" 2048version = "0.4.9" 2049source = "registry+https://github.com/rust-lang/crates.io-index" 2050checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 2051dependencies = [ 2052 "autocfg", 2053] 2054 2055[[package]] 2056name = "smallvec" 2057version = "1.11.2" 2058source = "registry+https://github.com/rust-lang/crates.io-index" 2059checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 2060 2061[[package]] 2062name = "smawk" 2063version = "0.3.2" 2064source = "registry+https://github.com/rust-lang/crates.io-index" 2065checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c" 2066 2067[[package]] 2068name = "socket2" 2069version = "0.4.10" 2070source = "registry+https://github.com/rust-lang/crates.io-index" 2071checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" 2072dependencies = [ 2073 "libc", 2074 "winapi", 2075] 2076 2077[[package]] 2078name = "socket2" 2079version = "0.5.5" 2080source = "registry+https://github.com/rust-lang/crates.io-index" 2081checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 2082dependencies = [ 2083 "libc", 2084 "windows-sys 0.48.0", 2085] 2086 2087[[package]] 2088name = "spdx" 2089version = "0.8.1" 2090source = "registry+https://github.com/rust-lang/crates.io-index" 2091checksum = "78bce5b26be49ead8eac0bbdec432b2c52ccfbfeff1ab814fc78bf53e003422e" 2092dependencies = [ 2093 "smallvec", 2094] 2095 2096[[package]] 2097name = "spin" 2098version = "0.5.2" 2099source = "registry+https://github.com/rust-lang/crates.io-index" 2100checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 2101 2102[[package]] 2103name = "spin" 2104version = "0.9.8" 2105source = "registry+https://github.com/rust-lang/crates.io-index" 2106checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 2107 2108[[package]] 2109name = "strsim" 2110version = "0.10.0" 2111source = "registry+https://github.com/rust-lang/crates.io-index" 2112checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 2113 2114[[package]] 2115name = "strum" 2116version = "0.24.1" 2117source = "registry+https://github.com/rust-lang/crates.io-index" 2118checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" 2119dependencies = [ 2120 "strum_macros", 2121] 2122 2123[[package]] 2124name = "strum_macros" 2125version = "0.24.3" 2126source = "registry+https://github.com/rust-lang/crates.io-index" 2127checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59" 2128dependencies = [ 2129 "heck", 2130 "proc-macro2", 2131 "quote", 2132 "rustversion", 2133 "syn 1.0.109", 2134] 2135 2136[[package]] 2137name = "syn" 2138version = "1.0.109" 2139source = "registry+https://github.com/rust-lang/crates.io-index" 2140checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 2141dependencies = [ 2142 "proc-macro2", 2143 "quote", 2144 "unicode-ident", 2145] 2146 2147[[package]] 2148name = "syn" 2149version = "2.0.41" 2150source = "registry+https://github.com/rust-lang/crates.io-index" 2151checksum = "44c8b28c477cc3bf0e7966561e3460130e1255f7a1cf71931075f1c5e7a7e269" 2152dependencies = [ 2153 "proc-macro2", 2154 "quote", 2155 "unicode-ident", 2156] 2157 2158[[package]] 2159name = "synstructure" 2160version = "0.12.6" 2161source = "registry+https://github.com/rust-lang/crates.io-index" 2162checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" 2163dependencies = [ 2164 "proc-macro2", 2165 "quote", 2166 "syn 1.0.109", 2167 "unicode-xid", 2168] 2169 2170[[package]] 2171name = "system-configuration" 2172version = "0.5.1" 2173source = "registry+https://github.com/rust-lang/crates.io-index" 2174checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" 2175dependencies = [ 2176 "bitflags 1.3.2", 2177 "core-foundation", 2178 "system-configuration-sys", 2179] 2180 2181[[package]] 2182name = "system-configuration-sys" 2183version = "0.5.0" 2184source = "registry+https://github.com/rust-lang/crates.io-index" 2185checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 2186dependencies = [ 2187 "core-foundation-sys", 2188 "libc", 2189] 2190 2191[[package]] 2192name = "tar" 2193version = "0.4.40" 2194source = "registry+https://github.com/rust-lang/crates.io-index" 2195checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb" 2196dependencies = [ 2197 "filetime", 2198 "libc", 2199 "xattr", 2200] 2201 2202[[package]] 2203name = "tempfile" 2204version = "3.8.1" 2205source = "registry+https://github.com/rust-lang/crates.io-index" 2206checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" 2207dependencies = [ 2208 "cfg-if", 2209 "fastrand", 2210 "redox_syscall", 2211 "rustix", 2212 "windows-sys 0.48.0", 2213] 2214 2215[[package]] 2216name = "termcolor" 2217version = "1.4.0" 2218source = "registry+https://github.com/rust-lang/crates.io-index" 2219checksum = "ff1bc3d3f05aff0403e8ac0d92ced918ec05b666a43f83297ccef5bea8a3d449" 2220dependencies = [ 2221 "winapi-util", 2222] 2223 2224[[package]] 2225name = "terminal_size" 2226version = "0.1.17" 2227source = "registry+https://github.com/rust-lang/crates.io-index" 2228checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df" 2229dependencies = [ 2230 "libc", 2231 "winapi", 2232] 2233 2234[[package]] 2235name = "test-package-compiler" 2236version = "0.34.0-dev" 2237dependencies = [ 2238 "camino", 2239 "gleam-core", 2240 "im", 2241 "insta", 2242 "itertools", 2243 "regex", 2244 "toml", 2245 "walkdir", 2246] 2247 2248[[package]] 2249name = "textwrap" 2250version = "0.15.0" 2251source = "registry+https://github.com/rust-lang/crates.io-index" 2252checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb" 2253dependencies = [ 2254 "smawk", 2255 "terminal_size", 2256 "unicode-linebreak", 2257 "unicode-width", 2258] 2259 2260[[package]] 2261name = "textwrap" 2262version = "0.16.0" 2263source = "registry+https://github.com/rust-lang/crates.io-index" 2264checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" 2265 2266[[package]] 2267name = "thiserror" 2268version = "1.0.51" 2269source = "registry+https://github.com/rust-lang/crates.io-index" 2270checksum = "f11c217e1416d6f036b870f14e0413d480dbf28edbee1f877abaf0206af43bb7" 2271dependencies = [ 2272 "thiserror-impl", 2273] 2274 2275[[package]] 2276name = "thiserror-impl" 2277version = "1.0.51" 2278source = "registry+https://github.com/rust-lang/crates.io-index" 2279checksum = "01742297787513b79cf8e29d1056ede1313e2420b7b3b15d0a768b4921f549df" 2280dependencies = [ 2281 "proc-macro2", 2282 "quote", 2283 "syn 2.0.41", 2284] 2285 2286[[package]] 2287name = "thread_local" 2288version = "1.1.7" 2289source = "registry+https://github.com/rust-lang/crates.io-index" 2290checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 2291dependencies = [ 2292 "cfg-if", 2293 "once_cell", 2294] 2295 2296[[package]] 2297name = "time" 2298version = "0.3.30" 2299source = "registry+https://github.com/rust-lang/crates.io-index" 2300checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5" 2301dependencies = [ 2302 "deranged", 2303 "itoa", 2304 "powerfmt", 2305 "serde", 2306 "time-core", 2307 "time-macros", 2308] 2309 2310[[package]] 2311name = "time-core" 2312version = "0.1.2" 2313source = "registry+https://github.com/rust-lang/crates.io-index" 2314checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 2315 2316[[package]] 2317name = "time-macros" 2318version = "0.2.15" 2319source = "registry+https://github.com/rust-lang/crates.io-index" 2320checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20" 2321dependencies = [ 2322 "time-core", 2323] 2324 2325[[package]] 2326name = "tinyvec" 2327version = "1.6.0" 2328source = "registry+https://github.com/rust-lang/crates.io-index" 2329checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 2330dependencies = [ 2331 "tinyvec_macros", 2332] 2333 2334[[package]] 2335name = "tinyvec_macros" 2336version = "0.1.1" 2337source = "registry+https://github.com/rust-lang/crates.io-index" 2338checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2339 2340[[package]] 2341name = "tokio" 2342version = "1.35.0" 2343source = "registry+https://github.com/rust-lang/crates.io-index" 2344checksum = "841d45b238a16291a4e1584e61820b8ae57d696cc5015c459c229ccc6990cc1c" 2345dependencies = [ 2346 "backtrace", 2347 "bytes", 2348 "libc", 2349 "mio", 2350 "num_cpus", 2351 "pin-project-lite", 2352 "socket2 0.5.5", 2353 "windows-sys 0.48.0", 2354] 2355 2356[[package]] 2357name = "tokio-rustls" 2358version = "0.24.1" 2359source = "registry+https://github.com/rust-lang/crates.io-index" 2360checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 2361dependencies = [ 2362 "rustls", 2363 "tokio", 2364] 2365 2366[[package]] 2367name = "tokio-util" 2368version = "0.7.10" 2369source = "registry+https://github.com/rust-lang/crates.io-index" 2370checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" 2371dependencies = [ 2372 "bytes", 2373 "futures-core", 2374 "futures-sink", 2375 "pin-project-lite", 2376 "tokio", 2377 "tracing", 2378] 2379 2380[[package]] 2381name = "toml" 2382version = "0.5.11" 2383source = "registry+https://github.com/rust-lang/crates.io-index" 2384checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 2385dependencies = [ 2386 "serde", 2387] 2388 2389[[package]] 2390name = "toml_edit" 2391version = "0.9.1" 2392source = "registry+https://github.com/rust-lang/crates.io-index" 2393checksum = "6b26d63d75583ce572323a963b850d2121cf47a03b1f6c5fc96d641d3b0412b3" 2394dependencies = [ 2395 "combine", 2396 "indexmap 1.9.3", 2397 "itertools", 2398 "kstring", 2399] 2400 2401[[package]] 2402name = "tower-service" 2403version = "0.3.2" 2404source = "registry+https://github.com/rust-lang/crates.io-index" 2405checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 2406 2407[[package]] 2408name = "tracing" 2409version = "0.1.40" 2410source = "registry+https://github.com/rust-lang/crates.io-index" 2411checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 2412dependencies = [ 2413 "pin-project-lite", 2414 "tracing-attributes", 2415 "tracing-core", 2416] 2417 2418[[package]] 2419name = "tracing-attributes" 2420version = "0.1.27" 2421source = "registry+https://github.com/rust-lang/crates.io-index" 2422checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 2423dependencies = [ 2424 "proc-macro2", 2425 "quote", 2426 "syn 2.0.41", 2427] 2428 2429[[package]] 2430name = "tracing-core" 2431version = "0.1.32" 2432source = "registry+https://github.com/rust-lang/crates.io-index" 2433checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 2434dependencies = [ 2435 "once_cell", 2436 "valuable", 2437] 2438 2439[[package]] 2440name = "tracing-log" 2441version = "0.2.0" 2442source = "registry+https://github.com/rust-lang/crates.io-index" 2443checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 2444dependencies = [ 2445 "log", 2446 "once_cell", 2447 "tracing-core", 2448] 2449 2450[[package]] 2451name = "tracing-subscriber" 2452version = "0.3.18" 2453source = "registry+https://github.com/rust-lang/crates.io-index" 2454checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" 2455dependencies = [ 2456 "matchers", 2457 "nu-ansi-term", 2458 "once_cell", 2459 "regex", 2460 "sharded-slab", 2461 "smallvec", 2462 "thread_local", 2463 "tracing", 2464 "tracing-core", 2465 "tracing-log", 2466] 2467 2468[[package]] 2469name = "tracing-wasm" 2470version = "0.2.1" 2471source = "registry+https://github.com/rust-lang/crates.io-index" 2472checksum = "4575c663a174420fa2d78f4108ff68f65bf2fbb7dd89f33749b6e826b3626e07" 2473dependencies = [ 2474 "tracing", 2475 "tracing-subscriber", 2476 "wasm-bindgen", 2477] 2478 2479[[package]] 2480name = "try-lock" 2481version = "0.2.5" 2482source = "registry+https://github.com/rust-lang/crates.io-index" 2483checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 2484 2485[[package]] 2486name = "typenum" 2487version = "1.17.0" 2488source = "registry+https://github.com/rust-lang/crates.io-index" 2489checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 2490 2491[[package]] 2492name = "unicase" 2493version = "2.7.0" 2494source = "registry+https://github.com/rust-lang/crates.io-index" 2495checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" 2496dependencies = [ 2497 "version_check", 2498] 2499 2500[[package]] 2501name = "unicode-bidi" 2502version = "0.3.14" 2503source = "registry+https://github.com/rust-lang/crates.io-index" 2504checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416" 2505 2506[[package]] 2507name = "unicode-ident" 2508version = "1.0.12" 2509source = "registry+https://github.com/rust-lang/crates.io-index" 2510checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 2511 2512[[package]] 2513name = "unicode-linebreak" 2514version = "0.1.5" 2515source = "registry+https://github.com/rust-lang/crates.io-index" 2516checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f" 2517 2518[[package]] 2519name = "unicode-normalization" 2520version = "0.1.22" 2521source = "registry+https://github.com/rust-lang/crates.io-index" 2522checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 2523dependencies = [ 2524 "tinyvec", 2525] 2526 2527[[package]] 2528name = "unicode-width" 2529version = "0.1.11" 2530source = "registry+https://github.com/rust-lang/crates.io-index" 2531checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" 2532 2533[[package]] 2534name = "unicode-xid" 2535version = "0.2.4" 2536source = "registry+https://github.com/rust-lang/crates.io-index" 2537checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 2538 2539[[package]] 2540name = "untrusted" 2541version = "0.7.1" 2542source = "registry+https://github.com/rust-lang/crates.io-index" 2543checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 2544 2545[[package]] 2546name = "untrusted" 2547version = "0.9.0" 2548source = "registry+https://github.com/rust-lang/crates.io-index" 2549checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 2550 2551[[package]] 2552name = "url" 2553version = "2.5.0" 2554source = "registry+https://github.com/rust-lang/crates.io-index" 2555checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 2556dependencies = [ 2557 "form_urlencoded", 2558 "idna", 2559 "percent-encoding", 2560 "serde", 2561] 2562 2563[[package]] 2564name = "valuable" 2565version = "0.1.0" 2566source = "registry+https://github.com/rust-lang/crates.io-index" 2567checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 2568 2569[[package]] 2570name = "vec1" 2571version = "1.10.1" 2572source = "registry+https://github.com/rust-lang/crates.io-index" 2573checksum = "2bda7c41ca331fe9a1c278a9e7ee055f4be7f5eb1c2b72f079b4ff8b5fce9d5c" 2574 2575[[package]] 2576name = "version_check" 2577version = "0.9.4" 2578source = "registry+https://github.com/rust-lang/crates.io-index" 2579checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 2580 2581[[package]] 2582name = "walkdir" 2583version = "2.4.0" 2584source = "registry+https://github.com/rust-lang/crates.io-index" 2585checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" 2586dependencies = [ 2587 "same-file", 2588 "winapi-util", 2589] 2590 2591[[package]] 2592name = "want" 2593version = "0.3.1" 2594source = "registry+https://github.com/rust-lang/crates.io-index" 2595checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 2596dependencies = [ 2597 "try-lock", 2598] 2599 2600[[package]] 2601name = "wasi" 2602version = "0.11.0+wasi-snapshot-preview1" 2603source = "registry+https://github.com/rust-lang/crates.io-index" 2604checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2605 2606[[package]] 2607name = "wasm-bindgen" 2608version = "0.2.89" 2609source = "registry+https://github.com/rust-lang/crates.io-index" 2610checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e" 2611dependencies = [ 2612 "cfg-if", 2613 "serde", 2614 "serde_json", 2615 "wasm-bindgen-macro", 2616] 2617 2618[[package]] 2619name = "wasm-bindgen-backend" 2620version = "0.2.89" 2621source = "registry+https://github.com/rust-lang/crates.io-index" 2622checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826" 2623dependencies = [ 2624 "bumpalo", 2625 "log", 2626 "once_cell", 2627 "proc-macro2", 2628 "quote", 2629 "syn 2.0.41", 2630 "wasm-bindgen-shared", 2631] 2632 2633[[package]] 2634name = "wasm-bindgen-futures" 2635version = "0.4.39" 2636source = "registry+https://github.com/rust-lang/crates.io-index" 2637checksum = "ac36a15a220124ac510204aec1c3e5db8a22ab06fd6706d881dc6149f8ed9a12" 2638dependencies = [ 2639 "cfg-if", 2640 "js-sys", 2641 "wasm-bindgen", 2642 "web-sys", 2643] 2644 2645[[package]] 2646name = "wasm-bindgen-macro" 2647version = "0.2.89" 2648source = "registry+https://github.com/rust-lang/crates.io-index" 2649checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2" 2650dependencies = [ 2651 "quote", 2652 "wasm-bindgen-macro-support", 2653] 2654 2655[[package]] 2656name = "wasm-bindgen-macro-support" 2657version = "0.2.89" 2658source = "registry+https://github.com/rust-lang/crates.io-index" 2659checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283" 2660dependencies = [ 2661 "proc-macro2", 2662 "quote", 2663 "syn 2.0.41", 2664 "wasm-bindgen-backend", 2665 "wasm-bindgen-shared", 2666] 2667 2668[[package]] 2669name = "wasm-bindgen-shared" 2670version = "0.2.89" 2671source = "registry+https://github.com/rust-lang/crates.io-index" 2672checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f" 2673 2674[[package]] 2675name = "wasm-bindgen-test" 2676version = "0.3.39" 2677source = "registry+https://github.com/rust-lang/crates.io-index" 2678checksum = "2cf9242c0d27999b831eae4767b2a146feb0b27d332d553e605864acd2afd403" 2679dependencies = [ 2680 "console_error_panic_hook", 2681 "js-sys", 2682 "scoped-tls", 2683 "wasm-bindgen", 2684 "wasm-bindgen-futures", 2685 "wasm-bindgen-test-macro", 2686] 2687 2688[[package]] 2689name = "wasm-bindgen-test-macro" 2690version = "0.3.39" 2691source = "registry+https://github.com/rust-lang/crates.io-index" 2692checksum = "794645f5408c9a039fd09f4d113cdfb2e7eba5ff1956b07bcf701cf4b394fe89" 2693dependencies = [ 2694 "proc-macro2", 2695 "quote", 2696 "syn 2.0.41", 2697] 2698 2699[[package]] 2700name = "web-sys" 2701version = "0.3.66" 2702source = "registry+https://github.com/rust-lang/crates.io-index" 2703checksum = "50c24a44ec86bb68fbecd1b3efed7e85ea5621b39b35ef2766b66cd984f8010f" 2704dependencies = [ 2705 "js-sys", 2706 "wasm-bindgen", 2707] 2708 2709[[package]] 2710name = "winapi" 2711version = "0.3.9" 2712source = "registry+https://github.com/rust-lang/crates.io-index" 2713checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2714dependencies = [ 2715 "winapi-i686-pc-windows-gnu", 2716 "winapi-x86_64-pc-windows-gnu", 2717] 2718 2719[[package]] 2720name = "winapi-i686-pc-windows-gnu" 2721version = "0.4.0" 2722source = "registry+https://github.com/rust-lang/crates.io-index" 2723checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2724 2725[[package]] 2726name = "winapi-util" 2727version = "0.1.6" 2728source = "registry+https://github.com/rust-lang/crates.io-index" 2729checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 2730dependencies = [ 2731 "winapi", 2732] 2733 2734[[package]] 2735name = "winapi-x86_64-pc-windows-gnu" 2736version = "0.4.0" 2737source = "registry+https://github.com/rust-lang/crates.io-index" 2738checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2739 2740[[package]] 2741name = "windows-sys" 2742version = "0.45.0" 2743source = "registry+https://github.com/rust-lang/crates.io-index" 2744checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 2745dependencies = [ 2746 "windows-targets 0.42.2", 2747] 2748 2749[[package]] 2750name = "windows-sys" 2751version = "0.48.0" 2752source = "registry+https://github.com/rust-lang/crates.io-index" 2753checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 2754dependencies = [ 2755 "windows-targets 0.48.5", 2756] 2757 2758[[package]] 2759name = "windows-sys" 2760version = "0.52.0" 2761source = "registry+https://github.com/rust-lang/crates.io-index" 2762checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 2763dependencies = [ 2764 "windows-targets 0.52.0", 2765] 2766 2767[[package]] 2768name = "windows-targets" 2769version = "0.42.2" 2770source = "registry+https://github.com/rust-lang/crates.io-index" 2771checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 2772dependencies = [ 2773 "windows_aarch64_gnullvm 0.42.2", 2774 "windows_aarch64_msvc 0.42.2", 2775 "windows_i686_gnu 0.42.2", 2776 "windows_i686_msvc 0.42.2", 2777 "windows_x86_64_gnu 0.42.2", 2778 "windows_x86_64_gnullvm 0.42.2", 2779 "windows_x86_64_msvc 0.42.2", 2780] 2781 2782[[package]] 2783name = "windows-targets" 2784version = "0.48.5" 2785source = "registry+https://github.com/rust-lang/crates.io-index" 2786checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 2787dependencies = [ 2788 "windows_aarch64_gnullvm 0.48.5", 2789 "windows_aarch64_msvc 0.48.5", 2790 "windows_i686_gnu 0.48.5", 2791 "windows_i686_msvc 0.48.5", 2792 "windows_x86_64_gnu 0.48.5", 2793 "windows_x86_64_gnullvm 0.48.5", 2794 "windows_x86_64_msvc 0.48.5", 2795] 2796 2797[[package]] 2798name = "windows-targets" 2799version = "0.52.0" 2800source = "registry+https://github.com/rust-lang/crates.io-index" 2801checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" 2802dependencies = [ 2803 "windows_aarch64_gnullvm 0.52.0", 2804 "windows_aarch64_msvc 0.52.0", 2805 "windows_i686_gnu 0.52.0", 2806 "windows_i686_msvc 0.52.0", 2807 "windows_x86_64_gnu 0.52.0", 2808 "windows_x86_64_gnullvm 0.52.0", 2809 "windows_x86_64_msvc 0.52.0", 2810] 2811 2812[[package]] 2813name = "windows_aarch64_gnullvm" 2814version = "0.42.2" 2815source = "registry+https://github.com/rust-lang/crates.io-index" 2816checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 2817 2818[[package]] 2819name = "windows_aarch64_gnullvm" 2820version = "0.48.5" 2821source = "registry+https://github.com/rust-lang/crates.io-index" 2822checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 2823 2824[[package]] 2825name = "windows_aarch64_gnullvm" 2826version = "0.52.0" 2827source = "registry+https://github.com/rust-lang/crates.io-index" 2828checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" 2829 2830[[package]] 2831name = "windows_aarch64_msvc" 2832version = "0.42.2" 2833source = "registry+https://github.com/rust-lang/crates.io-index" 2834checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 2835 2836[[package]] 2837name = "windows_aarch64_msvc" 2838version = "0.48.5" 2839source = "registry+https://github.com/rust-lang/crates.io-index" 2840checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 2841 2842[[package]] 2843name = "windows_aarch64_msvc" 2844version = "0.52.0" 2845source = "registry+https://github.com/rust-lang/crates.io-index" 2846checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" 2847 2848[[package]] 2849name = "windows_i686_gnu" 2850version = "0.42.2" 2851source = "registry+https://github.com/rust-lang/crates.io-index" 2852checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 2853 2854[[package]] 2855name = "windows_i686_gnu" 2856version = "0.48.5" 2857source = "registry+https://github.com/rust-lang/crates.io-index" 2858checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 2859 2860[[package]] 2861name = "windows_i686_gnu" 2862version = "0.52.0" 2863source = "registry+https://github.com/rust-lang/crates.io-index" 2864checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" 2865 2866[[package]] 2867name = "windows_i686_msvc" 2868version = "0.42.2" 2869source = "registry+https://github.com/rust-lang/crates.io-index" 2870checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 2871 2872[[package]] 2873name = "windows_i686_msvc" 2874version = "0.48.5" 2875source = "registry+https://github.com/rust-lang/crates.io-index" 2876checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 2877 2878[[package]] 2879name = "windows_i686_msvc" 2880version = "0.52.0" 2881source = "registry+https://github.com/rust-lang/crates.io-index" 2882checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" 2883 2884[[package]] 2885name = "windows_x86_64_gnu" 2886version = "0.42.2" 2887source = "registry+https://github.com/rust-lang/crates.io-index" 2888checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 2889 2890[[package]] 2891name = "windows_x86_64_gnu" 2892version = "0.48.5" 2893source = "registry+https://github.com/rust-lang/crates.io-index" 2894checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 2895 2896[[package]] 2897name = "windows_x86_64_gnu" 2898version = "0.52.0" 2899source = "registry+https://github.com/rust-lang/crates.io-index" 2900checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" 2901 2902[[package]] 2903name = "windows_x86_64_gnullvm" 2904version = "0.42.2" 2905source = "registry+https://github.com/rust-lang/crates.io-index" 2906checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 2907 2908[[package]] 2909name = "windows_x86_64_gnullvm" 2910version = "0.48.5" 2911source = "registry+https://github.com/rust-lang/crates.io-index" 2912checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 2913 2914[[package]] 2915name = "windows_x86_64_gnullvm" 2916version = "0.52.0" 2917source = "registry+https://github.com/rust-lang/crates.io-index" 2918checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" 2919 2920[[package]] 2921name = "windows_x86_64_msvc" 2922version = "0.42.2" 2923source = "registry+https://github.com/rust-lang/crates.io-index" 2924checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 2925 2926[[package]] 2927name = "windows_x86_64_msvc" 2928version = "0.48.5" 2929source = "registry+https://github.com/rust-lang/crates.io-index" 2930checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 2931 2932[[package]] 2933name = "windows_x86_64_msvc" 2934version = "0.52.0" 2935source = "registry+https://github.com/rust-lang/crates.io-index" 2936checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" 2937 2938[[package]] 2939name = "winreg" 2940version = "0.50.0" 2941source = "registry+https://github.com/rust-lang/crates.io-index" 2942checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 2943dependencies = [ 2944 "cfg-if", 2945 "windows-sys 0.48.0", 2946] 2947 2948[[package]] 2949name = "x509-parser" 2950version = "0.15.1" 2951source = "registry+https://github.com/rust-lang/crates.io-index" 2952checksum = "7069fba5b66b9193bd2c5d3d4ff12b839118f6bcbef5328efafafb5395cf63da" 2953dependencies = [ 2954 "asn1-rs", 2955 "data-encoding", 2956 "der-parser", 2957 "lazy_static", 2958 "nom", 2959 "oid-registry", 2960 "rusticata-macros", 2961 "thiserror", 2962 "time", 2963] 2964 2965[[package]] 2966name = "xattr" 2967version = "1.1.3" 2968source = "registry+https://github.com/rust-lang/crates.io-index" 2969checksum = "a7dae5072fe1f8db8f8d29059189ac175196e410e40ba42d5d4684ae2f750995" 2970dependencies = [ 2971 "libc", 2972 "linux-raw-sys", 2973 "rustix", 2974] 2975 2976[[package]] 2977name = "xxhash-rust" 2978version = "0.8.7" 2979source = "registry+https://github.com/rust-lang/crates.io-index" 2980checksum = "9828b178da53440fa9c766a3d2f73f7cf5d0ac1fe3980c1e5018d899fd19e07b" 2981 2982[[package]] 2983name = "yaml-rust" 2984version = "0.4.5" 2985source = "registry+https://github.com/rust-lang/crates.io-index" 2986checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 2987dependencies = [ 2988 "linked-hash-map", 2989] 2990 2991[[package]] 2992name = "yansi" 2993version = "0.5.1" 2994source = "registry+https://github.com/rust-lang/crates.io-index" 2995checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"