Files
pezkuwi-subxt/substrate/bin/node-template/pallets/template/Cargo.toml
T
Bastian Köcher e7d8040af8 Update parity-scale-codec to prepare for breaking rustc release (#6746)
This updates parity-scale-codec{-derive} to prepare for a rustc release
that would otherwise break the derive implementation:
https://github.com/rust-lang/rust/pull/73084
2020-07-28 20:26:01 +00:00

50 lines
1.1 KiB
TOML

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