Skip to content

Commit

Permalink
Merge pull request #28 from HorizenOfficial/org_rename
Browse files Browse the repository at this point in the history
Rename org to HorizenOfficial
  • Loading branch information
cronicc authored Jul 27, 2020
2 parents 3f02071 + a77668a commit dca8745
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ path = "src/lib.rs"
crate-type = ["staticlib"]

[dependencies]
# algebra = {version = "0.1.0", git = "https://github.com/ZencashOfficial/ginger-lib.git", branch = "development"}
# primitives = {version = "0.1.0", features = ["merkle_tree"], git = "https://github.com/ZencashOfficial/ginger-lib.git", branch = "development"}
# proof-systems = {version = "0.1.0", features = ["groth16"], git = "https://github.com/ZencashOfficial/ginger-lib.git", branch = "development"}
# algebra = {version = "0.1.0", git = "https://github.com/HorizenOfficial/ginger-lib.git", branch = "development"}
# primitives = {version = "0.1.0", features = ["merkle_tree"], git = "https://github.com/HorizenOfficial/ginger-lib.git", branch = "development"}
# proof-systems = {version = "0.1.0", features = ["groth16"], git = "https://github.com/HorizenOfficial/ginger-lib.git", branch = "development"}

# r1cs-crypto = {version = "0.1.0", git = "https://github.com/ZencashOfficial/ginger-lib.git", branch = "development", optional = true}
# r1cs-core = {version = "0.1.0", git = "https://github.com/ZencashOfficial/ginger-lib.git", branch = "development", optional = true}
# r1cs-std = {version = "0.1.0", git = "https://github.com/ZencashOfficial/ginger-lib.git", branch = "development", optional = true}
# r1cs-crypto = {version = "0.1.0", git = "https://github.com/HorizenOfficial/ginger-lib.git", branch = "development", optional = true}
# r1cs-core = {version = "0.1.0", git = "https://github.com/HorizenOfficial/ginger-lib.git", branch = "development", optional = true}
# r1cs-std = {version = "0.1.0", git = "https://github.com/HorizenOfficial/ginger-lib.git", branch = "development", optional = true}

maybe-uninit = "=2.0.0"
rand = "0.7.3"
Expand All @@ -26,36 +26,36 @@ libc = "=0.2.70"
cfg-if = "= 0.1.2"

[dependencies.algebra]
git = "https://github.com/ZencashOfficial/ginger-lib.git"
git = "https://github.com/HorizenOfficial/ginger-lib.git"
rev = "69f3c0b2f80a90379587fa5a5cb0e9be130cba6e"
version = "0.1.0"

[dependencies.primitives]
git = "https://github.com/ZencashOfficial/ginger-lib.git"
git = "https://github.com/HorizenOfficial/ginger-lib.git"
rev = "69f3c0b2f80a90379587fa5a5cb0e9be130cba6e"
features = ["merkle_tree"]
version = "0.1.0"

[dependencies.proof-systems]
git = "https://github.com/ZencashOfficial/ginger-lib.git"
git = "https://github.com/HorizenOfficial/ginger-lib.git"
rev = "69f3c0b2f80a90379587fa5a5cb0e9be130cba6e"
features = ["groth16"]
version = "0.1.0"

[dependencies.r1cs-crypto]
git = "https://github.com/ZencashOfficial/ginger-lib.git"
git = "https://github.com/HorizenOfficial/ginger-lib.git"
rev = "69f3c0b2f80a90379587fa5a5cb0e9be130cba6e"
version = "0.1.0"
optional = true

[dependencies.r1cs-core]
git = "https://github.com/ZencashOfficial/ginger-lib.git"
git = "https://github.com/HorizenOfficial/ginger-lib.git"
rev = "69f3c0b2f80a90379587fa5a5cb0e9be130cba6e"
version = "0.1.0"
optional = true

[dependencies.r1cs-std]
git = "https://github.com/ZencashOfficial/ginger-lib.git"
git = "https://github.com/HorizenOfficial/ginger-lib.git"
rev = "69f3c0b2f80a90379587fa5a5cb0e9be130cba6e"
version = "0.1.0"
optional = true
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# zendoo-mc-cryptolib


`zendoo-mc-cryptolib` is an FFI library crate that exposes the [ginger-lib](https://github.com/ZencashOfficial/ginger-lib) Rust components needed to support [Zendoo](https://eprint.iacr.org/2020/123.pdf "Zendoo") in mainchain.
`zendoo-mc-cryptolib` is an FFI library crate that exposes the [ginger-lib](https://github.com/HorizenOfficial/ginger-lib) Rust components needed to support [Zendoo](https://eprint.iacr.org/2020/123.pdf "Zendoo") in mainchain.

In particular it exposes interfaces to:

Expand Down

0 comments on commit dca8745

Please sign in to comment.