Skip to content

Commit

Permalink
Make taplo happy
Browse files Browse the repository at this point in the history
  • Loading branch information
davxy committed Dec 2, 2023
1 parent 8bca723 commit 46bfecc
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions substrate/bin/node-sassafras/node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "node-sassafras"
version = "0.3.4-dev"
authors = ["Parity Technologies <admin@parity.io>", "Davide Galassi <davxy@datawok.net>"]
authors = ["Davide Galassi <davxy@datawok.net>", "Parity Technologies <admin@parity.io>"]
description = "Node testbed for Sassafras consensus."
homepage = "https://substrate.io/"
edition = "2021"
Expand All @@ -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" }
Expand All @@ -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" }

Expand Down Expand Up @@ -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",
]
12 changes: 6 additions & 6 deletions substrate/bin/node-sassafras/runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "node-sassafras-runtime"
version = "0.3.4-dev"
authors = ["Parity Technologies <admin@parity.io>","Davide Galassi <davxy@datawok.net>"]
authors = ["Davide Galassi <davxy@datawok.net>", "Parity Technologies <admin@parity.io>"]
description = "Runtime testbed for Sassafras consensus."
homepage = "https://substrate.io/"
edition = "2021"
Expand All @@ -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 }
Expand All @@ -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 }
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion substrate/test-utils/runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down

0 comments on commit 46bfecc

Please sign in to comment.