Files
pezkuwi-subxt/substrate/srml/executive/Cargo.toml
T
Kian Paimani efedac734d Weight annotation for block hooks. (#4058)
* Initial version that works with proper tests.

* get rid of todos and grumbles and such.

* Cleanup and fix line-width

* fix test runtime test
2019-11-12 14:42:38 +01:00

34 lines
1.2 KiB
TOML

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