You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to build a project that use a package that use sapling-crypto as dependency. But it fails if a try to build it.
I've cloned this repo and built it but fails with multiples errors. It seems that cargo search for bellman_ce 0.3.4 and that version breaks the project. But if a change the cargo dependency of bellman to bellman_ce 0.3.1 it works.
this bellman = {package = "bellman_ce", version = "0.3", default-features = false}
by this: bellman = {package = "bellman_ce", version = "=0.3.1", default-features = false}
my rust version is rustc 1.45.0-nightly (769d12eec 2020-05-12)
The text was updated successfully, but these errors were encountered:
________________________________
От: Matias Diaz <[email protected]>
Отправлено: Thursday, May 14, 2020 9:02:42 PM
Кому: matter-labs/sapling-crypto <[email protected]>
Копия: Subscribed <[email protected]>
Тема: [matter-labs/sapling-crypto] Fail to build with bellman dependency (#17)
I'm trying to build a project that use a package that use sapling-crypto as dependency. But it fails if a try to build it.
I've cloned this repo and built it but fails with multiples errors. It seems that cargo search for bellman_ce 0.3.4 and that version break the project. But if a change the cargo dependency of bellman to bellman_ce 0.3.1 it works.
this<https://github.com/matter-labs/sapling-crypto/blob/master/Cargo.toml#L31>
bellman = {package = "bellman_ce", version = "0.3", default-features = false}
by this:
bellman = {package = "bellman_ce", version = "=0.3.1", default-features = false}
my rust version is rustc 1.45.0-nightly (769d12eec 2020-05-12)
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub<#17>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/ABRK753RQDI7FNNFGP6SN3LRRQW4FANCNFSM4NA467WQ>.
I'm trying to build a project that use a package that use sapling-crypto as dependency. But it fails if a try to build it.
I've cloned this repo and built it but fails with multiples errors. It seems that cargo search for bellman_ce 0.3.4 and that version breaks the project. But if a change the cargo dependency of bellman to bellman_ce 0.3.1 it works.
this
bellman = {package = "bellman_ce", version = "0.3", default-features = false}
by this:
bellman = {package = "bellman_ce", version = "=0.3.1", default-features = false}
my rust version is rustc 1.45.0-nightly (769d12eec 2020-05-12)
The text was updated successfully, but these errors were encountered: