mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 15:07:59 +00:00
57f306a3c1
* reserve function name * bumpd impl version * Revert "bumpd impl version" This reverts commit 03a23e308312d857bdfd3c90ff564b4b11347530. * add test * update test * update lock * Fix test on stable
26 lines
851 B
TOML
26 lines
851 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 = "3.3", 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"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"serde/std",
|
|
"parity-codec/std",
|
|
"runtime_io/std",
|
|
"srml-support/std",
|
|
"inherents/std",
|
|
"primitives/std",
|
|
]
|