-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove hardcoded rust toolchain (#122) * Remove hardcoded rust toolchain and use new gingerlib: we should update pk/vk for old circuits * Fix version in README * Update crossbeam-channel that was yanked * Remove fixed version of dependencies (#109) --------- Co-authored-by: nicholas-mainardi <[email protected]>
- Loading branch information
1 parent
26d3d11
commit b101ffe
Showing
13 changed files
with
146 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "api" | ||
version = "0.6.0" | ||
version = "0.7.0" | ||
authors = [ | ||
"DanieleDiBenedetto <[email protected]>", | ||
"Oleksandr Iozhytsia <[email protected]>", | ||
|
@@ -9,38 +9,50 @@ authors = [ | |
"Luigi Varriale <[email protected]>", | ||
"cronicc <[email protected]>", | ||
"Paolo Tagliaferri <[email protected]>", | ||
"Michael Lodder <[email protected]>" | ||
"Michael Lodder <[email protected]>", | ||
"Michele d'Amico <[email protected]>", | ||
"Nicholas Mainardi <[email protected]>", | ||
] | ||
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.5.0"} | ||
primitives = {features = ["tweedle", "merkle_tree"], git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.5.0"} | ||
algebra = { features = [ | ||
"tweedle", | ||
], git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.6.0" } | ||
primitives = { features = [ | ||
"tweedle", | ||
"merkle_tree", | ||
], git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.6.0" } | ||
|
||
cctp_primitives = { git = "https://github.com/HorizenOfficial/zendoo-cctp-lib.git", tag = "0.2.0" } | ||
r1cs-core = {git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.5.0"} | ||
cctp_primitives = { git = "https://github.com/HorizenOfficial/zendoo-cctp-lib.git", tag = "0.2.1" } | ||
r1cs-core = { git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.6.0" } | ||
#ouroboros = {path = "../ouroboros"} | ||
demo-circuit = {path = "../demo-circuit"} | ||
demo-circuit = { path = "../demo-circuit" } | ||
|
||
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" } | ||
rand_chacha = { version = "=0.3.1" } | ||
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" } | ||
rand_chacha = { version = "0.3.1" } | ||
blake2 = { version = "0.8.1", default-features = false } | ||
|
||
[dev-dependencies] | ||
serial_test = "=0.5.1" | ||
serial_test = "0.5.1" | ||
|
||
[lib] | ||
name = "zendoo_sc" | ||
path = "src/lib.rs" | ||
crate_type = ["cdylib"] | ||
|
||
[features] | ||
default = [ "asm" ] | ||
asm = [ "algebra/llvm_asm", "primitives/llvm_asm", "cctp_primitives/asm", "demo-circuit/asm" ] | ||
default = ["asm"] | ||
asm = [ | ||
"algebra/asm", | ||
"primitives/asm", | ||
"cctp_primitives/asm", | ||
"demo-circuit/asm", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.