2021-07-05 03:17:23 +00:00
|
|
|
[package]
|
2021-10-01 23:38:49 +00:00
|
|
|
name = 'pallet-template'
|
2021-11-07 20:41:04 +00:00
|
|
|
version = '4.0.0-dev'
|
2021-09-07 15:26:25 +00:00
|
|
|
description = 'FRAME pallet template for defining custom runtime logic.'
|
2021-10-01 23:38:49 +00:00
|
|
|
authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']
|
2021-10-14 06:51:45 +00:00
|
|
|
homepage = 'https://substrate.io/'
|
2021-11-09 15:58:20 +00:00
|
|
|
edition = '2021'
|
2021-07-05 03:17:23 +00:00
|
|
|
license = 'Unlicense'
|
2021-08-06 14:51:49 +00:00
|
|
|
publish = false
|
2021-09-07 15:26:25 +00:00
|
|
|
repository = 'https://github.com/substrate-developer-hub/substrate-node-template/'
|
2021-08-06 14:51:49 +00:00
|
|
|
|
2021-07-05 03:17:23 +00:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ['x86_64-unknown-linux-gnu']
|
2021-08-06 14:51:49 +00:00
|
|
|
|
2021-10-01 23:38:49 +00:00
|
|
|
[dependencies.codec]
|
|
|
|
default-features = false
|
|
|
|
features = ['derive']
|
|
|
|
package = 'parity-scale-codec'
|
|
|
|
version = '2.0.0'
|
|
|
|
|
|
|
|
[dependencies.frame-benchmarking]
|
2021-06-22 06:00:32 +00:00
|
|
|
default-features = false
|
|
|
|
git = 'https://github.com/paritytech/substrate.git'
|
2021-10-01 23:38:49 +00:00
|
|
|
optional = true
|
2021-11-30 18:18:29 +00:00
|
|
|
tag = 'devhub/latest'
|
2021-08-06 14:51:49 +00:00
|
|
|
version = '4.0.0-dev'
|
2020-07-25 12:35:30 +00:00
|
|
|
|
2021-10-01 23:38:49 +00:00
|
|
|
[dependencies.frame-support]
|
2021-06-22 06:00:32 +00:00
|
|
|
default-features = false
|
|
|
|
git = 'https://github.com/paritytech/substrate.git'
|
2021-11-30 18:18:29 +00:00
|
|
|
tag = 'devhub/latest'
|
2021-08-06 14:51:49 +00:00
|
|
|
version = '4.0.0-dev'
|
2021-06-22 06:00:32 +00:00
|
|
|
|
2021-10-01 23:38:49 +00:00
|
|
|
[dependencies.frame-system]
|
2021-06-22 06:00:32 +00:00
|
|
|
default-features = false
|
|
|
|
git = 'https://github.com/paritytech/substrate.git'
|
2021-11-30 18:18:29 +00:00
|
|
|
tag = 'devhub/latest'
|
2021-08-06 14:51:49 +00:00
|
|
|
version = '4.0.0-dev'
|
2021-07-05 03:17:23 +00:00
|
|
|
|
2021-10-01 23:38:49 +00:00
|
|
|
[dependencies.scale-info]
|
2021-06-22 06:00:32 +00:00
|
|
|
default-features = false
|
|
|
|
features = ['derive']
|
2021-10-01 23:38:49 +00:00
|
|
|
version = '1.0'
|
2020-07-25 12:35:30 +00:00
|
|
|
|
2021-10-01 23:38:49 +00:00
|
|
|
[dev-dependencies.sp-core]
|
2021-06-22 06:00:32 +00:00
|
|
|
default-features = false
|
|
|
|
git = 'https://github.com/paritytech/substrate.git'
|
2021-11-30 18:18:29 +00:00
|
|
|
tag = 'devhub/latest'
|
2021-08-06 14:51:49 +00:00
|
|
|
version = '4.0.0-dev'
|
2021-05-19 06:45:16 +00:00
|
|
|
|
2021-10-01 23:38:49 +00:00
|
|
|
[dev-dependencies.sp-io]
|
2021-06-22 06:00:32 +00:00
|
|
|
default-features = false
|
|
|
|
git = 'https://github.com/paritytech/substrate.git'
|
2021-11-30 18:18:29 +00:00
|
|
|
tag = 'devhub/latest'
|
2021-08-06 14:51:49 +00:00
|
|
|
version = '4.0.0-dev'
|
2020-03-25 03:42:27 +00:00
|
|
|
|
2021-10-01 23:38:49 +00:00
|
|
|
[dev-dependencies.sp-runtime]
|
2021-06-22 06:00:32 +00:00
|
|
|
default-features = false
|
|
|
|
git = 'https://github.com/paritytech/substrate.git'
|
2021-11-30 18:18:29 +00:00
|
|
|
tag = 'devhub/latest'
|
2021-08-06 14:51:49 +00:00
|
|
|
version = '4.0.0-dev'
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ['std']
|
|
|
|
runtime-benchmarks = ['frame-benchmarking']
|
|
|
|
std = [
|
|
|
|
'codec/std',
|
2021-10-01 23:38:49 +00:00
|
|
|
'scale-info/std',
|
2021-08-06 14:51:49 +00:00
|
|
|
'frame-support/std',
|
|
|
|
'frame-system/std',
|
|
|
|
'frame-benchmarking/std',
|
|
|
|
]
|
2021-10-01 23:38:49 +00:00
|
|
|
try-runtime = ['frame-support/try-runtime']
|