mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 19:17:58 +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
23 lines
641 B
TOML
23 lines
641 B
TOML
[package]
|
|
name = "sr-version"
|
|
version = "1.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
impl-serde = { version = "0.1", optional = true }
|
|
serde = { version = "1.0", optional = true, features = ["derive"] }
|
|
parity-codec = { version = "3.3", default-features = false, features = ["derive"] }
|
|
rstd = { package = "sr-std", path = "../sr-std", default-features = false }
|
|
runtime_primitives = { package = "sr-primitives", path = "../sr-primitives", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"impl-serde",
|
|
"serde",
|
|
"parity-codec/std",
|
|
"rstd/std",
|
|
"runtime_primitives/std",
|
|
]
|