From 903c741e038be240d1c80622a843c4b011965d75 Mon Sep 17 00:00:00 2001 From: Will Lin Date: Thu, 29 Apr 2021 16:06:46 -0400 Subject: [PATCH] update dependencies to use release versions --- Cargo.toml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2ec7e87..5b86e90 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,11 +20,11 @@ license = "MIT/Apache-2.0" edition = "2018" [dependencies] -ark-serialize = { git = "https://github.com/arkworks-rs/algebra", default-features = false, features = [ "derive" ] } -ark-ff = { git = "https://github.com/arkworks-rs/algebra", default-features = false } -ark-std = { git = "https://github.com/arkworks-rs/utils", default-features = false } -ark-poly = { git = "https://github.com/arkworks-rs/algebra", default-features = false } -ark-relations = { git = "https://github.com/arkworks-rs/snark", default-features = false } +ark-serialize = { version = "^0.2.0", default-features = false, features = [ "derive" ] } +ark-ff = { version = "^0.2.0", default-features = false } +ark-std = { version = "^0.2.0", default-features = false } +ark-poly = { version = "^0.2.0", default-features = false } +ark-relations = { version = "^0.2.0", default-features = false } ark-poly-commit = { git = "https://github.com/arkworks-rs/poly-commit", branch = "constraints", default-features = false, features = [ "r1cs" ] } rand_chacha = { version = "0.2.1", default-features = false } @@ -32,22 +32,22 @@ rayon = { version = "1", optional = true } digest = { version = "0.9" } derivative = { version = "2", features = ["use_core"] } -ark-ec = { git = "https://github.com/arkworks-rs/algebra", default-features = false } -ark-crypto-primitives = { git = "https://github.com/arkworks-rs/crypto-primitives", branch = "main", default-features = false, features = [ "r1cs" ] } -ark-r1cs-std = { git = "https://github.com/arkworks-rs/r1cs-std", default-features = false } -ark-nonnative-field = { git = "https://github.com/arkworks-rs/nonnative", default-features = false } -ark-snark = { git = "https://github.com/arkworks-rs/snark", default-features = false } +ark-ec = { version = "^0.2.0", default-features = false } +ark-crypto-primitives = { version = "^0.2.0", default-features = false, features = [ "r1cs" ] } +ark-r1cs-std = { version = "^0.2.0", default-features = false } +ark-nonnative-field = { version = "^0.2.0", default-features = false } +ark-snark = { version = "^0.2.0", default-features = false } hashbrown = "0.9" tracing = { version = "0.1", default-features = false, features = [ "attributes" ] } tracing-subscriber = { version = "0.2", default-features = false, optional = true } [dev-dependencies] blake2 = { version = "0.9", default-features = false } -ark-bls12-381 = { git = "https://github.com/arkworks-rs/curves", default-features = false, features = [ "curve" ] } -ark-mnt4-298 = { git = "https://github.com/arkworks-rs/curves", default-features = false, features = ["r1cs", "curve"] } -ark-mnt6-298 = { git = "https://github.com/arkworks-rs/curves", default-features = false, features = ["r1cs"] } -ark-mnt4-753 = { git = "https://github.com/arkworks-rs/curves", default-features = false, features = ["r1cs", "curve"] } -ark-mnt6-753 = { git = "https://github.com/arkworks-rs/curves", default-features = false, features = ["r1cs"] } +ark-bls12-381 = { version = "^0.2.0", default-features = false, features = [ "curve" ] } +ark-mnt4-298 = { version = "^0.2.0", default-features = false, features = ["r1cs", "curve"] } +ark-mnt6-298 = { version = "^0.2.0", default-features = false, features = ["r1cs"] } +ark-mnt4-753 = { version = "^0.2.0", default-features = false, features = ["r1cs", "curve"] } +ark-mnt6-753 = { version = "^0.2.0", default-features = false, features = ["r1cs"] } [profile.release] opt-level = 3