From 348797354afa625fd94ac0a5cc89f59128c594da Mon Sep 17 00:00:00 2001 From: Dori Medini Date: Thu, 1 Aug 2024 14:08:54 +0300 Subject: [PATCH] chore(ci): move starknet_sierra_compile dep to root toml --- Cargo.toml | 1 + crates/gateway/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index cc40a094a7..3b3122c582 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -158,6 +158,7 @@ starknet-types-core = { version = "0.1.5", features = ["hash", "prime-bigint", " starknet_api = { path = "crates/starknet_api", version = "0.13.0-rc.0" } starknet_mempool_infra = { path = "crates/mempool_infra", version = "0.0" } starknet_mempool_types = { path = "crates/mempool_types", version = "0.0" } +starknet_sierra_compile = { path = "crates/starknet_sierra_compile", version = "0.0" } static_assertions = "1.1.0" statistical = "1.0.0" strum = "0.25.0" diff --git a/crates/gateway/Cargo.toml b/crates/gateway/Cargo.toml index 0867787ef6..ddd25fc359 100644 --- a/crates/gateway/Cargo.toml +++ b/crates/gateway/Cargo.toml @@ -29,7 +29,7 @@ starknet-types-core.workspace = true starknet_api.workspace = true starknet_mempool_infra.workspace = true starknet_mempool_types.workspace = true -starknet_sierra_compile = { path = "../starknet_sierra_compile", version = "0.0" } +starknet_sierra_compile.workspace = true thiserror.workspace = true tokio.workspace = true tracing.workspace = true