From 3f01d04ad2fcbce15751ed1529fb5f65f86aa71d Mon Sep 17 00:00:00 2001 From: Bernhard Schuster Date: Thu, 4 Aug 2022 11:46:01 +0200 Subject: [PATCH] chore; don't require default features for cli (#1497) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * don't require default features for an API crate Let the consumer define by overriding the features for the inner deps as needed. Cargo feature resolution allows this. Ref https://github.com/paritytech/polkadot/pull/5792 * Update client/relay-chain-inprocess-interface/Cargo.toml Co-authored-by: Bastian Köcher --- cumulus/client/relay-chain-inprocess-interface/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cumulus/client/relay-chain-inprocess-interface/Cargo.toml b/cumulus/client/relay-chain-inprocess-interface/Cargo.toml index e0479c3fc0..c1e95230f5 100644 --- a/cumulus/client/relay-chain-inprocess-interface/Cargo.toml +++ b/cumulus/client/relay-chain-inprocess-interface/Cargo.toml @@ -27,7 +27,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false } polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "master" } polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" }