From 6a5ec1acb6368988a7b912a0a959b6b2031c365c Mon Sep 17 00:00:00 2001 From: Edgar Date: Thu, 6 Jun 2024 16:51:40 +0200 Subject: [PATCH] fix --- Cargo.lock | 3 ++- Cargo.toml | 3 +-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e29aa3aa5..8eea5c54f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1423,6 +1423,7 @@ dependencies = [ [[package]] name = "cairo-native" version = "0.2.0" +source = "git+https://github.com/lambdaclass/cairo_native?rev=e90c4ce0a7d5cea856c6b0c4e7e8a04078de323b#e90c4ce0a7d5cea856c6b0c4e7e8a04078de323b" dependencies = [ "anyhow", "bumpalo", @@ -1471,6 +1472,7 @@ dependencies = [ [[package]] name = "cairo-native-runtime" version = "0.2.0" +source = "git+https://github.com/lambdaclass/cairo_native?rev=e90c4ce0a7d5cea856c6b0c4e7e8a04078de323b#e90c4ce0a7d5cea856c6b0c4e7e8a04078de323b" dependencies = [ "cairo-lang-runner", "cairo-lang-sierra-gas", @@ -5365,7 +5367,6 @@ dependencies = [ "flate2", "getset", "hex", - "itertools 0.13.0", "k256", "keccak", "lazy_static", diff --git a/Cargo.toml b/Cargo.toml index 0f0e681d8..901ad19f6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,7 +43,7 @@ cairo-lang-sierra = { workspace = true } cairo-lang-starknet = { workspace = true } cairo-lang-utils = { workspace = true } cairo-lang-starknet-classes = { workspace = true } -cairo-native = { path = "/Users/edgar/Documents/cairo_sierra_to_mlir", optional = true } +cairo-native = { git = "https://github.com/lambdaclass/cairo_native", rev = "e90c4ce0a7d5cea856c6b0c4e7e8a04078de323b", optional = true } k256 = "0.13.3" p256 = "0.13.2" sec1 = "0.7.3" @@ -76,7 +76,6 @@ tracing = "0.1.40" [dev-dependencies] assert_matches = "1.5.0" coverage-helper = "0.2.2" -itertools = "0.13.0" lru = "0.12.3" pretty_assertions_sorted = "1.2.3" reth-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v0.2.0-beta.6", default-features = false }