From 2e34eed312e22b3ac8806f84e2fb4d40e9e94aee Mon Sep 17 00:00:00 2001 From: Pierre Krieger <pierre.krieger1708@gmail.com> Date: Tue, 9 Mar 2021 12:31:33 +0100 Subject: [PATCH] Make Substrate deps uniform (#2589) --- polkadot/bridges/bin/millau/node/Cargo.toml | 44 +++++++-------- .../bridges/bin/millau/runtime/Cargo.toml | 50 ++++++++--------- polkadot/bridges/bin/rialto/node/Cargo.toml | 46 ++++++++-------- .../bridges/bin/rialto/runtime/Cargo.toml | 54 +++++++++---------- .../bridges/bin/runtime-common/Cargo.toml | 12 ++--- .../bridges/modules/call-dispatch/Cargo.toml | 12 ++--- .../modules/currency-exchange/Cargo.toml | 14 ++--- .../ethereum-contract/builtin/Cargo.toml | 10 ++-- polkadot/bridges/modules/ethereum/Cargo.toml | 12 ++--- .../modules/finality-verifier/Cargo.toml | 10 ++-- .../bridges/modules/message-lane/Cargo.toml | 16 +++--- .../modules/message-lane/rpc/Cargo.toml | 12 ++--- .../modules/shift-session-manager/Cargo.toml | 14 ++--- polkadot/bridges/modules/substrate/Cargo.toml | 18 +++---- .../primitives/currency-exchange/Cargo.toml | 6 +-- .../primitives/ethereum-poa/Cargo.toml | 8 +-- .../primitives/header-chain/Cargo.toml | 10 ++-- polkadot/bridges/primitives/kusama/Cargo.toml | 12 ++--- .../primitives/message-lane/Cargo.toml | 6 +-- polkadot/bridges/primitives/millau/Cargo.toml | 16 +++--- .../bridges/primitives/polkadot/Cargo.toml | 12 ++--- polkadot/bridges/primitives/rialto/Cargo.toml | 12 ++--- .../bridges/primitives/runtime/Cargo.toml | 10 ++-- .../bridges/primitives/test-utils/Cargo.toml | 6 +-- polkadot/bridges/relays/ethereum/Cargo.toml | 12 ++--- .../bridges/relays/kusama-client/Cargo.toml | 12 ++--- .../bridges/relays/millau-client/Cargo.toml | 12 ++--- .../bridges/relays/polkadot-client/Cargo.toml | 12 ++--- .../bridges/relays/rialto-client/Cargo.toml | 12 ++--- .../relays/substrate-client/Cargo.toml | 18 +++---- polkadot/bridges/relays/substrate/Cargo.toml | 10 ++-- polkadot/bridges/relays/utils/Cargo.toml | 2 +- 32 files changed, 256 insertions(+), 256 deletions(-) diff --git a/polkadot/bridges/bin/millau/node/Cargo.toml b/polkadot/bridges/bin/millau/node/Cargo.toml index a03078163a1..6f7aa94e6ff 100644 --- a/polkadot/bridges/bin/millau/node/Cargo.toml +++ b/polkadot/bridges/bin/millau/node/Cargo.toml @@ -24,31 +24,31 @@ pallet-message-lane-rpc = { path = "../../../modules/message-lane/rpc" } # Substrate Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sc-basic-authorship = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sc-cli = { git = "https://github.com/paritytech/substrate.git", branch = "master", features = ["wasmtime"] } -sc-client-api = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sc-consensus = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sc-consensus-aura = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sc-executor = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sc-finality-grandpa = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sc-rpc = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-consensus = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-consensus-aura = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-inherents = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate.git", branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["wasmtime"] } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "master" } [build-dependencies] build-script-utils = { package = "substrate-build-script-utils", version = "2.0" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate.git", branch = "master" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } vergen = "3.1.0" [features] diff --git a/polkadot/bridges/bin/millau/runtime/Cargo.toml b/polkadot/bridges/bin/millau/runtime/Cargo.toml index 3173294bec7..d163661284b 100644 --- a/polkadot/bridges/bin/millau/runtime/Cargo.toml +++ b/polkadot/bridges/bin/millau/runtime/Cargo.toml @@ -28,31 +28,31 @@ pallet-substrate-bridge = { path = "../../../modules/substrate", default-feature # Substrate Dependencies -frame-executive = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -pallet-aura = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -pallet-sudo = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-block-builder = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-consensus-aura = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-inherents = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-offchain = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-trie = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } +frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +pallet-aura = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } [build-dependencies] wasm-builder-runner = { package = "substrate-wasm-builder-runner", version = "2.0.0" } diff --git a/polkadot/bridges/bin/rialto/node/Cargo.toml b/polkadot/bridges/bin/rialto/node/Cargo.toml index 072667694a1..f99178c77ae 100644 --- a/polkadot/bridges/bin/rialto/node/Cargo.toml +++ b/polkadot/bridges/bin/rialto/node/Cargo.toml @@ -24,32 +24,32 @@ rialto-runtime = { path = "../runtime" } # Substrate Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sc-basic-authorship = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sc-cli = { git = "https://github.com/paritytech/substrate.git", branch = "master", features = ["wasmtime"] } -sc-client-api = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sc-consensus = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sc-consensus-aura = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sc-executor = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sc-finality-grandpa = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sc-rpc = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sc-telemetry = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-consensus = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-consensus-aura = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-inherents = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate.git", branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["wasmtime"] } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "master" } [build-dependencies] build-script-utils = { package = "substrate-build-script-utils", version = "2.0" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate.git", branch = "master" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } vergen = "3.1.0" [features] diff --git a/polkadot/bridges/bin/rialto/runtime/Cargo.toml b/polkadot/bridges/bin/rialto/runtime/Cargo.toml index 712092ea066..517ddff9cb6 100644 --- a/polkadot/bridges/bin/rialto/runtime/Cargo.toml +++ b/polkadot/bridges/bin/rialto/runtime/Cargo.toml @@ -34,33 +34,33 @@ pallet-shift-session-manager = { path = "../../../modules/shift-session-manager" # Substrate Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false, optional = true } -frame-executive = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -pallet-aura = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -pallet-sudo = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-block-builder = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-consensus-aura = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-inherents = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-offchain = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-trie = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false, optional = true } +frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +pallet-aura = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } [dev-dependencies] libsecp256k1 = { version = "0.3.4", features = ["hmac"] } diff --git a/polkadot/bridges/bin/runtime-common/Cargo.toml b/polkadot/bridges/bin/runtime-common/Cargo.toml index 1a6a5db5370..69b618e7daa 100644 --- a/polkadot/bridges/bin/runtime-common/Cargo.toml +++ b/polkadot/bridges/bin/runtime-common/Cargo.toml @@ -23,12 +23,12 @@ pallet-substrate-bridge = { path = "../../modules/substrate", default-features = # Substrate dependencies -frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-state-machine = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false, optional = true } -sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-trie = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false, optional = true } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } [features] default = ["std"] diff --git a/polkadot/bridges/modules/call-dispatch/Cargo.toml b/polkadot/bridges/modules/call-dispatch/Cargo.toml index 9b4c0bfeea4..64910df861c 100644 --- a/polkadot/bridges/modules/call-dispatch/Cargo.toml +++ b/polkadot/bridges/modules/call-dispatch/Cargo.toml @@ -16,14 +16,14 @@ bp-runtime = { path = "../../primitives/runtime", default-features = false } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } [dev-dependencies] -sp-io = { git = "https://github.com/paritytech/substrate.git", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } serde = "1.0" [features] diff --git a/polkadot/bridges/modules/currency-exchange/Cargo.toml b/polkadot/bridges/modules/currency-exchange/Cargo.toml index f92eb2ca7b6..cf58b5e81c3 100644 --- a/polkadot/bridges/modules/currency-exchange/Cargo.toml +++ b/polkadot/bridges/modules/currency-exchange/Cargo.toml @@ -17,15 +17,15 @@ bp-header-chain = { path = "../../primitives/header-chain", default-features = f # Substrate Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false, optional = true } -frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false, optional = true } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false, optional = true } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate.git", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/polkadot/bridges/modules/ethereum-contract/builtin/Cargo.toml b/polkadot/bridges/modules/ethereum-contract/builtin/Cargo.toml index 0d34cf56444..d17b0ba7e11 100644 --- a/polkadot/bridges/modules/ethereum-contract/builtin/Cargo.toml +++ b/polkadot/bridges/modules/ethereum-contract/builtin/Cargo.toml @@ -19,10 +19,10 @@ rialto-runtime = { path = "../../../bin/rialto/runtime" } # Substrate Dependencies -sc-finality-grandpa = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" } +sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/polkadot/bridges/modules/ethereum/Cargo.toml b/polkadot/bridges/modules/ethereum/Cargo.toml index 080957d7801..1912f45babb 100644 --- a/polkadot/bridges/modules/ethereum/Cargo.toml +++ b/polkadot/bridges/modules/ethereum/Cargo.toml @@ -17,12 +17,12 @@ bp-eth-poa = { path = "../../primitives/ethereum-poa", default-features = false # Substrate Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false, optional = true } -frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false, optional = true } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } [dev-dependencies] libsecp256k1 = { version = "0.3.4", features = ["hmac"] } diff --git a/polkadot/bridges/modules/finality-verifier/Cargo.toml b/polkadot/bridges/modules/finality-verifier/Cargo.toml index 8afc30cd30e..35d4d6880aa 100644 --- a/polkadot/bridges/modules/finality-verifier/Cargo.toml +++ b/polkadot/bridges/modules/finality-verifier/Cargo.toml @@ -19,15 +19,15 @@ bp-header-chain = { path = "../../primitives/header-chain", default-features = f # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } [dev-dependencies] bp-test-utils = {path = "../../primitives/test-utils" } pallet-substrate-bridge = { path = "../../modules/substrate" } -sp-io = { git = "https://github.com/paritytech/substrate.git", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] diff --git a/polkadot/bridges/modules/message-lane/Cargo.toml b/polkadot/bridges/modules/message-lane/Cargo.toml index be07b1173ac..abbfb607612 100644 --- a/polkadot/bridges/modules/message-lane/Cargo.toml +++ b/polkadot/bridges/modules/message-lane/Cargo.toml @@ -19,17 +19,17 @@ bp-runtime = { path = "../../primitives/runtime", default-features = false } # Substrate Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false, optional = true } -frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false, optional = true } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } [dev-dependencies] hex-literal = "0.3" -sp-io = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate.git", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/polkadot/bridges/modules/message-lane/rpc/Cargo.toml b/polkadot/bridges/modules/message-lane/rpc/Cargo.toml index 28481a7ad88..23dac80b407 100644 --- a/polkadot/bridges/modules/message-lane/rpc/Cargo.toml +++ b/polkadot/bridges/modules/message-lane/rpc/Cargo.toml @@ -21,9 +21,9 @@ bp-message-lane = { path = "../../../primitives/message-lane" } # Substrate Dependencies -sc-client-api = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-state-machine = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate.git", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/polkadot/bridges/modules/shift-session-manager/Cargo.toml b/polkadot/bridges/modules/shift-session-manager/Cargo.toml index 04a5194c349..6dac97ddde6 100644 --- a/polkadot/bridges/modules/shift-session-manager/Cargo.toml +++ b/polkadot/bridges/modules/shift-session-manager/Cargo.toml @@ -11,15 +11,15 @@ codec = { package = "parity-scale-codec", version = "2.0.0", default-features = # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } serde = "1.0" [features] diff --git a/polkadot/bridges/modules/substrate/Cargo.toml b/polkadot/bridges/modules/substrate/Cargo.toml index 6f6e9cafdda..490aa2098b9 100644 --- a/polkadot/bridges/modules/substrate/Cargo.toml +++ b/polkadot/bridges/modules/substrate/Cargo.toml @@ -20,18 +20,18 @@ bp-runtime = { path = "../../primitives/runtime", default-features = false } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-trie = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } [dev-dependencies] bp-test-utils = {path = "../../primitives/test-utils" } -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-state-machine = { git = "https://github.com/paritytech/substrate.git", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/polkadot/bridges/primitives/currency-exchange/Cargo.toml b/polkadot/bridges/primitives/currency-exchange/Cargo.toml index 585855b294e..43367ba7992 100644 --- a/polkadot/bridges/primitives/currency-exchange/Cargo.toml +++ b/polkadot/bridges/primitives/currency-exchange/Cargo.toml @@ -11,9 +11,9 @@ codec = { package = "parity-scale-codec", version = "2.0.0", default-features = # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } [features] default = ["std"] diff --git a/polkadot/bridges/primitives/ethereum-poa/Cargo.toml b/polkadot/bridges/primitives/ethereum-poa/Cargo.toml index 86cb43193c0..cd2c3a97a0f 100644 --- a/polkadot/bridges/primitives/ethereum-poa/Cargo.toml +++ b/polkadot/bridges/primitives/ethereum-poa/Cargo.toml @@ -24,10 +24,10 @@ triehash = { version = "0.8.2", default-features = false } # Substrate Dependencies -sp-api = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } [dev-dependencies] hex-literal = "0.2" diff --git a/polkadot/bridges/primitives/header-chain/Cargo.toml b/polkadot/bridges/primitives/header-chain/Cargo.toml index 8a017610a3e..dc58dafb979 100644 --- a/polkadot/bridges/primitives/header-chain/Cargo.toml +++ b/polkadot/bridges/primitives/header-chain/Cargo.toml @@ -13,11 +13,11 @@ serde = { version = "1.0", optional = true } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } [dev-dependencies] bp-test-utils = { path = "../test-utils" } diff --git a/polkadot/bridges/primitives/kusama/Cargo.toml b/polkadot/bridges/primitives/kusama/Cargo.toml index 1a4142f75a3..784f0b01328 100644 --- a/polkadot/bridges/primitives/kusama/Cargo.toml +++ b/polkadot/bridges/primitives/kusama/Cargo.toml @@ -15,12 +15,12 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/polkadot/bridges/primitives/message-lane/Cargo.toml b/polkadot/bridges/primitives/message-lane/Cargo.toml index 451a3c0400a..cbddcb16146 100644 --- a/polkadot/bridges/primitives/message-lane/Cargo.toml +++ b/polkadot/bridges/primitives/message-lane/Cargo.toml @@ -15,9 +15,9 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } [features] default = ["std"] diff --git a/polkadot/bridges/primitives/millau/Cargo.toml b/polkadot/bridges/primitives/millau/Cargo.toml index aea2f8eec2e..124d8199e2c 100644 --- a/polkadot/bridges/primitives/millau/Cargo.toml +++ b/polkadot/bridges/primitives/millau/Cargo.toml @@ -21,14 +21,14 @@ serde = { version = "1.0.101", optional = true, features = ["derive"] } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-trie = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } [features] default = ["std"] diff --git a/polkadot/bridges/primitives/polkadot/Cargo.toml b/polkadot/bridges/primitives/polkadot/Cargo.toml index 396cbd5b47e..f7c9b9717d1 100644 --- a/polkadot/bridges/primitives/polkadot/Cargo.toml +++ b/polkadot/bridges/primitives/polkadot/Cargo.toml @@ -15,12 +15,12 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/polkadot/bridges/primitives/rialto/Cargo.toml b/polkadot/bridges/primitives/rialto/Cargo.toml index 6d12dd0b0a4..d6c12fc8480 100644 --- a/polkadot/bridges/primitives/rialto/Cargo.toml +++ b/polkadot/bridges/primitives/rialto/Cargo.toml @@ -15,12 +15,12 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } [features] default = ["std"] diff --git a/polkadot/bridges/primitives/runtime/Cargo.toml b/polkadot/bridges/primitives/runtime/Cargo.toml index 50305013ceb..b8e511fa56f 100644 --- a/polkadot/bridges/primitives/runtime/Cargo.toml +++ b/polkadot/bridges/primitives/runtime/Cargo.toml @@ -12,11 +12,11 @@ num-traits = { version = "0.2", default-features = false } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false } [features] default = ["std"] diff --git a/polkadot/bridges/primitives/test-utils/Cargo.toml b/polkadot/bridges/primitives/test-utils/Cargo.toml index 2b9bb5cd191..396e0e76463 100644 --- a/polkadot/bridges/primitives/test-utils/Cargo.toml +++ b/polkadot/bridges/primitives/test-utils/Cargo.toml @@ -8,6 +8,6 @@ license = "GPL-3.0-or-later WITH Classpath-exception-2.0" [dependencies] finality-grandpa = { version = "0.14.0" } bp-header-chain = { path = "../header-chain" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/polkadot/bridges/relays/ethereum/Cargo.toml b/polkadot/bridges/relays/ethereum/Cargo.toml index 0e9fdb7c8a8..860c0815e2e 100644 --- a/polkadot/bridges/relays/ethereum/Cargo.toml +++ b/polkadot/bridges/relays/ethereum/Cargo.toml @@ -40,9 +40,9 @@ rialto-runtime = { path = "../../bin/rialto/runtime" } # Substrate Dependencies -frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate.git", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/polkadot/bridges/relays/kusama-client/Cargo.toml b/polkadot/bridges/relays/kusama-client/Cargo.toml index 6695758113a..04958cf2b36 100644 --- a/polkadot/bridges/relays/kusama-client/Cargo.toml +++ b/polkadot/bridges/relays/kusama-client/Cargo.toml @@ -17,9 +17,9 @@ bp-kusama = { path = "../../primitives/kusama" } # Substrate Dependencies -frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/polkadot/bridges/relays/millau-client/Cargo.toml b/polkadot/bridges/relays/millau-client/Cargo.toml index c05d44a42e9..5f9cbd170c9 100644 --- a/polkadot/bridges/relays/millau-client/Cargo.toml +++ b/polkadot/bridges/relays/millau-client/Cargo.toml @@ -17,9 +17,9 @@ millau-runtime = { path = "../../bin/millau/runtime" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/polkadot/bridges/relays/polkadot-client/Cargo.toml b/polkadot/bridges/relays/polkadot-client/Cargo.toml index 5a05aa0a2cf..8764b6509b2 100644 --- a/polkadot/bridges/relays/polkadot-client/Cargo.toml +++ b/polkadot/bridges/relays/polkadot-client/Cargo.toml @@ -17,9 +17,9 @@ bp-polkadot = { path = "../../primitives/polkadot" } # Substrate Dependencies -frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/polkadot/bridges/relays/rialto-client/Cargo.toml b/polkadot/bridges/relays/rialto-client/Cargo.toml index 6c90defe37a..6142ba05c96 100644 --- a/polkadot/bridges/relays/rialto-client/Cargo.toml +++ b/polkadot/bridges/relays/rialto-client/Cargo.toml @@ -17,9 +17,9 @@ rialto-runtime = { path = "../../bin/rialto/runtime" } # Substrate Dependencies -frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/polkadot/bridges/relays/substrate-client/Cargo.toml b/polkadot/bridges/relays/substrate-client/Cargo.toml index 1c60f861e2e..016a7d7d337 100644 --- a/polkadot/bridges/relays/substrate-client/Cargo.toml +++ b/polkadot/bridges/relays/substrate-client/Cargo.toml @@ -23,15 +23,15 @@ relay-utils = { path = "../utils" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sc-rpc-api = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-version = { git = "https://github.com/paritytech/substrate.git", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" } #[dev-dependencies] futures = "0.3.7" diff --git a/polkadot/bridges/relays/substrate/Cargo.toml b/polkadot/bridges/relays/substrate/Cargo.toml index 6ea5e839d8e..120501e511f 100644 --- a/polkadot/bridges/relays/substrate/Cargo.toml +++ b/polkadot/bridges/relays/substrate/Cargo.toml @@ -42,8 +42,8 @@ rialto-runtime = { path = "../../bin/rialto/runtime" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate.git", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/polkadot/bridges/relays/utils/Cargo.toml b/polkadot/bridges/relays/utils/Cargo.toml index 01aa866ee43..ce6a20bbc4f 100644 --- a/polkadot/bridges/relays/utils/Cargo.toml +++ b/polkadot/bridges/relays/utils/Cargo.toml @@ -19,4 +19,4 @@ time = "0.2" # Substrate dependencies -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate.git", branch = "master" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } -- GitLab