mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 23:57:56 +00:00
443ad90b47
* Update codec version to the 4.1 version * Bump impl_version * Update lock files * Update codec to 4.1.1 version * Bump impl version
26 lines
853 B
TOML
26 lines
853 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"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"serde/std",
|
|
"parity-codec/std",
|
|
"runtime_io/std",
|
|
"srml-support/std",
|
|
"inherents/std",
|
|
"primitives/std",
|
|
]
|