add storage dep to sc_core

This commit is contained in:
Rostyslav Tyshko 2025-06-05 22:48:26 -04:00
parent b37f3215c5
commit c253a4df0a
2 changed files with 4 additions and 0 deletions

1
Cargo.lock generated
View File

@ -4218,6 +4218,7 @@ dependencies = [
"serde",
"serde_json",
"sha2",
"storage",
"utxo",
]

View File

@ -30,6 +30,9 @@ path = "../utxo"
[dependencies.common]
path = "../common"
[dependencies.storage]
path = "../storage"
[dependencies.secp256k1-zkp]
workspace = true
features = ["std", "rand-std", "rand", "serde", "global-context"]