mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 20:57:59 +00:00
e2bb429711
* core/primitives * sr-primitives * sr-primitives * srml-treasury * substrate-executor * substrate-keystore * network-libp2p * substrate-service * srml-system * substrate-rpc * sr-version * substrate-telemetry * substrate-test-runtime * substrate-transaction-pool * node-template-runtime * node-primitives * srml-consensus * srml-contract * srml-democracy * srml-finality-tracker * srml-grandpa * srml-metadata * srml-support * Clean * Update locks
25 lines
825 B
TOML
25 lines
825 B
TOML
[package]
|
|
name = "srml-support-test"
|
|
version = "0.1.0"
|
|
authors = ["thiolliere <gui.thiolliere@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dev-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 = { path = "../", default-features = false }
|
|
inherents = { package = "substrate-inherents", path = "../../../core/inherents", default-features = false }
|
|
primitives = { package = "substrate-primitives", path = "../../../core/primitives", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"serde/std",
|
|
"parity-codec/std",
|
|
"runtime_io/std",
|
|
"srml-support/std",
|
|
"inherents/std",
|
|
"primitives/std",
|
|
]
|