pallet-example-split 7.0.0

FRAME example splitted pallet
Documentation
[package]
name = "pallet-example-split"
version = "7.0.0"
authors.workspace = true
edition.workspace = true
license = "MIT-0"
homepage = "https://substrate.io"
repository.workspace = true
description = "FRAME example splitted pallet"
readme = "README.md"

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false }
log = { version = "0.4.17", default-features = false }
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }

frame-support = { path = "../../support", default-features = false, version = "25.0.0" }
frame-system = { path = "../../system", default-features = false, version = "25.0.0" }

sp-io = { path = "../../../primitives/io", default-features = false, version = "27.0.0" }
sp-std = { path = "../../../primitives/std", default-features = false, version = "12.0.0" }

frame-benchmarking = { path = "../../benchmarking", default-features = false, optional = true, version = "25.0.0" }

[dev-dependencies]
sp-core = { path = "../../../primitives/core", default-features = false }

[features]
default = [ "std" ]
std = [
	"codec/std",
	"frame-benchmarking?/std",
	"frame-support/std",
	"frame-system/std",
	"log/std",
	"scale-info/std",
	"sp-io/std",
	"sp-std/std",
]
runtime-benchmarks = [
	"frame-benchmarking/runtime-benchmarks",
	"frame-support/runtime-benchmarks",
	"frame-system/runtime-benchmarks",
]
try-runtime = [ "frame-support/try-runtime", "frame-system/try-runtime" ]