diff --git a/Cargo.toml b/Cargo.toml index 9fe9e389f0..3785c7fc89 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -63,6 +63,7 @@ base64 = "0.13.0" bincode = "1.3.3" bisection = "0.1.0" bitvec = "1.0.1" +blockifier = { path = "crates/blockifier", version = "0.8.0-rc.0" } byteorder = "1.4.3" bytes = "1" cached = "0.44.0" diff --git a/crates/gateway/Cargo.toml b/crates/gateway/Cargo.toml index 04820f4066..f372210a75 100644 --- a/crates/gateway/Cargo.toml +++ b/crates/gateway/Cargo.toml @@ -14,7 +14,7 @@ testing = [] [dependencies] async-trait.workspace = true axum.workspace = true -blockifier = { path = "../blockifier", version = "0.8.0-rc.0", features = ["testing"] } +blockifier = { workspace = true, features = ["testing"] } cairo-lang-starknet-classes.workspace = true cairo-vm.workspace = true hyper.workspace = true diff --git a/crates/mempool_test_utils/Cargo.toml b/crates/mempool_test_utils/Cargo.toml index 5ec0f40f11..2ab7d6247a 100644 --- a/crates/mempool_test_utils/Cargo.toml +++ b/crates/mempool_test_utils/Cargo.toml @@ -9,7 +9,7 @@ license.workspace = true [dependencies] assert_matches.workspace = true -blockifier = { path = "../blockifier", version = "0.8.0-rc.0", features = ["testing"] } +blockifier = { workspace = true, features = ["testing"] } serde_json.workspace = true starknet-types-core.workspace = true starknet_api = { path = "../starknet_api", version = "0.13.0-rc.0" } diff --git a/crates/native_blockifier/Cargo.toml b/crates/native_blockifier/Cargo.toml index 46c7a8528b..96fccd9fcf 100644 --- a/crates/native_blockifier/Cargo.toml +++ b/crates/native_blockifier/Cargo.toml @@ -27,7 +27,7 @@ crate-type = ["cdylib"] [dependencies] # TODO(Dori, 1/1/2025): Add the "jemalloc" feature to the blockifier crate when possible. -blockifier = { path = "../blockifier", features = ["concurrency", "testing"] } +blockifier = { workspace = true, features = ["concurrency", "testing"] } cairo-lang-starknet-classes.workspace = true cairo-vm.workspace = true indexmap.workspace = true diff --git a/crates/papyrus_execution/Cargo.toml b/crates/papyrus_execution/Cargo.toml index 182e747ed6..652a8f7bd7 100644 --- a/crates/papyrus_execution/Cargo.toml +++ b/crates/papyrus_execution/Cargo.toml @@ -11,7 +11,7 @@ testing = ["papyrus_test_utils", "rand", "rand_chacha"] [dependencies] anyhow.workspace = true -blockifier = { path = "../blockifier", version = "0.8.0-rc.0" } +blockifier.workspace = true cairo-lang-starknet-classes.workspace = true cairo-vm.workspace = true indexmap.workspace = true diff --git a/crates/tests-integration/Cargo.toml b/crates/tests-integration/Cargo.toml index 8bfc220c85..3f56bc2165 100644 --- a/crates/tests-integration/Cargo.toml +++ b/crates/tests-integration/Cargo.toml @@ -10,7 +10,7 @@ workspace = true [dependencies] axum.workspace = true -blockifier = { path = "../blockifier", version = "0.8.0-rc.0" } +blockifier.workspace = true cairo-lang-starknet-classes.workspace = true indexmap.workspace = true itertools.workspace = true