Basic TOML Lint (#11348)

* basic lint

* lint ordering
This commit is contained in:
Shawn Tabrizi
2022-05-04 14:38:54 +01:00
committed by GitHub
parent 19a9e56444
commit 7d5202341b
186 changed files with 1435 additions and 1531 deletions
+2 -2
View File
@@ -13,9 +13,9 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
futures = "0.3.16"
substrate-test-utils-derive = { version = "0.10.0-dev", path = "./derive" }
tokio = { version = "1.17.0", features = ["macros", "time"] }
substrate-test-utils-derive = { version = "0.10.0-dev", path = "./derive" }
[dev-dependencies]
sc-service = { version = "0.10.0-dev", path = "../client/service" }
trybuild = { version = "1.0.53", features = [ "diff" ] }
sc-service = { version = "0.10.0-dev", path = "../client/service" }
+4 -4
View File
@@ -12,6 +12,7 @@ publish = false
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
async-trait = "0.1.50"
codec = { package = "parity-scale-codec", version = "3.0.0" }
futures = "0.3.21"
hex = "0.4"
@@ -19,19 +20,18 @@ serde = "1.0.136"
serde_json = "1.0.79"
sc-client-api = { version = "4.0.0-dev", path = "../../client/api" }
sc-client-db = { version = "0.10.0-dev", features = [
"test-helpers",
"test-helpers",
], path = "../../client/db" }
sc-consensus = { version = "0.10.0-dev", path = "../../client/consensus/common" }
sc-executor = { version = "0.10.0-dev", path = "../../client/executor" }
sc-offchain = { version = "4.0.0-dev", path = "../../client/offchain" }
sc-service = { version = "0.10.0-dev", default-features = false, features = [
"test-helpers",
"test-helpers",
], path = "../../client/service" }
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" }
sp-core = { version = "6.0.0", path = "../../primitives/core" }
sp-keystore = { version = "0.12.0", path = "../../primitives/keystore" }
sp-keyring = { version = "6.0.0", path = "../../primitives/keyring" }
sp-keystore = { version = "0.12.0", path = "../../primitives/keystore" }
sp-runtime = { version = "6.0.0", path = "../../primitives/runtime" }
sp-state-machine = { version = "0.12.0", path = "../../primitives/state-machine" }
async-trait = "0.1.50"
+2 -2
View File
@@ -9,10 +9,10 @@ repository = "https://github.com/paritytech/substrate/"
description = "Substrate test utilities macros"
[dependencies]
quote = "1.0.10"
syn = { version = "1.0.82", features = ["full"] }
proc-macro-crate = "1.1.3"
proc-macro2 = "1.0.37"
quote = "1.0.10"
syn = { version = "1.0.82", features = ["full"] }
[lib]
proc-macro = true
@@ -12,15 +12,15 @@ publish = false
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" }
codec = { package = "parity-scale-codec", version = "3.0.0" }
futures = "0.3.21"
sc-block-builder = { version = "0.10.0-dev", path = "../../../client/block-builder" }
substrate-test-client = { version = "2.0.0", path = "../../client" }
sp-core = { version = "6.0.0", path = "../../../primitives/core" }
substrate-test-runtime = { version = "2.0.0", path = "../../runtime" }
sp-runtime = { version = "6.0.0", path = "../../../primitives/runtime" }
sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" }
sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" }
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
codec = { package = "parity-scale-codec", version = "3.0.0" }
sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" }
futures = "0.3.21"
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
sp-core = { version = "6.0.0", path = "../../../primitives/core" }
sp-runtime = { version = "6.0.0", path = "../../../primitives/runtime" }
substrate-test-client = { version = "2.0.0", path = "../../client" }
substrate-test-runtime = { version = "2.0.0", path = "../../runtime" }
@@ -12,12 +12,12 @@ publish = false
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
substrate-test-runtime-client = { version = "2.0.0", path = "../client" }
parking_lot = "0.12.0"
codec = { package = "parity-scale-codec", version = "3.0.0" }
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
sp-runtime = { version = "6.0.0", path = "../../../primitives/runtime" }
futures = "0.3.21"
parking_lot = "0.12.0"
thiserror = "1.0"
sc-transaction-pool = { version = "4.0.0-dev", path = "../../../client/transaction-pool" }
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../../../client/transaction-pool/api" }
futures = "0.3.21"
thiserror = "1.0"
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
sp-runtime = { version = "6.0.0", path = "../../../primitives/runtime" }
substrate-test-runtime-client = { version = "2.0.0", path = "../client" }
+1 -1
View File
@@ -13,5 +13,5 @@ targets = ["x86_64-unknown-linux-gnu"]
[dev-dependencies]
tokio = { version = "1.17.0", features = ["macros"] }
test-utils = { version = "4.0.0-dev", path = "..", package = "substrate-test-utils" }
sc-service = { version = "0.10.0-dev", path = "../../client/service" }
test-utils = { package = "substrate-test-utils", version = "4.0.0-dev", path = ".." }