mirror of
https://github.com/pezkuwichain/pez-solochain-template.git
synced 2026-04-22 07:57:56 +00:00
Update to 1.14.0 triggered by workflow_dispatch
This commit is contained in:
+11
-13
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-template"
|
||||
description = "FRAME pallet template for defining custom runtime logic. (polkadot v1.13.0)"
|
||||
description = "FRAME pallet template for defining custom runtime logic. (polkadot v1.14.0)"
|
||||
version = "0.1.0"
|
||||
license = "Unlicense"
|
||||
authors.workspace = true
|
||||
@@ -13,22 +13,20 @@ publish = false
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.12", default-features = false, features = [
|
||||
codec = { features = [
|
||||
"derive",
|
||||
] }
|
||||
scale-info = { version = "2.11.1", default-features = false, features = [
|
||||
], workspace = true }
|
||||
scale-info = { features = [
|
||||
"derive",
|
||||
] }
|
||||
|
||||
# frame deps
|
||||
frame-benchmarking = { version = "35.0.0", default-features = false, optional = true }
|
||||
frame-support = { version = "35.0.0", default-features = false }
|
||||
frame-system = { version = "35.0.0", default-features = false }
|
||||
], workspace = true }
|
||||
frame-benchmarking = { version = "36.0.0", optional = true, workspace = true }
|
||||
frame-support = { version = "36.0.0", workspace = true }
|
||||
frame-system = { version = "36.0.0", workspace = true }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "34.0.0" }
|
||||
sp-io = { version = "37.0.0" }
|
||||
sp-runtime = { version = "38.0.0" }
|
||||
sp-core = { version = "34.0.0", default-features = true }
|
||||
sp-io = { version = "37.0.0", default-features = true }
|
||||
sp-runtime = { version = "38.0.0", default-features = true }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
Reference in New Issue
Block a user