2021-07-05 03:17:23 +00:00
|
|
|
[package]
|
2022-01-20 20:37:29 +00:00
|
|
|
name = "pallet-template"
|
|
|
|
version = "4.0.0-dev"
|
|
|
|
description = "FRAME pallet template for defining custom runtime logic."
|
|
|
|
authors = ["Substrate DevHub <https://github.com/substrate-developer-hub>"]
|
|
|
|
homepage = "https://substrate.io/"
|
2022-01-26 19:43:34 +00:00
|
|
|
edition = "2021"
|
2022-01-20 20:37:29 +00:00
|
|
|
license = "Unlicense"
|
2021-08-06 14:51:49 +00:00
|
|
|
publish = false
|
2022-01-20 20:37:29 +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]
|
2022-01-20 20:37:29 +00:00
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = [
|
|
|
|
"derive",
|
|
|
|
] }
|
|
|
|
scale-info = { version = "1.0", default-features = false, features = ["derive"] }
|
|
|
|
frame-support = { default-features = false, version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", tag = "devhub/latest"}
|
|
|
|
frame-system = { default-features = false, version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", tag = "devhub/latest" }
|
|
|
|
frame-benchmarking = { default-features = false, version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", tag = "devhub/latest", optional = true }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-02-24 18:09:06 +00:00
|
|
|
sp-core = { default-features = false, version = "5.0.0", git = "https://github.com/paritytech/substrate.git", tag = "devhub/latest" }
|
|
|
|
sp-io = { default-features = false, version = "5.0.0", git = "https://github.com/paritytech/substrate.git", tag = "devhub/latest" }
|
|
|
|
sp-runtime = { default-features = false, version = "5.0.0", git = "https://github.com/paritytech/substrate.git", tag = "devhub/latest" }
|
2021-08-06 14:51:49 +00:00
|
|
|
|
|
|
|
[features]
|
2022-01-20 20:37:29 +00:00
|
|
|
default = ["std"]
|
2021-08-06 14:51:49 +00:00
|
|
|
std = [
|
2022-01-20 20:37:29 +00:00
|
|
|
"codec/std",
|
|
|
|
"scale-info/std",
|
|
|
|
"frame-support/std",
|
|
|
|
"frame-system/std",
|
|
|
|
"frame-benchmarking/std",
|
2021-08-06 14:51:49 +00:00
|
|
|
]
|
2022-01-20 20:37:29 +00:00
|
|
|
|
|
|
|
runtime-benchmarks = ["frame-benchmarking/runtime-benchmarks"]
|
|
|
|
try-runtime = ["frame-support/try-runtime"]
|