Skip to content

Commit

Permalink
don't require default features for an API crate
Browse files Browse the repository at this point in the history
Let the consumer define by overriding the features for the inner deps as needed.
Cargo feature resolution allows this.

Ref paritytech/polkadot#5792
  • Loading branch information
drahnr committed Aug 4, 2022
1 parent 4d04eeb commit b36c0e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/relay-chain-inprocess-interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }

Expand Down

0 comments on commit b36c0e0

Please sign in to comment.