mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 02:57:57 +00:00
Make it possible to disable RocksDB completely (#11537)
* Make it possible to disable RocksDB completely * Make ParityDB non-optional * Address review comments
This commit is contained in:
@@ -22,21 +22,18 @@ frame-system = { version = "4.0.0-dev", path = "../../../frame/system" }
|
||||
node-executor = { version = "3.0.0-dev", path = "../executor" }
|
||||
node-primitives = { version = "2.0.0", path = "../primitives" }
|
||||
node-runtime = { version = "3.0.0-dev", path = "../runtime" }
|
||||
pallet-asset-tx-payment = { version = "4.0.0-dev", path = "../../../frame/transaction-payment/asset-tx-payment/" }
|
||||
pallet-asset-tx-payment = { version = "4.0.0-dev", path = "../../../frame/transaction-payment/asset-tx-payment" }
|
||||
pallet-transaction-payment = { version = "4.0.0-dev", path = "../../../frame/transaction-payment" }
|
||||
sc-block-builder = { version = "0.10.0-dev", path = "../../../client/block-builder" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../../client/api/" }
|
||||
sc-client-db = { version = "0.10.0-dev", features = [
|
||||
"kvdb-rocksdb",
|
||||
"parity-db",
|
||||
], path = "../../../client/db/" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" }
|
||||
sc-client-db = { version = "0.10.0-dev", features = ["rocksdb"], path = "../../../client/db" }
|
||||
sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" }
|
||||
sc-executor = { version = "0.10.0-dev", features = [
|
||||
"wasmtime",
|
||||
], path = "../../../client/executor" }
|
||||
sc-service = { version = "0.10.0-dev", features = [
|
||||
"test-helpers",
|
||||
"db",
|
||||
"rocksdb",
|
||||
], path = "../../../client/service" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
||||
sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-builder" }
|
||||
|
||||
Reference in New Issue
Block a user