mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 01:41:03 +00:00
diener workspacify
This commit is contained in:
committed by
Bastian Köcher
parent
6be8898211
commit
4ad46c8170
@@ -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 = []
|
||||
|
||||
@@ -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"] }
|
||||
|
||||
@@ -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" }
|
||||
|
||||
@@ -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" }
|
||||
|
||||
@@ -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" }
|
||||
|
||||
Reference in New Issue
Block a user