frame-executive 21.1.0-dev.3

FRAME executives engine
[package]
name = "frame-executive"
version = "21.1.0-dev.3"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
license = "Apache-2.0"
homepage = "https://substrate.io"
repository = "https://github.com/paritytech/substrate/"
description = "FRAME executives engine"
readme = "README.md"

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

[dependencies]
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = [
	"derive",
] }
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
frame-support = { version = "21.1.0-dev.3", default-features = false, path = "../support" }
frame-system = { version = "21.1.0-dev.3", default-features = false, path = "../system" }
frame-try-runtime = { version = "0.28.0-dev.3", default-features = false, path = "../try-runtime", optional = true }
sp-core = { version = "21.1.0-dev.3", default-features = false, path = "../../primitives/core" }
sp-io = { version = "23.1.0-dev.3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "24.1.0-dev.3", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "8.1.0-dev.3", default-features = false, path = "../../primitives/std" }
sp-tracing = { version = "10.1.0-dev.3", default-features = false, path = "../../primitives/tracing" }

[dev-dependencies]
array-bytes = "6.1"
pallet-balances = { path = "../balances" }
pallet-transaction-payment = { path = "../transaction-payment" }
sp-core = { path = "../../primitives/core" }
sp-inherents = { path = "../../primitives/inherents" }
sp-io = { path = "../../primitives/io" }
sp-version = { path = "../../primitives/version" }

[features]
default = ["std"]
with-tracing = ["sp-tracing/with-tracing"]
std = [
	"codec/std",
	"frame-support/std",
	"frame-system/std",
	"frame-try-runtime/std",
	"scale-info/std",
	"sp-core/std",
	"sp-io/std",
	"sp-runtime/std",
	"sp-std/std",
	"sp-tracing/std",
]
try-runtime = ["frame-support/try-runtime", "frame-try-runtime/try-runtime", "sp-runtime/try-runtime"]