From 5055294521021c0ffa1c449d6793ec9d264e5bd5 Mon Sep 17 00:00:00 2001
From: Florian Franzen <Florian.Franzen@gmail.com>
Date: Mon, 17 Jun 2024 20:47:36 +0200
Subject: [PATCH] node-inspect: do not depend on rocksdb (#4783)

The crate `sc-cli` otherwise enables the `rocksdb` feature.
---
 substrate/bin/node/inspect/Cargo.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/substrate/bin/node/inspect/Cargo.toml b/substrate/bin/node/inspect/Cargo.toml
index 5e4488903bf..e23a4c4f37e 100644
--- a/substrate/bin/node/inspect/Cargo.toml
+++ b/substrate/bin/node/inspect/Cargo.toml
@@ -18,7 +18,7 @@ targets = ["x86_64-unknown-linux-gnu"]
 clap = { version = "4.5.3", features = ["derive"] }
 codec = { package = "parity-scale-codec", version = "3.6.12" }
 thiserror = { workspace = true }
-sc-cli = { path = "../../../client/cli" }
+sc-cli = { path = "../../../client/cli", default-features = false }
 sc-client-api = { path = "../../../client/api" }
 sc-service = { path = "../../../client/service", default-features = false }
 sp-blockchain = { path = "../../../primitives/blockchain" }
-- 
GitLab