mirror of
https://github.com/pezkuwichain/pezkuwi-runtime-templates.git
synced 2026-06-18 15:21:08 +00:00
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:
+12
-12
@@ -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",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user