mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-18 16:31:03 +00:00
2ecffa1cd0
* Refactor sr-api to not depend on client anymore * Fix benches * Apply suggestions from code review Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Apply suggestions from code review
25 lines
810 B
TOML
25 lines
810 B
TOML
[package]
|
|
name = "substrate-finality-grandpa-primitives"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
sr-api = { path = "../../sr-api", default-features = false }
|
|
app-crypto = { package = "substrate-application-crypto", path = "../../application-crypto", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
|
|
sr-primitives = { path = "../../sr-primitives", default-features = false }
|
|
rstd = { package = "sr-std", path = "../../sr-std", default-features = false }
|
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"sr-api/std",
|
|
"codec/std",
|
|
"sr-primitives/std",
|
|
"rstd/std",
|
|
"serde",
|
|
"app-crypto/std",
|
|
]
|