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
@@ -16,8 +16,8 @@ hash-db = { version = "0.16.0", default-features = false }
[dev-dependencies]
array-bytes = "6.1"
env_logger = "0.9"
sp-core = { version = "21.0.0", path = "../../primitives/core" }
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
sp-core = { path = "../../primitives/core" }
sp-runtime = { path = "../../primitives/runtime" }
[features]
debug = [ "array-bytes", "log" ]
@@ -30,29 +30,29 @@ serde = "1.0.163"
serde_json = "1.0.85"
thiserror = "1.0.30"
thousands = "0.2.0"
frame-benchmarking = { version = "4.0.0-dev", path = "../../../frame/benchmarking" }
frame-support = { version = "4.0.0-dev", path = "../../../frame/support" }
frame-system = { version = "4.0.0-dev", path = "../../../frame/system" }
sc-block-builder = { version = "0.10.0-dev", path = "../../../client/block-builder" }
sc-cli = { version = "0.10.0-dev", default-features = false, path = "../../../client/cli" }
sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" }
sc-client-db = { version = "0.10.0-dev", default-features = false, path = "../../../client/db" }
sc-executor = { version = "0.10.0-dev", path = "../../../client/executor" }
sc-service = { version = "0.10.0-dev", default-features = false, path = "../../../client/service" }
sc-sysinfo = { version = "6.0.0-dev", path = "../../../client/sysinfo" }
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
sp-database = { version = "4.0.0-dev", path = "../../../primitives/database" }
sp-externalities = { version = "0.19.0", path = "../../../primitives/externalities" }
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
sp-keystore = { version = "0.27.0", path = "../../../primitives/keystore" }
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
sp-state-machine = { version = "0.28.0", path = "../../../primitives/state-machine" }
sp-storage = { version = "13.0.0", path = "../../../primitives/storage" }
sp-trie = { version = "22.0.0", path = "../../../primitives/trie" }
sp-io = { version = "23.0.0", path = "../../../primitives/io" }
sp-wasm-interface = { version = "14.0.0", path = "../../../primitives/wasm-interface" }
frame-benchmarking = { path = "../../../frame/benchmarking" }
frame-support = { path = "../../../frame/support" }
frame-system = { path = "../../../frame/system" }
sc-block-builder = { path = "../../../client/block-builder" }
sc-cli = { path = "../../../client/cli", default-features = false}
sc-client-api = { path = "../../../client/api" }
sc-client-db = { path = "../../../client/db", default-features = false}
sc-executor = { path = "../../../client/executor" }
sc-service = { path = "../../../client/service", default-features = false}
sc-sysinfo = { path = "../../../client/sysinfo" }
sp-api = { path = "../../../primitives/api" }
sp-blockchain = { path = "../../../primitives/blockchain" }
sp-core = { path = "../../../primitives/core" }
sp-database = { path = "../../../primitives/database" }
sp-externalities = { path = "../../../primitives/externalities" }
sp-inherents = { path = "../../../primitives/inherents" }
sp-keystore = { path = "../../../primitives/keystore" }
sp-runtime = { path = "../../../primitives/runtime" }
sp-state-machine = { path = "../../../primitives/state-machine" }
sp-storage = { path = "../../../primitives/storage" }
sp-trie = { path = "../../../primitives/trie" }
sp-io = { path = "../../../primitives/io" }
sp-wasm-interface = { path = "../../../primitives/wasm-interface" }
gethostname = "0.2.3"
[features]
@@ -12,11 +12,11 @@ readme = "README.md"
[dependencies]
clap = { version = "4.2.5", features = ["derive"] }
frame-support = { version = "4.0.0-dev", path = "../../../frame/support" }
frame-system = { version = "4.0.0-dev", path = "../../../frame/system" }
sc-cli = { version = "0.10.0-dev", path = "../../../client/cli" }
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
frame-support = { path = "../../../frame/support" }
frame-system = { path = "../../../frame/system" }
sc-cli = { path = "../../../client/cli" }
sp-core = { path = "../../../primitives/core" }
sp-runtime = { path = "../../../primitives/runtime" }
[features]
default = []
@@ -10,11 +10,11 @@ description = "Bag threshold generation script for pallet-bag-list"
[dependencies]
# FRAME
frame-support = { version = "4.0.0-dev", path = "../../../frame/support" }
frame-election-provider-support = { version = "4.0.0-dev", path = "../../../frame/election-provider-support" }
frame-system = { version = "4.0.0-dev", path = "../../../frame/system" }
pallet-staking = { version = "4.0.0-dev", path = "../../../frame/staking" }
sp-staking = { version = "4.0.0-dev", path = "../../../primitives/staking" }
frame-support = { path = "../../../frame/support" }
frame-election-provider-support = { path = "../../../frame/election-provider-support" }
frame-system = { path = "../../../frame/system" }
pallet-staking = { path = "../../../frame/staking" }
sp-staking = { path = "../../../primitives/staking" }
# third party
chrono = { version = "0.4.19" }
@@ -10,8 +10,8 @@ description = "Bag threshold generation script for pallet-bag-list and kitchensi
publish = false
[dependencies]
kitchensink-runtime = { version = "3.0.0-dev", path = "../../../../bin/node/runtime" }
generate-bags = { version = "4.0.0-dev", path = "../" }
kitchensink-runtime = { path = "../../../../bin/node/runtime" }
generate-bags = { path = ".." }
# third-party
clap = { version = "4.2.5", features = ["derive"] }
@@ -16,10 +16,10 @@ jsonrpsee = { version = "0.16.2", features = ["http-client"] }
codec = { package = "parity-scale-codec", version = "3.6.1" }
log = "0.4.17"
serde = "1.0.163"
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
sp-state-machine = { version = "0.28.0", path = "../../../primitives/state-machine" }
sp-io = { version = "23.0.0", path = "../../../primitives/io" }
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
sp-core = { path = "../../../primitives/core" }
sp-state-machine = { path = "../../../primitives/state-machine" }
sp-io = { path = "../../../primitives/io" }
sp-runtime = { path = "../../../primitives/runtime" }
tokio = { version = "1.22.0", features = ["macros", "rt-multi-thread"] }
substrate-rpc-client = { path = "../rpc/client" }
futures = "0.3"
@@ -29,7 +29,7 @@ spinners = "4.1.0"
tokio-retry = "0.3.0"
[dev-dependencies]
sp-tracing = { version = "10.0.0", path = "../../../primitives/tracing" }
sp-tracing = { path = "../../../primitives/tracing" }
[features]
remote-test = []
+2 -2
View File
@@ -13,10 +13,10 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
jsonrpsee = { version = "0.16.2", features = ["ws-client"] }
sc-rpc-api = { version = "0.10.0-dev", path = "../../../../client/rpc-api" }
sc-rpc-api = { path = "../../../../client/rpc-api" }
async-trait = "0.1.57"
serde = "1"
sp-runtime = { version = "24.0.0", path = "../../../../primitives/runtime" }
sp-runtime = { path = "../../../../primitives/runtime" }
log = "0.4"
[dev-dependencies]
@@ -24,9 +24,9 @@ trie-db = "0.27.0"
jsonrpsee = { version = "0.16.2", features = ["client-core", "server", "macros"] }
# Substrate Dependencies
sc-client-api = { version = "4.0.0-dev", path = "../../../../client/api" }
sc-rpc-api = { version = "0.10.0-dev", path = "../../../../client/rpc-api" }
sp-runtime = { version = "24.0.0", path = "../../../../primitives/runtime" }
sc-client-api = { path = "../../../../client/api" }
sc-rpc-api = { path = "../../../../client/rpc-api" }
sp-runtime = { path = "../../../../primitives/runtime" }
[dev-dependencies]
serde_json = "1"
+6 -6
View File
@@ -18,14 +18,14 @@ targets = ["x86_64-unknown-linux-gnu"]
codec = { package = "parity-scale-codec", version = "3.6.1" }
jsonrpsee = { version = "0.16.2", features = ["jsonrpsee-types"] }
serde = "1"
frame-support = { version = "4.0.0-dev", path = "../../../../frame/support" }
sc-rpc-api = { version = "0.10.0-dev", path = "../../../../client/rpc-api" }
sp-storage = { version = "13.0.0", path = "../../../../primitives/storage" }
frame-support = { path = "../../../../frame/support" }
sc-rpc-api = { path = "../../../../client/rpc-api" }
sp-storage = { path = "../../../../primitives/storage" }
[dev-dependencies]
scale-info = "2.1.1"
jsonrpsee = { version = "0.16.2", features = ["ws-client", "jsonrpsee-types"] }
tokio = "1.22.0"
sp-core = { version = "21.0.0", path = "../../../../primitives/core" }
sp-runtime = { version = "24.0.0", path = "../../../../primitives/runtime" }
frame-system = { version = "4.0.0-dev", path = "../../../../frame/system" }
sp-core = { path = "../../../../primitives/core" }
sp-runtime = { path = "../../../../primitives/runtime" }
frame-system = { path = "../../../../frame/system" }
+11 -11
View File
@@ -17,18 +17,18 @@ codec = { package = "parity-scale-codec", version = "3.6.1" }
jsonrpsee = { version = "0.16.2", features = ["client-core", "server", "macros"] }
futures = "0.3.21"
log = "0.4.17"
frame-system-rpc-runtime-api = { version = "4.0.0-dev", path = "../../../../frame/system/rpc/runtime-api" }
sc-rpc-api = { version = "0.10.0-dev", path = "../../../../client/rpc-api" }
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../../../../client/transaction-pool/api" }
sp-api = { version = "4.0.0-dev", path = "../../../../primitives/api" }
sp-block-builder = { version = "4.0.0-dev", path = "../../../../primitives/block-builder" }
sp-blockchain = { version = "4.0.0-dev", path = "../../../../primitives/blockchain" }
sp-core = { version = "21.0.0", path = "../../../../primitives/core" }
sp-runtime = { version = "24.0.0", path = "../../../../primitives/runtime" }
frame-system-rpc-runtime-api = { path = "../../../../frame/system/rpc/runtime-api" }
sc-rpc-api = { path = "../../../../client/rpc-api" }
sc-transaction-pool-api = { path = "../../../../client/transaction-pool/api" }
sp-api = { path = "../../../../primitives/api" }
sp-block-builder = { path = "../../../../primitives/block-builder" }
sp-blockchain = { path = "../../../../primitives/blockchain" }
sp-core = { path = "../../../../primitives/core" }
sp-runtime = { path = "../../../../primitives/runtime" }
[dev-dependencies]
sc-transaction-pool = { version = "4.0.0-dev", path = "../../../../client/transaction-pool" }
sc-transaction-pool = { path = "../../../../client/transaction-pool" }
tokio = "1.22.0"
assert_matches = "1.3.0"
sp-tracing = { version = "10.0.0", path = "../../../../primitives/tracing" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../../../test-utils/runtime/client" }
sp-tracing = { path = "../../../../primitives/tracing" }
substrate-test-runtime-client = { path = "../../../../test-utils/runtime/client" }
@@ -12,26 +12,26 @@ description = "Cli command runtime testing and dry-running"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
remote-externalities = { version = "0.10.0-dev", path = "../../remote-externalities", package = "frame-remote-externalities" }
sc-cli = { version = "0.10.0-dev", path = "../../../../client/cli" }
sc-executor = { version = "0.10.0-dev", path = "../../../../client/executor" }
remote-externalities = { package = "frame-remote-externalities" , path = "../../remote-externalities" }
sc-cli = { path = "../../../../client/cli" }
sc-executor = { path = "../../../../client/executor" }
sp-consensus-aura = { path = "../../../../primitives/consensus/aura" }
sp-consensus-babe = { path = "../../../../primitives/consensus/babe" }
sp-core = { version = "21.0.0", path = "../../../../primitives/core" }
sp-externalities = { version = "0.19.0", path = "../../../../primitives/externalities" }
sp-core = { path = "../../../../primitives/core" }
sp-externalities = { path = "../../../../primitives/externalities" }
sp-inherents = { path = "../../../../primitives/inherents" }
sp-io = { version = "23.0.0", path = "../../../../primitives/io" }
sp-keystore = { version = "0.27.0", path = "../../../../primitives/keystore" }
sp-runtime = { version = "24.0.0", path = "../../../../primitives/runtime" }
sp-rpc = { version = "6.0.0", path = "../../../../primitives/rpc" }
sp-state-machine = { version = "0.28.0", path = "../../../../primitives/state-machine" }
sp-io = { path = "../../../../primitives/io" }
sp-keystore = { path = "../../../../primitives/keystore" }
sp-runtime = { path = "../../../../primitives/runtime" }
sp-rpc = { path = "../../../../primitives/rpc" }
sp-state-machine = { path = "../../../../primitives/state-machine" }
sp-timestamp = { path = "../../../../primitives/timestamp" }
sp-transaction-storage-proof = { path = "../../../../primitives/transaction-storage-proof" }
sp-version = { version = "22.0.0", path = "../../../../primitives/version" }
sp-version = { path = "../../../../primitives/version" }
sp-debug-derive = { path = "../../../../primitives/debug-derive" }
sp-api = { path = "../../../../primitives/api" }
sp-weights = { version = "20.0.0", path = "../../../../primitives/weights" }
frame-try-runtime = { optional = true, path = "../../../../frame/try-runtime" }
sp-weights = { path = "../../../../primitives/weights" }
frame-try-runtime = { path = "../../../../frame/try-runtime", optional = true}
substrate-rpc-client = { path = "../../rpc/client" }
async-trait = "0.1.57"
+1 -1
View File
@@ -20,7 +20,7 @@ strum = { version = "0.24.1", features = ["derive"] }
tempfile = "3.1.0"
toml = "0.7.3"
walkdir = "2.3.2"
sp-maybe-compressed-blob = { version = "4.1.0-dev", path = "../../primitives/maybe-compressed-blob" }
sp-maybe-compressed-blob = { path = "../../primitives/maybe-compressed-blob" }
filetime = "0.2.16"
wasm-opt = "0.114"
parity-wasm = "0.45"