Files
pezframe-metadata/frame-metadata/Cargo.toml
T
David cdb863d11b Update scale-info –> v2 and parity-scale-codec -> v3 (#35)
* Update `scale-info` –> v2 and `parity-scale-codec` -> v3

* Update frame-metadata/Cargo.toml

Co-authored-by: Andronik <write@reusable.software>

Co-authored-by: Andronik <write@reusable.software>
2022-02-08 16:57:59 +00:00

38 lines
958 B
TOML

[package]
name = "frame-metadata"
version = "15.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/frame-metadata/"
description = "Metadata types for Substrate runtimes"
readme = "README.md"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
cfg-if = "1.0.0"
scale-info = { version = "2.0.0", default-features = false, optional = true, features = ["derive"] }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
[features]
default = ["std", "v14"]
v8 = []
v9 = []
v10 = []
v11 = []
v12 = []
v13 = []
legacy = ["v13", "v12", "v11", "v10", "v9", "v8"]
v14 = ["scale-info"]
std = [
"codec/std",
"scale-info/std",
"scale-info/serde",
"scale-info/decode",
"serde",
]