Files
pezkuwi-subxt/substrate/frame/executive/Cargo.toml
T
Qinxuan Chen 8ae1695526 Remove duplicated dependencies (#6930)
Signed-off-by: koushiro <koushiro.cqx@gmail.com>
2020-08-21 16:25:58 +02:00

44 lines
1.7 KiB
TOML

[package]
name = "frame-executive"
version = "2.0.0-rc6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.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.4", default-features = false, features = ["derive"] }
frame-support = { version = "2.0.0-rc6", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc6", default-features = false, path = "../system" }
serde = { version = "1.0.101", optional = true }
sp-runtime = { version = "2.0.0-rc6", default-features = false, path = "../../primitives/runtime" }
sp-tracing = { version = "2.0.0-rc6", default-features = false, path = "../../primitives/tracing" }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc6", default-features = false, path = "../../primitives/io" }
[dev-dependencies]
hex-literal = "0.3.1"
sp-core = { version = "2.0.0-rc6", path = "../../primitives/core" }
sp-io ={ version = "2.0.0-rc6", path = "../../primitives/io" }
pallet-indices = { version = "2.0.0-rc6", path = "../indices" }
pallet-balances = { version = "2.0.0-rc6", path = "../balances" }
pallet-transaction-payment = { version = "2.0.0-rc6", path = "../transaction-payment" }
sp-version = { version = "2.0.0-rc6", path = "../../primitives/version" }
[features]
default = ["std"]
std = [
"codec/std",
"frame-support/std",
"frame-system/std",
"serde",
"sp-runtime/std",
"sp-tracing/std",
"sp-std/std",
]