From 7523a14fc89fccc96bedd04c1102554aee3a87ee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Mar 2024 20:00:49 +0000 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=20Bump=20bcrypt=20from=200.15.0=20to?= =?UTF-8?q?=200.15.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [bcrypt](https://github.com/Keats/rust-bcrypt) from 0.15.0 to 0.15.1. - [Commits](https://github.com/Keats/rust-bcrypt/compare/v0.15.0...v0.15.1) --- updated-dependencies: - dependency-name: bcrypt dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 20 +++++++++++++------- Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a90df90..e4e70ad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -30,7 +30,7 @@ dependencies = [ "actix-service", "actix-utils", "ahash", - "base64", + "base64 0.21.7", "bitflags 2.4.1", "brotli", "bytes", @@ -260,13 +260,19 @@ version = "0.21.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" +[[package]] +name = "base64" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51" + [[package]] name = "bcrypt" -version = "0.15.0" +version = "0.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28d1c9c15093eb224f0baa400f38fcd713fc1391a6f1c389d886beef146d60a3" +checksum = "e65938ed058ef47d92cf8b346cc76ef48984572ade631927e9937b5ffc7662c7" dependencies = [ - "base64", + "base64 0.22.0", "blowfish", "getrandom", "subtle", @@ -460,7 +466,7 @@ name = "dockerust" version = "0.1.0" dependencies = [ "actix-web", - "base64", + "base64 0.21.7", "bcrypt", "futures", "jsonwebtoken", @@ -738,7 +744,7 @@ version = "9.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c7ea04a7c5c055c175f189b6dc6ba036fd62306b58c66c9f6389036c503a3f4" dependencies = [ - "base64", + "base64 0.21.7", "js-sys", "pem", "ring", @@ -914,7 +920,7 @@ version = "3.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310" dependencies = [ - "base64", + "base64 0.21.7", "serde", ] diff --git a/Cargo.toml b/Cargo.toml index 69a01d7..1e015b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,6 +15,6 @@ uuid = { version = "1.1.2", features = ["v4"] } mktemp = "0.5.1" base64 = "0.21.7" serde_yaml = "0.9.30" -bcrypt = "0.15.0" +bcrypt = "0.15.1" jsonwebtoken = "9.2.0" rand = "0.8.5"