From 34ffe7b9646150cd7d9f72a30f5d4319ce090473 Mon Sep 17 00:00:00 2001 From: barak-b-starkware <110763103+barak-b-starkware@users.noreply.github.com> Date: Thu, 14 Sep 2023 14:21:19 +0300 Subject: [PATCH] Move papyrus_storage dependency from main Cargo.toml to native_blockifier's Cargo.toml. (#921) --- Cargo.toml | 1 - crates/native_blockifier/Cargo.toml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 87ee558e43..26919526b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,6 @@ num-bigint = "0.4" num-integer = "0.1.45" num-traits = "0.2" rstest = "0.17.0" -papyrus_storage = "0.0.5" phf = { version = "0.11", features = ["macros"] } pretty_assertions = "1.2.1" serde = "1.0.184" diff --git a/crates/native_blockifier/Cargo.toml b/crates/native_blockifier/Cargo.toml index f1bb5252ab..96e12eca54 100644 --- a/crates/native_blockifier/Cargo.toml +++ b/crates/native_blockifier/Cargo.toml @@ -31,7 +31,7 @@ cairo-vm.workspace = true indexmap.workspace = true log.workspace = true num-bigint.workspace = true -papyrus_storage = { workspace = true, features = ["testing"] } +papyrus_storage = { version = "0.0.5", features = ["testing"] } pyo3 = { version = "0.19.1", features = ["num-bigint", "hashbrown"] } pyo3-log = "0.8.1" serde_json = { workspace = true, features = ["arbitrary_precision"] }