[package] name = "sp-finality-grandpa" version = "2.0.0-alpha.4" authors = ["Parity Technologies "] edition = "2018" license = "GPL-3.0" homepage = "https://substrate.dev" repository = "https://github.com/paritytech/substrate/" description = "Primitives for GRANDPA integration, suitable for WASM compilation." documentation = "https://docs.rs/sp-finality-grandpa" [dependencies] sp-application-crypto = { version = "2.0.0-alpha.4", default-features = false, path = "../application-crypto" } codec = { package = "parity-scale-codec", version = "1.2.0", default-features = false, features = ["derive"] } sp-std = { version = "2.0.0-alpha.4", default-features = false, path = "../std" } serde = { version = "1.0.101", optional = true, features = ["derive"] } sp-api = { version = "2.0.0-alpha.4", default-features = false, path = "../api" } sp-runtime = { version = "2.0.0-alpha.4", default-features = false, path = "../runtime" } [features] default = ["std"] std = [ "sp-application-crypto/std", "codec/std", "sp-std/std", "serde", "sp-api/std", "sp-runtime/std", ]