mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 02:17:58 +00:00
f7ff339ebd
* Expose instancing in metadata - Introduces metadata v7 - If a module is using instancing, the storage exposes the instance in metadata - Metadata module name is now the upper case one given to `construct_runtime!` * Remove obsolete macro * Just expose one prefix * Bump spec * Fix prefix generation
27 lines
881 B
TOML
27 lines
881 B
TOML
[package]
|
|
name = "srml-support-test"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", default-features = false, features = ["derive"] }
|
|
parity-codec = { version = "4.1.1", default-features = false, features = ["derive"] }
|
|
runtime_io = { package = "sr-io", path = "../../../core/sr-io", default-features = false }
|
|
srml-support = { version = "2", path = "../", default-features = false }
|
|
inherents = { package = "substrate-inherents", path = "../../../core/inherents", default-features = false }
|
|
primitives = { package = "substrate-primitives", path = "../../../core/primitives", default-features = false }
|
|
trybuild = "1"
|
|
pretty_assertions = "0.6.1"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"serde/std",
|
|
"parity-codec/std",
|
|
"runtime_io/std",
|
|
"srml-support/std",
|
|
"inherents/std",
|
|
"primitives/std",
|
|
]
|