mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 15:07:59 +00:00
fcf9a46bcc
* Forward the result in a sudo call * Print the error of the wrapped call in `sudo`
32 lines
980 B
TOML
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",
|
|
]
|