Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "addr2line" 7version = "0.24.2" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" 10dependencies = [ 11 "gimli", 12] 13 14[[package]] 15name = "adler2" 16version = "2.0.1" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" 19 20[[package]] 21name = "ahash" 22version = "0.7.8" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" 25dependencies = [ 26 "getrandom 0.2.16", 27 "once_cell", 28 "version_check", 29] 30 31[[package]] 32name = "ahash" 33version = "0.8.12" 34source = "registry+https://github.com/rust-lang/crates.io-index" 35checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" 36dependencies = [ 37 "cfg-if 1.0.1", 38 "getrandom 0.3.3", 39 "once_cell", 40 "version_check", 41 "zerocopy", 42] 43 44[[package]] 45name = "aho-corasick" 46version = "0.7.20" 47source = "registry+https://github.com/rust-lang/crates.io-index" 48checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" 49dependencies = [ 50 "memchr", 51] 52 53[[package]] 54name = "aho-corasick" 55version = "1.1.3" 56source = "registry+https://github.com/rust-lang/crates.io-index" 57checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 58dependencies = [ 59 "memchr", 60] 61 62[[package]] 63name = "ansi_term" 64version = "0.12.1" 65source = "registry+https://github.com/rust-lang/crates.io-index" 66checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 67dependencies = [ 68 "winapi", 69] 70 71[[package]] 72name = "ascii" 73version = "0.9.3" 74source = "registry+https://github.com/rust-lang/crates.io-index" 75checksum = "eab1c04a571841102f5345a8fc0f6bb3d31c315dec879b5c6e42e40ce7ffa34e" 76 77[[package]] 78name = "atty" 79version = "0.2.14" 80source = "registry+https://github.com/rust-lang/crates.io-index" 81checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 82dependencies = [ 83 "hermit-abi", 84 "libc", 85 "winapi", 86] 87 88[[package]] 89name = "autocfg" 90version = "1.5.0" 91source = "registry+https://github.com/rust-lang/crates.io-index" 92checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 93 94[[package]] 95name = "backtrace" 96version = "0.3.75" 97source = "registry+https://github.com/rust-lang/crates.io-index" 98checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002" 99dependencies = [ 100 "addr2line", 101 "cfg-if 1.0.1", 102 "libc", 103 "miniz_oxide", 104 "object", 105 "rustc-demangle", 106 "windows-targets 0.52.6", 107] 108 109[[package]] 110name = "base64-simd" 111version = "0.7.0" 112source = "registry+https://github.com/rust-lang/crates.io-index" 113checksum = "781dd20c3aff0bd194fe7d2a977dd92f21c173891f3a03b677359e5fa457e5d5" 114dependencies = [ 115 "simd-abstraction", 116] 117 118[[package]] 119name = "bindgen" 120version = "0.69.5" 121source = "registry+https://github.com/rust-lang/crates.io-index" 122checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088" 123dependencies = [ 124 "bitflags 2.9.1", 125 "cexpr", 126 "clang-sys", 127 "itertools 0.12.1", 128 "lazy_static", 129 "lazycell", 130 "proc-macro2", 131 "quote", 132 "regex", 133 "rustc-hash 1.1.0", 134 "shlex", 135 "syn 2.0.104", 136] 137 138[[package]] 139name = "bitflags" 140version = "1.3.2" 141source = "registry+https://github.com/rust-lang/crates.io-index" 142checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 143 144[[package]] 145name = "bitflags" 146version = "2.9.1" 147source = "registry+https://github.com/rust-lang/crates.io-index" 148checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" 149 150[[package]] 151name = "bitvec" 152version = "1.0.1" 153source = "registry+https://github.com/rust-lang/crates.io-index" 154checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 155dependencies = [ 156 "funty", 157 "radium", 158 "tap", 159 "wyz", 160] 161 162[[package]] 163name = "bumpalo" 164version = "3.18.1" 165source = "registry+https://github.com/rust-lang/crates.io-index" 166checksum = "793db76d6187cd04dff33004d8e6c9cc4e05cd330500379d2394209271b4aeee" 167 168[[package]] 169name = "bytecheck" 170version = "0.6.12" 171source = "registry+https://github.com/rust-lang/crates.io-index" 172checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" 173dependencies = [ 174 "bytecheck_derive", 175 "ptr_meta", 176 "simdutf8", 177] 178 179[[package]] 180name = "bytecheck_derive" 181version = "0.6.12" 182source = "registry+https://github.com/rust-lang/crates.io-index" 183checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" 184dependencies = [ 185 "proc-macro2", 186 "quote", 187 "syn 1.0.109", 188] 189 190[[package]] 191name = "byteorder" 192version = "1.5.0" 193source = "registry+https://github.com/rust-lang/crates.io-index" 194checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 195 196[[package]] 197name = "bytes" 198version = "1.10.1" 199source = "registry+https://github.com/rust-lang/crates.io-index" 200checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" 201 202[[package]] 203name = "c14n" 204version = "0.0.1" 205dependencies = [ 206 "minify-html", 207] 208 209[[package]] 210name = "cc" 211version = "1.2.27" 212source = "registry+https://github.com/rust-lang/crates.io-index" 213checksum = "d487aa071b5f64da6f19a3e848e3578944b726ee5a4854b82172f02aa876bfdc" 214dependencies = [ 215 "shlex", 216] 217 218[[package]] 219name = "cesu8" 220version = "1.1.0" 221source = "registry+https://github.com/rust-lang/crates.io-index" 222checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 223 224[[package]] 225name = "cexpr" 226version = "0.6.0" 227source = "registry+https://github.com/rust-lang/crates.io-index" 228checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" 229dependencies = [ 230 "nom", 231] 232 233[[package]] 234name = "cfg-if" 235version = "0.1.10" 236source = "registry+https://github.com/rust-lang/crates.io-index" 237checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 238 239[[package]] 240name = "cfg-if" 241version = "1.0.1" 242source = "registry+https://github.com/rust-lang/crates.io-index" 243checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268" 244 245[[package]] 246name = "charlines" 247version = "0.0.1" 248 249[[package]] 250name = "clang-sys" 251version = "1.8.1" 252source = "registry+https://github.com/rust-lang/crates.io-index" 253checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" 254dependencies = [ 255 "glob", 256 "libc", 257 "libloading 0.8.8", 258] 259 260[[package]] 261name = "clap" 262version = "2.34.0" 263source = "registry+https://github.com/rust-lang/crates.io-index" 264checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" 265dependencies = [ 266 "ansi_term", 267 "atty", 268 "bitflags 1.3.2", 269 "strsim", 270 "textwrap", 271 "unicode-width", 272 "vec_map", 273] 274 275[[package]] 276name = "combine" 277version = "3.8.1" 278source = "registry+https://github.com/rust-lang/crates.io-index" 279checksum = "da3da6baa321ec19e1cc41d31bf599f00c783d0517095cdaf0332e3fe8d20680" 280dependencies = [ 281 "ascii", 282 "byteorder", 283 "either", 284 "memchr", 285 "unreachable", 286] 287 288[[package]] 289name = "console_error_panic_hook" 290version = "0.1.7" 291source = "registry+https://github.com/rust-lang/crates.io-index" 292checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc" 293dependencies = [ 294 "cfg-if 1.0.1", 295 "wasm-bindgen", 296] 297 298[[package]] 299name = "const-str" 300version = "0.3.2" 301source = "registry+https://github.com/rust-lang/crates.io-index" 302checksum = "21077772762a1002bb421c3af42ac1725fa56066bfc53d9a55bb79905df2aaf3" 303dependencies = [ 304 "const-str-proc-macro", 305] 306 307[[package]] 308name = "const-str-proc-macro" 309version = "0.3.2" 310source = "registry+https://github.com/rust-lang/crates.io-index" 311checksum = "5e1e0fdd2e5d3041e530e1b21158aeeef8b5d0e306bc5c1e3d6cf0930d10e25a" 312dependencies = [ 313 "proc-macro2", 314 "quote", 315 "syn 1.0.109", 316] 317 318[[package]] 319name = "convert_case" 320version = "0.6.0" 321source = "registry+https://github.com/rust-lang/crates.io-index" 322checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca" 323dependencies = [ 324 "unicode-segmentation", 325] 326 327[[package]] 328name = "crossbeam-deque" 329version = "0.8.6" 330source = "registry+https://github.com/rust-lang/crates.io-index" 331checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" 332dependencies = [ 333 "crossbeam-epoch", 334 "crossbeam-utils", 335] 336 337[[package]] 338name = "crossbeam-epoch" 339version = "0.9.18" 340source = "registry+https://github.com/rust-lang/crates.io-index" 341checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 342dependencies = [ 343 "crossbeam-utils", 344] 345 346[[package]] 347name = "crossbeam-utils" 348version = "0.8.21" 349source = "registry+https://github.com/rust-lang/crates.io-index" 350checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 351 352[[package]] 353name = "cssparser" 354version = "0.33.0" 355source = "registry+https://github.com/rust-lang/crates.io-index" 356checksum = "9be934d936a0fbed5bcdc01042b770de1398bf79d0e192f49fa7faea0e99281e" 357dependencies = [ 358 "cssparser-macros", 359 "dtoa-short", 360 "itoa", 361 "phf", 362 "smallvec", 363] 364 365[[package]] 366name = "cssparser-color" 367version = "0.1.0" 368source = "registry+https://github.com/rust-lang/crates.io-index" 369checksum = "556c099a61d85989d7af52b692e35a8d68a57e7df8c6d07563dc0778b3960c9f" 370dependencies = [ 371 "cssparser", 372] 373 374[[package]] 375name = "cssparser-macros" 376version = "0.6.1" 377source = "registry+https://github.com/rust-lang/crates.io-index" 378checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" 379dependencies = [ 380 "quote", 381 "syn 2.0.104", 382] 383 384[[package]] 385name = "dashmap" 386version = "5.5.3" 387source = "registry+https://github.com/rust-lang/crates.io-index" 388checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" 389dependencies = [ 390 "cfg-if 1.0.1", 391 "hashbrown 0.14.5", 392 "lock_api", 393 "once_cell", 394 "parking_lot_core", 395] 396 397[[package]] 398name = "data-encoding" 399version = "2.9.0" 400source = "registry+https://github.com/rust-lang/crates.io-index" 401checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" 402 403[[package]] 404name = "data-url" 405version = "0.1.1" 406source = "registry+https://github.com/rust-lang/crates.io-index" 407checksum = "3a30bfce702bcfa94e906ef82421f2c0e61c076ad76030c16ee5d2e9a32fe193" 408dependencies = [ 409 "matches", 410] 411 412[[package]] 413name = "dtoa" 414version = "1.0.10" 415source = "registry+https://github.com/rust-lang/crates.io-index" 416checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04" 417 418[[package]] 419name = "dtoa-short" 420version = "0.3.5" 421source = "registry+https://github.com/rust-lang/crates.io-index" 422checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" 423dependencies = [ 424 "dtoa", 425] 426 427[[package]] 428name = "either" 429version = "1.15.0" 430source = "registry+https://github.com/rust-lang/crates.io-index" 431checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 432 433[[package]] 434name = "equivalent" 435version = "1.0.2" 436source = "registry+https://github.com/rust-lang/crates.io-index" 437checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 438 439[[package]] 440name = "error-chain" 441version = "0.12.4" 442source = "registry+https://github.com/rust-lang/crates.io-index" 443checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc" 444dependencies = [ 445 "backtrace", 446 "version_check", 447] 448 449[[package]] 450name = "funty" 451version = "2.0.0" 452source = "registry+https://github.com/rust-lang/crates.io-index" 453checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 454 455[[package]] 456name = "getrandom" 457version = "0.2.16" 458source = "registry+https://github.com/rust-lang/crates.io-index" 459checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" 460dependencies = [ 461 "cfg-if 1.0.1", 462 "js-sys", 463 "libc", 464 "wasi 0.11.1+wasi-snapshot-preview1", 465 "wasm-bindgen", 466] 467 468[[package]] 469name = "getrandom" 470version = "0.3.3" 471source = "registry+https://github.com/rust-lang/crates.io-index" 472checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" 473dependencies = [ 474 "cfg-if 1.0.1", 475 "libc", 476 "r-efi", 477 "wasi 0.14.2+wasi-0.2.4", 478] 479 480[[package]] 481name = "gimli" 482version = "0.31.1" 483source = "registry+https://github.com/rust-lang/crates.io-index" 484checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" 485 486[[package]] 487name = "glob" 488version = "0.3.2" 489source = "registry+https://github.com/rust-lang/crates.io-index" 490checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" 491 492[[package]] 493name = "hashbrown" 494version = "0.12.3" 495source = "registry+https://github.com/rust-lang/crates.io-index" 496checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 497dependencies = [ 498 "ahash 0.7.8", 499] 500 501[[package]] 502name = "hashbrown" 503version = "0.13.2" 504source = "registry+https://github.com/rust-lang/crates.io-index" 505checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 506dependencies = [ 507 "ahash 0.8.12", 508 "bumpalo", 509] 510 511[[package]] 512name = "hashbrown" 513version = "0.14.5" 514source = "registry+https://github.com/rust-lang/crates.io-index" 515checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 516 517[[package]] 518name = "hashbrown" 519version = "0.15.4" 520source = "registry+https://github.com/rust-lang/crates.io-index" 521checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5" 522 523[[package]] 524name = "heck" 525version = "0.3.3" 526source = "registry+https://github.com/rust-lang/crates.io-index" 527checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" 528dependencies = [ 529 "unicode-segmentation", 530] 531 532[[package]] 533name = "heck" 534version = "0.5.0" 535source = "registry+https://github.com/rust-lang/crates.io-index" 536checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 537 538[[package]] 539name = "hermit-abi" 540version = "0.1.19" 541source = "registry+https://github.com/rust-lang/crates.io-index" 542checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 543dependencies = [ 544 "libc", 545] 546 547[[package]] 548name = "index" 549version = "0.16.4" 550dependencies = [ 551 "console_error_panic_hook", 552 "getrandom 0.2.16", 553 "js-sys", 554 "minify-html", 555 "wasm-bindgen", 556 "wasm-bindgen-test", 557 "wee_alloc", 558] 559 560[[package]] 561name = "indexmap" 562version = "2.9.0" 563source = "registry+https://github.com/rust-lang/crates.io-index" 564checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e" 565dependencies = [ 566 "equivalent", 567 "hashbrown 0.15.4", 568 "serde", 569] 570 571[[package]] 572name = "indoc" 573version = "2.0.6" 574source = "registry+https://github.com/rust-lang/crates.io-index" 575checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd" 576 577[[package]] 578name = "itertools" 579version = "0.10.5" 580source = "registry+https://github.com/rust-lang/crates.io-index" 581checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 582dependencies = [ 583 "either", 584] 585 586[[package]] 587name = "itertools" 588version = "0.12.1" 589source = "registry+https://github.com/rust-lang/crates.io-index" 590checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 591dependencies = [ 592 "either", 593] 594 595[[package]] 596name = "itoa" 597version = "1.0.15" 598source = "registry+https://github.com/rust-lang/crates.io-index" 599checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 600 601[[package]] 602name = "jni" 603version = "0.14.0" 604source = "registry+https://github.com/rust-lang/crates.io-index" 605checksum = "1981310da491a4f0f815238097d0d43d8072732b5ae5f8bd0d8eadf5bf245402" 606dependencies = [ 607 "cesu8", 608 "combine", 609 "error-chain", 610 "jni-sys", 611 "log", 612 "walkdir", 613] 614 615[[package]] 616name = "jni-sys" 617version = "0.3.0" 618source = "registry+https://github.com/rust-lang/crates.io-index" 619checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 620 621[[package]] 622name = "js-sys" 623version = "0.3.77" 624source = "registry+https://github.com/rust-lang/crates.io-index" 625checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" 626dependencies = [ 627 "once_cell", 628 "wasm-bindgen", 629] 630 631[[package]] 632name = "lazy_static" 633version = "1.5.0" 634source = "registry+https://github.com/rust-lang/crates.io-index" 635checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 636 637[[package]] 638name = "lazycell" 639version = "1.3.0" 640source = "registry+https://github.com/rust-lang/crates.io-index" 641checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 642 643[[package]] 644name = "libc" 645version = "0.2.174" 646source = "registry+https://github.com/rust-lang/crates.io-index" 647checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776" 648 649[[package]] 650name = "libloading" 651version = "0.6.7" 652source = "registry+https://github.com/rust-lang/crates.io-index" 653checksum = "351a32417a12d5f7e82c368a66781e307834dae04c6ce0cd4456d52989229883" 654dependencies = [ 655 "cfg-if 1.0.1", 656 "winapi", 657] 658 659[[package]] 660name = "libloading" 661version = "0.8.8" 662source = "registry+https://github.com/rust-lang/crates.io-index" 663checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667" 664dependencies = [ 665 "cfg-if 1.0.1", 666 "windows-targets 0.53.2", 667] 668 669[[package]] 670name = "lightningcss" 671version = "1.0.0-alpha.66" 672source = "registry+https://github.com/rust-lang/crates.io-index" 673checksum = "9a73ffa17de66534e4b527232f44aa0a89fad22c4f4e0735f9be35494f058e54" 674dependencies = [ 675 "ahash 0.8.12", 676 "bitflags 2.9.1", 677 "const-str", 678 "cssparser", 679 "cssparser-color", 680 "dashmap", 681 "data-encoding", 682 "getrandom 0.2.16", 683 "indexmap", 684 "itertools 0.10.5", 685 "lazy_static", 686 "lightningcss-derive", 687 "parcel_selectors", 688 "parcel_sourcemap", 689 "paste", 690 "pathdiff", 691 "rayon", 692 "serde", 693 "smallvec", 694] 695 696[[package]] 697name = "lightningcss-derive" 698version = "1.0.0-alpha.43" 699source = "registry+https://github.com/rust-lang/crates.io-index" 700checksum = "84c12744d1279367caed41739ef094c325d53fb0ffcd4f9b84a368796f870252" 701dependencies = [ 702 "convert_case", 703 "proc-macro2", 704 "quote", 705 "syn 1.0.109", 706] 707 708[[package]] 709name = "lock_api" 710version = "0.4.13" 711source = "registry+https://github.com/rust-lang/crates.io-index" 712checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765" 713dependencies = [ 714 "autocfg", 715 "scopeguard", 716] 717 718[[package]] 719name = "log" 720version = "0.4.27" 721source = "registry+https://github.com/rust-lang/crates.io-index" 722checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" 723 724[[package]] 725name = "magnus" 726version = "0.6.4" 727source = "registry+https://github.com/rust-lang/crates.io-index" 728checksum = "b1597ef40aa8c36be098249e82c9a20cf7199278ac1c1a1a995eeead6a184479" 729dependencies = [ 730 "magnus-macros", 731 "rb-sys", 732 "rb-sys-env", 733 "seq-macro", 734] 735 736[[package]] 737name = "magnus-macros" 738version = "0.6.0" 739source = "registry+https://github.com/rust-lang/crates.io-index" 740checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3" 741dependencies = [ 742 "proc-macro2", 743 "quote", 744 "syn 2.0.104", 745] 746 747[[package]] 748name = "matches" 749version = "0.1.10" 750source = "registry+https://github.com/rust-lang/crates.io-index" 751checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 752 753[[package]] 754name = "memchr" 755version = "2.7.5" 756source = "registry+https://github.com/rust-lang/crates.io-index" 757checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" 758 759[[package]] 760name = "memoffset" 761version = "0.9.1" 762source = "registry+https://github.com/rust-lang/crates.io-index" 763checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 764dependencies = [ 765 "autocfg", 766] 767 768[[package]] 769name = "memory_units" 770version = "0.4.0" 771source = "registry+https://github.com/rust-lang/crates.io-index" 772checksum = "8452105ba047068f40ff7093dd1d9da90898e63dd61736462e9cdda6a90ad3c3" 773 774[[package]] 775name = "minhtml" 776version = "0.16.4" 777dependencies = [ 778 "minify-html", 779 "rayon", 780 "structopt", 781] 782 783[[package]] 784name = "minicov" 785version = "0.3.7" 786source = "registry+https://github.com/rust-lang/crates.io-index" 787checksum = "f27fe9f1cc3c22e1687f9446c2083c4c5fc7f0bcf1c7a86bdbded14985895b4b" 788dependencies = [ 789 "cc", 790 "walkdir", 791] 792 793[[package]] 794name = "minify-html" 795version = "0.16.4" 796dependencies = [ 797 "ahash 0.8.12", 798 "aho-corasick 0.7.20", 799 "lightningcss", 800 "memchr", 801 "minify-html-common", 802 "minify-js", 803 "once_cell", 804] 805 806[[package]] 807name = "minify-html-bench" 808version = "0.0.1" 809dependencies = [ 810 "minify-html", 811 "serde", 812 "serde_json", 813] 814 815[[package]] 816name = "minify-html-common" 817version = "0.0.2" 818dependencies = [ 819 "ahash 0.8.12", 820 "aho-corasick 0.7.20", 821 "itertools 0.12.1", 822 "memchr", 823 "once_cell", 824 "serde", 825 "serde_json", 826] 827 828[[package]] 829name = "minify-html-java" 830version = "0.16.4" 831dependencies = [ 832 "jni", 833 "minify-html", 834] 835 836[[package]] 837name = "minify-html-nodejs" 838version = "0.16.4" 839dependencies = [ 840 "minify-html", 841 "neon", 842] 843 844[[package]] 845name = "minify-html-onepass" 846version = "0.16.4" 847dependencies = [ 848 "ahash 0.8.12", 849 "aho-corasick 0.7.20", 850 "lightningcss", 851 "memchr", 852 "minify-html-common", 853 "minify-js", 854 "once_cell", 855] 856 857[[package]] 858name = "minify-html-onepass-bench" 859version = "0.0.1" 860dependencies = [ 861 "minify-html-onepass", 862 "serde", 863 "serde_json", 864] 865 866[[package]] 867name = "minify-html-onepass-python" 868version = "0.16.4" 869dependencies = [ 870 "minify-html-onepass", 871 "pyo3", 872] 873 874[[package]] 875name = "minify-html-python" 876version = "0.16.4" 877dependencies = [ 878 "minify-html", 879 "pyo3", 880] 881 882[[package]] 883name = "minify-html-ruby" 884version = "0.16.4" 885dependencies = [ 886 "magnus", 887 "minify-html", 888] 889 890[[package]] 891name = "minify-js" 892version = "0.6.0" 893source = "registry+https://github.com/rust-lang/crates.io-index" 894checksum = "b1fa5546ee8bd66024113e506cabe4230e76635a094c06ea2051b66021dda92e" 895dependencies = [ 896 "aho-corasick 0.7.20", 897 "lazy_static", 898 "parse-js", 899] 900 901[[package]] 902name = "minimal-lexical" 903version = "0.2.1" 904source = "registry+https://github.com/rust-lang/crates.io-index" 905checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 906 907[[package]] 908name = "miniz_oxide" 909version = "0.8.9" 910source = "registry+https://github.com/rust-lang/crates.io-index" 911checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 912dependencies = [ 913 "adler2", 914] 915 916[[package]] 917name = "neon" 918version = "0.10.1" 919source = "registry+https://github.com/rust-lang/crates.io-index" 920checksum = "28e15415261d880aed48122e917a45e87bb82cf0260bb6db48bbab44b7464373" 921dependencies = [ 922 "neon-build", 923 "neon-macros", 924 "neon-runtime", 925 "semver", 926 "smallvec", 927] 928 929[[package]] 930name = "neon-build" 931version = "0.10.1" 932source = "registry+https://github.com/rust-lang/crates.io-index" 933checksum = "8bac98a702e71804af3dacfde41edde4a16076a7bbe889ae61e56e18c5b1c811" 934 935[[package]] 936name = "neon-macros" 937version = "0.10.1" 938source = "registry+https://github.com/rust-lang/crates.io-index" 939checksum = "b7288eac8b54af7913c60e0eb0e2a7683020dffa342ab3fd15e28f035ba897cf" 940dependencies = [ 941 "quote", 942 "syn 1.0.109", 943 "syn-mid", 944] 945 946[[package]] 947name = "neon-runtime" 948version = "0.10.1" 949source = "registry+https://github.com/rust-lang/crates.io-index" 950checksum = "4676720fa8bb32c64c3d9f49c47a47289239ec46b4bdb66d0913cc512cb0daca" 951dependencies = [ 952 "cfg-if 1.0.1", 953 "libloading 0.6.7", 954 "smallvec", 955] 956 957[[package]] 958name = "nom" 959version = "7.1.3" 960source = "registry+https://github.com/rust-lang/crates.io-index" 961checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 962dependencies = [ 963 "memchr", 964 "minimal-lexical", 965] 966 967[[package]] 968name = "object" 969version = "0.36.7" 970source = "registry+https://github.com/rust-lang/crates.io-index" 971checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" 972dependencies = [ 973 "memchr", 974] 975 976[[package]] 977name = "once_cell" 978version = "1.21.3" 979source = "registry+https://github.com/rust-lang/crates.io-index" 980checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 981 982[[package]] 983name = "outref" 984version = "0.1.0" 985source = "registry+https://github.com/rust-lang/crates.io-index" 986checksum = "7f222829ae9293e33a9f5e9f440c6760a3d450a64affe1846486b140db81c1f4" 987 988[[package]] 989name = "parcel_selectors" 990version = "0.28.2" 991source = "registry+https://github.com/rust-lang/crates.io-index" 992checksum = "54fd03f1ad26cb6b3ec1b7414fa78a3bd639e7dbb421b1a60513c96ce886a196" 993dependencies = [ 994 "bitflags 2.9.1", 995 "cssparser", 996 "log", 997 "phf", 998 "phf_codegen", 999 "precomputed-hash", 1000 "rustc-hash 2.1.1", 1001 "smallvec", 1002] 1003 1004[[package]] 1005name = "parcel_sourcemap" 1006version = "2.1.1" 1007source = "registry+https://github.com/rust-lang/crates.io-index" 1008checksum = "485b74d7218068b2b7c0e3ff12fbc61ae11d57cb5d8224f525bd304c6be05bbb" 1009dependencies = [ 1010 "base64-simd", 1011 "data-url", 1012 "rkyv", 1013 "serde", 1014 "serde_json", 1015 "vlq", 1016] 1017 1018[[package]] 1019name = "parking_lot_core" 1020version = "0.9.11" 1021source = "registry+https://github.com/rust-lang/crates.io-index" 1022checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5" 1023dependencies = [ 1024 "cfg-if 1.0.1", 1025 "libc", 1026 "redox_syscall", 1027 "smallvec", 1028 "windows-targets 0.52.6", 1029] 1030 1031[[package]] 1032name = "parse-js" 1033version = "0.20.1" 1034source = "registry+https://github.com/rust-lang/crates.io-index" 1035checksum = "2742b5e32dcb5930447ed9f9e401a7dfd883867fc079c4fac44ae8ba3593710e" 1036dependencies = [ 1037 "aho-corasick 0.7.20", 1038 "bumpalo", 1039 "hashbrown 0.13.2", 1040 "lazy_static", 1041 "memchr", 1042] 1043 1044[[package]] 1045name = "paste" 1046version = "1.0.15" 1047source = "registry+https://github.com/rust-lang/crates.io-index" 1048checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 1049 1050[[package]] 1051name = "pathdiff" 1052version = "0.2.3" 1053source = "registry+https://github.com/rust-lang/crates.io-index" 1054checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" 1055 1056[[package]] 1057name = "phf" 1058version = "0.11.3" 1059source = "registry+https://github.com/rust-lang/crates.io-index" 1060checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" 1061dependencies = [ 1062 "phf_macros", 1063 "phf_shared", 1064] 1065 1066[[package]] 1067name = "phf_codegen" 1068version = "0.11.3" 1069source = "registry+https://github.com/rust-lang/crates.io-index" 1070checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" 1071dependencies = [ 1072 "phf_generator", 1073 "phf_shared", 1074] 1075 1076[[package]] 1077name = "phf_generator" 1078version = "0.11.3" 1079source = "registry+https://github.com/rust-lang/crates.io-index" 1080checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" 1081dependencies = [ 1082 "phf_shared", 1083 "rand", 1084] 1085 1086[[package]] 1087name = "phf_macros" 1088version = "0.11.3" 1089source = "registry+https://github.com/rust-lang/crates.io-index" 1090checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" 1091dependencies = [ 1092 "phf_generator", 1093 "phf_shared", 1094 "proc-macro2", 1095 "quote", 1096 "syn 2.0.104", 1097] 1098 1099[[package]] 1100name = "phf_shared" 1101version = "0.11.3" 1102source = "registry+https://github.com/rust-lang/crates.io-index" 1103checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" 1104dependencies = [ 1105 "siphasher", 1106] 1107 1108[[package]] 1109name = "portable-atomic" 1110version = "1.11.1" 1111source = "registry+https://github.com/rust-lang/crates.io-index" 1112checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" 1113 1114[[package]] 1115name = "precomputed-hash" 1116version = "0.1.1" 1117source = "registry+https://github.com/rust-lang/crates.io-index" 1118checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 1119 1120[[package]] 1121name = "proc-macro-error" 1122version = "1.0.4" 1123source = "registry+https://github.com/rust-lang/crates.io-index" 1124checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 1125dependencies = [ 1126 "proc-macro-error-attr", 1127 "proc-macro2", 1128 "quote", 1129 "syn 1.0.109", 1130 "version_check", 1131] 1132 1133[[package]] 1134name = "proc-macro-error-attr" 1135version = "1.0.4" 1136source = "registry+https://github.com/rust-lang/crates.io-index" 1137checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 1138dependencies = [ 1139 "proc-macro2", 1140 "quote", 1141 "version_check", 1142] 1143 1144[[package]] 1145name = "proc-macro2" 1146version = "1.0.95" 1147source = "registry+https://github.com/rust-lang/crates.io-index" 1148checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" 1149dependencies = [ 1150 "unicode-ident", 1151] 1152 1153[[package]] 1154name = "ptr_meta" 1155version = "0.1.4" 1156source = "registry+https://github.com/rust-lang/crates.io-index" 1157checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1" 1158dependencies = [ 1159 "ptr_meta_derive", 1160] 1161 1162[[package]] 1163name = "ptr_meta_derive" 1164version = "0.1.4" 1165source = "registry+https://github.com/rust-lang/crates.io-index" 1166checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac" 1167dependencies = [ 1168 "proc-macro2", 1169 "quote", 1170 "syn 1.0.109", 1171] 1172 1173[[package]] 1174name = "pyo3" 1175version = "0.24.2" 1176source = "registry+https://github.com/rust-lang/crates.io-index" 1177checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219" 1178dependencies = [ 1179 "cfg-if 1.0.1", 1180 "indoc", 1181 "libc", 1182 "memoffset", 1183 "once_cell", 1184 "portable-atomic", 1185 "pyo3-build-config", 1186 "pyo3-ffi", 1187 "pyo3-macros", 1188 "unindent", 1189] 1190 1191[[package]] 1192name = "pyo3-build-config" 1193version = "0.24.2" 1194source = "registry+https://github.com/rust-lang/crates.io-index" 1195checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999" 1196dependencies = [ 1197 "once_cell", 1198 "python3-dll-a", 1199 "target-lexicon", 1200] 1201 1202[[package]] 1203name = "pyo3-ffi" 1204version = "0.24.2" 1205source = "registry+https://github.com/rust-lang/crates.io-index" 1206checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33" 1207dependencies = [ 1208 "libc", 1209 "pyo3-build-config", 1210] 1211 1212[[package]] 1213name = "pyo3-macros" 1214version = "0.24.2" 1215source = "registry+https://github.com/rust-lang/crates.io-index" 1216checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9" 1217dependencies = [ 1218 "proc-macro2", 1219 "pyo3-macros-backend", 1220 "quote", 1221 "syn 2.0.104", 1222] 1223 1224[[package]] 1225name = "pyo3-macros-backend" 1226version = "0.24.2" 1227source = "registry+https://github.com/rust-lang/crates.io-index" 1228checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a" 1229dependencies = [ 1230 "heck 0.5.0", 1231 "proc-macro2", 1232 "pyo3-build-config", 1233 "quote", 1234 "syn 2.0.104", 1235] 1236 1237[[package]] 1238name = "python3-dll-a" 1239version = "0.2.14" 1240source = "registry+https://github.com/rust-lang/crates.io-index" 1241checksum = "d381ef313ae70b4da5f95f8a4de773c6aa5cd28f73adec4b4a31df70b66780d8" 1242dependencies = [ 1243 "cc", 1244] 1245 1246[[package]] 1247name = "quote" 1248version = "1.0.40" 1249source = "registry+https://github.com/rust-lang/crates.io-index" 1250checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" 1251dependencies = [ 1252 "proc-macro2", 1253] 1254 1255[[package]] 1256name = "r-efi" 1257version = "5.3.0" 1258source = "registry+https://github.com/rust-lang/crates.io-index" 1259checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 1260 1261[[package]] 1262name = "radium" 1263version = "0.7.0" 1264source = "registry+https://github.com/rust-lang/crates.io-index" 1265checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 1266 1267[[package]] 1268name = "rand" 1269version = "0.8.5" 1270source = "registry+https://github.com/rust-lang/crates.io-index" 1271checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1272dependencies = [ 1273 "rand_core", 1274] 1275 1276[[package]] 1277name = "rand_core" 1278version = "0.6.4" 1279source = "registry+https://github.com/rust-lang/crates.io-index" 1280checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1281 1282[[package]] 1283name = "rayon" 1284version = "1.10.0" 1285source = "registry+https://github.com/rust-lang/crates.io-index" 1286checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 1287dependencies = [ 1288 "either", 1289 "rayon-core", 1290] 1291 1292[[package]] 1293name = "rayon-core" 1294version = "1.12.1" 1295source = "registry+https://github.com/rust-lang/crates.io-index" 1296checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 1297dependencies = [ 1298 "crossbeam-deque", 1299 "crossbeam-utils", 1300] 1301 1302[[package]] 1303name = "rb-sys" 1304version = "0.9.116" 1305source = "registry+https://github.com/rust-lang/crates.io-index" 1306checksum = "7059846f68396df83155779c75336ca24567741cb95256e6308c9fcc370e8dad" 1307dependencies = [ 1308 "rb-sys-build", 1309] 1310 1311[[package]] 1312name = "rb-sys-build" 1313version = "0.9.116" 1314source = "registry+https://github.com/rust-lang/crates.io-index" 1315checksum = "ac217510df41b9ffc041573e68d7a02aaff770c49943c7494441c4b224b0ecd0" 1316dependencies = [ 1317 "bindgen", 1318 "lazy_static", 1319 "proc-macro2", 1320 "quote", 1321 "regex", 1322 "shell-words", 1323 "syn 2.0.104", 1324] 1325 1326[[package]] 1327name = "rb-sys-env" 1328version = "0.1.2" 1329source = "registry+https://github.com/rust-lang/crates.io-index" 1330checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb" 1331 1332[[package]] 1333name = "redox_syscall" 1334version = "0.5.13" 1335source = "registry+https://github.com/rust-lang/crates.io-index" 1336checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6" 1337dependencies = [ 1338 "bitflags 2.9.1", 1339] 1340 1341[[package]] 1342name = "regex" 1343version = "1.11.1" 1344source = "registry+https://github.com/rust-lang/crates.io-index" 1345checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" 1346dependencies = [ 1347 "aho-corasick 1.1.3", 1348 "memchr", 1349 "regex-automata", 1350 "regex-syntax", 1351] 1352 1353[[package]] 1354name = "regex-automata" 1355version = "0.4.9" 1356source = "registry+https://github.com/rust-lang/crates.io-index" 1357checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" 1358dependencies = [ 1359 "aho-corasick 1.1.3", 1360 "memchr", 1361 "regex-syntax", 1362] 1363 1364[[package]] 1365name = "regex-syntax" 1366version = "0.8.5" 1367source = "registry+https://github.com/rust-lang/crates.io-index" 1368checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" 1369 1370[[package]] 1371name = "rend" 1372version = "0.4.2" 1373source = "registry+https://github.com/rust-lang/crates.io-index" 1374checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" 1375dependencies = [ 1376 "bytecheck", 1377] 1378 1379[[package]] 1380name = "rkyv" 1381version = "0.7.45" 1382source = "registry+https://github.com/rust-lang/crates.io-index" 1383checksum = "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b" 1384dependencies = [ 1385 "bitvec", 1386 "bytecheck", 1387 "bytes", 1388 "hashbrown 0.12.3", 1389 "ptr_meta", 1390 "rend", 1391 "rkyv_derive", 1392 "seahash", 1393 "tinyvec", 1394 "uuid", 1395] 1396 1397[[package]] 1398name = "rkyv_derive" 1399version = "0.7.45" 1400source = "registry+https://github.com/rust-lang/crates.io-index" 1401checksum = "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0" 1402dependencies = [ 1403 "proc-macro2", 1404 "quote", 1405 "syn 1.0.109", 1406] 1407 1408[[package]] 1409name = "rustc-demangle" 1410version = "0.1.25" 1411source = "registry+https://github.com/rust-lang/crates.io-index" 1412checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f" 1413 1414[[package]] 1415name = "rustc-hash" 1416version = "1.1.0" 1417source = "registry+https://github.com/rust-lang/crates.io-index" 1418checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 1419 1420[[package]] 1421name = "rustc-hash" 1422version = "2.1.1" 1423source = "registry+https://github.com/rust-lang/crates.io-index" 1424checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" 1425 1426[[package]] 1427name = "rustversion" 1428version = "1.0.21" 1429source = "registry+https://github.com/rust-lang/crates.io-index" 1430checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d" 1431 1432[[package]] 1433name = "ryu" 1434version = "1.0.20" 1435source = "registry+https://github.com/rust-lang/crates.io-index" 1436checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 1437 1438[[package]] 1439name = "same-file" 1440version = "1.0.6" 1441source = "registry+https://github.com/rust-lang/crates.io-index" 1442checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 1443dependencies = [ 1444 "winapi-util", 1445] 1446 1447[[package]] 1448name = "scopeguard" 1449version = "1.2.0" 1450source = "registry+https://github.com/rust-lang/crates.io-index" 1451checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1452 1453[[package]] 1454name = "seahash" 1455version = "4.1.0" 1456source = "registry+https://github.com/rust-lang/crates.io-index" 1457checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" 1458 1459[[package]] 1460name = "semver" 1461version = "0.9.0" 1462source = "registry+https://github.com/rust-lang/crates.io-index" 1463checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" 1464dependencies = [ 1465 "semver-parser", 1466] 1467 1468[[package]] 1469name = "semver-parser" 1470version = "0.7.0" 1471source = "registry+https://github.com/rust-lang/crates.io-index" 1472checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" 1473 1474[[package]] 1475name = "seq-macro" 1476version = "0.3.6" 1477source = "registry+https://github.com/rust-lang/crates.io-index" 1478checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc" 1479 1480[[package]] 1481name = "serde" 1482version = "1.0.219" 1483source = "registry+https://github.com/rust-lang/crates.io-index" 1484checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" 1485dependencies = [ 1486 "serde_derive", 1487] 1488 1489[[package]] 1490name = "serde_derive" 1491version = "1.0.219" 1492source = "registry+https://github.com/rust-lang/crates.io-index" 1493checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" 1494dependencies = [ 1495 "proc-macro2", 1496 "quote", 1497 "syn 2.0.104", 1498] 1499 1500[[package]] 1501name = "serde_json" 1502version = "1.0.140" 1503source = "registry+https://github.com/rust-lang/crates.io-index" 1504checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" 1505dependencies = [ 1506 "itoa", 1507 "memchr", 1508 "ryu", 1509 "serde", 1510] 1511 1512[[package]] 1513name = "shell-words" 1514version = "1.1.0" 1515source = "registry+https://github.com/rust-lang/crates.io-index" 1516checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde" 1517 1518[[package]] 1519name = "shlex" 1520version = "1.3.0" 1521source = "registry+https://github.com/rust-lang/crates.io-index" 1522checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 1523 1524[[package]] 1525name = "simd-abstraction" 1526version = "0.7.1" 1527source = "registry+https://github.com/rust-lang/crates.io-index" 1528checksum = "9cadb29c57caadc51ff8346233b5cec1d240b68ce55cf1afc764818791876987" 1529dependencies = [ 1530 "outref", 1531] 1532 1533[[package]] 1534name = "simdutf8" 1535version = "0.1.5" 1536source = "registry+https://github.com/rust-lang/crates.io-index" 1537checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" 1538 1539[[package]] 1540name = "siphasher" 1541version = "1.0.1" 1542source = "registry+https://github.com/rust-lang/crates.io-index" 1543checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" 1544 1545[[package]] 1546name = "smallvec" 1547version = "1.15.1" 1548source = "registry+https://github.com/rust-lang/crates.io-index" 1549checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 1550 1551[[package]] 1552name = "strsim" 1553version = "0.8.0" 1554source = "registry+https://github.com/rust-lang/crates.io-index" 1555checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 1556 1557[[package]] 1558name = "structopt" 1559version = "0.3.26" 1560source = "registry+https://github.com/rust-lang/crates.io-index" 1561checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10" 1562dependencies = [ 1563 "clap", 1564 "lazy_static", 1565 "structopt-derive", 1566] 1567 1568[[package]] 1569name = "structopt-derive" 1570version = "0.4.18" 1571source = "registry+https://github.com/rust-lang/crates.io-index" 1572checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0" 1573dependencies = [ 1574 "heck 0.3.3", 1575 "proc-macro-error", 1576 "proc-macro2", 1577 "quote", 1578 "syn 1.0.109", 1579] 1580 1581[[package]] 1582name = "syn" 1583version = "1.0.109" 1584source = "registry+https://github.com/rust-lang/crates.io-index" 1585checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 1586dependencies = [ 1587 "proc-macro2", 1588 "quote", 1589 "unicode-ident", 1590] 1591 1592[[package]] 1593name = "syn" 1594version = "2.0.104" 1595source = "registry+https://github.com/rust-lang/crates.io-index" 1596checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40" 1597dependencies = [ 1598 "proc-macro2", 1599 "quote", 1600 "unicode-ident", 1601] 1602 1603[[package]] 1604name = "syn-mid" 1605version = "0.5.4" 1606source = "registry+https://github.com/rust-lang/crates.io-index" 1607checksum = "fea305d57546cc8cd04feb14b62ec84bf17f50e3f7b12560d7bfa9265f39d9ed" 1608dependencies = [ 1609 "proc-macro2", 1610 "quote", 1611 "syn 1.0.109", 1612] 1613 1614[[package]] 1615name = "tap" 1616version = "1.0.1" 1617source = "registry+https://github.com/rust-lang/crates.io-index" 1618checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 1619 1620[[package]] 1621name = "target-lexicon" 1622version = "0.13.2" 1623source = "registry+https://github.com/rust-lang/crates.io-index" 1624checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a" 1625 1626[[package]] 1627name = "textwrap" 1628version = "0.11.0" 1629source = "registry+https://github.com/rust-lang/crates.io-index" 1630checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 1631dependencies = [ 1632 "unicode-width", 1633] 1634 1635[[package]] 1636name = "tinyvec" 1637version = "1.9.0" 1638source = "registry+https://github.com/rust-lang/crates.io-index" 1639checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71" 1640dependencies = [ 1641 "tinyvec_macros", 1642] 1643 1644[[package]] 1645name = "tinyvec_macros" 1646version = "0.1.1" 1647source = "registry+https://github.com/rust-lang/crates.io-index" 1648checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 1649 1650[[package]] 1651name = "unicode-ident" 1652version = "1.0.18" 1653source = "registry+https://github.com/rust-lang/crates.io-index" 1654checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" 1655 1656[[package]] 1657name = "unicode-segmentation" 1658version = "1.12.0" 1659source = "registry+https://github.com/rust-lang/crates.io-index" 1660checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" 1661 1662[[package]] 1663name = "unicode-width" 1664version = "0.1.14" 1665source = "registry+https://github.com/rust-lang/crates.io-index" 1666checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" 1667 1668[[package]] 1669name = "unindent" 1670version = "0.2.4" 1671source = "registry+https://github.com/rust-lang/crates.io-index" 1672checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3" 1673 1674[[package]] 1675name = "unreachable" 1676version = "1.0.0" 1677source = "registry+https://github.com/rust-lang/crates.io-index" 1678checksum = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56" 1679dependencies = [ 1680 "void", 1681] 1682 1683[[package]] 1684name = "uuid" 1685version = "1.17.0" 1686source = "registry+https://github.com/rust-lang/crates.io-index" 1687checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d" 1688dependencies = [ 1689 "js-sys", 1690 "wasm-bindgen", 1691] 1692 1693[[package]] 1694name = "vec_map" 1695version = "0.8.2" 1696source = "registry+https://github.com/rust-lang/crates.io-index" 1697checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 1698 1699[[package]] 1700name = "version_check" 1701version = "0.9.5" 1702source = "registry+https://github.com/rust-lang/crates.io-index" 1703checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 1704 1705[[package]] 1706name = "vlq" 1707version = "0.5.1" 1708source = "registry+https://github.com/rust-lang/crates.io-index" 1709checksum = "65dd7eed29412da847b0f78bcec0ac98588165988a8cfe41d4ea1d429f8ccfff" 1710 1711[[package]] 1712name = "void" 1713version = "1.0.2" 1714source = "registry+https://github.com/rust-lang/crates.io-index" 1715checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" 1716 1717[[package]] 1718name = "walkdir" 1719version = "2.5.0" 1720source = "registry+https://github.com/rust-lang/crates.io-index" 1721checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 1722dependencies = [ 1723 "same-file", 1724 "winapi-util", 1725] 1726 1727[[package]] 1728name = "wasi" 1729version = "0.11.1+wasi-snapshot-preview1" 1730source = "registry+https://github.com/rust-lang/crates.io-index" 1731checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 1732 1733[[package]] 1734name = "wasi" 1735version = "0.14.2+wasi-0.2.4" 1736source = "registry+https://github.com/rust-lang/crates.io-index" 1737checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" 1738dependencies = [ 1739 "wit-bindgen-rt", 1740] 1741 1742[[package]] 1743name = "wasm-bindgen" 1744version = "0.2.100" 1745source = "registry+https://github.com/rust-lang/crates.io-index" 1746checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" 1747dependencies = [ 1748 "cfg-if 1.0.1", 1749 "once_cell", 1750 "rustversion", 1751 "wasm-bindgen-macro", 1752] 1753 1754[[package]] 1755name = "wasm-bindgen-backend" 1756version = "0.2.100" 1757source = "registry+https://github.com/rust-lang/crates.io-index" 1758checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" 1759dependencies = [ 1760 "bumpalo", 1761 "log", 1762 "proc-macro2", 1763 "quote", 1764 "syn 2.0.104", 1765 "wasm-bindgen-shared", 1766] 1767 1768[[package]] 1769name = "wasm-bindgen-futures" 1770version = "0.4.50" 1771source = "registry+https://github.com/rust-lang/crates.io-index" 1772checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" 1773dependencies = [ 1774 "cfg-if 1.0.1", 1775 "js-sys", 1776 "once_cell", 1777 "wasm-bindgen", 1778 "web-sys", 1779] 1780 1781[[package]] 1782name = "wasm-bindgen-macro" 1783version = "0.2.100" 1784source = "registry+https://github.com/rust-lang/crates.io-index" 1785checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" 1786dependencies = [ 1787 "quote", 1788 "wasm-bindgen-macro-support", 1789] 1790 1791[[package]] 1792name = "wasm-bindgen-macro-support" 1793version = "0.2.100" 1794source = "registry+https://github.com/rust-lang/crates.io-index" 1795checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" 1796dependencies = [ 1797 "proc-macro2", 1798 "quote", 1799 "syn 2.0.104", 1800 "wasm-bindgen-backend", 1801 "wasm-bindgen-shared", 1802] 1803 1804[[package]] 1805name = "wasm-bindgen-shared" 1806version = "0.2.100" 1807source = "registry+https://github.com/rust-lang/crates.io-index" 1808checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" 1809dependencies = [ 1810 "unicode-ident", 1811] 1812 1813[[package]] 1814name = "wasm-bindgen-test" 1815version = "0.3.50" 1816source = "registry+https://github.com/rust-lang/crates.io-index" 1817checksum = "66c8d5e33ca3b6d9fa3b4676d774c5778031d27a578c2b007f905acf816152c3" 1818dependencies = [ 1819 "js-sys", 1820 "minicov", 1821 "wasm-bindgen", 1822 "wasm-bindgen-futures", 1823 "wasm-bindgen-test-macro", 1824] 1825 1826[[package]] 1827name = "wasm-bindgen-test-macro" 1828version = "0.3.50" 1829source = "registry+https://github.com/rust-lang/crates.io-index" 1830checksum = "17d5042cc5fa009658f9a7333ef24291b1291a25b6382dd68862a7f3b969f69b" 1831dependencies = [ 1832 "proc-macro2", 1833 "quote", 1834 "syn 2.0.104", 1835] 1836 1837[[package]] 1838name = "web-sys" 1839version = "0.3.77" 1840source = "registry+https://github.com/rust-lang/crates.io-index" 1841checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" 1842dependencies = [ 1843 "js-sys", 1844 "wasm-bindgen", 1845] 1846 1847[[package]] 1848name = "wee_alloc" 1849version = "0.4.5" 1850source = "registry+https://github.com/rust-lang/crates.io-index" 1851checksum = "dbb3b5a6b2bb17cb6ad44a2e68a43e8d2722c997da10e928665c72ec6c0a0b8e" 1852dependencies = [ 1853 "cfg-if 0.1.10", 1854 "libc", 1855 "memory_units", 1856 "winapi", 1857] 1858 1859[[package]] 1860name = "winapi" 1861version = "0.3.9" 1862source = "registry+https://github.com/rust-lang/crates.io-index" 1863checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1864dependencies = [ 1865 "winapi-i686-pc-windows-gnu", 1866 "winapi-x86_64-pc-windows-gnu", 1867] 1868 1869[[package]] 1870name = "winapi-i686-pc-windows-gnu" 1871version = "0.4.0" 1872source = "registry+https://github.com/rust-lang/crates.io-index" 1873checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1874 1875[[package]] 1876name = "winapi-util" 1877version = "0.1.9" 1878source = "registry+https://github.com/rust-lang/crates.io-index" 1879checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" 1880dependencies = [ 1881 "windows-sys", 1882] 1883 1884[[package]] 1885name = "winapi-x86_64-pc-windows-gnu" 1886version = "0.4.0" 1887source = "registry+https://github.com/rust-lang/crates.io-index" 1888checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1889 1890[[package]] 1891name = "windows-sys" 1892version = "0.59.0" 1893source = "registry+https://github.com/rust-lang/crates.io-index" 1894checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 1895dependencies = [ 1896 "windows-targets 0.52.6", 1897] 1898 1899[[package]] 1900name = "windows-targets" 1901version = "0.52.6" 1902source = "registry+https://github.com/rust-lang/crates.io-index" 1903checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 1904dependencies = [ 1905 "windows_aarch64_gnullvm 0.52.6", 1906 "windows_aarch64_msvc 0.52.6", 1907 "windows_i686_gnu 0.52.6", 1908 "windows_i686_gnullvm 0.52.6", 1909 "windows_i686_msvc 0.52.6", 1910 "windows_x86_64_gnu 0.52.6", 1911 "windows_x86_64_gnullvm 0.52.6", 1912 "windows_x86_64_msvc 0.52.6", 1913] 1914 1915[[package]] 1916name = "windows-targets" 1917version = "0.53.2" 1918source = "registry+https://github.com/rust-lang/crates.io-index" 1919checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef" 1920dependencies = [ 1921 "windows_aarch64_gnullvm 0.53.0", 1922 "windows_aarch64_msvc 0.53.0", 1923 "windows_i686_gnu 0.53.0", 1924 "windows_i686_gnullvm 0.53.0", 1925 "windows_i686_msvc 0.53.0", 1926 "windows_x86_64_gnu 0.53.0", 1927 "windows_x86_64_gnullvm 0.53.0", 1928 "windows_x86_64_msvc 0.53.0", 1929] 1930 1931[[package]] 1932name = "windows_aarch64_gnullvm" 1933version = "0.52.6" 1934source = "registry+https://github.com/rust-lang/crates.io-index" 1935checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 1936 1937[[package]] 1938name = "windows_aarch64_gnullvm" 1939version = "0.53.0" 1940source = "registry+https://github.com/rust-lang/crates.io-index" 1941checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" 1942 1943[[package]] 1944name = "windows_aarch64_msvc" 1945version = "0.52.6" 1946source = "registry+https://github.com/rust-lang/crates.io-index" 1947checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 1948 1949[[package]] 1950name = "windows_aarch64_msvc" 1951version = "0.53.0" 1952source = "registry+https://github.com/rust-lang/crates.io-index" 1953checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" 1954 1955[[package]] 1956name = "windows_i686_gnu" 1957version = "0.52.6" 1958source = "registry+https://github.com/rust-lang/crates.io-index" 1959checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 1960 1961[[package]] 1962name = "windows_i686_gnu" 1963version = "0.53.0" 1964source = "registry+https://github.com/rust-lang/crates.io-index" 1965checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" 1966 1967[[package]] 1968name = "windows_i686_gnullvm" 1969version = "0.52.6" 1970source = "registry+https://github.com/rust-lang/crates.io-index" 1971checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 1972 1973[[package]] 1974name = "windows_i686_gnullvm" 1975version = "0.53.0" 1976source = "registry+https://github.com/rust-lang/crates.io-index" 1977checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" 1978 1979[[package]] 1980name = "windows_i686_msvc" 1981version = "0.52.6" 1982source = "registry+https://github.com/rust-lang/crates.io-index" 1983checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 1984 1985[[package]] 1986name = "windows_i686_msvc" 1987version = "0.53.0" 1988source = "registry+https://github.com/rust-lang/crates.io-index" 1989checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" 1990 1991[[package]] 1992name = "windows_x86_64_gnu" 1993version = "0.52.6" 1994source = "registry+https://github.com/rust-lang/crates.io-index" 1995checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 1996 1997[[package]] 1998name = "windows_x86_64_gnu" 1999version = "0.53.0" 2000source = "registry+https://github.com/rust-lang/crates.io-index" 2001checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" 2002 2003[[package]] 2004name = "windows_x86_64_gnullvm" 2005version = "0.52.6" 2006source = "registry+https://github.com/rust-lang/crates.io-index" 2007checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 2008 2009[[package]] 2010name = "windows_x86_64_gnullvm" 2011version = "0.53.0" 2012source = "registry+https://github.com/rust-lang/crates.io-index" 2013checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" 2014 2015[[package]] 2016name = "windows_x86_64_msvc" 2017version = "0.52.6" 2018source = "registry+https://github.com/rust-lang/crates.io-index" 2019checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 2020 2021[[package]] 2022name = "windows_x86_64_msvc" 2023version = "0.53.0" 2024source = "registry+https://github.com/rust-lang/crates.io-index" 2025checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" 2026 2027[[package]] 2028name = "wit-bindgen-rt" 2029version = "0.39.0" 2030source = "registry+https://github.com/rust-lang/crates.io-index" 2031checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" 2032dependencies = [ 2033 "bitflags 2.9.1", 2034] 2035 2036[[package]] 2037name = "wyz" 2038version = "0.5.1" 2039source = "registry+https://github.com/rust-lang/crates.io-index" 2040checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 2041dependencies = [ 2042 "tap", 2043] 2044 2045[[package]] 2046name = "zerocopy" 2047version = "0.8.26" 2048source = "registry+https://github.com/rust-lang/crates.io-index" 2049checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f" 2050dependencies = [ 2051 "zerocopy-derive", 2052] 2053 2054[[package]] 2055name = "zerocopy-derive" 2056version = "0.8.26" 2057source = "registry+https://github.com/rust-lang/crates.io-index" 2058checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181" 2059dependencies = [ 2060 "proc-macro2", 2061 "quote", 2062 "syn 2.0.104", 2063]