mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 16:17:59 +00:00
79feb23a22
* refactor sr_primitives. * Fix try build error. * Line-width * Ui test. * Final fixes. * Fix build again. * bring back ui test. * Fix unsigned import. * Another ui fix. * Also refactor substrate-primitives * Fix benchmarks. * Fix doc test. * fix doc tests
32 lines
1007 B
TOML
32 lines
1007 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 = "4.1.1", 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 }
|
|
primitives = { package = "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",
|
|
]
|