mirror of
https://github.com/pezkuwichain/pez-solochain-template.git
synced 2026-06-14 12:11:07 +00:00
Update template triggered by workflow_dispatch
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
[package]
|
||||
name = "pallet-template"
|
||||
description = "FRAME pallet template for defining custom runtime logic. (polkadot v1.9.0)"
|
||||
version = "0.1.0"
|
||||
license = "MIT-0"
|
||||
authors.workspace = true
|
||||
homepage.workspace = true
|
||||
repository.workspace = true
|
||||
edition.workspace = true
|
||||
publish = false
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = [
|
||||
"derive",
|
||||
] }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = [
|
||||
"derive",
|
||||
] }
|
||||
|
||||
# frame deps
|
||||
frame-benchmarking = { version = "31.0.0", default-features = false, optional = true }
|
||||
frame-support = { version = "31.0.0", default-features = false }
|
||||
frame-system = { version = "31.0.0", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "31.0.0" }
|
||||
sp-io = { version = "33.0.0" }
|
||||
sp-runtime = { version = "34.0.0" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
std = [
|
||||
"codec/std",
|
||||
"frame-benchmarking?/std",
|
||||
"frame-support/std",
|
||||
"frame-system/std",
|
||||
"scale-info/std",
|
||||
]
|
||||
runtime-benchmarks = [
|
||||
"frame-benchmarking/runtime-benchmarks",
|
||||
"frame-support/runtime-benchmarks",
|
||||
"frame-system/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"frame-support/try-runtime",
|
||||
"frame-system/try-runtime",
|
||||
]
|
||||
Reference in New Issue
Block a user