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.19.0" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97" 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 = "anyhow" 22version = "1.0.68" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61" 25dependencies = [ 26 "backtrace", 27] 28 29[[package]] 30name = "autocfg" 31version = "1.1.0" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 34 35[[package]] 36name = "backtrace" 37version = "0.3.67" 38source = "registry+https://github.com/rust-lang/crates.io-index" 39checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca" 40dependencies = [ 41 "addr2line", 42 "cc", 43 "cfg-if", 44 "libc", 45 "miniz_oxide", 46 "object", 47 "rustc-demangle", 48] 49 50[[package]] 51name = "base64" 52version = "0.21.0" 53source = "registry+https://github.com/rust-lang/crates.io-index" 54checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" 55 56[[package]] 57name = "bitflags" 58version = "1.3.2" 59source = "registry+https://github.com/rust-lang/crates.io-index" 60checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 61 62[[package]] 63name = "cc" 64version = "1.0.78" 65source = "registry+https://github.com/rust-lang/crates.io-index" 66checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d" 67 68[[package]] 69name = "cfg-if" 70version = "1.0.0" 71source = "registry+https://github.com/rust-lang/crates.io-index" 72checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 73 74[[package]] 75name = "chrono" 76version = "0.4.38" 77source = "registry+https://github.com/rust-lang/crates.io-index" 78checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" 79dependencies = [ 80 "num-traits", 81] 82 83[[package]] 84name = "ciborium" 85version = "0.2.1" 86source = "registry+https://github.com/rust-lang/crates.io-index" 87checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" 88dependencies = [ 89 "ciborium-io", 90 "ciborium-ll", 91 "serde", 92] 93 94[[package]] 95name = "ciborium-io" 96version = "0.2.1" 97source = "registry+https://github.com/rust-lang/crates.io-index" 98checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" 99 100[[package]] 101name = "ciborium-ll" 102version = "0.2.1" 103source = "registry+https://github.com/rust-lang/crates.io-index" 104checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" 105dependencies = [ 106 "ciborium-io", 107 "half", 108] 109 110[[package]] 111name = "clap" 112version = "4.1.1" 113source = "registry+https://github.com/rust-lang/crates.io-index" 114checksum = "4ec7a4128863c188deefe750ac1d1dfe66c236909f845af04beed823638dc1b2" 115dependencies = [ 116 "bitflags", 117 "clap_derive", 118 "clap_lex", 119 "is-terminal", 120 "once_cell", 121 "strsim", 122 "termcolor", 123] 124 125[[package]] 126name = "clap_derive" 127version = "4.1.0" 128source = "registry+https://github.com/rust-lang/crates.io-index" 129checksum = "684a277d672e91966334af371f1a7b5833f9aa00b07c84e92fbce95e00208ce8" 130dependencies = [ 131 "heck", 132 "proc-macro-error", 133 "proc-macro2", 134 "quote", 135 "syn", 136] 137 138[[package]] 139name = "clap_lex" 140version = "0.3.1" 141source = "registry+https://github.com/rust-lang/crates.io-index" 142checksum = "783fe232adfca04f90f56201b26d79682d4cd2625e0bc7290b95123afe558ade" 143dependencies = [ 144 "os_str_bytes", 145] 146 147[[package]] 148name = "coset" 149version = "0.3.5" 150source = "registry+https://github.com/rust-lang/crates.io-index" 151checksum = "99c214bbc5c8b4518856d79cae4d323feaa881ecf3e31b5af6572bb5313c11d5" 152dependencies = [ 153 "ciborium", 154 "ciborium-io", 155] 156 157[[package]] 158name = "either" 159version = "1.8.1" 160source = "registry+https://github.com/rust-lang/crates.io-index" 161checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 162 163[[package]] 164name = "errno" 165version = "0.2.8" 166source = "registry+https://github.com/rust-lang/crates.io-index" 167checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 168dependencies = [ 169 "errno-dragonfly", 170 "libc", 171 "winapi", 172] 173 174[[package]] 175name = "errno-dragonfly" 176version = "0.1.2" 177source = "registry+https://github.com/rust-lang/crates.io-index" 178checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 179dependencies = [ 180 "cc", 181 "libc", 182] 183 184[[package]] 185name = "foreign-types" 186version = "0.3.2" 187source = "registry+https://github.com/rust-lang/crates.io-index" 188checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 189dependencies = [ 190 "foreign-types-shared", 191] 192 193[[package]] 194name = "foreign-types-shared" 195version = "0.1.1" 196source = "registry+https://github.com/rust-lang/crates.io-index" 197checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 198 199[[package]] 200name = "gimli" 201version = "0.27.2" 202source = "registry+https://github.com/rust-lang/crates.io-index" 203checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4" 204 205[[package]] 206name = "half" 207version = "1.8.2" 208source = "registry+https://github.com/rust-lang/crates.io-index" 209checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" 210 211[[package]] 212name = "heck" 213version = "0.4.0" 214source = "registry+https://github.com/rust-lang/crates.io-index" 215checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" 216 217[[package]] 218name = "hermit-abi" 219version = "0.2.6" 220source = "registry+https://github.com/rust-lang/crates.io-index" 221checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 222dependencies = [ 223 "libc", 224] 225 226[[package]] 227name = "hex" 228version = "0.4.3" 229source = "registry+https://github.com/rust-lang/crates.io-index" 230checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 231 232[[package]] 233name = "hwtrust" 234version = "0.1.0" 235dependencies = [ 236 "anyhow", 237 "base64", 238 "chrono", 239 "ciborium", 240 "clap", 241 "coset", 242 "hex", 243 "itertools", 244 "openssl", 245 "serde_json", 246 "thiserror", 247] 248 249[[package]] 250name = "io-lifetimes" 251version = "1.0.4" 252source = "registry+https://github.com/rust-lang/crates.io-index" 253checksum = "e7d6c6f8c91b4b9ed43484ad1a938e393caf35960fce7f82a040497207bd8e9e" 254dependencies = [ 255 "libc", 256 "windows-sys", 257] 258 259[[package]] 260name = "is-terminal" 261version = "0.4.2" 262source = "registry+https://github.com/rust-lang/crates.io-index" 263checksum = "28dfb6c8100ccc63462345b67d1bbc3679177c75ee4bf59bf29c8b1d110b8189" 264dependencies = [ 265 "hermit-abi", 266 "io-lifetimes", 267 "rustix", 268 "windows-sys", 269] 270 271[[package]] 272name = "itertools" 273version = "0.10.5" 274source = "registry+https://github.com/rust-lang/crates.io-index" 275checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 276dependencies = [ 277 "either", 278] 279 280[[package]] 281name = "itoa" 282version = "1.0.6" 283source = "registry+https://github.com/rust-lang/crates.io-index" 284checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 285 286[[package]] 287name = "libc" 288version = "0.2.139" 289source = "registry+https://github.com/rust-lang/crates.io-index" 290checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" 291 292[[package]] 293name = "linux-raw-sys" 294version = "0.1.4" 295source = "registry+https://github.com/rust-lang/crates.io-index" 296checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" 297 298[[package]] 299name = "memchr" 300version = "2.5.0" 301source = "registry+https://github.com/rust-lang/crates.io-index" 302checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 303 304[[package]] 305name = "miniz_oxide" 306version = "0.6.2" 307source = "registry+https://github.com/rust-lang/crates.io-index" 308checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 309dependencies = [ 310 "adler", 311] 312 313[[package]] 314name = "num-traits" 315version = "0.2.19" 316source = "registry+https://github.com/rust-lang/crates.io-index" 317checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 318dependencies = [ 319 "autocfg", 320] 321 322[[package]] 323name = "object" 324version = "0.30.3" 325source = "registry+https://github.com/rust-lang/crates.io-index" 326checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439" 327dependencies = [ 328 "memchr", 329] 330 331[[package]] 332name = "once_cell" 333version = "1.17.0" 334source = "registry+https://github.com/rust-lang/crates.io-index" 335checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66" 336 337[[package]] 338name = "openssl" 339version = "0.10.45" 340source = "registry+https://github.com/rust-lang/crates.io-index" 341checksum = "b102428fd03bc5edf97f62620f7298614c45cedf287c271e7ed450bbaf83f2e1" 342dependencies = [ 343 "bitflags", 344 "cfg-if", 345 "foreign-types", 346 "libc", 347 "once_cell", 348 "openssl-macros", 349 "openssl-sys", 350] 351 352[[package]] 353name = "openssl-macros" 354version = "0.1.0" 355source = "registry+https://github.com/rust-lang/crates.io-index" 356checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 357dependencies = [ 358 "proc-macro2", 359 "quote", 360 "syn", 361] 362 363[[package]] 364name = "openssl-sys" 365version = "0.9.80" 366source = "registry+https://github.com/rust-lang/crates.io-index" 367checksum = "23bbbf7854cd45b83958ebe919f0e8e516793727652e27fda10a8384cfc790b7" 368dependencies = [ 369 "autocfg", 370 "cc", 371 "libc", 372 "pkg-config", 373 "vcpkg", 374] 375 376[[package]] 377name = "os_str_bytes" 378version = "6.4.1" 379source = "registry+https://github.com/rust-lang/crates.io-index" 380checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee" 381 382[[package]] 383name = "pkg-config" 384version = "0.3.26" 385source = "registry+https://github.com/rust-lang/crates.io-index" 386checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 387 388[[package]] 389name = "proc-macro-error" 390version = "1.0.4" 391source = "registry+https://github.com/rust-lang/crates.io-index" 392checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 393dependencies = [ 394 "proc-macro-error-attr", 395 "proc-macro2", 396 "quote", 397 "syn", 398 "version_check", 399] 400 401[[package]] 402name = "proc-macro-error-attr" 403version = "1.0.4" 404source = "registry+https://github.com/rust-lang/crates.io-index" 405checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 406dependencies = [ 407 "proc-macro2", 408 "quote", 409 "version_check", 410] 411 412[[package]] 413name = "proc-macro2" 414version = "1.0.50" 415source = "registry+https://github.com/rust-lang/crates.io-index" 416checksum = "6ef7d57beacfaf2d8aee5937dab7b7f28de3cb8b1828479bb5de2a7106f2bae2" 417dependencies = [ 418 "unicode-ident", 419] 420 421[[package]] 422name = "quote" 423version = "1.0.23" 424source = "registry+https://github.com/rust-lang/crates.io-index" 425checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" 426dependencies = [ 427 "proc-macro2", 428] 429 430[[package]] 431name = "rustc-demangle" 432version = "0.1.23" 433source = "registry+https://github.com/rust-lang/crates.io-index" 434checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 435 436[[package]] 437name = "rustix" 438version = "0.36.7" 439source = "registry+https://github.com/rust-lang/crates.io-index" 440checksum = "d4fdebc4b395b7fbb9ab11e462e20ed9051e7b16e42d24042c776eca0ac81b03" 441dependencies = [ 442 "bitflags", 443 "errno", 444 "io-lifetimes", 445 "libc", 446 "linux-raw-sys", 447 "windows-sys", 448] 449 450[[package]] 451name = "ryu" 452version = "1.0.13" 453source = "registry+https://github.com/rust-lang/crates.io-index" 454checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 455 456[[package]] 457name = "serde" 458version = "1.0.152" 459source = "registry+https://github.com/rust-lang/crates.io-index" 460checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" 461dependencies = [ 462 "serde_derive", 463] 464 465[[package]] 466name = "serde_derive" 467version = "1.0.152" 468source = "registry+https://github.com/rust-lang/crates.io-index" 469checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" 470dependencies = [ 471 "proc-macro2", 472 "quote", 473 "syn", 474] 475 476[[package]] 477name = "serde_json" 478version = "1.0.96" 479source = "registry+https://github.com/rust-lang/crates.io-index" 480checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" 481dependencies = [ 482 "itoa", 483 "ryu", 484 "serde", 485] 486 487[[package]] 488name = "strsim" 489version = "0.10.0" 490source = "registry+https://github.com/rust-lang/crates.io-index" 491checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 492 493[[package]] 494name = "syn" 495version = "1.0.107" 496source = "registry+https://github.com/rust-lang/crates.io-index" 497checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" 498dependencies = [ 499 "proc-macro2", 500 "quote", 501 "unicode-ident", 502] 503 504[[package]] 505name = "termcolor" 506version = "1.2.0" 507source = "registry+https://github.com/rust-lang/crates.io-index" 508checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 509dependencies = [ 510 "winapi-util", 511] 512 513[[package]] 514name = "thiserror" 515version = "1.0.38" 516source = "registry+https://github.com/rust-lang/crates.io-index" 517checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0" 518dependencies = [ 519 "thiserror-impl", 520] 521 522[[package]] 523name = "thiserror-impl" 524version = "1.0.38" 525source = "registry+https://github.com/rust-lang/crates.io-index" 526checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f" 527dependencies = [ 528 "proc-macro2", 529 "quote", 530 "syn", 531] 532 533[[package]] 534name = "unicode-ident" 535version = "1.0.6" 536source = "registry+https://github.com/rust-lang/crates.io-index" 537checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" 538 539[[package]] 540name = "vcpkg" 541version = "0.2.15" 542source = "registry+https://github.com/rust-lang/crates.io-index" 543checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 544 545[[package]] 546name = "version_check" 547version = "0.9.4" 548source = "registry+https://github.com/rust-lang/crates.io-index" 549checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 550 551[[package]] 552name = "winapi" 553version = "0.3.9" 554source = "registry+https://github.com/rust-lang/crates.io-index" 555checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 556dependencies = [ 557 "winapi-i686-pc-windows-gnu", 558 "winapi-x86_64-pc-windows-gnu", 559] 560 561[[package]] 562name = "winapi-i686-pc-windows-gnu" 563version = "0.4.0" 564source = "registry+https://github.com/rust-lang/crates.io-index" 565checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 566 567[[package]] 568name = "winapi-util" 569version = "0.1.5" 570source = "registry+https://github.com/rust-lang/crates.io-index" 571checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 572dependencies = [ 573 "winapi", 574] 575 576[[package]] 577name = "winapi-x86_64-pc-windows-gnu" 578version = "0.4.0" 579source = "registry+https://github.com/rust-lang/crates.io-index" 580checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 581 582[[package]] 583name = "windows-sys" 584version = "0.42.0" 585source = "registry+https://github.com/rust-lang/crates.io-index" 586checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 587dependencies = [ 588 "windows_aarch64_gnullvm", 589 "windows_aarch64_msvc", 590 "windows_i686_gnu", 591 "windows_i686_msvc", 592 "windows_x86_64_gnu", 593 "windows_x86_64_gnullvm", 594 "windows_x86_64_msvc", 595] 596 597[[package]] 598name = "windows_aarch64_gnullvm" 599version = "0.42.1" 600source = "registry+https://github.com/rust-lang/crates.io-index" 601checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" 602 603[[package]] 604name = "windows_aarch64_msvc" 605version = "0.42.1" 606source = "registry+https://github.com/rust-lang/crates.io-index" 607checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" 608 609[[package]] 610name = "windows_i686_gnu" 611version = "0.42.1" 612source = "registry+https://github.com/rust-lang/crates.io-index" 613checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" 614 615[[package]] 616name = "windows_i686_msvc" 617version = "0.42.1" 618source = "registry+https://github.com/rust-lang/crates.io-index" 619checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" 620 621[[package]] 622name = "windows_x86_64_gnu" 623version = "0.42.1" 624source = "registry+https://github.com/rust-lang/crates.io-index" 625checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" 626 627[[package]] 628name = "windows_x86_64_gnullvm" 629version = "0.42.1" 630source = "registry+https://github.com/rust-lang/crates.io-index" 631checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" 632 633[[package]] 634name = "windows_x86_64_msvc" 635version = "0.42.1" 636source = "registry+https://github.com/rust-lang/crates.io-index" 637checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" 638