diff --git a/substrate/bin/node-sassafras/node/Cargo.toml b/substrate/bin/node-sassafras/node/Cargo.toml index 3c6c3a9de200..6869db5780cb 100644 --- a/substrate/bin/node-sassafras/node/Cargo.toml +++ b/substrate/bin/node-sassafras/node/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "node-sassafras" version = "0.3.4-dev" -authors = ["Parity Technologies ", "Davide Galassi "] +authors = ["Davide Galassi ", "Parity Technologies "] description = "Node testbed for Sassafras consensus." homepage = "https://substrate.io/" edition = "2021" @@ -17,7 +17,7 @@ name = "node-sassafras" [dependencies] clap = { version = "4.0.9", features = ["derive"] } -futures = { version = "0.3.21", features = ["thread-pool"]} +futures = { version = "0.3.21", features = ["thread-pool"] } serde_json = "1.0.108" sc-cli = { path = "../../../client/cli" } @@ -44,7 +44,7 @@ sp-inherents = { path = "../../../primitives/inherents" } sp-keyring = { path = "../../../primitives/keyring" } frame-system = { path = "../../../frame/system" } pallet-transaction-payment = { path = "../../../frame/transaction-payment" } -sp-crypto-ec-utils = { path = "../../../primitives/crypto/ec-utils", features = ["bls12-381","ed-on-bls12-381-bandersnatch"] } +sp-crypto-ec-utils = { path = "../../../primitives/crypto/ec-utils", features = ["bls12-381", "ed-on-bls12-381-bandersnatch"] } sp-consensus-slots = { path = "../../../primitives/consensus/slots" } sc-consensus-slots = { path = "../../../client/consensus/slots" } @@ -72,8 +72,8 @@ substrate-build-script-utils = { path = "../../../utils/build-script-utils" } [features] default = [] runtime-benchmarks = [ - "node-sassafras-runtime/runtime-benchmarks" + "node-sassafras-runtime/runtime-benchmarks", ] use-session-pallet = [ - "node-sassafras-runtime/use-session-pallet" + "node-sassafras-runtime/use-session-pallet", ] diff --git a/substrate/bin/node-sassafras/runtime/Cargo.toml b/substrate/bin/node-sassafras/runtime/Cargo.toml index 0c3186db1bcc..bde7ffe4c593 100644 --- a/substrate/bin/node-sassafras/runtime/Cargo.toml +++ b/substrate/bin/node-sassafras/runtime/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "node-sassafras-runtime" version = "0.3.4-dev" -authors = ["Parity Technologies ","Davide Galassi "] +authors = ["Davide Galassi ", "Parity Technologies "] description = "Runtime testbed for Sassafras consensus." homepage = "https://substrate.io/" edition = "2021" @@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] } scale-info = { version = "2.1.1", default-features = false, features = ["derive"] } -pallet-sassafras = { path = "../../../frame/sassafras", default-features = false, features = ["construct-dummy-ring-context"] } +pallet-sassafras = { path = "../../../frame/sassafras", default-features = false, features = ["construct-dummy-ring-context"] } pallet-balances = { path = "../../../frame/balances", default-features = false } pallet-session = { path = "../../../frame/session", default-features = false } frame-support = { path = "../../../frame/support", default-features = false } @@ -34,7 +34,7 @@ sp-offchain = { path = "../../../primitives/offchain", default-features = false sp-runtime = { path = "../../../primitives/runtime", default-features = false } sp-session = { path = "../../../primitives/session", default-features = false } sp-std = { path = "../../../primitives/std", default-features = false } -sp-storage = { path = "../../../primitives/storage", default-features = false} +sp-storage = { path = "../../../primitives/storage", default-features = false } sp-transaction-pool = { path = "../../../primitives/transaction-pool", default-features = false } sp-version = { path = "../../../primitives/version", default-features = false } sp-genesis-builder = { path = "../../../primitives/genesis-builder", default-features = false } @@ -54,19 +54,19 @@ substrate-wasm-builder = { path = "../../../utils/wasm-builder" } default = ["std"] std = [ "codec/std", - "scale-info/std", "frame-executive/std", "frame-support/std", "frame-system-rpc-runtime-api/std", "frame-system/std", - "pallet-sassafras/std", "pallet-balances/std", "pallet-grandpa/std", - "pallet-sudo/std", + "pallet-sassafras/std", "pallet-session/std", + "pallet-sudo/std", "pallet-timestamp/std", "pallet-transaction-payment-rpc-runtime-api/std", "pallet-transaction-payment/std", + "scale-info/std", "sp-api/std", "sp-block-builder/std", "sp-consensus-sassafras/std", diff --git a/substrate/test-utils/runtime/Cargo.toml b/substrate/test-utils/runtime/Cargo.toml index 4bfd5c9025a1..c269c9618cf6 100644 --- a/substrate/test-utils/runtime/Cargo.toml +++ b/substrate/test-utils/runtime/Cargo.toml @@ -33,7 +33,7 @@ sp-session = { path = "../../primitives/session", default-features = false } sp-api = { path = "../../primitives/api", default-features = false } sp-runtime = { path = "../../primitives/runtime", default-features = false, features = ["serde"] } pallet-babe = { path = "../../frame/babe", default-features = false } -pallet-sassafras = { path = "../../frame/sassafras", default-features = false} +pallet-sassafras = { path = "../../frame/sassafras", default-features = false } pallet-balances = { path = "../../frame/balances", default-features = false } frame-executive = { path = "../../frame/executive", default-features = false } frame-system = { path = "../../frame/system", default-features = false }