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
error[E0599]: no method named ct_ne found for type i64 in the current scope
--> /home/default2/.cargo/registry/src/index.crates.io-6f17d22bba15001f/halo2curves-0.6.0/src/ff_ext/mod.rs:18:25
|
18 | self.legendre().ct_ne(&-1)
| ^^^^^ help: there is a method with a similar name: count_ones
ct_ne was introduced in subtle 2.5, whereas halo2curves depends on 2.4
I think you need to bump the version.
The text was updated successfully, but these errors were encountered:
My project uses the halo2 lib from https://github.com/privacy-scaling-explorations/halo2/tree/main/halo2_proofs as a dependency. That halo2 lib has a dependency on
halo2curves = { version = "0.6.0", default-features = false }
I got a compilation error for my project:
ct_ne
was introduced insubtle
2.5, whereashalo2curves
depends on 2.4I think you need to bump the version.
The text was updated successfully, but these errors were encountered: