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
+23 -23
View File
@@ -13,25 +13,25 @@ tracing = "0.1.37"
lru = "0.10.0"
# Substrate
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-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-blockchain = { 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-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" }
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-client-api = { path = "../../../../substrate/client/api" }
sc-consensus = { path = "../../../../substrate/client/consensus/common" }
sc-consensus-aura = { path = "../../../../substrate/client/consensus/aura" }
sc-consensus-babe = { path = "../../../../substrate/client/consensus/babe" }
sc-consensus-slots = { path = "../../../../substrate/client/consensus/slots" }
sc-telemetry = { path = "../../../../substrate/client/telemetry" }
sp-api = { path = "../../../../substrate/primitives/api" }
sp-application-crypto = { path = "../../../../substrate/primitives/application-crypto" }
sp-block-builder = { path = "../../../../substrate/primitives/block-builder" }
sp-blockchain = { path = "../../../../substrate/primitives/blockchain" }
sp-consensus = { path = "../../../../substrate/primitives/consensus/common" }
sp-consensus-aura = { path = "../../../../substrate/primitives/consensus/aura" }
sp-core = { path = "../../../../substrate/primitives/core" }
sp-inherents = { path = "../../../../substrate/primitives/inherents" }
sp-keystore = { path = "../../../../substrate/primitives/keystore" }
sp-runtime = { path = "../../../../substrate/primitives/runtime" }
sp-timestamp = { path = "../../../../substrate/primitives/timestamp" }
sp-state-machine = { path = "../../../../substrate/primitives/state-machine" }
substrate-prometheus-endpoint = { path = "../../../../substrate/utils/prometheus" }
# Cumulus
cumulus-client-consensus-common = { path = "../common" }
@@ -43,7 +43,7 @@ cumulus-primitives-parachain-inherent = { path = "../../../primitives/parachain-
cumulus-client-collator = { path = "../../collator" }
# Polkadot
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-primitives = { path = "../../../../polkadot/primitives" }
polkadot-node-primitives = { path = "../../../../polkadot/node/primitives" }
polkadot-node-subsystem = { path = "../../../../polkadot/node/subsystem" }
polkadot-overseer = { path = "../../../../polkadot/node/overseer" }
+13 -13
View File
@@ -14,20 +14,20 @@ log = "0.4.20"
tracing = "0.1.37"
# Substrate
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-consensus-slots = { 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-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" }
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-client-api = { path = "../../../../substrate/client/api" }
sc-consensus = { path = "../../../../substrate/client/consensus/common" }
sc-consensus-babe = { path = "../../../../substrate/client/consensus/babe" }
sp-blockchain = { path = "../../../../substrate/primitives/blockchain" }
sp-consensus = { path = "../../../../substrate/primitives/consensus/common" }
sp-consensus-slots = { path = "../../../../substrate/primitives/consensus/slots" }
sp-core = { path = "../../../../substrate/primitives/core" }
sp-runtime = { path = "../../../../substrate/primitives/runtime" }
sp-timestamp = { path = "../../../../substrate/primitives/timestamp" }
sp-trie = { path = "../../../../substrate/primitives/trie" }
substrate-prometheus-endpoint = { path = "../../../../substrate/utils/prometheus" }
# Polkadot
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-primitives = { path = "../../../../polkadot/primitives" }
# Cumulus
cumulus-primitives-core = { path = "../../../primitives/core" }
@@ -39,7 +39,7 @@ schnellru = "0.2.1"
futures-timer = "3.0.2"
# Substrate
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-tracing = { path = "../../../../substrate/primitives/tracing" }
# Cumulus
cumulus-test-client = { path = "../../../test/client" }
+4 -4
View File
@@ -11,10 +11,10 @@ async-trait = "0.1.73"
thiserror = "1.0.47"
# Substrate
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-inherents = { 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-consensus = { path = "../../../../substrate/primitives/consensus/common" }
sp-inherents = { path = "../../../../substrate/primitives/inherents" }
sp-runtime = { path = "../../../../substrate/primitives/runtime" }
sp-state-machine = { path = "../../../../substrate/primitives/state-machine" }
# Cumulus
cumulus-primitives-parachain-inherent = { path = "../../../primitives/parachain-inherent" }
@@ -12,15 +12,15 @@ parking_lot = "0.12.1"
tracing = "0.1.37"
# Substrate
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-consensus = { 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-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-consensus = { path = "../../../../substrate/client/consensus/common" }
sp-api = { path = "../../../../substrate/primitives/api" }
sp-block-builder = { path = "../../../../substrate/primitives/block-builder" }
sp-blockchain = { path = "../../../../substrate/primitives/blockchain" }
sp-consensus = { path = "../../../../substrate/primitives/consensus/common" }
sp-core = { path = "../../../../substrate/primitives/core" }
sp-inherents = { path = "../../../../substrate/primitives/inherents" }
sp-runtime = { path = "../../../../substrate/primitives/runtime" }
substrate-prometheus-endpoint = { path = "../../../../substrate/utils/prometheus" }
# Cumulus
cumulus-client-consensus-common = { path = "../common" }