[package] name = "frame-executive" version = "2.0.0" authors = ["Parity Technologies "] edition = "2018" [dependencies] serde = { version = "1.0.101", optional = true } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } sp-std = { path = "../../primitives/std", default-features = false } sp-io ={ path = "../../primitives/io", default-features = false } sp-runtime = { path = "../../primitives/runtime", default-features = false } frame-support = { path = "../support", default-features = false } frame-system = { path = "../system", default-features = false } [dev-dependencies] hex-literal = "0.2.1" sp-core = { path = "../../primitives/core" } pallet-indices = { path = "../indices" } pallet-balances = { path = "../balances" } pallet-transaction-payment = { path = "../transaction-payment" } [features] default = ["std"] std = [ "sp-std/std", "frame-support/std", "serde", "codec/std", "sp-runtime/std", "sp-io/std", "frame-system/std", ]