Skip to content

Commit

Permalink
bumping tags
Browse files Browse the repository at this point in the history
  • Loading branch information
lander86 committed Nov 12, 2021
1 parent 2a1560b commit 885e154
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ edition = "2018"
################################# Dependencies ################################

[dependencies]
algebra = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.3.0", features = ["parallel"] }
algebra = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.3.1", features = ["parallel"] }
bench-utils = { path = "../bench-utils" }

digest = { version = "=0.8.1", optional = true }
Expand Down Expand Up @@ -53,7 +53,7 @@ bn_382 = ["algebra/bn_382"]
tweedle = ["algebra/tweedle"]

[dev-dependencies]
algebra = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.3.0", features = ["edwards_sw6", "jubjub", "sw6", "bls12_377"] }
algebra = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.3.1", features = ["edwards_sw6", "jubjub", "sw6", "bls12_377"] }
primitives = { path = "../primitives", features = ["mnt4_753", "mnt6_753", "bn_382", "tweedle"] }

criterion = "=0.3.5"
Expand Down
10 changes: 5 additions & 5 deletions proof-systems/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ edition = "2018"
################################# Dependencies ################################

[dependencies]
algebra = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.3.0", features = [ "parallel", "fft"] }
r1cs-core = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.3.0" }
algebra = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.3.1", features = [ "parallel", "fft"] }
r1cs-core = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.3.1" }
bench-utils = { path = "../bench-utils" }

marlin = { git = "https://github.com/HorizenLabs/marlin", tag = "0.2.0", optional = true }
poly-commit = { git = "https://github.com/HorizenLabs/poly-commit", tag = "0.2.0", optional = true }
marlin = { git = "https://github.com/HorizenLabs/marlin", tag = "0.2.1", optional = true }
poly-commit = { git = "https://github.com/HorizenLabs/poly-commit", tag = "0.2.1", optional = true }

r1cs-std = { path = "../r1cs/gadgets/std", optional = true }

Expand All @@ -46,7 +46,7 @@ criterion = "=0.3.5"
rand_xorshift = { version = "=0.3.0" }
blake2 = { version = "=0.8.1", default-features = false }

algebra = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.3.0", features = ["full", "parallel", "fft"] }
algebra = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.3.1", features = ["full", "parallel", "fft"] }
r1cs-crypto = { path = "../r1cs/gadgets/crypto", features = ["nizk"] }

[features]
Expand Down
2 changes: 1 addition & 1 deletion r1cs/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
license = "MIT/Apache-2.0"

[dependencies]
algebra = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.3.0" }
algebra = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.3.1" }
smallvec = { version = "=1.7.0" }
6 changes: 3 additions & 3 deletions r1cs/gadgets/crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ edition = "2018"
################################# Dependencies ################################

[dependencies]
algebra = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.3.0", features = [ "parallel" ] }
algebra = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.3.1", features = [ "parallel" ] }
primitives = {path = "../../../primitives"}
r1cs-core = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.3.0" }
r1cs-core = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.3.1" }
r1cs-std = { path = "../std"}
proof-systems = { path = "../../../proof-systems", features = ["groth16", "gm17"], optional = true }
bench-utils = { path = "../../../bench-utils" }
Expand Down Expand Up @@ -55,6 +55,6 @@ llvm_asm = ["algebra/llvm_asm"]

[dev-dependencies]
rand_xorshift = { version = "=0.3.0" }
algebra = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.3.0", features = ["bls12_377", "bls12_381", "sw6", "bn_382"] }
algebra = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.3.1", features = ["bls12_377", "bls12_381", "sw6", "bn_382"] }
r1cs-std = { path = "../std", features = ["jubjub", "edwards_sw6", "bls12_377", "mnt4_753", "mnt6_753", "bn_382", "tweedle"] }
r1cs-crypto = { path = "../crypto", features = ["mnt4_753", "mnt6_753", "bn_382", "tweedle"] }
6 changes: 3 additions & 3 deletions r1cs/gadgets/std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ license = "MIT/Apache-2.0"
################################# Dependencies ################################

[dependencies]
algebra = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.3.0" }
r1cs-core = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.3.0" }
algebra = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.3.1" }
r1cs-core = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.3.1" }
derivative = "=2.2.0"
radix_trie = "=0.2.1"
rand = { version = "=0.8.4" }
Expand All @@ -45,4 +45,4 @@ tweedle = [ "algebra/tweedle" ]

[dev-dependencies]
rand_xorshift = { version = "=0.3.0" }
algebra = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.3.0", features = ["bls12_381", "jubjub"] }
algebra = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.3.1", features = ["bls12_381", "jubjub"] }

0 comments on commit 885e154

Please sign in to comment.