Files
pezkuwi-subxt/substrate/srml/sudo/Cargo.toml
T
Bastian Köcher fcf9a46bcc Forward the result in a sudo call (#2594)
* Forward the result in a sudo call

* Print the error of the wrapped call in `sudo`
2019-05-15 18:14:33 +02:00

32 lines
980 B
TOML

[package]
name = "srml-sudo"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
[dependencies]
serde = { version = "1.0", optional = true }
parity-codec = { version = "3.3", default-features = false, features = ["derive"] }
sr-std = { path = "../../core/sr-std", default-features = false }
sr-io = { path = "../../core/sr-io", default-features = false }
sr-primitives = { path = "../../core/sr-primitives", default-features = false }
srml-support = { path = "../support", default-features = false }
srml-support-procedural = { path = "../support/procedural" }
system = { package = "srml-system", path = "../system", default-features = false }
[dev-dependencies]
sr-io = { path = "../../core/sr-io", default-features = false }
substrate-primitives = { path = "../../core/primitives" }
[features]
default = ["std"]
std = [
"serde",
"parity-codec/std",
"sr-std/std",
"sr-io/std",
"sr-primitives/std",
"srml-support/std",
"system/std",
]