From a84157de7a9bc6b930d98d3517725761485dff05 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Jun 2022 04:23:12 +0000 Subject: [PATCH] Bump num-rational from 0.2.4 to 0.4.1 Bumps [num-rational](https://github.com/rust-num/num-rational) from 0.2.4 to 0.4.1. - [Release notes](https://github.com/rust-num/num-rational/releases) - [Changelog](https://github.com/rust-num/num-rational/blob/master/RELEASES.md) - [Commits](https://github.com/rust-num/num-rational/compare/num-rational-0.2.4...num-rational-0.4.1) --- updated-dependencies: - dependency-name: num-rational dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 39 ++++++++++++++++++++++++++------ client/consensus/babe/Cargo.toml | 2 +- 2 files changed, 33 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 729e0397748f1..b85b290241c86 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "Inflector" version = "0.11.4" @@ -1182,7 +1184,7 @@ dependencies = [ "arrayref", "byteorder", "lazy_static", - "num-bigint", + "num-bigint 0.2.6", "num-integer", "num-traits", "rand 0.7.3", @@ -3869,7 +3871,7 @@ dependencies = [ "generic-array 0.13.2", "matrixmultiply", "num-complex", - "num-rational", + "num-rational 0.2.4", "num-traits", "rand 0.7.3", "rand_distr", @@ -4388,6 +4390,17 @@ dependencies = [ "num-traits", ] +[[package]] +name = "num-bigint" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" +dependencies = [ + "autocfg", + "num-integer", + "num-traits", +] + [[package]] name = "num-complex" version = "0.2.4" @@ -4415,7 +4428,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c000134b5dbf44adc5cb772486d335293351644b801551abe8f75c84cfa4aef" dependencies = [ "autocfg", - "num-bigint", + "num-bigint 0.2.6", + "num-integer", + "num-traits", +] + +[[package]] +name = "num-rational" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" +dependencies = [ + "autocfg", + "num-bigint 0.4.3", "num-integer", "num-traits", ] @@ -7017,8 +7042,8 @@ dependencies = [ "futures-timer 3.0.2", "log", "merlin", - "num-bigint", - "num-rational", + "num-bigint 0.2.6", + "num-rational 0.4.1", "num-traits", "parity-scale-codec", "parking_lot 0.11.1", @@ -8444,7 +8469,7 @@ name = "sp-arithmetic-fuzzer" version = "2.0.0" dependencies = [ "honggfuzz", - "num-bigint", + "num-bigint 0.2.6", "num-traits", "primitive-types", "sp-arithmetic", @@ -10515,7 +10540,7 @@ dependencies = [ "errno", "libc", "memory_units", - "num-rational", + "num-rational 0.2.4", "num-traits", "parity-wasm 0.41.0", "wasmi-validation", diff --git a/client/consensus/babe/Cargo.toml b/client/consensus/babe/Cargo.toml index 14d48fba1bb57..01a5893fe6159 100644 --- a/client/consensus/babe/Cargo.toml +++ b/client/consensus/babe/Cargo.toml @@ -20,7 +20,7 @@ sp-core = { version = "3.0.0", path = "../../../primitives/core" } sp-application-crypto = { version = "3.0.0", path = "../../../primitives/application-crypto" } sp-keystore = { version = "0.9.0", path = "../../../primitives/keystore" } num-bigint = "0.2.3" -num-rational = "0.2.2" +num-rational = "0.4.1" num-traits = "0.2.8" serde = { version = "1.0.104", features = ["derive"] } sp-version = { version = "3.0.0", path = "../../../primitives/version" }