From e3df75f6a10916f213ab81961db66122044f9be3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jun 2022 18:46:10 +0000 Subject: [PATCH] Bump bitvec from 0.9.0 to 0.17.4 Bumps [bitvec](https://github.com/bitvecto-rs/bitvec) from 0.9.0 to 0.17.4. - [Release notes](https://github.com/bitvecto-rs/bitvec/releases) - [Changelog](https://github.com/bitvecto-rs/bitvec/blob/main/CHANGELOG.md) - [Commits](https://github.com/bitvecto-rs/bitvec/commits) --- updated-dependencies: - dependency-name: bitvec dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 ++++++++++++++-- src/miner/Cargo.toml | 2 +- src/purple_vm/Cargo.toml | 2 +- src/transactions/Cargo.toml | 2 +- 4 files changed, 17 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 93d9c8d6..cc79c780 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 = "account" version = "0.1.0" @@ -192,9 +194,13 @@ checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" [[package]] name = "bitvec" -version = "0.9.0" +version = "0.17.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfadef5c4e2c2e64067b9ecc061179f12ac7ec65ba613b1f60f3972bbada1f5b" +checksum = "41262f11d771fd4a61aa3ce019fca363b4b6c282fca9da2a31186d3965a47a5c" +dependencies = [ + "either", + "radium", +] [[package]] name = "blake2-rfc" @@ -2331,6 +2337,12 @@ dependencies = [ "proc-macro2", ] +[[package]] +name = "radium" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "def50a86306165861203e7f84ecffbbdfdea79f0e51039b33de1e952358c47ac" + [[package]] name = "rand" version = "0.4.6" diff --git a/src/miner/Cargo.toml b/src/miner/Cargo.toml index 46e66064..47116f16 100644 --- a/src/miner/Cargo.toml +++ b/src/miner/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" libloading = "0.5" parking_lot = "0.7.1" blake2-rfc = "0.2.18" -bitvec = "0.9.0" +bitvec = "0.17.4" byteorder = "1.2.7" log = "0.4.0" hex = "0.3.2" diff --git a/src/purple_vm/Cargo.toml b/src/purple_vm/Cargo.toml index 3ef0d9b3..08c7b908 100644 --- a/src/purple_vm/Cargo.toml +++ b/src/purple_vm/Cargo.toml @@ -12,7 +12,7 @@ lazy_static = "1.4.0" regex = "1" enum-repr = "0.2.2" byteorder = "1.2.7" -bitvec = "0.9.0" +bitvec = "0.17.4" rust_decimal = "0.9.0" rand = "0.6.0" quickcheck = "0.7.2" diff --git a/src/transactions/Cargo.toml b/src/transactions/Cargo.toml index 6f5cec09..cb98ae23 100644 --- a/src/transactions/Cargo.toml +++ b/src/transactions/Cargo.toml @@ -26,7 +26,7 @@ quickcheck = "0.7.2" rust_decimal = "0.9.0" purple_vm = { path = "../purple_vm" } bin-tools = { path = "../util/bin-tools/" } -bitvec = "0.9.0" +bitvec = "0.17.4" triomphe = { git = "https://github.com/octavonce/triomphe" } [dev-dependencies]