mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-15 13:51:11 +00:00
Move grandpa crates to consensus folder (#13458)
* Move grandpa under consensus dir * Rename grandpa folder * Finish grandpa renaming * Minor tweaks * Cargo fmt * Adjust path to chain spec
This commit is contained in:
+8
-8
@@ -1,5 +1,5 @@
|
||||
[package]
|
||||
name = "sp-finality-grandpa"
|
||||
name = "sp-consensus-grandpa"
|
||||
version = "4.0.0-dev"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2021"
|
||||
@@ -7,7 +7,7 @@ license = "Apache-2.0"
|
||||
homepage = "https://substrate.io"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "Primitives for GRANDPA integration, suitable for WASM compilation."
|
||||
documentation = "https://docs.rs/sp-finality-grandpa"
|
||||
documentation = "https://docs.rs/sp-consensus-grandpa"
|
||||
readme = "README.md"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
@@ -19,12 +19,12 @@ grandpa = { package = "finality-grandpa", version = "0.16.1", default-features =
|
||||
log = { version = "0.4.17", default-features = false }
|
||||
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.136", features = ["derive"], optional = true }
|
||||
sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" }
|
||||
sp-application-crypto = { version = "7.0.0", default-features = false, path = "../application-crypto" }
|
||||
sp-core = { version = "7.0.0", default-features = false, path = "../core" }
|
||||
sp-keystore = { version = "0.13.0", default-features = false, optional = true, path = "../keystore" }
|
||||
sp-runtime = { version = "7.0.0", default-features = false, path = "../runtime" }
|
||||
sp-std = { version = "5.0.0", default-features = false, path = "../std" }
|
||||
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../api" }
|
||||
sp-application-crypto = { version = "7.0.0", default-features = false, path = "../../application-crypto" }
|
||||
sp-core = { version = "7.0.0", default-features = false, path = "../../core" }
|
||||
sp-keystore = { version = "0.13.0", default-features = false, optional = true, path = "../../keystore" }
|
||||
sp-runtime = { version = "7.0.0", default-features = false, path = "../../runtime" }
|
||||
sp-std = { version = "5.0.0", default-features = false, path = "../../std" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
Reference in New Issue
Block a user