diff --git a/Cargo.toml b/Cargo.toml index 9189e5a..ab86e0f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,6 @@ version = "0.1.3" async-process = "2.2.0" async-stream = "0.3.5" bincode = "1.3" -cairo-proof-parser = { git = "https://github.com/Okm165/cairo-proof-parser", rev = "97a04bbee07330311b38d6f4cecfed3acb237626" } cairo-vm = { git = "https://github.com/lambdaclass/cairo-vm.git", tag = "v1.0.0-rc3" } futures = "0.3.30" futures-core = "0.3.30" diff --git a/crates/compiler/Cargo.toml b/crates/compiler/Cargo.toml index 8afea67..b415067 100644 --- a/crates/compiler/Cargo.toml +++ b/crates/compiler/Cargo.toml @@ -23,4 +23,7 @@ starknet-crypto.workspace = true tempfile.workspace = true thiserror.workspace = true tokio.workspace = true -tracing.workspace = true \ No newline at end of file +tracing.workspace = true + +[features] +full_test = [] \ No newline at end of file diff --git a/crates/prover/Cargo.toml b/crates/prover/Cargo.toml index 2f89ba0..3428be9 100644 --- a/crates/prover/Cargo.toml +++ b/crates/prover/Cargo.toml @@ -14,7 +14,6 @@ version.workspace = true hex.workspace = true libp2p.workspace = true async-process.workspace = true -cairo-proof-parser.workspace = true futures.workspace= true itertools.workspace = true serde_json.workspace = true diff --git a/crates/runner/build.rs b/crates/runner/build.rs index 258d89f..7298533 100644 --- a/crates/runner/build.rs +++ b/crates/runner/build.rs @@ -24,10 +24,10 @@ fn main() { // Compile Bootloader Command::new("cairo-compile") .arg("--cairo_path") - .arg(&workspace_root.join(&cairo_path)) - .arg(&workspace_root.join(&cairo_path).join(bootloader_path)) + .arg(workspace_root.join(&cairo_path)) + .arg(workspace_root.join(&cairo_path).join(bootloader_path)) .arg("--output") - .arg(&out_dir.join(bootloader_out_name)) + .arg(out_dir.join(bootloader_out_name)) .arg("--proof_mode") .arg("--no_debug_info") .output() diff --git a/rust-toolchain.toml b/rust-toolchain.toml index ee43832..a589ed1 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,5 +1,5 @@ [toolchain] -channel = "1.79.0" +channel = "1.82.0" components = ["rustfmt", "clippy"] profile = "minimal"