solutions/pallets/template/Cargo.toml

59 lines
1.4 KiB
TOML
Raw Normal View History

2020-03-05 16:53:25 +00:00
[dev-dependencies.sp-core]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
rev = '013c1ee167354a08283fb69915fda56a62fee943'
2020-03-06 14:01:03 +00:00
version = '2.0.0-alpha.3'
2020-03-05 16:53:25 +00:00
[dev-dependencies.sp-io]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
rev = '013c1ee167354a08283fb69915fda56a62fee943'
2020-03-06 14:01:03 +00:00
version = '2.0.0-alpha.3'
2020-03-05 16:53:25 +00:00
[dev-dependencies.sp-runtime]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
rev = '013c1ee167354a08283fb69915fda56a62fee943'
2020-03-06 14:01:03 +00:00
version = '2.0.0-alpha.3'
2020-03-05 16:53:25 +00:00
[features]
default = ['std']
std = [
'codec/std',
'frame-support/std',
'safe-mix/std',
'system/std',
]
[package]
authors = ['Anonymous']
description = 'FRAME pallet template'
edition = '2018'
homepage = 'https://substrate.dev'
license = 'Unlicense'
name = 'pallet-template'
repository = 'https://github.com/paritytech/substrate/'
version = '2.0.0-alpha.3'
[dependencies.codec]
default-features = false
features = ['derive']
package = 'parity-scale-codec'
version = '1.0.0'
[dependencies.frame-support]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
rev = '013c1ee167354a08283fb69915fda56a62fee943'
2020-03-06 14:01:03 +00:00
version = '2.0.0-alpha.3'
2020-03-05 16:53:25 +00:00
[dependencies.safe-mix]
default-features = false
version = '1.0.0'
[dependencies.system]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'frame-system'
rev = '013c1ee167354a08283fb69915fda56a62fee943'
2020-03-06 14:01:03 +00:00
version = '2.0.0-alpha.3'