solutions/pallets/template/Cargo.toml

54 lines
1.3 KiB
TOML
Raw Normal View History

2020-03-05 16:53:25 +00:00
[package]
authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']
2020-05-25 21:48:38 +00:00
description = 'FRAME pallet template'
2020-03-05 16:53:25 +00:00
edition = '2018'
homepage = 'https://substrate.io'
2020-03-05 16:53:25 +00:00
license = 'Unlicense'
name = 'pallet-template'
2020-05-25 21:48:38 +00:00
repository = 'https://github.com/substrate-developer-hub/substrate-node-template/'
2020-05-26 15:46:58 +00:00
version = '2.0.0-rc2'
2020-03-05 16:53:25 +00:00
[dependencies.codec]
default-features = false
features = ['derive']
package = 'parity-scale-codec'
2020-04-15 11:33:19 +00:00
version = '1.3.0'
2020-03-05 16:53:25 +00:00
[dependencies.frame-support]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-05-26 15:46:58 +00:00
tag = 'v2.0.0-rc2'
version = '2.0.0-rc2'
2020-03-05 16:53:25 +00:00
2020-04-15 11:33:19 +00:00
[dependencies.frame-system]
2020-03-05 16:53:25 +00:00
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-05-26 15:46:58 +00:00
tag = 'v2.0.0-rc2'
version = '2.0.0-rc2'
[dev-dependencies.sp-core]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-05-26 15:46:58 +00:00
tag = 'v2.0.0-rc2'
version = '2.0.0-rc2'
[dev-dependencies.sp-io]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-05-26 15:46:58 +00:00
tag = 'v2.0.0-rc2'
version = '2.0.0-rc2'
[dev-dependencies.sp-runtime]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-05-26 15:46:58 +00:00
tag = 'v2.0.0-rc2'
version = '2.0.0-rc2'
[features]
default = ['std']
std = [
'codec/std',
'frame-support/std',
2020-04-15 11:33:19 +00:00
'frame-system/std',
]