2020-06-27 16:14:55 +00:00
|
|
|
[package]
|
|
|
|
authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']
|
2020-07-25 12:35:30 +00:00
|
|
|
description = 'FRAME pallet template for defining custom runtime logic.'
|
2020-06-27 16:14:55 +00:00
|
|
|
edition = '2018'
|
|
|
|
homepage = 'https://substrate.dev'
|
|
|
|
license = 'Unlicense'
|
|
|
|
name = 'pallet-template'
|
2021-03-29 23:51:52 +00:00
|
|
|
readme = 'README.md'
|
2020-06-27 16:14:55 +00:00
|
|
|
repository = 'https://github.com/substrate-developer-hub/substrate-node-template/'
|
2021-02-24 14:12:24 +00:00
|
|
|
version = '3.0.0'
|
2020-07-25 12:35:30 +00:00
|
|
|
|
2020-06-27 16:14:55 +00:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ['x86_64-unknown-linux-gnu']
|
2020-07-25 12:35:30 +00:00
|
|
|
|
2020-09-23 00:24:35 +00:00
|
|
|
[dependencies]
|
2021-03-29 23:51:52 +00:00
|
|
|
codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = '2.0.0' }
|
2021-02-24 14:12:24 +00:00
|
|
|
frame-system = { default-features = false, version = '3.0.0' }
|
2021-03-29 23:51:52 +00:00
|
|
|
frame-support = { default-features = false, version = '3.0.0' }
|
|
|
|
frame-benchmarking = { default-features = false, optional = true, version = '3.1.0' }
|
2020-03-25 03:42:27 +00:00
|
|
|
|
2020-09-23 00:24:35 +00:00
|
|
|
[dev-dependencies]
|
2021-02-24 14:12:24 +00:00
|
|
|
serde = { version = "1.0.119" }
|
|
|
|
sp-core = { default-features = false, version = '3.0.0' }
|
|
|
|
sp-io = { default-features = false, version = '3.0.0' }
|
|
|
|
sp-runtime = { default-features = false, version = '3.0.0' }
|
2020-03-25 03:42:27 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ['std']
|
|
|
|
std = [
|
2021-03-29 23:51:52 +00:00
|
|
|
'codec/std',
|
|
|
|
'frame-support/std',
|
|
|
|
'frame-system/std',
|
|
|
|
'frame-benchmarking/std',
|
2020-03-25 03:42:27 +00:00
|
|
|
]
|
2021-03-29 23:51:52 +00:00
|
|
|
runtime-benchmarks = ['frame-benchmarking']
|
|
|
|
# Note: frame-support `try-runtime` feature is released after v3.
|
|
|
|
# Uncomment the following line when `frame-support` version > `3.0.0`.
|
|
|
|
# try-runtime = ['frame-support/try-runtime']
|