From 096c07910a7aa42a7bc6b27061f9dba05d9cfcad Mon Sep 17 00:00:00 2001 From: Srinath Setty Date: Tue, 12 Jan 2021 12:20:30 -0800 Subject: [PATCH] upgrade to use crates.io (#32) --- .github/workflows/rust.yml | 2 +- Cargo.toml | 7 +------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index b217a21..e811e41 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -14,7 +14,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Install - run: rustup default nightly-2020-09-15 + run: rustup default nightly-2021-01-03 - name: Build run: cargo build --verbose - name: Run tests diff --git a/Cargo.toml b/Cargo.toml index a84fb70..5dcb044 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,13 +10,8 @@ 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 = "3.0.0", features = ["serde", "simd_backend"]} merlin = "2.0.0" rand = "0.7.3" digest = "0.8.1"