-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] Split bellman crate #3
base: plonk-add-verifier
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense! Just a few small comments but ok to merge and review together with the rest
zokrates_bellman_plonk/Cargo.toml
Outdated
zokrates_ast = { version = "0.1", path = "../zokrates_ast", default-features = false } | ||
zokrates_proof_systems = { version = "0.1", path = "../zokrates_proof_systems", default-features = false } | ||
|
||
bellman_ce = { git = "https://github.com/georgwiese/bellman", rev="b356c7001f30da23bfad2b43eb0b7ca9804c8252", default-features = false, features = ["plonk", "multicore"] } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shall we try to get these changes merged?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure! I opened matter-labs/bellman#48. Also, I pulled the most recent dev
and updated our Cargo.toml
s accordingly to make sure that we can actually use the merged version.
zokrates_field/Cargo.toml
Outdated
@@ -19,7 +19,8 @@ num-traits = { version = "0.2", default-features = false } | |||
num-integer = { version = "0.1", default-features = false } | |||
|
|||
# bellman | |||
bellman_ce = { git = "https://github.com/matter-labs/bellman", version = "^0.3", default-features = false, optional = true } | |||
bellman_ce = { version = "^0.3", default-features = false, optional = true } | |||
bellman_ce_plonk = { package = "bellman_ce", git = "https://github.com/georgwiese/bellman", rev="b356c7001f30da23bfad2b43eb0b7ca9804c8252", default-features = false, features = ["plonk", "multicore"], optional = true } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here
…nto split-bellman-crate
No description provided.