Toml-sort (#69)

* run toml sort and add script for it

* add ci

* try patch

* try fix

* add file permissions

* check if installation state persists or starts from scratch every time

* Revert "check if installation state persists or starts from scratch every time"

This reverts commit 45e7aae8d2f18cbe1a78482d234b98fcfbe8b6ae.

* Apply suggestions from code review

* clean

* fix

* try revert

* fix
This commit is contained in:
Amar Singh
2023-12-20 19:05:36 -05:00
committed by GitHub
parent b734abf5eb
commit 7d53d4f679
8 changed files with 137 additions and 73 deletions
+12 -12
View File
@@ -1,14 +1,14 @@
[package]
name = "pallet-template"
description = "FRAME pallet template"
version = "0.1.0"
authors = { workspace = true }
description = "FRAME pallet template"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
edition = "2021"
version = "0.1.0"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
targets = [ "x86_64-unknown-linux-gnu" ]
[dependencies]
parity-scale-codec = { workspace = true, features = [ "derive" ] }
@@ -28,19 +28,19 @@ sp-io = { workspace = true }
sp-runtime = { workspace = true }
[features]
default = ["std"]
default = [ "std" ]
std = [
"frame-benchmarking/std",
"frame-support/std",
"frame-system/std",
"parity-scale-codec/std",
"scale-info/std",
]
runtime-benchmarks = [
"frame-benchmarking",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
]
std = [
"parity-scale-codec/std",
"frame-benchmarking/std",
"frame-support/std",
"frame-system/std",
"scale-info/std",
]
try-runtime = [
"frame-support/try-runtime",
]