Skip to content

Commit c599136

Browse files
Update rand dep for ff_derive tests
1 parent e0b16a4 commit c599136

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

guest-libs/ff_derive/tests/programs/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ version = "0.0.0"
55
edition = "2021"
66

77
[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" }
1212

1313
hex = { version = "0.4.3", default-features = false, features = ["alloc"] }
1414
serde = { version = "1.0", default-features = false, features = [
1515
"alloc",
1616
"derive",
1717
]}
1818
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 }
2020
num-bigint = { version = "0.4.6", default-features = false }
2121

2222
openvm-ff-derive = { path = "../../guest" }

guest-libs/ff_derive/tests/programs/examples/batch_inversion.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use openvm_ff_derive::openvm_prime_field;
1515
#[PrimeFieldReprEndianness = "little"]
1616
struct Bls381K12Scalar([u64; 4]);
1717

18-
openvm::init!("openvm_init_batch_inversion.rs");
18+
openvm::init!("openvm_init_batch_inversion_std.rs");
1919

2020
fn main() {
2121
use ff::{BatchInverter, Field};

0 commit comments

Comments
 (0)