From 8d36e7c6f3ac343e11b308d29d27195590bd5a9d Mon Sep 17 00:00:00 2001 From: Hernando Castano Date: Thu, 27 May 2021 15:27:07 -0400 Subject: [PATCH] Allow bridge relayers to be built from repo (#3069) * Bump Rococo/Wococo `spec_version` used by the bridge relayer * Prevent bridge relayer from being part of workspace This allows us to build the relayer without pulling in all its dependencies into the Polkadot repo by indicating its manifest path when building. * Revert "Bump Rococo/Wococo `spec_version` used by the bridge relayer" This reverts commit 90fdeecbba2ed2a75fc220dbc14fb4fa792dfc6e. --- polkadot/Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/polkadot/Cargo.toml b/polkadot/Cargo.toml index d501a1bd4a..7661ffc67a 100644 --- a/polkadot/Cargo.toml +++ b/polkadot/Cargo.toml @@ -80,6 +80,10 @@ members = [ "parachain/test-parachains/adder/collator", ] +# We want to be able to build the bridge relayer without pulling it (and all of its +# dependencies into the Polkadot workspace) +exclude = ["bridges/relays/bin-substrate", "bridges/bin/rialto/runtime", "bridges/bin/millau/runtime"] + [badges] maintenance = { status = "actively-developed" }