Skip to content

Commit

Permalink
chore: bump openvm (#19)
Browse files Browse the repository at this point in the history
* bump

* fix: remove num-bigint-dig

* more revs
  • Loading branch information
jonathanpwang authored Jan 18, 2025
1 parent 247ce0a commit b38157c
Show file tree
Hide file tree
Showing 8 changed files with 586 additions and 644 deletions.
1,120 changes: 531 additions & 589 deletions Cargo.lock

Large diffs are not rendered by default.

32 changes: 16 additions & 16 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,22 @@ default-members = ["crates/revm"]

[workspace.dependencies]
# openvm
openvm = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-ecc-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-pairing-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-keccak256-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-sha256-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-sdk = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-build = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-pairing-transpiler = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-rv32im-transpiler = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-transpiler = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-algebra-circuit = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-algebra-transpiler = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-ecc-circuit = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-ecc-transpiler = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-pairing-circuit = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-circuit = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-ecc-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-pairing-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-keccak256-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-sha256-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-sdk = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-build = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-pairing-transpiler = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-rv32im-transpiler = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-transpiler = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-algebra-circuit = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-algebra-transpiler = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-ecc-circuit = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-ecc-transpiler = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-pairing-circuit = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-circuit = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-stark-sdk = { git = "https://github.com/openvm-org/stark-backend.git", rev = "47a0bda" }

[workspace.metadata.docs.rs]
Expand Down
14 changes: 7 additions & 7 deletions tests/openvm/programs/ec_add/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ version = "0.1.0"
edition = "2021"

[dependencies]
openvm = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-algebra-moduli-setup = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-ecc-sw-setup = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-platform = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-algebra-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-pairing-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-ecc-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-algebra-moduli-setup = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-ecc-sw-setup = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-platform = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-algebra-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-pairing-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-ecc-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
revm-precompile = { path = "../../../../crates/precompile", default-features = false, features = [
"openvm-bn",
] }
14 changes: 7 additions & 7 deletions tests/openvm/programs/ec_mul/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ version = "0.1.0"
edition = "2021"

[dependencies]
openvm = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-algebra-moduli-setup = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-ecc-sw-setup = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-platform = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-algebra-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-pairing-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-ecc-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-algebra-moduli-setup = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-ecc-sw-setup = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-platform = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-algebra-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-pairing-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-ecc-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
revm-precompile = { path = "../../../../crates/precompile", default-features = false, features = [
"openvm-bn",
] }
10 changes: 5 additions & 5 deletions tests/openvm/programs/pairing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ version = "0.1.0"
edition = "2021"

[dependencies]
openvm = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-algebra-moduli-setup = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-algebra-complex-macros = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-platform = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-algebra-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-algebra-moduli-setup = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-algebra-complex-macros = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-platform = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-algebra-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
revm-precompile = { path = "../../../../crates/precompile", default-features = false, features = [
"openvm-bn",
] }
4 changes: 2 additions & 2 deletions tests/openvm/programs/sha256/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ version = "0.1.0"
edition = "2021"

[dependencies]
openvm = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm-sha256-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "fc90b5d" }
openvm = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-sha256-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
revm-precompile = { path = "../../../../crates/precompile", default-features = false, features = [
"openvm-sha2",
] }
34 changes: 17 additions & 17 deletions tests/openvm/tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,28 @@ version = "0.1.0"
edition = "2021"

[dependencies]
openvm = { git = "https://github.com/openvm-org/openvm.git", rev = "1ad4140" }
openvm-ecc-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "1ad4140" }
openvm-pairing-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "1ad4140" }
openvm-keccak256-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "1ad4140" }
openvm-sdk = { git = "https://github.com/openvm-org/openvm.git", rev = "1ad4140" }
openvm-build = { git = "https://github.com/openvm-org/openvm.git", rev = "1ad4140" }
openvm-pairing-transpiler = { git = "https://github.com/openvm-org/openvm.git", rev = "1ad4140" }
openvm-rv32im-transpiler = { git = "https://github.com/openvm-org/openvm.git", rev = "1ad4140" }
openvm-transpiler = { git = "https://github.com/openvm-org/openvm.git", rev = "1ad4140" }
openvm-algebra-circuit = { git = "https://github.com/openvm-org/openvm.git", rev = "1ad4140" }
openvm-algebra-transpiler = { git = "https://github.com/openvm-org/openvm.git", rev = "1ad4140" }
openvm-ecc-circuit = { git = "https://github.com/openvm-org/openvm.git", rev = "1ad4140" }
openvm-ecc-transpiler = { git = "https://github.com/openvm-org/openvm.git", rev = "1ad4140" }
openvm-pairing-circuit = { git = "https://github.com/openvm-org/openvm.git", rev = "1ad4140" }
openvm-circuit = { git = "https://github.com/openvm-org/openvm.git", rev = "1ad4140", features = [
openvm = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-ecc-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-pairing-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-keccak256-guest = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-sdk = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-build = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-pairing-transpiler = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-rv32im-transpiler = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-transpiler = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-algebra-circuit = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-algebra-transpiler = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-ecc-circuit = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-ecc-transpiler = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-pairing-circuit = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e" }
openvm-circuit = { git = "https://github.com/openvm-org/openvm.git", rev = "be2d4e", features = [
"test-utils",
"parallel",
"mimalloc",
] }
openvm-stark-sdk = { git = "https://github.com/openvm-org/stark-backend.git", rev = "47a0bda" }

num-bigint-dig = { version = "0.8.4", default-features = false }
num-traits = { version = "0.2.19", default-features = false }
num-bigint = { version = "0.4", default-features = false }
num-traits = { version = "0.2", default-features = false }

revm-primitives = { path = "../../../crates/primitives" }
2 changes: 1 addition & 1 deletion tests/openvm/tests/src/ec_precompile.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::path::PathBuf;

use num_bigint_dig::BigUint;
use num_bigint::BigUint;
use num_traits::{FromPrimitive, Zero};
use openvm_algebra_circuit::{Fp2Extension, ModularExtension};
use openvm_build::GuestOptions;
Expand Down

0 comments on commit b38157c

Please sign in to comment.