[package] authors = ['Substrate DevHub '] edition = '2018' name = 'pallet-template' version = "3.0.0" license = "Unlicense" homepage = "https://substrate.dev" repository = "https://github.com/substrate-developer-hub/substrate-node-template/" description = "FRAME pallet template for defining custom runtime logic." readme = "README.md" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } frame-support = { default-features = false, version = "3.0.0", path = "../../../../frame/support" } frame-system = { default-features = false, version = "3.0.0", path = "../../../../frame/system" } frame-benchmarking = { default-features = false, version = "3.1.0", path = "../../../../frame/benchmarking", optional = true } [dev-dependencies] serde = { version = "1.0.119" } sp-core = { default-features = false, version = "3.0.0", path = "../../../../primitives/core" } sp-io = { default-features = false, version = "3.0.0", path = "../../../../primitives/io" } sp-runtime = { default-features = false, version = "3.0.0", path = "../../../../primitives/runtime" } [features] default = ['std'] std = [ 'codec/std', 'frame-support/std', 'frame-system/std', 'frame-benchmarking/std', ] runtime-benchmarks = ["frame-benchmarking"] try-runtime = ["frame-support/try-runtime"]