mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 02:08:02 +00:00
128d164f2b
* Make use of parity-codec "derive" crate feature * Bump impl_version * Update wasm files and Cargo.lock files * Transferred to parity_codec derive feature for the rest of the crates * Update wasm binaries and lock files * Update core and node wasm binaries
25 lines
700 B
TOML
25 lines
700 B
TOML
[package]
|
|
name = "sr-version"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
impl-serde = { version = "0.1", optional = true }
|
|
serde = { version = "1.0", default-features = false }
|
|
serde_derive = { version = "1.0", optional = true }
|
|
parity-codec = { version = "3.1", 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/std",
|
|
"serde_derive",
|
|
"parity-codec/std",
|
|
"rstd/std",
|
|
"runtime_primitives/std",
|
|
]
|