mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 09:21:04 +00:00
f0cc89a4b0
* move application-crypto tests into seperate crate * Fix crate name, update script and add docs * pressing 'save' helps * remove useless lines * adding header * split into actual modules
25 lines
739 B
TOML
25 lines
739 B
TOML
[package]
|
|
name = "sp-finality-grandpa"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
app-crypto = { package = "sp-application-crypto", path = "../application-crypto", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
|
|
sp-std = { path = "../std", default-features = false }
|
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
|
sp-api = { path = "../api", default-features = false }
|
|
sp-runtime = { path = "../runtime", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"app-crypto/std",
|
|
"codec/std",
|
|
"sp-std/std",
|
|
"serde",
|
|
"sp-api/std",
|
|
"sp-runtime/std",
|
|
]
|