Fix build on recent nightly compilers (upgrade packed_simd) (#30)

* Upgrade curve25519-dalek to version 3

* Use a version of curve25519-dalek with an up-to-date packed_simd
This commit is contained in:
Milkey Mouse
2021-01-11 10:57:14 -08:00
committed by GitHub
parent 5b59893903
commit 8f21680833

View File

@@ -10,8 +10,13 @@ repository = "https://github.com/microsoft/Spartan"
license-file = "LICENSE" license-file = "LICENSE"
keywords = ["zkSNARKs", "cryptography", "proofs"] keywords = ["zkSNARKs", "cryptography", "proofs"]
[dependencies.curve25519-dalek]
features = ["serde", "simd_backend"]
#version = "3"
git = "https://github.com/dalek-cryptography/curve25519-dalek"
rev = "a787300ba169ae035bcdf2d540cf2b61b950405c"
[dependencies] [dependencies]
curve25519-dalek = { version = "2", features = ["serde", "simd_backend"]}
merlin = "2.0.0" merlin = "2.0.0"
rand = "0.7.3" rand = "0.7.3"
digest = "0.8.1" digest = "0.8.1"