diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index 095b94628..fac2510c4 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -10,6 +10,7 @@ on: - "benchmarks/**" - "crates/circuits/**" - "crates/toolchain/**" + - "crates/prof/**" - "crates/vm/**" - "extensions/**" - ".github/workflows/benchmark-call.yml" diff --git a/Cargo.lock b/Cargo.lock index 75e6ec0dc..cc173c664 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4452,7 +4452,7 @@ dependencies = [ [[package]] name = "openvm-stark-backend" version = "0.2.0-alpha" -source = "git+https://github.com/openvm-org/stark-backend.git?rev=25265e7#25265e7abd59c21ad110e2c673d549801bbf9a17" +source = "git+https://github.com/openvm-org/stark-backend.git?rev=47a0bda#47a0bdabb827bcb95eac0b3ff15c599b5e89236d" dependencies = [ "async-trait", "cfg-if", @@ -4479,7 +4479,7 @@ dependencies = [ [[package]] name = "openvm-stark-sdk" version = "0.2.0-alpha" -source = "git+https://github.com/openvm-org/stark-backend.git?rev=25265e7#25265e7abd59c21ad110e2c673d549801bbf9a17" +source = "git+https://github.com/openvm-org/stark-backend.git?rev=47a0bda#47a0bdabb827bcb95eac0b3ff15c599b5e89236d" dependencies = [ "derive_more 0.99.18", "ff 0.13.0", diff --git a/Cargo.toml b/Cargo.toml index f06dff4aa..da9e1297e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -103,8 +103,8 @@ lto = "thin" [workspace.dependencies] # Stark Backend -openvm-stark-backend = { git = "https://github.com/openvm-org/stark-backend.git", rev = "25265e7", default-features = false } -openvm-stark-sdk = { git = "https://github.com/openvm-org/stark-backend.git", rev = "25265e7", default-features = false } +openvm-stark-backend = { git = "https://github.com/openvm-org/stark-backend.git", rev = "47a0bda", default-features = false } +openvm-stark-sdk = { git = "https://github.com/openvm-org/stark-backend.git", rev = "47a0bda", default-features = false } # OpenVM openvm-sdk = { path = "crates/sdk", default-features = false }