diff --git a/Cargo.lock b/Cargo.lock index b11af51..a5afdd0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1601,6 +1601,21 @@ name = "finality-grandpa" version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2cd795898c348a8ec9edc66ec9e014031c764d4c88cc26d09b492cd93eb41339" +dependencies = [ + "either", + "futures 0.3.13", + "futures-timer 3.0.2", + "log", + "num-traits", + "parity-scale-codec", + "parking_lot 0.11.1", +] + +[[package]] +name = "finality-grandpa" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6447e2f8178843749e8c8003206def83ec124a7859475395777a28b5338647c" dependencies = [ "either", "futures 0.3.13", @@ -4685,7 +4700,7 @@ dependencies = [ name = "pallet-grandpa" version = "3.0.0" dependencies = [ - "finality-grandpa", + "finality-grandpa 0.13.0", "frame-benchmarking", "frame-support", "frame-system", @@ -7019,7 +7034,7 @@ version = "0.9.0" dependencies = [ "assert_matches", "derive_more", - "finality-grandpa", + "finality-grandpa 0.14.0", "fork-tree", "futures 0.3.13", "futures-timer 3.0.2", @@ -7064,7 +7079,7 @@ name = "sc-finality-grandpa-rpc" version = "0.9.0" dependencies = [ "derive_more", - "finality-grandpa", + "finality-grandpa 0.13.0", "futures 0.3.13", "jsonrpc-core", "jsonrpc-core-client", @@ -8399,7 +8414,7 @@ dependencies = [ name = "sp-finality-grandpa" version = "3.0.0" dependencies = [ - "finality-grandpa", + "finality-grandpa 0.13.0", "log", "parity-scale-codec", "serde", diff --git a/client/finality-grandpa/Cargo.toml b/client/finality-grandpa/Cargo.toml index 38f6acd..e9153b1 100644 --- a/client/finality-grandpa/Cargo.toml +++ b/client/finality-grandpa/Cargo.toml @@ -43,13 +43,13 @@ sc-network-gossip = { version = "0.9.0", path = "../network-gossip" } sp-finality-grandpa = { version = "3.0.0", path = "../../primitives/finality-grandpa" } prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.9.0"} sc-block-builder = { version = "0.9.0", path = "../block-builder" } -finality-grandpa = { version = "0.13.0", features = ["derive-codec"] } +finality-grandpa = { version = "0.14.0", features = ["derive-codec"] } pin-project = "1.0.4" linked-hash-map = "0.5.2" [dev-dependencies] assert_matches = "1.3.0" -finality-grandpa = { version = "0.13.0", features = ["derive-codec", "test-helpers"] } +finality-grandpa = { version = "0.14.0", features = ["derive-codec", "test-helpers"] } sc-network = { version = "0.9.0", path = "../network" } sc-network-test = { version = "0.8.0", path = "../network/test" } sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" }