Enforce consistent and correct toml formatting (#2518)

Using taplo, fixes all our broken and inconsistent toml formatting and
adds CI to keep them tidy.

If people want we can customise the format rules as described here
https://taplo.tamasfe.dev/configuration/formatter-options.html

@ggwpez, I suggest zepter is used only for checking features are
propagated, and leave formatting for taplo to avoid duplicate work and
conflicts.

TODO
- [x] Use `exclude = [...]` syntax in taplo file to ignore zombienet
tests instead of deleting the dir

---------

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Co-authored-by: Bastian Köcher <git@kchr.de>
This commit is contained in:
Liam Aharon
2023-12-01 11:38:02 +04:00
committed by GitHub
parent 52132636d9
commit 4a293bc5a2
364 changed files with 2325 additions and 2287 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ sp-core = { path = "../../../primitives/core" }
sp-consensus = { path = "../../../primitives/consensus/common" }
sc-basic-authorship = { path = "../../../client/basic-authorship" }
sp-inherents = { path = "../../../primitives/inherents" }
sp-timestamp = { path = "../../../primitives/timestamp", default-features = false}
sp-timestamp = { path = "../../../primitives/timestamp", default-features = false }
sp-tracing = { path = "../../../primitives/tracing" }
hash-db = "0.16.0"
tempfile = "3.1.0"
+14 -14
View File
@@ -79,7 +79,7 @@ sc-consensus-babe = { path = "../../../client/consensus/babe" }
grandpa = { package = "sc-consensus-grandpa", path = "../../../client/consensus/grandpa" }
sc-rpc = { path = "../../../client/rpc" }
sc-basic-authorship = { path = "../../../client/basic-authorship" }
sc-service = { path = "../../../client/service", default-features = false}
sc-service = { path = "../../../client/service", default-features = false }
sc-telemetry = { path = "../../../client/telemetry" }
sc-executor = { path = "../../../client/executor" }
sc-authority-discovery = { path = "../../../client/authority-discovery" }
@@ -96,8 +96,8 @@ frame-system-rpc-runtime-api = { path = "../../../frame/system/rpc/runtime-api"
pallet-assets = { path = "../../../frame/assets" }
pallet-asset-conversion-tx-payment = { path = "../../../frame/transaction-payment/asset-conversion-tx-payment" }
pallet-asset-tx-payment = { path = "../../../frame/transaction-payment/asset-tx-payment" }
pallet-im-online = { path = "../../../frame/im-online", default-features = false}
pallet-skip-feeless-payment = { path = "../../../frame/transaction-payment/skip-feeless-payment", default-features = false}
pallet-im-online = { path = "../../../frame/im-online", default-features = false }
pallet-skip-feeless-payment = { path = "../../../frame/transaction-payment/skip-feeless-payment", default-features = false }
# node-specific dependencies
kitchensink-runtime = { path = "../runtime" }
@@ -105,10 +105,10 @@ node-rpc = { path = "../rpc" }
node-primitives = { path = "../primitives" }
# CLI-specific dependencies
sc-cli = { path = "../../../client/cli", optional = true}
frame-benchmarking-cli = { path = "../../../utils/frame/benchmarking-cli", optional = true}
node-inspect = { package = "staging-node-inspect", path = "../inspect", optional = true}
try-runtime-cli = { path = "../../../utils/frame/try-runtime/cli", optional = true}
sc-cli = { path = "../../../client/cli", optional = true }
frame-benchmarking-cli = { path = "../../../utils/frame/benchmarking-cli", optional = true }
node-inspect = { package = "staging-node-inspect", path = "../inspect", optional = true }
try-runtime-cli = { path = "../../../utils/frame/try-runtime/cli", optional = true }
serde_json = "1.0.108"
[dev-dependencies]
@@ -129,7 +129,7 @@ regex = "1.6.0"
platforms = "3.0"
soketto = "0.7.1"
criterion = { version = "0.4.0", features = ["async_tokio"] }
tokio = { version = "1.22.0", features = ["macros", "time", "parking_lot"] }
tokio = { version = "1.22.0", features = ["macros", "parking_lot", "time"] }
tokio-util = { version = "0.7.4", features = ["compat"] }
wait-timeout = "0.2"
substrate-rpc-client = { path = "../../../utils/frame/rpc/client" }
@@ -159,17 +159,17 @@ sp-state-machine = { path = "../../../primitives/state-machine" }
[build-dependencies]
clap = { version = "4.4.10", optional = true }
clap_complete = { version = "4.0.2", optional = true }
node-inspect = { package = "staging-node-inspect", path = "../inspect", optional = true}
frame-benchmarking-cli = { path = "../../../utils/frame/benchmarking-cli", optional = true}
substrate-build-script-utils = { path = "../../../utils/build-script-utils", optional = true}
substrate-frame-cli = { path = "../../../utils/frame/frame-utilities-cli", optional = true}
try-runtime-cli = { path = "../../../utils/frame/try-runtime/cli", optional = true}
node-inspect = { package = "staging-node-inspect", path = "../inspect", optional = true }
frame-benchmarking-cli = { path = "../../../utils/frame/benchmarking-cli", optional = true }
substrate-build-script-utils = { path = "../../../utils/build-script-utils", optional = true }
substrate-frame-cli = { path = "../../../utils/frame/frame-utilities-cli", optional = true }
try-runtime-cli = { path = "../../../utils/frame/try-runtime/cli", optional = true }
sc-cli = { path = "../../../client/cli", optional = true }
pallet-balances = { path = "../../../frame/balances" }
sc-storage-monitor = { path = "../../../client/storage-monitor" }
[features]
default = [ "cli" ]
default = ["cli"]
cli = [
"clap",
"clap_complete",
+1 -1
View File
@@ -17,7 +17,7 @@ codec = { package = "parity-scale-codec", version = "3.6.1" }
thiserror = "1.0"
sc-cli = { path = "../../../client/cli" }
sc-client-api = { path = "../../../client/api" }
sc-service = { path = "../../../client/service", default-features = false}
sc-service = { path = "../../../client/service", default-features = false }
sp-blockchain = { path = "../../../primitives/blockchain" }
sp-core = { path = "../../../primitives/core" }
sp-io = { path = "../../../primitives/io" }
+4 -4
View File
@@ -13,9 +13,9 @@ publish = false
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-core = { path = "../../../primitives/core", default-features = false}
sp-runtime = { path = "../../../primitives/runtime", default-features = false}
sp-core = { path = "../../../primitives/core", default-features = false }
sp-runtime = { path = "../../../primitives/runtime", default-features = false }
[features]
default = [ "std" ]
std = [ "sp-core/std", "sp-runtime/std" ]
default = ["std"]
std = ["sp-core/std", "sp-runtime/std"]
+98 -98
View File
@@ -26,122 +26,122 @@ log = { version = "0.4.17", default-features = false }
serde_json = { version = "1.0.108", default-features = false, features = ["alloc", "arbitrary_precision"] }
# pallet-asset-conversion: turn on "num-traits" feature
primitive-types = { version = "0.12.0", default-features = false, features = ["codec", "scale-info", "num-traits"] }
primitive-types = { version = "0.12.0", default-features = false, features = ["codec", "num-traits", "scale-info"] }
# primitives
sp-authority-discovery = { path = "../../../primitives/authority-discovery", default-features = false, features=["serde"] }
sp-consensus-babe = { path = "../../../primitives/consensus/babe", default-features = false, features=["serde"] }
sp-consensus-grandpa = { path = "../../../primitives/consensus/grandpa", default-features = false, features=["serde"] }
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false}
sp-authority-discovery = { path = "../../../primitives/authority-discovery", default-features = false, features = ["serde"] }
sp-consensus-babe = { path = "../../../primitives/consensus/babe", default-features = false, features = ["serde"] }
sp-consensus-grandpa = { path = "../../../primitives/consensus/grandpa", default-features = false, features = ["serde"] }
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false }
sp-genesis-builder = { default-features = false, path = "../../../primitives/genesis-builder" }
sp-inherents = { path = "../../../primitives/inherents", default-features = false}
node-primitives = { path = "../primitives", default-features = false}
sp-inherents = { path = "../../../primitives/inherents", default-features = false }
node-primitives = { path = "../primitives", default-features = false }
sp-mixnet = { path = "../../../primitives/mixnet", default-features = false }
sp-offchain = { path = "../../../primitives/offchain", default-features = false}
sp-core = { path = "../../../primitives/core", default-features = false, features=["serde"] }
sp-std = { path = "../../../primitives/std", default-features = false}
sp-api = { path = "../../../primitives/api", default-features = false}
sp-runtime = { path = "../../../primitives/runtime", default-features = false, features=["serde"] }
sp-staking = { path = "../../../primitives/staking", default-features = false, features=["serde"] }
sp-storage = { path = "../../../primitives/storage", default-features = false}
sp-session = { path = "../../../primitives/session", default-features = false}
sp-transaction-pool = { path = "../../../primitives/transaction-pool", default-features = false}
sp-statement-store = { path = "../../../primitives/statement-store", default-features = false, features=["serde"] }
sp-version = { path = "../../../primitives/version", default-features = false, features=["serde"] }
sp-io = { path = "../../../primitives/io", default-features = false}
sp-offchain = { path = "../../../primitives/offchain", default-features = false }
sp-core = { path = "../../../primitives/core", default-features = false, features = ["serde"] }
sp-std = { path = "../../../primitives/std", default-features = false }
sp-api = { path = "../../../primitives/api", default-features = false }
sp-runtime = { path = "../../../primitives/runtime", default-features = false, features = ["serde"] }
sp-staking = { path = "../../../primitives/staking", default-features = false, features = ["serde"] }
sp-storage = { path = "../../../primitives/storage", default-features = false }
sp-session = { path = "../../../primitives/session", default-features = false }
sp-transaction-pool = { path = "../../../primitives/transaction-pool", default-features = false }
sp-statement-store = { path = "../../../primitives/statement-store", default-features = false, features = ["serde"] }
sp-version = { path = "../../../primitives/version", default-features = false, features = ["serde"] }
sp-io = { path = "../../../primitives/io", default-features = false }
# frame dependencies
frame-executive = { path = "../../../frame/executive", default-features = false}
frame-benchmarking = { path = "../../../frame/benchmarking", default-features = false}
frame-benchmarking-pallet-pov = { path = "../../../frame/benchmarking/pov", default-features = false}
frame-executive = { path = "../../../frame/executive", default-features = false }
frame-benchmarking = { path = "../../../frame/benchmarking", default-features = false }
frame-benchmarking-pallet-pov = { path = "../../../frame/benchmarking/pov", default-features = false }
frame-support = { path = "../../../frame/support", default-features = false, features = ["tuples-96"] }
frame-system = { path = "../../../frame/system", default-features = false}
frame-system = { path = "../../../frame/system", default-features = false }
frame-system-benchmarking = { path = "../../../frame/system/benchmarking", default-features = false, optional = true }
frame-election-provider-support = { path = "../../../frame/election-provider-support", default-features = false}
frame-system-rpc-runtime-api = { path = "../../../frame/system/rpc/runtime-api", default-features = false}
frame-election-provider-support = { path = "../../../frame/election-provider-support", default-features = false }
frame-system-rpc-runtime-api = { path = "../../../frame/system/rpc/runtime-api", default-features = false }
frame-try-runtime = { path = "../../../frame/try-runtime", default-features = false, optional = true }
pallet-alliance = { path = "../../../frame/alliance", default-features = false}
pallet-asset-conversion = { path = "../../../frame/asset-conversion", default-features = false}
pallet-asset-rate = { path = "../../../frame/asset-rate", default-features = false}
pallet-assets = { path = "../../../frame/assets", default-features = false}
pallet-authority-discovery = { path = "../../../frame/authority-discovery", default-features = false}
pallet-authorship = { path = "../../../frame/authorship", default-features = false}
pallet-babe = { path = "../../../frame/babe", default-features = false}
pallet-bags-list = { path = "../../../frame/bags-list", default-features = false}
pallet-balances = { path = "../../../frame/balances", default-features = false}
pallet-bounties = { path = "../../../frame/bounties", default-features = false}
pallet-broker = { path = "../../../frame/broker", default-features = false}
pallet-child-bounties = { path = "../../../frame/child-bounties", default-features = false}
pallet-collective = { path = "../../../frame/collective", default-features = false}
pallet-contracts = { path = "../../../frame/contracts", default-features = false}
pallet-conviction-voting = { path = "../../../frame/conviction-voting", default-features = false}
pallet-core-fellowship = { path = "../../../frame/core-fellowship", default-features = false}
pallet-democracy = { path = "../../../frame/democracy", default-features = false}
pallet-election-provider-multi-phase = { path = "../../../frame/election-provider-multi-phase", default-features = false}
pallet-alliance = { path = "../../../frame/alliance", default-features = false }
pallet-asset-conversion = { path = "../../../frame/asset-conversion", default-features = false }
pallet-asset-rate = { path = "../../../frame/asset-rate", default-features = false }
pallet-assets = { path = "../../../frame/assets", default-features = false }
pallet-authority-discovery = { path = "../../../frame/authority-discovery", default-features = false }
pallet-authorship = { path = "../../../frame/authorship", default-features = false }
pallet-babe = { path = "../../../frame/babe", default-features = false }
pallet-bags-list = { path = "../../../frame/bags-list", default-features = false }
pallet-balances = { path = "../../../frame/balances", default-features = false }
pallet-bounties = { path = "../../../frame/bounties", default-features = false }
pallet-broker = { path = "../../../frame/broker", default-features = false }
pallet-child-bounties = { path = "../../../frame/child-bounties", default-features = false }
pallet-collective = { path = "../../../frame/collective", default-features = false }
pallet-contracts = { path = "../../../frame/contracts", default-features = false }
pallet-conviction-voting = { path = "../../../frame/conviction-voting", default-features = false }
pallet-core-fellowship = { path = "../../../frame/core-fellowship", default-features = false }
pallet-democracy = { path = "../../../frame/democracy", default-features = false }
pallet-election-provider-multi-phase = { path = "../../../frame/election-provider-multi-phase", default-features = false }
pallet-election-provider-support-benchmarking = { path = "../../../frame/election-provider-support/benchmarking", default-features = false, optional = true }
pallet-elections-phragmen = { path = "../../../frame/elections-phragmen", default-features = false}
pallet-fast-unstake = { path = "../../../frame/fast-unstake", default-features = false}
pallet-nis = { path = "../../../frame/nis", default-features = false}
pallet-grandpa = { path = "../../../frame/grandpa", default-features = false}
pallet-im-online = { path = "../../../frame/im-online", default-features = false}
pallet-indices = { path = "../../../frame/indices", default-features = false}
pallet-identity = { path = "../../../frame/identity", default-features = false}
pallet-lottery = { path = "../../../frame/lottery", default-features = false}
pallet-membership = { path = "../../../frame/membership", default-features = false}
pallet-message-queue = { path = "../../../frame/message-queue", default-features = false}
pallet-elections-phragmen = { path = "../../../frame/elections-phragmen", default-features = false }
pallet-fast-unstake = { path = "../../../frame/fast-unstake", default-features = false }
pallet-nis = { path = "../../../frame/nis", default-features = false }
pallet-grandpa = { path = "../../../frame/grandpa", default-features = false }
pallet-im-online = { path = "../../../frame/im-online", default-features = false }
pallet-indices = { path = "../../../frame/indices", default-features = false }
pallet-identity = { path = "../../../frame/identity", default-features = false }
pallet-lottery = { path = "../../../frame/lottery", default-features = false }
pallet-membership = { path = "../../../frame/membership", default-features = false }
pallet-message-queue = { path = "../../../frame/message-queue", default-features = false }
pallet-mixnet = { path = "../../../frame/mixnet", default-features = false }
pallet-mmr = { path = "../../../frame/merkle-mountain-range", default-features = false}
pallet-multisig = { path = "../../../frame/multisig", default-features = false}
pallet-nfts = { path = "../../../frame/nfts", default-features = false}
pallet-nfts-runtime-api = { path = "../../../frame/nfts/runtime-api", default-features = false}
pallet-nft-fractionalization = { path = "../../../frame/nft-fractionalization", default-features = false}
pallet-nomination-pools = { path = "../../../frame/nomination-pools", default-features = false}
pallet-nomination-pools-benchmarking = { path = "../../../frame/nomination-pools/benchmarking", default-features = false, optional = true}
pallet-nomination-pools-runtime-api = { path = "../../../frame/nomination-pools/runtime-api", default-features = false}
pallet-offences = { path = "../../../frame/offences", default-features = false}
pallet-mmr = { path = "../../../frame/merkle-mountain-range", default-features = false }
pallet-multisig = { path = "../../../frame/multisig", default-features = false }
pallet-nfts = { path = "../../../frame/nfts", default-features = false }
pallet-nfts-runtime-api = { path = "../../../frame/nfts/runtime-api", default-features = false }
pallet-nft-fractionalization = { path = "../../../frame/nft-fractionalization", default-features = false }
pallet-nomination-pools = { path = "../../../frame/nomination-pools", default-features = false }
pallet-nomination-pools-benchmarking = { path = "../../../frame/nomination-pools/benchmarking", default-features = false, optional = true }
pallet-nomination-pools-runtime-api = { path = "../../../frame/nomination-pools/runtime-api", default-features = false }
pallet-offences = { path = "../../../frame/offences", default-features = false }
pallet-offences-benchmarking = { path = "../../../frame/offences/benchmarking", default-features = false, optional = true }
pallet-glutton = { path = "../../../frame/glutton", default-features = false}
pallet-preimage = { path = "../../../frame/preimage", default-features = false}
pallet-proxy = { path = "../../../frame/proxy", default-features = false}
pallet-insecure-randomness-collective-flip = { path = "../../../frame/insecure-randomness-collective-flip", default-features = false}
pallet-ranked-collective = { path = "../../../frame/ranked-collective", default-features = false}
pallet-recovery = { path = "../../../frame/recovery", default-features = false}
pallet-referenda = { path = "../../../frame/referenda", default-features = false}
pallet-remark = { path = "../../../frame/remark", default-features = false}
pallet-root-testing = { path = "../../../frame/root-testing", default-features = false}
pallet-salary = { path = "../../../frame/salary", default-features = false}
pallet-session = { path = "../../../frame/session", default-features = false , features = [ "historical" ]}
pallet-glutton = { path = "../../../frame/glutton", default-features = false }
pallet-preimage = { path = "../../../frame/preimage", default-features = false }
pallet-proxy = { path = "../../../frame/proxy", default-features = false }
pallet-insecure-randomness-collective-flip = { path = "../../../frame/insecure-randomness-collective-flip", default-features = false }
pallet-ranked-collective = { path = "../../../frame/ranked-collective", default-features = false }
pallet-recovery = { path = "../../../frame/recovery", default-features = false }
pallet-referenda = { path = "../../../frame/referenda", default-features = false }
pallet-remark = { path = "../../../frame/remark", default-features = false }
pallet-root-testing = { path = "../../../frame/root-testing", default-features = false }
pallet-salary = { path = "../../../frame/salary", default-features = false }
pallet-session = { path = "../../../frame/session", default-features = false, features = ["historical"] }
pallet-session-benchmarking = { path = "../../../frame/session/benchmarking", default-features = false, optional = true }
pallet-staking = { path = "../../../frame/staking", default-features = false}
pallet-staking-reward-curve = { path = "../../../frame/staking/reward-curve", default-features = false}
pallet-staking-runtime-api = { path = "../../../frame/staking/runtime-api", default-features = false}
pallet-state-trie-migration = { path = "../../../frame/state-trie-migration", default-features = false}
pallet-statement = { path = "../../../frame/statement", default-features = false}
pallet-scheduler = { path = "../../../frame/scheduler", default-features = false}
pallet-society = { path = "../../../frame/society", default-features = false}
pallet-sudo = { path = "../../../frame/sudo", default-features = false}
pallet-timestamp = { path = "../../../frame/timestamp", default-features = false}
pallet-tips = { path = "../../../frame/tips", default-features = false}
pallet-treasury = { path = "../../../frame/treasury", default-features = false}
pallet-utility = { path = "../../../frame/utility", default-features = false}
pallet-transaction-payment = { path = "../../../frame/transaction-payment", default-features = false}
pallet-transaction-payment-rpc-runtime-api = { path = "../../../frame/transaction-payment/rpc/runtime-api", default-features = false}
pallet-asset-conversion-tx-payment = { path = "../../../frame/transaction-payment/asset-conversion-tx-payment", default-features = false}
pallet-asset-tx-payment = { path = "../../../frame/transaction-payment/asset-tx-payment", default-features = false}
pallet-skip-feeless-payment = { path = "../../../frame/transaction-payment/skip-feeless-payment", default-features = false}
pallet-transaction-storage = { path = "../../../frame/transaction-storage", default-features = false}
pallet-uniques = { path = "../../../frame/uniques", default-features = false}
pallet-vesting = { path = "../../../frame/vesting", default-features = false}
pallet-whitelist = { path = "../../../frame/whitelist", default-features = false}
pallet-tx-pause = { path = "../../../frame/tx-pause", default-features = false}
pallet-safe-mode = { path = "../../../frame/safe-mode", default-features = false}
pallet-staking = { path = "../../../frame/staking", default-features = false }
pallet-staking-reward-curve = { path = "../../../frame/staking/reward-curve", default-features = false }
pallet-staking-runtime-api = { path = "../../../frame/staking/runtime-api", default-features = false }
pallet-state-trie-migration = { path = "../../../frame/state-trie-migration", default-features = false }
pallet-statement = { path = "../../../frame/statement", default-features = false }
pallet-scheduler = { path = "../../../frame/scheduler", default-features = false }
pallet-society = { path = "../../../frame/society", default-features = false }
pallet-sudo = { path = "../../../frame/sudo", default-features = false }
pallet-timestamp = { path = "../../../frame/timestamp", default-features = false }
pallet-tips = { path = "../../../frame/tips", default-features = false }
pallet-treasury = { path = "../../../frame/treasury", default-features = false }
pallet-utility = { path = "../../../frame/utility", default-features = false }
pallet-transaction-payment = { path = "../../../frame/transaction-payment", default-features = false }
pallet-transaction-payment-rpc-runtime-api = { path = "../../../frame/transaction-payment/rpc/runtime-api", default-features = false }
pallet-asset-conversion-tx-payment = { path = "../../../frame/transaction-payment/asset-conversion-tx-payment", default-features = false }
pallet-asset-tx-payment = { path = "../../../frame/transaction-payment/asset-tx-payment", default-features = false }
pallet-skip-feeless-payment = { path = "../../../frame/transaction-payment/skip-feeless-payment", default-features = false }
pallet-transaction-storage = { path = "../../../frame/transaction-storage", default-features = false }
pallet-uniques = { path = "../../../frame/uniques", default-features = false }
pallet-vesting = { path = "../../../frame/vesting", default-features = false }
pallet-whitelist = { path = "../../../frame/whitelist", default-features = false }
pallet-tx-pause = { path = "../../../frame/tx-pause", default-features = false }
pallet-safe-mode = { path = "../../../frame/safe-mode", default-features = false }
[build-dependencies]
substrate-wasm-builder = { path = "../../../utils/wasm-builder", optional = true }
[features]
default = [ "std" ]
with-tracing = [ "frame-executive/with-tracing" ]
default = ["std"]
with-tracing = ["frame-executive/with-tracing"]
std = [
"codec/std",
"frame-benchmarking-pallet-pov/std",
+4 -4
View File
@@ -29,13 +29,13 @@ pallet-asset-tx-payment = { path = "../../../frame/transaction-payment/asset-tx-
pallet-skip-feeless-payment = { path = "../../../frame/transaction-payment/skip-feeless-payment" }
sc-block-builder = { path = "../../../client/block-builder" }
sc-client-api = { path = "../../../client/api" }
sc-client-db = { path = "../../../client/db", features = ["rocksdb"]}
sc-client-db = { path = "../../../client/db", features = ["rocksdb"] }
sc-consensus = { path = "../../../client/consensus/common" }
sc-executor = { path = "../../../client/executor" }
sc-service = { path = "../../../client/service", features = [
"test-helpers",
"rocksdb",
]}
"test-helpers",
] }
sp-api = { path = "../../../primitives/api" }
sp-block-builder = { path = "../../../primitives/block-builder" }
sp-blockchain = { path = "../../../primitives/blockchain" }
@@ -45,5 +45,5 @@ sp-inherents = { path = "../../../primitives/inherents" }
sp-io = { path = "../../../primitives/io" }
sp-keyring = { path = "../../../primitives/keyring" }
sp-runtime = { path = "../../../primitives/runtime" }
sp-timestamp = { path = "../../../primitives/timestamp", default-features = false}
sp-timestamp = { path = "../../../primitives/timestamp", default-features = false }
substrate-test-client = { path = "../../../test-utils/client" }