mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-23 03:45:43 +00:00
use double quotes instead of single quotes & upgrade 2021 (#10398)
This commit is contained in:
@@ -1,10 +1,10 @@
|
|||||||
[package]
|
[package]
|
||||||
name = 'pallet-template'
|
name = "pallet-template"
|
||||||
version = "3.0.0"
|
version = "3.0.0"
|
||||||
description = "FRAME pallet template for defining custom runtime logic."
|
description = "FRAME pallet template for defining custom runtime logic."
|
||||||
authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']
|
authors = ["Substrate DevHub <https://github.com/substrate-developer-hub>"]
|
||||||
homepage = "https://substrate.io/"
|
homepage = "https://substrate.io/"
|
||||||
edition = '2018'
|
edition = "2021"
|
||||||
license = "Unlicense"
|
license = "Unlicense"
|
||||||
publish = false
|
publish = false
|
||||||
repository = "https://github.com/substrate-developer-hub/substrate-node-template/"
|
repository = "https://github.com/substrate-developer-hub/substrate-node-template/"
|
||||||
@@ -27,13 +27,13 @@ sp-io = { default-features = false, version = "4.0.0-dev", path = "../../../../p
|
|||||||
sp-runtime = { default-features = false, version = "4.0.0-dev", path = "../../../../primitives/runtime" }
|
sp-runtime = { default-features = false, version = "4.0.0-dev", path = "../../../../primitives/runtime" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ['std']
|
default = ["std"]
|
||||||
std = [
|
std = [
|
||||||
'codec/std',
|
"codec/std",
|
||||||
'scale-info/std',
|
"scale-info/std",
|
||||||
'frame-support/std',
|
"frame-support/std",
|
||||||
'frame-system/std',
|
"frame-system/std",
|
||||||
'frame-benchmarking/std',
|
"frame-benchmarking/std",
|
||||||
]
|
]
|
||||||
|
|
||||||
runtime-benchmarks = ["frame-benchmarking/runtime-benchmarks"]
|
runtime-benchmarks = ["frame-benchmarking/runtime-benchmarks"]
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "node-template-runtime"
|
name = "node-template-runtime"
|
||||||
version = "3.0.0"
|
version = "3.0.0"
|
||||||
description = 'A fresh FRAME-based Substrate runtime, ready for hacking.'
|
description = "A fresh FRAME-based Substrate runtime, ready for hacking."
|
||||||
authors = ["Substrate DevHub <https://github.com/substrate-developer-hub>"]
|
authors = ["Substrate DevHub <https://github.com/substrate-developer-hub>"]
|
||||||
homepage = "https://substrate.io/"
|
homepage = "https://substrate.io/"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
name = "pallet-asset-tx-payment"
|
name = "pallet-asset-tx-payment"
|
||||||
version = "4.0.0-dev"
|
version = "4.0.0-dev"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2021"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
homepage = "https://substrate.io"
|
homepage = "https://substrate.io"
|
||||||
repository = "https://github.com/paritytech/substrate/"
|
repository = "https://github.com/paritytech/substrate/"
|
||||||
|
|||||||
Reference in New Issue
Block a user