at 23.05-pre 563 lines 14 kB view raw
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "arrayref" 7version = "0.3.6" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544" 10 11[[package]] 12name = "arrayvec" 13version = "0.5.2" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" 16 17[[package]] 18name = "autocfg" 19version = "1.1.0" 20source = "registry+https://github.com/rust-lang/crates.io-index" 21checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 22 23[[package]] 24name = "bitflags" 25version = "1.3.2" 26source = "registry+https://github.com/rust-lang/crates.io-index" 27checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 28 29[[package]] 30name = "block-buffer" 31version = "0.7.3" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" 34dependencies = [ 35 "block-padding", 36 "byte-tools", 37 "byteorder", 38 "generic-array", 39] 40 41[[package]] 42name = "block-padding" 43version = "0.1.5" 44source = "registry+https://github.com/rust-lang/crates.io-index" 45checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5" 46dependencies = [ 47 "byte-tools", 48] 49 50[[package]] 51name = "byte-tools" 52version = "0.3.1" 53source = "registry+https://github.com/rust-lang/crates.io-index" 54checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" 55 56[[package]] 57name = "byteorder" 58version = "1.4.3" 59source = "registry+https://github.com/rust-lang/crates.io-index" 60checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 61 62[[package]] 63name = "cfg-if" 64version = "1.0.0" 65source = "registry+https://github.com/rust-lang/crates.io-index" 66checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 67 68[[package]] 69name = "ctor" 70version = "0.1.23" 71source = "registry+https://github.com/rust-lang/crates.io-index" 72checksum = "cdffe87e1d521a10f9696f833fe502293ea446d7f256c06128293a4119bdf4cb" 73dependencies = [ 74 "quote", 75 "syn", 76] 77 78[[package]] 79name = "curve25519-dalek" 80version = "2.1.3" 81source = "registry+https://github.com/rust-lang/crates.io-index" 82checksum = "4a9b85542f99a2dfa2a1b8e192662741c9859a846b296bef1c92ef9b58b5a216" 83dependencies = [ 84 "byteorder", 85 "digest", 86 "rand_core", 87 "subtle", 88 "zeroize", 89] 90 91[[package]] 92name = "digest" 93version = "0.8.1" 94source = "registry+https://github.com/rust-lang/crates.io-index" 95checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5" 96dependencies = [ 97 "generic-array", 98] 99 100[[package]] 101name = "fake-simd" 102version = "0.1.2" 103source = "registry+https://github.com/rust-lang/crates.io-index" 104checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" 105 106[[package]] 107name = "generic-array" 108version = "0.12.4" 109source = "registry+https://github.com/rust-lang/crates.io-index" 110checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd" 111dependencies = [ 112 "typenum", 113] 114 115[[package]] 116name = "getrandom" 117version = "0.1.16" 118source = "registry+https://github.com/rust-lang/crates.io-index" 119checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 120dependencies = [ 121 "cfg-if", 122 "libc", 123 "wasi", 124] 125 126[[package]] 127name = "ghost" 128version = "0.1.6" 129source = "registry+https://github.com/rust-lang/crates.io-index" 130checksum = "eb19fe8de3ea0920d282f7b77dd4227aea6b8b999b42cdf0ca41b2472b14443a" 131dependencies = [ 132 "proc-macro2", 133 "quote", 134 "syn", 135] 136 137[[package]] 138name = "hex-literal" 139version = "0.2.2" 140source = "registry+https://github.com/rust-lang/crates.io-index" 141checksum = "d70693199b3cf4552f3fa720b54163927a3ebed2aef240efaf556033ab336a11" 142dependencies = [ 143 "hex-literal-impl", 144 "proc-macro-hack", 145] 146 147[[package]] 148name = "hex-literal-impl" 149version = "0.2.3" 150source = "registry+https://github.com/rust-lang/crates.io-index" 151checksum = "59448fc2f82a5fb6907f78c3d69d843e82ff5b051923313cc4438cb0c7b745a8" 152dependencies = [ 153 "proc-macro-hack", 154] 155 156[[package]] 157name = "indoc" 158version = "0.3.6" 159source = "registry+https://github.com/rust-lang/crates.io-index" 160checksum = "47741a8bc60fb26eb8d6e0238bbb26d8575ff623fdc97b1a2c00c050b9684ed8" 161dependencies = [ 162 "indoc-impl", 163 "proc-macro-hack", 164] 165 166[[package]] 167name = "indoc-impl" 168version = "0.3.6" 169source = "registry+https://github.com/rust-lang/crates.io-index" 170checksum = "ce046d161f000fffde5f432a0d034d0341dc152643b2598ed5bfce44c4f3a8f0" 171dependencies = [ 172 "proc-macro-hack", 173 "proc-macro2", 174 "quote", 175 "syn", 176 "unindent", 177] 178 179[[package]] 180name = "instant" 181version = "0.1.12" 182source = "registry+https://github.com/rust-lang/crates.io-index" 183checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 184dependencies = [ 185 "cfg-if", 186] 187 188[[package]] 189name = "inventory" 190version = "0.1.11" 191source = "registry+https://github.com/rust-lang/crates.io-index" 192checksum = "f0eb5160c60ba1e809707918ee329adb99d222888155835c6feedba19f6c3fd4" 193dependencies = [ 194 "ctor", 195 "ghost", 196 "inventory-impl", 197] 198 199[[package]] 200name = "inventory-impl" 201version = "0.1.11" 202source = "registry+https://github.com/rust-lang/crates.io-index" 203checksum = "7e41b53715c6f0c4be49510bb82dee2c1e51c8586d885abe65396e82ed518548" 204dependencies = [ 205 "proc-macro2", 206 "quote", 207 "syn", 208] 209 210[[package]] 211name = "keccak" 212version = "0.1.2" 213source = "registry+https://github.com/rust-lang/crates.io-index" 214checksum = "f9b7d56ba4a8344d6be9729995e6b06f928af29998cdf79fe390cbf6b1fee838" 215 216[[package]] 217name = "libc" 218version = "0.2.134" 219source = "registry+https://github.com/rust-lang/crates.io-index" 220checksum = "329c933548736bc49fd575ee68c89e8be4d260064184389a5b77517cddd99ffb" 221 222[[package]] 223name = "lock_api" 224version = "0.4.9" 225source = "registry+https://github.com/rust-lang/crates.io-index" 226checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 227dependencies = [ 228 "autocfg", 229 "scopeguard", 230] 231 232[[package]] 233name = "merlin" 234version = "2.0.1" 235source = "registry+https://github.com/rust-lang/crates.io-index" 236checksum = "4e261cf0f8b3c42ded9f7d2bb59dea03aa52bc8a1cbc7482f9fc3fd1229d3b42" 237dependencies = [ 238 "byteorder", 239 "keccak", 240 "rand_core", 241 "zeroize", 242] 243 244[[package]] 245name = "opaque-debug" 246version = "0.2.3" 247source = "registry+https://github.com/rust-lang/crates.io-index" 248checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" 249 250[[package]] 251name = "parking_lot" 252version = "0.11.2" 253source = "registry+https://github.com/rust-lang/crates.io-index" 254checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" 255dependencies = [ 256 "instant", 257 "lock_api", 258 "parking_lot_core", 259] 260 261[[package]] 262name = "parking_lot_core" 263version = "0.8.5" 264source = "registry+https://github.com/rust-lang/crates.io-index" 265checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216" 266dependencies = [ 267 "cfg-if", 268 "instant", 269 "libc", 270 "redox_syscall", 271 "smallvec", 272 "winapi", 273] 274 275[[package]] 276name = "paste" 277version = "0.1.18" 278source = "registry+https://github.com/rust-lang/crates.io-index" 279checksum = "45ca20c77d80be666aef2b45486da86238fabe33e38306bd3118fe4af33fa880" 280dependencies = [ 281 "paste-impl", 282 "proc-macro-hack", 283] 284 285[[package]] 286name = "paste-impl" 287version = "0.1.18" 288source = "registry+https://github.com/rust-lang/crates.io-index" 289checksum = "d95a7db200b97ef370c8e6de0088252f7e0dfff7d047a28528e47456c0fc98b6" 290dependencies = [ 291 "proc-macro-hack", 292] 293 294[[package]] 295name = "ppv-lite86" 296version = "0.2.16" 297source = "registry+https://github.com/rust-lang/crates.io-index" 298checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" 299 300[[package]] 301name = "proc-macro-hack" 302version = "0.5.19" 303source = "registry+https://github.com/rust-lang/crates.io-index" 304checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" 305 306[[package]] 307name = "proc-macro2" 308version = "1.0.46" 309source = "registry+https://github.com/rust-lang/crates.io-index" 310checksum = "94e2ef8dbfc347b10c094890f778ee2e36ca9bb4262e86dc99cd217e35f3470b" 311dependencies = [ 312 "unicode-ident", 313] 314 315[[package]] 316name = "py-sr25519-bindings" 317version = "0.1.5" 318dependencies = [ 319 "hex-literal", 320 "pyo3", 321 "schnorrkel", 322] 323 324[[package]] 325name = "pyo3" 326version = "0.11.1" 327source = "registry+https://github.com/rust-lang/crates.io-index" 328checksum = "9ca8710ffa8211c9a62a8a3863c4267c710dc42a82a7fd29c97de465d7ea6b7d" 329dependencies = [ 330 "ctor", 331 "indoc", 332 "inventory", 333 "libc", 334 "parking_lot", 335 "paste", 336 "pyo3cls", 337 "unindent", 338] 339 340[[package]] 341name = "pyo3-derive-backend" 342version = "0.11.1" 343source = "registry+https://github.com/rust-lang/crates.io-index" 344checksum = "58ad070bf6967b0d29ea74931ffcf9c6bbe8402a726e9afbeafadc0a287cc2b3" 345dependencies = [ 346 "proc-macro2", 347 "quote", 348 "syn", 349] 350 351[[package]] 352name = "pyo3cls" 353version = "0.11.1" 354source = "registry+https://github.com/rust-lang/crates.io-index" 355checksum = "c3fa17e1ea569d0bf3b7c00f2a9eea831ca05e55dd76f1794c541abba1c64baa" 356dependencies = [ 357 "pyo3-derive-backend", 358 "quote", 359 "syn", 360] 361 362[[package]] 363name = "quote" 364version = "1.0.21" 365source = "registry+https://github.com/rust-lang/crates.io-index" 366checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" 367dependencies = [ 368 "proc-macro2", 369] 370 371[[package]] 372name = "rand" 373version = "0.7.3" 374source = "registry+https://github.com/rust-lang/crates.io-index" 375checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 376dependencies = [ 377 "getrandom", 378 "libc", 379 "rand_chacha", 380 "rand_core", 381 "rand_hc", 382] 383 384[[package]] 385name = "rand_chacha" 386version = "0.2.2" 387source = "registry+https://github.com/rust-lang/crates.io-index" 388checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 389dependencies = [ 390 "ppv-lite86", 391 "rand_core", 392] 393 394[[package]] 395name = "rand_core" 396version = "0.5.1" 397source = "registry+https://github.com/rust-lang/crates.io-index" 398checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 399dependencies = [ 400 "getrandom", 401] 402 403[[package]] 404name = "rand_hc" 405version = "0.2.0" 406source = "registry+https://github.com/rust-lang/crates.io-index" 407checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 408dependencies = [ 409 "rand_core", 410] 411 412[[package]] 413name = "redox_syscall" 414version = "0.2.16" 415source = "registry+https://github.com/rust-lang/crates.io-index" 416checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 417dependencies = [ 418 "bitflags", 419] 420 421[[package]] 422name = "schnorrkel" 423version = "0.9.1" 424source = "registry+https://github.com/rust-lang/crates.io-index" 425checksum = "021b403afe70d81eea68f6ea12f6b3c9588e5d536a94c3bf80f15e7faa267862" 426dependencies = [ 427 "arrayref", 428 "arrayvec", 429 "curve25519-dalek", 430 "getrandom", 431 "merlin", 432 "rand", 433 "rand_core", 434 "sha2", 435 "subtle", 436 "zeroize", 437] 438 439[[package]] 440name = "scopeguard" 441version = "1.1.0" 442source = "registry+https://github.com/rust-lang/crates.io-index" 443checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 444 445[[package]] 446name = "sha2" 447version = "0.8.2" 448source = "registry+https://github.com/rust-lang/crates.io-index" 449checksum = "a256f46ea78a0c0d9ff00077504903ac881a1dafdc20da66545699e7776b3e69" 450dependencies = [ 451 "block-buffer", 452 "digest", 453 "fake-simd", 454 "opaque-debug", 455] 456 457[[package]] 458name = "smallvec" 459version = "1.10.0" 460source = "registry+https://github.com/rust-lang/crates.io-index" 461checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 462 463[[package]] 464name = "subtle" 465version = "2.4.1" 466source = "registry+https://github.com/rust-lang/crates.io-index" 467checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 468 469[[package]] 470name = "syn" 471version = "1.0.102" 472source = "registry+https://github.com/rust-lang/crates.io-index" 473checksum = "3fcd952facd492f9be3ef0d0b7032a6e442ee9b361d4acc2b1d0c4aaa5f613a1" 474dependencies = [ 475 "proc-macro2", 476 "quote", 477 "unicode-ident", 478] 479 480[[package]] 481name = "synstructure" 482version = "0.12.6" 483source = "registry+https://github.com/rust-lang/crates.io-index" 484checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" 485dependencies = [ 486 "proc-macro2", 487 "quote", 488 "syn", 489 "unicode-xid", 490] 491 492[[package]] 493name = "typenum" 494version = "1.15.0" 495source = "registry+https://github.com/rust-lang/crates.io-index" 496checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" 497 498[[package]] 499name = "unicode-ident" 500version = "1.0.4" 501source = "registry+https://github.com/rust-lang/crates.io-index" 502checksum = "dcc811dc4066ac62f84f11307873c4850cb653bfa9b1719cee2bd2204a4bc5dd" 503 504[[package]] 505name = "unicode-xid" 506version = "0.2.4" 507source = "registry+https://github.com/rust-lang/crates.io-index" 508checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 509 510[[package]] 511name = "unindent" 512version = "0.1.10" 513source = "registry+https://github.com/rust-lang/crates.io-index" 514checksum = "58ee9362deb4a96cef4d437d1ad49cffc9b9e92d202b6995674e928ce684f112" 515 516[[package]] 517name = "wasi" 518version = "0.9.0+wasi-snapshot-preview1" 519source = "registry+https://github.com/rust-lang/crates.io-index" 520checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 521 522[[package]] 523name = "winapi" 524version = "0.3.9" 525source = "registry+https://github.com/rust-lang/crates.io-index" 526checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 527dependencies = [ 528 "winapi-i686-pc-windows-gnu", 529 "winapi-x86_64-pc-windows-gnu", 530] 531 532[[package]] 533name = "winapi-i686-pc-windows-gnu" 534version = "0.4.0" 535source = "registry+https://github.com/rust-lang/crates.io-index" 536checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 537 538[[package]] 539name = "winapi-x86_64-pc-windows-gnu" 540version = "0.4.0" 541source = "registry+https://github.com/rust-lang/crates.io-index" 542checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 543 544[[package]] 545name = "zeroize" 546version = "1.5.7" 547source = "registry+https://github.com/rust-lang/crates.io-index" 548checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f" 549dependencies = [ 550 "zeroize_derive", 551] 552 553[[package]] 554name = "zeroize_derive" 555version = "1.3.2" 556source = "registry+https://github.com/rust-lang/crates.io-index" 557checksum = "3f8f187641dad4f680d25c4bfc4225b418165984179f26ca76ec4fb6441d3a17" 558dependencies = [ 559 "proc-macro2", 560 "quote", 561 "syn", 562 "synstructure", 563]