Diener workspacify

Signed-off-by: alvicsam <alvicsam@gmail.com>
This commit is contained in:
alvicsam
2023-08-25 11:05:17 +02:00
parent 8ba894c0bc
commit f441a5fc93
422 changed files with 5044 additions and 4598 deletions
+17 -17
View File
@@ -16,25 +16,25 @@ polkadot-primitives = { path = "../../../primitives" }
polkadot-node-subsystem = { path = "../../subsystem" }
# Substrate dependencies
substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" }
substrate-test-client = { path = "../../../../substrate/test-utils/client" }
sc-service = { path = "../../../../substrate/client/service" }
sc-block-builder = { path = "../../../../substrate/client/block-builder" }
sc-consensus = { path = "../../../../substrate/client/consensus/common" }
sc-offchain = { path = "../../../../substrate/client/offchain" }
sp-blockchain = { path = "../../../../substrate/primitives/blockchain" }
sp-runtime = { path = "../../../../substrate/primitives/runtime" }
sp-inherents = { path = "../../../../substrate/primitives/inherents" }
sp-core = { path = "../../../../substrate/primitives/core" }
sp-api = { path = "../../../../substrate/primitives/api" }
sp-timestamp = { path = "../../../../substrate/primitives/timestamp" }
sp-consensus = { path = "../../../../substrate/primitives/consensus/common" }
sp-consensus-babe = { path = "../../../../substrate/primitives/consensus/babe" }
sp-state-machine = { path = "../../../../substrate/primitives/state-machine" }
sp-io = { path = "../../../../substrate/primitives/io" }
frame-benchmarking = { path = "../../../../substrate/frame/benchmarking" }
[dev-dependencies]
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
futures = "0.3.21"
[features]