1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "aead" 7version = "0.5.2" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" 10dependencies = [ 11 "bytes", 12 "crypto-common", 13 "generic-array", 14] 15 16[[package]] 17name = "aes" 18version = "0.8.3" 19source = "registry+https://github.com/rust-lang/crates.io-index" 20checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2" 21dependencies = [ 22 "cfg-if", 23 "cipher", 24 "cpufeatures", 25] 26 27[[package]] 28name = "aes-gcm" 29version = "0.10.3" 30source = "registry+https://github.com/rust-lang/crates.io-index" 31checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" 32dependencies = [ 33 "aead", 34 "aes", 35 "cipher", 36 "ctr", 37 "ghash", 38 "subtle", 39] 40 41[[package]] 42name = "aes-gcm-siv" 43version = "0.11.1" 44source = "registry+https://github.com/rust-lang/crates.io-index" 45checksum = "ae0784134ba9375416d469ec31e7c5f9fa94405049cf08c5ce5b4698be673e0d" 46dependencies = [ 47 "aead", 48 "aes", 49 "cipher", 50 "ctr", 51 "polyval", 52 "subtle", 53 "zeroize", 54] 55 56[[package]] 57name = "aho-corasick" 58version = "1.1.2" 59source = "registry+https://github.com/rust-lang/crates.io-index" 60checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 61dependencies = [ 62 "memchr", 63] 64 65[[package]] 66name = "anes" 67version = "0.1.6" 68source = "registry+https://github.com/rust-lang/crates.io-index" 69checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 70 71[[package]] 72name = "anstyle" 73version = "1.0.6" 74source = "registry+https://github.com/rust-lang/crates.io-index" 75checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" 76 77[[package]] 78name = "anyhow" 79version = "1.0.79" 80source = "registry+https://github.com/rust-lang/crates.io-index" 81checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca" 82 83[[package]] 84name = "arbitrary" 85version = "1.3.2" 86source = "registry+https://github.com/rust-lang/crates.io-index" 87checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" 88dependencies = [ 89 "derive_arbitrary", 90] 91 92[[package]] 93name = "autocfg" 94version = "1.1.0" 95source = "registry+https://github.com/rust-lang/crates.io-index" 96checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 97 98[[package]] 99name = "base16ct" 100version = "0.2.0" 101source = "registry+https://github.com/rust-lang/crates.io-index" 102checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 103 104[[package]] 105name = "bitflags" 106version = "2.4.2" 107source = "registry+https://github.com/rust-lang/crates.io-index" 108checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" 109 110[[package]] 111name = "bitflags" 112version = "2.4.1" 113source = "registry+https://github.com/rust-lang/crates.io-index" 114checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" 115 116[[package]] 117name = "block-buffer" 118version = "0.10.4" 119source = "registry+https://github.com/rust-lang/crates.io-index" 120checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 121dependencies = [ 122 "generic-array", 123] 124 125[[package]] 126name = "block-padding" 127version = "0.3.3" 128source = "registry+https://github.com/rust-lang/crates.io-index" 129checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93" 130dependencies = [ 131 "generic-array", 132] 133 134[[package]] 135name = "bumpalo" 136version = "3.14.0" 137source = "registry+https://github.com/rust-lang/crates.io-index" 138checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 139 140[[package]] 141name = "bytes" 142version = "1.5.0" 143source = "registry+https://github.com/rust-lang/crates.io-index" 144checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 145 146[[package]] 147name = "cast" 148version = "0.3.0" 149source = "registry+https://github.com/rust-lang/crates.io-index" 150checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 151 152[[package]] 153name = "cbc" 154version = "0.1.2" 155source = "registry+https://github.com/rust-lang/crates.io-index" 156checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6" 157dependencies = [ 158 "cipher", 159] 160 161[[package]] 162name = "cc" 163version = "1.0.83" 164source = "registry+https://github.com/rust-lang/crates.io-index" 165checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 166dependencies = [ 167 "jobserver", 168 "libc", 169] 170 171[[package]] 172name = "cfg-if" 173version = "1.0.0" 174source = "registry+https://github.com/rust-lang/crates.io-index" 175checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 176 177[[package]] 178name = "ciborium" 179version = "0.2.2" 180source = "registry+https://github.com/rust-lang/crates.io-index" 181checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" 182dependencies = [ 183 "ciborium-io", 184 "ciborium-ll", 185 "serde", 186] 187 188[[package]] 189name = "ciborium-io" 190version = "0.2.2" 191source = "registry+https://github.com/rust-lang/crates.io-index" 192checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" 193 194[[package]] 195name = "ciborium-ll" 196version = "0.2.2" 197source = "registry+https://github.com/rust-lang/crates.io-index" 198checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" 199dependencies = [ 200 "ciborium-io", 201 "half", 202] 203 204[[package]] 205name = "cipher" 206version = "0.4.4" 207source = "registry+https://github.com/rust-lang/crates.io-index" 208checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 209dependencies = [ 210 "crypto-common", 211 "inout", 212] 213 214[[package]] 215name = "clap" 216version = "4.4.18" 217source = "registry+https://github.com/rust-lang/crates.io-index" 218checksum = "1e578d6ec4194633722ccf9544794b71b1385c3c027efe0c55db226fc880865c" 219dependencies = [ 220 "clap_builder", 221] 222 223[[package]] 224name = "clap_builder" 225version = "4.4.18" 226source = "registry+https://github.com/rust-lang/crates.io-index" 227checksum = "4df4df40ec50c46000231c914968278b1eb05098cf8f1b3a518a95030e71d1c7" 228dependencies = [ 229 "anstyle", 230 "clap_lex", 231] 232 233[[package]] 234name = "clap_lex" 235version = "0.6.0" 236source = "registry+https://github.com/rust-lang/crates.io-index" 237checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" 238 239[[package]] 240name = "const-oid" 241version = "0.9.6" 242source = "registry+https://github.com/rust-lang/crates.io-index" 243checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 244 245[[package]] 246name = "cpufeatures" 247version = "0.2.12" 248source = "registry+https://github.com/rust-lang/crates.io-index" 249checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 250dependencies = [ 251 "libc", 252] 253 254[[package]] 255name = "criterion" 256version = "0.5.1" 257source = "registry+https://github.com/rust-lang/crates.io-index" 258checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f" 259dependencies = [ 260 "anes", 261 "cast", 262 "ciborium", 263 "clap", 264 "criterion-plot", 265 "is-terminal", 266 "itertools", 267 "num-traits", 268 "once_cell", 269 "oorandom", 270 "plotters", 271 "rayon", 272 "regex", 273 "serde", 274 "serde_derive", 275 "serde_json", 276 "tinytemplate", 277 "walkdir", 278] 279 280[[package]] 281name = "criterion-plot" 282version = "0.5.0" 283source = "registry+https://github.com/rust-lang/crates.io-index" 284checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 285dependencies = [ 286 "cast", 287 "itertools", 288] 289 290[[package]] 291name = "crossbeam-deque" 292version = "0.8.5" 293source = "registry+https://github.com/rust-lang/crates.io-index" 294checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 295dependencies = [ 296 "crossbeam-epoch", 297 "crossbeam-utils", 298] 299 300[[package]] 301name = "crossbeam-epoch" 302version = "0.9.18" 303source = "registry+https://github.com/rust-lang/crates.io-index" 304checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 305dependencies = [ 306 "crossbeam-utils", 307] 308 309[[package]] 310name = "crossbeam-utils" 311version = "0.8.19" 312source = "registry+https://github.com/rust-lang/crates.io-index" 313checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 314 315[[package]] 316name = "crunchy" 317version = "0.2.2" 318source = "registry+https://github.com/rust-lang/crates.io-index" 319checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 320 321[[package]] 322name = "crypto-bigint" 323version = "0.5.5" 324source = "registry+https://github.com/rust-lang/crates.io-index" 325checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" 326dependencies = [ 327 "generic-array", 328 "rand_core", 329 "subtle", 330 "zeroize", 331] 332 333[[package]] 334name = "crypto-common" 335version = "0.1.6" 336source = "registry+https://github.com/rust-lang/crates.io-index" 337checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 338dependencies = [ 339 "generic-array", 340 "rand_core", 341 "typenum", 342] 343 344[[package]] 345name = "crypto_provider" 346version = "0.1.0" 347dependencies = [ 348 "tinyvec", 349] 350 351[[package]] 352name = "crypto_provider_rustcrypto" 353version = "0.1.0" 354dependencies = [ 355 "aead", 356 "aes", 357 "aes-gcm", 358 "aes-gcm-siv", 359 "cbc", 360 "cfg-if", 361 "crypto_provider", 362 "ctr", 363 "ed25519-dalek", 364 "hkdf", 365 "hmac", 366 "p256", 367 "rand", 368 "rand_chacha", 369 "rand_core", 370 "sec1", 371 "sha2", 372 "subtle", 373 "x25519-dalek", 374] 375 376[[package]] 377name = "ctr" 378version = "0.9.2" 379source = "registry+https://github.com/rust-lang/crates.io-index" 380checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" 381dependencies = [ 382 "cipher", 383] 384 385[[package]] 386name = "curve25519-dalek" 387version = "4.1.2" 388source = "registry+https://github.com/rust-lang/crates.io-index" 389checksum = "0a677b8922c94e01bdbb12126b0bc852f00447528dee1782229af9c720c3f348" 390dependencies = [ 391 "cfg-if", 392 "cpufeatures", 393 "curve25519-dalek-derive", 394 "digest", 395 "fiat-crypto", 396 "platforms", 397 "rustc_version", 398 "subtle", 399] 400 401[[package]] 402name = "curve25519-dalek-derive" 403version = "0.1.1" 404source = "registry+https://github.com/rust-lang/crates.io-index" 405checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" 406dependencies = [ 407 "proc-macro2", 408 "quote", 409 "syn", 410] 411 412[[package]] 413name = "der" 414version = "0.7.8" 415source = "registry+https://github.com/rust-lang/crates.io-index" 416checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c" 417dependencies = [ 418 "const-oid", 419 "zeroize", 420] 421 422[[package]] 423name = "derive_arbitrary" 424version = "1.3.2" 425source = "registry+https://github.com/rust-lang/crates.io-index" 426checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611" 427dependencies = [ 428 "proc-macro2", 429 "quote", 430 "syn", 431] 432 433[[package]] 434name = "digest" 435version = "0.10.7" 436source = "registry+https://github.com/rust-lang/crates.io-index" 437checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 438dependencies = [ 439 "block-buffer", 440 "crypto-common", 441 "subtle", 442] 443 444[[package]] 445name = "ed25519" 446version = "2.2.3" 447source = "registry+https://github.com/rust-lang/crates.io-index" 448checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" 449dependencies = [ 450 "signature", 451] 452 453[[package]] 454name = "ed25519-dalek" 455version = "2.1.1" 456source = "registry+https://github.com/rust-lang/crates.io-index" 457checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871" 458dependencies = [ 459 "curve25519-dalek", 460 "ed25519", 461 "rand_core", 462 "sha2", 463 "subtle", 464] 465 466[[package]] 467name = "either" 468version = "1.9.0" 469source = "registry+https://github.com/rust-lang/crates.io-index" 470checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 471 472[[package]] 473name = "elliptic-curve" 474version = "0.13.8" 475source = "registry+https://github.com/rust-lang/crates.io-index" 476checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" 477dependencies = [ 478 "base16ct", 479 "crypto-bigint", 480 "digest", 481 "ff", 482 "generic-array", 483 "group", 484 "hkdf", 485 "rand_core", 486 "sec1", 487 "subtle", 488 "zeroize", 489] 490 491[[package]] 492name = "errno" 493version = "0.3.8" 494source = "registry+https://github.com/rust-lang/crates.io-index" 495checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 496dependencies = [ 497 "libc", 498 "windows-sys 0.48.0", 499] 500 501[[package]] 502name = "fastrand" 503version = "2.0.1" 504source = "registry+https://github.com/rust-lang/crates.io-index" 505checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 506 507[[package]] 508name = "ff" 509version = "0.13.0" 510source = "registry+https://github.com/rust-lang/crates.io-index" 511checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" 512dependencies = [ 513 "rand_core", 514 "subtle", 515] 516 517[[package]] 518name = "fiat-crypto" 519version = "0.2.6" 520source = "registry+https://github.com/rust-lang/crates.io-index" 521checksum = "1676f435fc1dadde4d03e43f5d62b259e1ce5f40bd4ffb21db2b42ebe59c1382" 522 523[[package]] 524name = "generic-array" 525version = "0.14.7" 526source = "registry+https://github.com/rust-lang/crates.io-index" 527checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 528dependencies = [ 529 "typenum", 530 "version_check", 531 "zeroize", 532] 533 534[[package]] 535name = "getrandom" 536version = "0.2.12" 537source = "registry+https://github.com/rust-lang/crates.io-index" 538checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" 539dependencies = [ 540 "cfg-if", 541 "libc", 542 "wasi", 543] 544 545[[package]] 546name = "ghash" 547version = "0.5.0" 548source = "registry+https://github.com/rust-lang/crates.io-index" 549checksum = "d930750de5717d2dd0b8c0d42c076c0e884c81a73e6cab859bbd2339c71e3e40" 550dependencies = [ 551 "opaque-debug", 552 "polyval", 553] 554 555[[package]] 556name = "group" 557version = "0.13.0" 558source = "registry+https://github.com/rust-lang/crates.io-index" 559checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" 560dependencies = [ 561 "ff", 562 "rand_core", 563 "subtle", 564] 565 566[[package]] 567name = "half" 568version = "2.3.1" 569source = "registry+https://github.com/rust-lang/crates.io-index" 570checksum = "bc52e53916c08643f1b56ec082790d1e86a32e58dc5268f897f313fbae7b4872" 571dependencies = [ 572 "cfg-if", 573 "crunchy", 574] 575 576[[package]] 577name = "hashbrown" 578version = "0.12.3" 579source = "registry+https://github.com/rust-lang/crates.io-index" 580checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 581 582[[package]] 583name = "hermit-abi" 584version = "0.3.5" 585source = "registry+https://github.com/rust-lang/crates.io-index" 586checksum = "d0c62115964e08cb8039170eb33c1d0e2388a256930279edca206fff675f82c3" 587 588[[package]] 589name = "hkdf" 590version = "0.12.4" 591source = "registry+https://github.com/rust-lang/crates.io-index" 592checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 593dependencies = [ 594 "hmac", 595] 596 597[[package]] 598name = "hmac" 599version = "0.12.1" 600source = "registry+https://github.com/rust-lang/crates.io-index" 601checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 602dependencies = [ 603 "digest", 604] 605 606[[package]] 607name = "home" 608version = "0.5.9" 609source = "registry+https://github.com/rust-lang/crates.io-index" 610checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 611dependencies = [ 612 "windows-sys", 613] 614 615[[package]] 616name = "indexmap" 617version = "1.9.3" 618source = "registry+https://github.com/rust-lang/crates.io-index" 619checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 620dependencies = [ 621 "autocfg", 622 "hashbrown", 623] 624 625[[package]] 626name = "inout" 627version = "0.1.3" 628source = "registry+https://github.com/rust-lang/crates.io-index" 629checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 630dependencies = [ 631 "block-padding", 632 "generic-array", 633] 634 635[[package]] 636name = "is-terminal" 637version = "0.4.10" 638source = "registry+https://github.com/rust-lang/crates.io-index" 639checksum = "0bad00257d07be169d870ab665980b06cdb366d792ad690bf2e76876dc503455" 640dependencies = [ 641 "hermit-abi", 642 "rustix", 643 "windows-sys", 644] 645 646[[package]] 647name = "itertools" 648version = "0.10.5" 649source = "registry+https://github.com/rust-lang/crates.io-index" 650checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 651dependencies = [ 652 "either", 653] 654 655[[package]] 656name = "itoa" 657version = "1.0.10" 658source = "registry+https://github.com/rust-lang/crates.io-index" 659checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" 660 661[[package]] 662name = "jobserver" 663version = "0.1.27" 664source = "registry+https://github.com/rust-lang/crates.io-index" 665checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d" 666dependencies = [ 667 "libc", 668] 669 670[[package]] 671name = "js-sys" 672version = "0.3.68" 673source = "registry+https://github.com/rust-lang/crates.io-index" 674checksum = "406cda4b368d531c842222cf9d2600a9a4acce8d29423695379c6868a143a9ee" 675dependencies = [ 676 "wasm-bindgen", 677] 678 679[[package]] 680name = "libc" 681version = "0.2.153" 682source = "registry+https://github.com/rust-lang/crates.io-index" 683checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" 684 685[[package]] 686name = "libfuzzer-sys" 687version = "0.4.7" 688source = "registry+https://github.com/rust-lang/crates.io-index" 689checksum = "a96cfd5557eb82f2b83fed4955246c988d331975a002961b07c81584d107e7f7" 690dependencies = [ 691 "arbitrary", 692 "cc", 693 "once_cell", 694] 695 696[[package]] 697name = "linux-raw-sys" 698version = "0.4.13" 699source = "registry+https://github.com/rust-lang/crates.io-index" 700checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" 701 702[[package]] 703name = "log" 704version = "0.4.20" 705source = "registry+https://github.com/rust-lang/crates.io-index" 706checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 707 708[[package]] 709name = "memchr" 710version = "2.7.1" 711source = "registry+https://github.com/rust-lang/crates.io-index" 712checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" 713 714[[package]] 715name = "minimal-lexical" 716version = "0.2.1" 717source = "registry+https://github.com/rust-lang/crates.io-index" 718checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 719 720[[package]] 721name = "nom" 722version = "7.1.3" 723source = "registry+https://github.com/rust-lang/crates.io-index" 724checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 725dependencies = [ 726 "memchr", 727 "minimal-lexical", 728] 729 730[[package]] 731name = "num-bigint" 732version = "0.4.4" 733source = "registry+https://github.com/rust-lang/crates.io-index" 734checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" 735dependencies = [ 736 "autocfg", 737 "num-integer", 738 "num-traits", 739] 740 741[[package]] 742name = "num-integer" 743version = "0.1.45" 744source = "registry+https://github.com/rust-lang/crates.io-index" 745checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 746dependencies = [ 747 "autocfg", 748 "num-traits", 749] 750 751[[package]] 752name = "num-traits" 753version = "0.2.17" 754source = "registry+https://github.com/rust-lang/crates.io-index" 755checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" 756dependencies = [ 757 "autocfg", 758] 759 760[[package]] 761name = "once_cell" 762version = "1.19.0" 763source = "registry+https://github.com/rust-lang/crates.io-index" 764checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 765 766[[package]] 767name = "oorandom" 768version = "11.1.3" 769source = "registry+https://github.com/rust-lang/crates.io-index" 770checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 771 772[[package]] 773name = "opaque-debug" 774version = "0.3.0" 775source = "registry+https://github.com/rust-lang/crates.io-index" 776checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 777 778[[package]] 779name = "p256" 780version = "0.13.2" 781source = "registry+https://github.com/rust-lang/crates.io-index" 782checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" 783dependencies = [ 784 "elliptic-curve", 785 "primeorder", 786] 787 788[[package]] 789name = "platforms" 790version = "3.3.0" 791source = "registry+https://github.com/rust-lang/crates.io-index" 792checksum = "626dec3cac7cc0e1577a2ec3fc496277ec2baa084bebad95bb6fdbfae235f84c" 793 794[[package]] 795name = "plotters" 796version = "0.3.5" 797source = "registry+https://github.com/rust-lang/crates.io-index" 798checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45" 799dependencies = [ 800 "num-traits", 801 "plotters-backend", 802 "plotters-svg", 803 "wasm-bindgen", 804 "web-sys", 805] 806 807[[package]] 808name = "plotters-backend" 809version = "0.3.5" 810source = "registry+https://github.com/rust-lang/crates.io-index" 811checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609" 812 813[[package]] 814name = "plotters-svg" 815version = "0.3.5" 816source = "registry+https://github.com/rust-lang/crates.io-index" 817checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab" 818dependencies = [ 819 "plotters-backend", 820] 821 822[[package]] 823name = "polyval" 824version = "0.6.1" 825source = "registry+https://github.com/rust-lang/crates.io-index" 826checksum = "d52cff9d1d4dee5fe6d03729099f4a310a41179e0a10dbf542039873f2e826fb" 827dependencies = [ 828 "cfg-if", 829 "cpufeatures", 830 "opaque-debug", 831 "universal-hash", 832] 833 834[[package]] 835name = "ppv-lite86" 836version = "0.2.17" 837source = "registry+https://github.com/rust-lang/crates.io-index" 838checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 839 840[[package]] 841name = "primeorder" 842version = "0.13.6" 843source = "registry+https://github.com/rust-lang/crates.io-index" 844checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" 845dependencies = [ 846 "elliptic-curve", 847] 848 849[[package]] 850name = "proc-macro2" 851version = "1.0.78" 852source = "registry+https://github.com/rust-lang/crates.io-index" 853checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" 854dependencies = [ 855 "unicode-ident", 856] 857 858[[package]] 859name = "protobuf" 860version = "3.2.0" 861source = "registry+https://github.com/rust-lang/crates.io-index" 862checksum = "b55bad9126f378a853655831eb7363b7b01b81d19f8cb1218861086ca4a1a61e" 863dependencies = [ 864 "once_cell", 865 "protobuf-support", 866 "thiserror", 867] 868 869[[package]] 870name = "protobuf-codegen" 871version = "3.2.0" 872source = "registry+https://github.com/rust-lang/crates.io-index" 873checksum = "0dd418ac3c91caa4032d37cb80ff0d44e2ebe637b2fb243b6234bf89cdac4901" 874dependencies = [ 875 "anyhow", 876 "once_cell", 877 "protobuf", 878 "protobuf-parse", 879 "regex", 880 "tempfile", 881 "thiserror", 882] 883 884[[package]] 885name = "protobuf-parse" 886version = "3.2.0" 887source = "registry+https://github.com/rust-lang/crates.io-index" 888checksum = "9d39b14605eaa1f6a340aec7f320b34064feb26c93aec35d6a9a2272a8ddfa49" 889dependencies = [ 890 "anyhow", 891 "indexmap", 892 "log", 893 "protobuf", 894 "protobuf-support", 895 "tempfile", 896 "thiserror", 897 "which", 898] 899 900[[package]] 901name = "protobuf-support" 902version = "3.2.0" 903source = "registry+https://github.com/rust-lang/crates.io-index" 904checksum = "a5d4d7b8601c814cfb36bcebb79f0e61e45e1e93640cf778837833bbed05c372" 905dependencies = [ 906 "thiserror", 907] 908 909[[package]] 910name = "quote" 911version = "1.0.35" 912source = "registry+https://github.com/rust-lang/crates.io-index" 913checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 914dependencies = [ 915 "proc-macro2", 916] 917 918[[package]] 919name = "rand" 920version = "0.8.5" 921source = "registry+https://github.com/rust-lang/crates.io-index" 922checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 923dependencies = [ 924 "libc", 925 "rand_chacha", 926 "rand_core", 927] 928 929[[package]] 930name = "rand_chacha" 931version = "0.3.1" 932source = "registry+https://github.com/rust-lang/crates.io-index" 933checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 934dependencies = [ 935 "ppv-lite86", 936 "rand_core", 937] 938 939[[package]] 940name = "rand_core" 941version = "0.6.4" 942source = "registry+https://github.com/rust-lang/crates.io-index" 943checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 944dependencies = [ 945 "getrandom", 946] 947 948[[package]] 949name = "rayon" 950version = "1.8.1" 951source = "registry+https://github.com/rust-lang/crates.io-index" 952checksum = "fa7237101a77a10773db45d62004a272517633fbcc3df19d96455ede1122e051" 953dependencies = [ 954 "either", 955 "rayon-core", 956] 957 958[[package]] 959name = "rayon-core" 960version = "1.12.1" 961source = "registry+https://github.com/rust-lang/crates.io-index" 962checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 963dependencies = [ 964 "crossbeam-deque", 965 "crossbeam-utils", 966] 967 968[[package]] 969name = "regex" 970version = "1.10.3" 971source = "registry+https://github.com/rust-lang/crates.io-index" 972checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" 973dependencies = [ 974 "aho-corasick", 975 "memchr", 976 "regex-automata", 977 "regex-syntax", 978] 979 980[[package]] 981name = "regex-automata" 982version = "0.4.5" 983source = "registry+https://github.com/rust-lang/crates.io-index" 984checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd" 985dependencies = [ 986 "aho-corasick", 987 "memchr", 988 "regex-syntax", 989] 990 991[[package]] 992name = "regex-syntax" 993version = "0.8.2" 994source = "registry+https://github.com/rust-lang/crates.io-index" 995checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 996 997[[package]] 998name = "rustc_version" 999version = "0.4.0" 1000source = "registry+https://github.com/rust-lang/crates.io-index" 1001checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 1002dependencies = [ 1003 "semver", 1004] 1005 1006[[package]] 1007name = "rustix" 1008version = "0.38.31" 1009source = "registry+https://github.com/rust-lang/crates.io-index" 1010checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949" 1011dependencies = [ 1012 "bitflags 1.3.2", 1013 "errno", 1014 "libc", 1015 "linux-raw-sys 0.3.8", 1016 "windows-sys 0.48.0", 1017] 1018 1019[[package]] 1020name = "rustix" 1021version = "0.38.13" 1022source = "registry+https://github.com/rust-lang/crates.io-index" 1023checksum = "d7db8590df6dfcd144d22afd1b83b36c21a18d7cbc1dc4bb5295a8712e9eb662" 1024dependencies = [ 1025 "bitflags 2.4.1", 1026 "errno", 1027 "libc", 1028 "linux-raw-sys 0.4.12", 1029 "windows-sys 0.48.0", 1030] 1031 1032[[package]] 1033name = "ryu" 1034version = "1.0.16" 1035source = "registry+https://github.com/rust-lang/crates.io-index" 1036checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" 1037 1038[[package]] 1039name = "same-file" 1040version = "1.0.6" 1041source = "registry+https://github.com/rust-lang/crates.io-index" 1042checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 1043dependencies = [ 1044 "winapi-util", 1045] 1046 1047[[package]] 1048name = "sec1" 1049version = "0.7.3" 1050source = "registry+https://github.com/rust-lang/crates.io-index" 1051checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" 1052dependencies = [ 1053 "base16ct", 1054 "der", 1055 "generic-array", 1056 "subtle", 1057 "zeroize", 1058] 1059 1060[[package]] 1061name = "semver" 1062version = "1.0.21" 1063source = "registry+https://github.com/rust-lang/crates.io-index" 1064checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0" 1065 1066[[package]] 1067name = "serde" 1068version = "1.0.196" 1069source = "registry+https://github.com/rust-lang/crates.io-index" 1070checksum = "870026e60fa08c69f064aa766c10f10b1d62db9ccd4d0abb206472bee0ce3b32" 1071dependencies = [ 1072 "serde_derive", 1073] 1074 1075[[package]] 1076name = "serde_derive" 1077version = "1.0.196" 1078source = "registry+https://github.com/rust-lang/crates.io-index" 1079checksum = "33c85360c95e7d137454dc81d9a4ed2b8efd8fbe19cee57357b32b9771fccb67" 1080dependencies = [ 1081 "proc-macro2", 1082 "quote", 1083 "syn", 1084] 1085 1086[[package]] 1087name = "serde_json" 1088version = "1.0.113" 1089source = "registry+https://github.com/rust-lang/crates.io-index" 1090checksum = "69801b70b1c3dac963ecb03a364ba0ceda9cf60c71cfe475e99864759c8b8a79" 1091dependencies = [ 1092 "itoa", 1093 "ryu", 1094 "serde", 1095] 1096 1097[[package]] 1098name = "sha2" 1099version = "0.10.8" 1100source = "registry+https://github.com/rust-lang/crates.io-index" 1101checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 1102dependencies = [ 1103 "cfg-if", 1104 "cpufeatures", 1105 "digest", 1106] 1107 1108[[package]] 1109name = "signature" 1110version = "2.2.0" 1111source = "registry+https://github.com/rust-lang/crates.io-index" 1112checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 1113 1114[[package]] 1115name = "subtle" 1116version = "2.5.0" 1117source = "registry+https://github.com/rust-lang/crates.io-index" 1118checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 1119 1120[[package]] 1121name = "syn" 1122version = "2.0.48" 1123source = "registry+https://github.com/rust-lang/crates.io-index" 1124checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f" 1125dependencies = [ 1126 "proc-macro2", 1127 "quote", 1128 "unicode-ident", 1129] 1130 1131[[package]] 1132name = "tempfile" 1133version = "3.10.0" 1134source = "registry+https://github.com/rust-lang/crates.io-index" 1135checksum = "a365e8cd18e44762ef95d87f284f4b5cd04107fec2ff3052bd6a3e6069669e67" 1136dependencies = [ 1137 "cfg-if", 1138 "fastrand", 1139 "rustix", 1140 "windows-sys", 1141] 1142 1143[[package]] 1144name = "thiserror" 1145version = "1.0.56" 1146source = "registry+https://github.com/rust-lang/crates.io-index" 1147checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad" 1148dependencies = [ 1149 "thiserror-impl", 1150] 1151 1152[[package]] 1153name = "thiserror-impl" 1154version = "1.0.56" 1155source = "registry+https://github.com/rust-lang/crates.io-index" 1156checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471" 1157dependencies = [ 1158 "proc-macro2", 1159 "quote", 1160 "syn", 1161] 1162 1163[[package]] 1164name = "tinytemplate" 1165version = "1.2.1" 1166source = "registry+https://github.com/rust-lang/crates.io-index" 1167checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 1168dependencies = [ 1169 "serde", 1170 "serde_json", 1171] 1172 1173[[package]] 1174name = "tinyvec" 1175version = "1.6.0" 1176source = "registry+https://github.com/rust-lang/crates.io-index" 1177checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 1178 1179[[package]] 1180name = "typenum" 1181version = "1.17.0" 1182source = "registry+https://github.com/rust-lang/crates.io-index" 1183checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 1184 1185[[package]] 1186name = "ukey2_connections" 1187version = "0.1.0" 1188dependencies = [ 1189 "bytes", 1190 "criterion", 1191 "crypto_provider", 1192 "nom", 1193 "rand", 1194 "ukey2_proto", 1195 "ukey2_rs", 1196] 1197 1198[[package]] 1199name = "ukey2_connections-fuzz" 1200version = "0.0.0" 1201dependencies = [ 1202 "arbitrary", 1203 "crypto_provider_rustcrypto", 1204 "libfuzzer-sys", 1205 "rand_chacha", 1206 "ukey2_connections", 1207 "ukey2_rs", 1208] 1209 1210[[package]] 1211name = "ukey2_proto" 1212version = "0.1.0" 1213dependencies = [ 1214 "protobuf", 1215 "protobuf-codegen", 1216] 1217 1218[[package]] 1219name = "ukey2_rs" 1220version = "0.1.0" 1221dependencies = [ 1222 "crypto_provider", 1223 "log", 1224 "num-bigint", 1225 "rand", 1226 "ukey2_proto", 1227] 1228 1229[[package]] 1230name = "unicode-ident" 1231version = "1.0.12" 1232source = "registry+https://github.com/rust-lang/crates.io-index" 1233checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 1234 1235[[package]] 1236name = "universal-hash" 1237version = "0.5.1" 1238source = "registry+https://github.com/rust-lang/crates.io-index" 1239checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" 1240dependencies = [ 1241 "crypto-common", 1242 "subtle", 1243] 1244 1245[[package]] 1246name = "version_check" 1247version = "0.9.4" 1248source = "registry+https://github.com/rust-lang/crates.io-index" 1249checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 1250 1251[[package]] 1252name = "walkdir" 1253version = "2.4.0" 1254source = "registry+https://github.com/rust-lang/crates.io-index" 1255checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" 1256dependencies = [ 1257 "same-file", 1258 "winapi-util", 1259] 1260 1261[[package]] 1262name = "wasi" 1263version = "0.11.0+wasi-snapshot-preview1" 1264source = "registry+https://github.com/rust-lang/crates.io-index" 1265checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1266 1267[[package]] 1268name = "wasm-bindgen" 1269version = "0.2.91" 1270source = "registry+https://github.com/rust-lang/crates.io-index" 1271checksum = "c1e124130aee3fb58c5bdd6b639a0509486b0338acaaae0c84a5124b0f588b7f" 1272dependencies = [ 1273 "cfg-if", 1274 "wasm-bindgen-macro", 1275] 1276 1277[[package]] 1278name = "wasm-bindgen-backend" 1279version = "0.2.91" 1280source = "registry+https://github.com/rust-lang/crates.io-index" 1281checksum = "c9e7e1900c352b609c8488ad12639a311045f40a35491fb69ba8c12f758af70b" 1282dependencies = [ 1283 "bumpalo", 1284 "log", 1285 "once_cell", 1286 "proc-macro2", 1287 "quote", 1288 "syn", 1289 "wasm-bindgen-shared", 1290] 1291 1292[[package]] 1293name = "wasm-bindgen-macro" 1294version = "0.2.91" 1295source = "registry+https://github.com/rust-lang/crates.io-index" 1296checksum = "b30af9e2d358182b5c7449424f017eba305ed32a7010509ede96cdc4696c46ed" 1297dependencies = [ 1298 "quote", 1299 "wasm-bindgen-macro-support", 1300] 1301 1302[[package]] 1303name = "wasm-bindgen-macro-support" 1304version = "0.2.91" 1305source = "registry+https://github.com/rust-lang/crates.io-index" 1306checksum = "642f325be6301eb8107a83d12a8ac6c1e1c54345a7ef1a9261962dfefda09e66" 1307dependencies = [ 1308 "proc-macro2", 1309 "quote", 1310 "syn", 1311 "wasm-bindgen-backend", 1312 "wasm-bindgen-shared", 1313] 1314 1315[[package]] 1316name = "wasm-bindgen-shared" 1317version = "0.2.91" 1318source = "registry+https://github.com/rust-lang/crates.io-index" 1319checksum = "4f186bd2dcf04330886ce82d6f33dd75a7bfcf69ecf5763b89fcde53b6ac9838" 1320 1321[[package]] 1322name = "web-sys" 1323version = "0.3.68" 1324source = "registry+https://github.com/rust-lang/crates.io-index" 1325checksum = "96565907687f7aceb35bc5fc03770a8a0471d82e479f25832f54a0e3f4b28446" 1326dependencies = [ 1327 "js-sys", 1328 "wasm-bindgen", 1329] 1330 1331[[package]] 1332name = "which" 1333version = "4.4.2" 1334source = "registry+https://github.com/rust-lang/crates.io-index" 1335checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" 1336dependencies = [ 1337 "either", 1338 "home", 1339 "once_cell", 1340 "rustix", 1341] 1342 1343[[package]] 1344name = "winapi" 1345version = "0.3.9" 1346source = "registry+https://github.com/rust-lang/crates.io-index" 1347checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1348dependencies = [ 1349 "winapi-i686-pc-windows-gnu", 1350 "winapi-x86_64-pc-windows-gnu", 1351] 1352 1353[[package]] 1354name = "winapi-i686-pc-windows-gnu" 1355version = "0.4.0" 1356source = "registry+https://github.com/rust-lang/crates.io-index" 1357checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1358 1359[[package]] 1360name = "winapi-util" 1361version = "0.1.6" 1362source = "registry+https://github.com/rust-lang/crates.io-index" 1363checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 1364dependencies = [ 1365 "winapi", 1366] 1367 1368[[package]] 1369name = "winapi-x86_64-pc-windows-gnu" 1370version = "0.4.0" 1371source = "registry+https://github.com/rust-lang/crates.io-index" 1372checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1373 1374[[package]] 1375name = "windows-sys" 1376version = "0.52.0" 1377source = "registry+https://github.com/rust-lang/crates.io-index" 1378checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 1379dependencies = [ 1380 "windows-targets 0.48.1", 1381] 1382 1383[[package]] 1384name = "windows-sys" 1385version = "0.52.0" 1386source = "registry+https://github.com/rust-lang/crates.io-index" 1387checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 1388dependencies = [ 1389 "windows-targets 0.52.0", 1390] 1391 1392[[package]] 1393name = "windows-targets" 1394version = "0.52.0" 1395source = "registry+https://github.com/rust-lang/crates.io-index" 1396checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" 1397dependencies = [ 1398 "windows_aarch64_gnullvm 0.48.0", 1399 "windows_aarch64_msvc 0.48.0", 1400 "windows_i686_gnu 0.48.0", 1401 "windows_i686_msvc 0.48.0", 1402 "windows_x86_64_gnu 0.48.0", 1403 "windows_x86_64_gnullvm 0.48.0", 1404 "windows_x86_64_msvc 0.48.0", 1405] 1406 1407[[package]] 1408name = "windows-targets" 1409version = "0.52.0" 1410source = "registry+https://github.com/rust-lang/crates.io-index" 1411checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" 1412dependencies = [ 1413 "windows_aarch64_gnullvm 0.52.0", 1414 "windows_aarch64_msvc 0.52.0", 1415 "windows_i686_gnu 0.52.0", 1416 "windows_i686_msvc 0.52.0", 1417 "windows_x86_64_gnu 0.52.0", 1418 "windows_x86_64_gnullvm 0.52.0", 1419 "windows_x86_64_msvc 0.52.0", 1420] 1421 1422[[package]] 1423name = "windows_aarch64_gnullvm" 1424version = "0.52.0" 1425source = "registry+https://github.com/rust-lang/crates.io-index" 1426checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" 1427 1428[[package]] 1429name = "windows_aarch64_gnullvm" 1430version = "0.52.0" 1431source = "registry+https://github.com/rust-lang/crates.io-index" 1432checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" 1433 1434[[package]] 1435name = "windows_aarch64_msvc" 1436version = "0.52.0" 1437source = "registry+https://github.com/rust-lang/crates.io-index" 1438checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" 1439 1440[[package]] 1441name = "windows_aarch64_msvc" 1442version = "0.52.0" 1443source = "registry+https://github.com/rust-lang/crates.io-index" 1444checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" 1445 1446[[package]] 1447name = "windows_i686_gnu" 1448version = "0.52.0" 1449source = "registry+https://github.com/rust-lang/crates.io-index" 1450checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" 1451 1452[[package]] 1453name = "windows_i686_gnu" 1454version = "0.52.0" 1455source = "registry+https://github.com/rust-lang/crates.io-index" 1456checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" 1457 1458[[package]] 1459name = "windows_i686_msvc" 1460version = "0.52.0" 1461source = "registry+https://github.com/rust-lang/crates.io-index" 1462checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" 1463 1464[[package]] 1465name = "windows_i686_msvc" 1466version = "0.52.0" 1467source = "registry+https://github.com/rust-lang/crates.io-index" 1468checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" 1469 1470[[package]] 1471name = "windows_x86_64_gnu" 1472version = "0.52.0" 1473source = "registry+https://github.com/rust-lang/crates.io-index" 1474checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" 1475 1476[[package]] 1477name = "windows_x86_64_gnu" 1478version = "0.52.0" 1479source = "registry+https://github.com/rust-lang/crates.io-index" 1480checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" 1481 1482[[package]] 1483name = "windows_x86_64_gnullvm" 1484version = "0.52.0" 1485source = "registry+https://github.com/rust-lang/crates.io-index" 1486checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" 1487 1488[[package]] 1489name = "windows_x86_64_gnullvm" 1490version = "0.52.0" 1491source = "registry+https://github.com/rust-lang/crates.io-index" 1492checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" 1493 1494[[package]] 1495name = "windows_x86_64_msvc" 1496version = "0.52.0" 1497source = "registry+https://github.com/rust-lang/crates.io-index" 1498checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" 1499 1500[[package]] 1501name = "windows_x86_64_msvc" 1502version = "0.52.0" 1503source = "registry+https://github.com/rust-lang/crates.io-index" 1504checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" 1505 1506[[package]] 1507name = "x25519-dalek" 1508version = "2.0.1" 1509source = "registry+https://github.com/rust-lang/crates.io-index" 1510checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277" 1511dependencies = [ 1512 "curve25519-dalek", 1513 "rand_core", 1514] 1515 1516[[package]] 1517name = "zeroize" 1518version = "1.7.0" 1519source = "registry+https://github.com/rust-lang/crates.io-index" 1520checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" 1521