Skip to content

Commit

Permalink
Merge pull request #68 from HorizenOfficial/freezing_dependencies_on_…
Browse files Browse the repository at this point in the history
…master

freezing dependencies in Cargo.toml
  • Loading branch information
lander86 authored Nov 16, 2021
2 parents 159eb90 + 803d366 commit debcfbc
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 32 deletions.
22 changes: 11 additions & 11 deletions api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "api"
version = "0.4.0"
version = "0.4.1"
authors = [
"DanieleDiBenedetto <[email protected]>",
"Oleksandr Iozhytsia <[email protected]>",
Expand All @@ -14,21 +14,21 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
algebra = {features = ["tweedle"], git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.3.0"}
primitives = {features = ["tweedle", "merkle_tree"], git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.3.0"}
algebra = {features = ["tweedle"], git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.3.1"}
primitives = {features = ["tweedle", "merkle_tree"], git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.3.1"}

cctp_primitives = { git = "https://github.com/HorizenOfficial/zendoo-cctp-lib.git", tag = "0.1.0" }
cctp_primitives = { git = "https://github.com/HorizenOfficial/zendoo-cctp-lib.git", tag = "0.1.1" }

#ouroboros = {path = "../ouroboros"}
demo-circuit = {path = "../demo-circuit"}

jni = "0.19.0"
derivative = "2.2.0"
lazy_static = "1"
radix_trie = "0.2.1"
rand = { version = "0.8.4" }
rand_xorshift = { version = "0.3.0" }
blake2 = { version = "0.8.1", default-features = false }
jni = "=0.19.0"
derivative = "=2.2.0"
lazy_static = "=1.4.0"
radix_trie = "=0.2.1"
rand = { version = "=0.8.4" }
rand_xorshift = { version = "=0.3.0" }
blake2 = { version = "=0.8.1", default-features = false }

[lib]
name = "zendoo_sc"
Expand Down
32 changes: 16 additions & 16 deletions demo-circuit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "demo-circuit"
version = "0.4.0"
version = "0.4.1"
authors = [
"DanieleDiBenedetto <[email protected]>",
"Oleksandr Iozhytsia <[email protected]>",
Expand All @@ -13,25 +13,25 @@ edition = "2018"
include = ["Cargo.toml", "src"]

[dependencies]
algebra = {features = ["tweedle"], git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.3.0"}
primitives = {features = ["tweedle", "signature", "vrf"], git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.3.0"}
r1cs-crypto = {features = ["tweedle", "signature"], git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.3.0"}
r1cs-core = {git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.3.0"}
r1cs-std = {features = ["tweedle"], git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.3.0"}
algebra = {features = ["tweedle"], git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.3.1"}
primitives = {features = ["tweedle", "signature", "vrf"], git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.3.1"}
r1cs-crypto = {features = ["tweedle", "signature"], git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.3.1"}
r1cs-core = {git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.3.1"}
r1cs-std = {features = ["tweedle"], git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.3.1"}

cctp_primitives = { git = "https://github.com/HorizenOfficial/zendoo-cctp-lib.git", tag = "0.1.0" }
cctp_primitives = { git = "https://github.com/HorizenOfficial/zendoo-cctp-lib.git", tag = "0.1.1" }

derivative = "2.2.0"
lazy_static = "1"
radix_trie = "0.2.1"
rand = { version = "0.8.4" }
blake2 = { version = "0.8.1", default-features = false }
derivative = "=2.2.0"
lazy_static = "=1.4.0"
radix_trie = "=0.2.1"
rand = { version = "=0.8.4" }
blake2 = { version = "=0.8.1", default-features = false }

[dev-dependencies]
digest = "0.8"
blake2s_simd = "0.5"
bit-vec = "0.6.1"
digest = "=0.8.1"
blake2s_simd = "=0.5.11"
bit-vec = "=0.6.3"

[features]
default = [ "asm" ]
asm = [ "algebra/llvm_asm", "cctp_primitives/asm" ]
asm = [ "algebra/llvm_asm", "cctp_primitives/asm" ]
2 changes: 1 addition & 1 deletion jni/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.horizen</groupId>
<artifactId>zendoo-sc-cryptolib</artifactId>
<version>0.4.0</version>
<version>0.4.1</version>
<inceptionYear>2020</inceptionYear>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
Expand Down
8 changes: 4 additions & 4 deletions ouroboros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "ouroboros"
version = "0.4.0"
version = "0.4.1"
authors = ["DanieleDiBenedetto <[email protected]>"]
edition = "2018"

[dependencies]
algebra = { git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.3.0"}
primitives = { features = ["vrf"], git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.3.0"}
rand = { version = "0.7" }
algebra = { git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.3.1"}
primitives = { features = ["vrf"], git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.3.1"}
rand = { version = "=0.8.4" }

[features]
default = [ "asm" ]
Expand Down

0 comments on commit debcfbc

Please sign in to comment.