diener workspacify

This commit is contained in:
Serban Iorga
2024-04-05 10:09:13 +03:00
committed by Bastian Köcher
parent 6be8898211
commit 4ad46c8170
38 changed files with 988 additions and 412 deletions
+17 -17
View File
@@ -35,26 +35,26 @@ relay-utils = { path = "../utils" }
# Substrate Dependencies
frame-support = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
frame-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
pallet-transaction-payment = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
pallet-utility = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sc-chain-spec = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sc-rpc-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sc-transaction-pool-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-rpc = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-std = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-trie = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-version = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
frame-support = { path = "../../../substrate/frame/support" }
frame-system = { path = "../../../substrate/frame/system" }
pallet-balances = { path = "../../../substrate/frame/balances" }
pallet-transaction-payment = { path = "../../../substrate/frame/transaction-payment" }
pallet-transaction-payment-rpc-runtime-api = { path = "../../../substrate/frame/transaction-payment/rpc/runtime-api" }
pallet-utility = { path = "../../../substrate/frame/utility" }
sc-chain-spec = { path = "../../../substrate/client/chain-spec" }
sc-rpc-api = { path = "../../../substrate/client/rpc-api" }
sc-transaction-pool-api = { path = "../../../substrate/client/transaction-pool/api" }
sp-consensus-grandpa = { path = "../../../substrate/primitives/consensus/grandpa" }
sp-core = { path = "../../../substrate/primitives/core" }
sp-rpc = { path = "../../../substrate/primitives/rpc" }
sp-runtime = { path = "../../../substrate/primitives/runtime" }
sp-std = { path = "../../../substrate/primitives/std" }
sp-trie = { path = "../../../substrate/primitives/trie" }
sp-version = { path = "../../../substrate/primitives/version" }
# Polkadot Dependencies
xcm = { package = "staging-xcm", git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
xcm = { package = "staging-xcm", path = "../../../polkadot/xcm" }
[features]
default = []
+1 -1
View File
@@ -16,7 +16,7 @@ async-std = { version = "1.9.0", features = ["attributes"] }
async-trait = "0.1.79"
bp-header-chain = { path = "../../primitives/header-chain" }
finality-relay = { path = "../finality" }
frame-support = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
frame-support = { path = "../../../substrate/frame/support" }
futures = "0.3.30"
log = { workspace = true }
num-traits = "0.2"
@@ -49,14 +49,14 @@ bp-messages = { path = "../../primitives/messages" }
# Substrate Dependencies
frame-support = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
frame-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
pallet-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
frame-support = { path = "../../../substrate/frame/support" }
frame-system = { path = "../../../substrate/frame/system" }
pallet-balances = { path = "../../../substrate/frame/balances" }
pallet-grandpa = { path = "../../../substrate/frame/grandpa" }
sp-core = { path = "../../../substrate/primitives/core" }
sp-consensus-grandpa = { path = "../../../substrate/primitives/consensus/grandpa" }
sp-runtime = { path = "../../../substrate/primitives/runtime" }
[dev-dependencies]
pallet-transaction-payment = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
pallet-transaction-payment = { path = "../../../substrate/frame/transaction-payment" }
relay-substrate-client = { path = "../client-substrate", features = ["test-helpers"] }
+1 -1
View File
@@ -26,4 +26,4 @@ bp-messages = { path = "../../primitives/messages" }
finality-relay = { path = "../finality" }
relay-utils = { path = "../utils" }
sp-arithmetic = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-arithmetic = { path = "../../../substrate/primitives/arithmetic" }
+1 -1
View File
@@ -25,4 +25,4 @@ relay-substrate-client = { path = "../client-substrate" }
[dev-dependencies]
codec = { package = "parity-scale-codec", version = "3.6.1" }
relay-substrate-client = { path = "../client-substrate", features = ["test-helpers"] }
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-core = { path = "../../../substrate/primitives/core" }
+2 -2
View File
@@ -34,5 +34,5 @@ bp-runtime = { path = "../../primitives/runtime" }
# Substrate dependencies
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-runtime = { path = "../../../substrate/primitives/runtime" }
substrate-prometheus-endpoint = { path = "../../../substrate/utils/prometheus" }