mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 09:17:58 +00:00
9d23d2a25a
* bump crates to v2.0.0 * fix crate authors * bump node runtime spec_version * remove unused import for no-std
23 lines
641 B
TOML
23 lines
641 B
TOML
[package]
|
|
name = "sr-version"
|
|
version = "2.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",
|
|
]
|