Files
pezkuwi-subxt/substrate/bin/node-template/pallets/template/Cargo.toml
T
Arkadiy Paronyan 7b34438178 Validate encoding of extrinsics passed to runtime (#6442)
* Validate encoding of extrinsics passed to runtime

* Bump codec version explicitly
2020-06-19 19:27:16 +00:00

50 lines
1.1 KiB
TOML

[package]
authors = ['Anonymous']
edition = '2018'
name = 'pallet-template'
version = "2.0.0-rc3"
license = "Unlicense"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "FRAME pallet template"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
[dependencies.frame-support]
default-features = false
version = "2.0.0-rc3"
path = "../../../../frame/support"
[dependencies.frame-system]
default-features = false
version = "2.0.0-rc3"
path = "../../../../frame/system"
[dev-dependencies.sp-core]
default-features = false
version = "2.0.0-rc3"
path = "../../../../primitives/core"
[dev-dependencies.sp-io]
default-features = false
version = "2.0.0-rc3"
path = "../../../../primitives/io"
[dev-dependencies.sp-runtime]
default-features = false
version = "2.0.0-rc3"
path = "../../../../primitives/runtime"
[features]
default = ['std']
std = [
'codec/std',
'frame-support/std',
'frame-system/std'
]