frame-executive 2.0.0-alpha.6

FRAME executives engine
Documentation
[package]
name = "frame-executive"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "FRAME executives engine"

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

[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
serde = { version = "1.0.101", optional = true }
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }

[features]
default = ["std"]
std = [
	"codec/std",
	"frame-support/std",
	"frame-system/std",
	"serde",
	"sp-runtime/std",
	"sp-std/std",
]