From 09bf2a3319ef471cfc97e0770dee2a79126a4bc7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Sep 2021 02:01:31 +0000 Subject: [PATCH] Bump rand from 0.6.5 to 0.8.4 Bumps [rand](https://github.com/rust-random/rand) from 0.6.5 to 0.8.4. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/0.6.5...0.8.4) --- updated-dependencies: - dependency-name: rand dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- cfd_protocol/Cargo.toml | 2 +- daemon/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ddcd073fe..11d8a1900 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -258,7 +258,7 @@ dependencies = [ "bdk", "bitcoin", "itertools", - "rand 0.6.5", + "rand 0.8.4", "rand_chacha 0.1.1", "secp256k1-zkp", ] @@ -416,7 +416,7 @@ dependencies = [ "clap", "futures", "hkdf", - "rand 0.6.5", + "rand 0.8.4", "rocket", "rocket_db_pools", "rust_decimal", diff --git a/cfd_protocol/Cargo.toml b/cfd_protocol/Cargo.toml index ae74903e1..6f0a14375 100644 --- a/cfd_protocol/Cargo.toml +++ b/cfd_protocol/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" anyhow = "1" bdk = { git = "https://github.com/bitcoindevkit/bdk/" } itertools = "0.10" -rand = "0.6" +rand = "0.8" rand_chacha = "0.1" secp256k1-zkp = { version = "0.4", features = ["hashes", "global-context"] } diff --git a/daemon/Cargo.toml b/daemon/Cargo.toml index 09e26e661..f9c9931a5 100644 --- a/daemon/Cargo.toml +++ b/daemon/Cargo.toml @@ -10,7 +10,7 @@ cfd_protocol = { path = "../cfd_protocol" } clap = "3.0.0-beta.4" futures = { version = "0.3", default-features = false } hkdf = "0.11" -rand = "0.6" +rand = "0.8" rocket = { git = "https://github.com/SergioBenitez/Rocket", features = ["json"] } rocket_db_pools = { git = "https://github.com/SergioBenitez/Rocket", features = ["sqlx_sqlite"] } rust_decimal = { version = "1.15", features = ["serde-float", "serde-arbitrary-precision"] }