File tree 2 files changed +6
-6
lines changed
guest-libs/ff_derive/tests/programs
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -5,18 +5,18 @@ version = "0.0.0"
5
5
edition = " 2021"
6
6
7
7
[dependencies ]
8
- openvm = { git = " https://github.com/openvm-org/openvm.git " , branch = " refactor/guest-library-reorg-final " }
9
- openvm-platform = { git = " https://github.com/openvm-org/openvm.git " , branch = " refactor/guest-library-reorg-final " }
10
- openvm-algebra-guest = { git = " https://github.com/openvm-org/openvm.git " , branch = " refactor/ guest-library-reorg-final " }
11
- openvm-algebra-moduli-macros = { git = " https://github.com/openvm-org/openvm.git " , branch = " refactor/guest-library-reorg-final " }
8
+ openvm = { path = " ../../../../crates/toolchain/openvm " }
9
+ openvm-platform = { path = " ../../../../crates/toolchain/platform " }
10
+ openvm-algebra-guest = { path = " ../../../../extensions/algebra/ guest" }
11
+ openvm-algebra-moduli-macros = { path = " ../../../../extensions/algebra/moduli-macros " }
12
12
13
13
hex = { version = " 0.4.3" , default-features = false , features = [" alloc" ] }
14
14
serde = { version = " 1.0" , default-features = false , features = [
15
15
" alloc" ,
16
16
" derive" ,
17
17
]}
18
18
ff = { version = " 0.13.1" , features = [" derive" ] }
19
- rand = { version = " 0.8.5 " , default-features = false , features = [ " getrandom " ] }
19
+ rand = { version = " 0.9.1 " , default-features = false }
20
20
num-bigint = { version = " 0.4.6" , default-features = false }
21
21
22
22
openvm-ff-derive = { path = " ../../guest" }
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ use openvm_ff_derive::openvm_prime_field;
15
15
#[ PrimeFieldReprEndianness = "little" ]
16
16
struct Bls381K12Scalar ( [ u64 ; 4 ] ) ;
17
17
18
- openvm:: init!( "openvm_init_batch_inversion .rs" ) ;
18
+ openvm:: init!( "openvm_init_batch_inversion_std .rs" ) ;
19
19
20
20
fn main ( ) {
21
21
use ff:: { BatchInverter , Field } ;
You can’t perform that action at this time.
0 commit comments