Browse Source

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
master
Milkey Mouse 3 years ago
committed by GitHub
parent
commit
8f21680833
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      Cargo.toml

+ 6
- 1
Cargo.toml

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

Loading…
Cancel
Save