From 4768aebea4d02764c0cc12e284f577ead31ffcf4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 04:38:48 +0000 Subject: [PATCH] fix(deps): update rust crate base64 to ^0.21.4 --- Cargo.lock | 14 ++++++++++---- raiden/Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9a32816f..1ffb8f3f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -65,6 +65,12 @@ version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" +[[package]] +name = "base64" +version = "0.21.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2" + [[package]] name = "bitflags" version = "1.3.2" @@ -1044,7 +1050,7 @@ version = "0.1.0" dependencies = [ "again", "async-trait", - "base64", + "base64 0.21.4", "insta", "log", "pretty_assertions", @@ -1232,7 +1238,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5b4f000e8934c1b4f70adde180056812e7ea6b1a247952db8ee98c94cd3116cc" dependencies = [ "async-trait", - "base64", + "base64 0.13.1", "bytes", "crc32fast", "futures", @@ -1289,7 +1295,7 @@ version = "0.47.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6264e93384b90a747758bcc82079711eacf2e755c3a8b5091687b5349d870bcc" dependencies = [ - "base64", + "base64 0.13.1", "bytes", "chrono", "digest", @@ -1343,7 +1349,7 @@ version = "0.19.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7" dependencies = [ - "base64", + "base64 0.13.1", "log", "ring", "sct", diff --git a/raiden/Cargo.toml b/raiden/Cargo.toml index 3e9794f0..3fd92680 100644 --- a/raiden/Cargo.toml +++ b/raiden/Cargo.toml @@ -19,7 +19,7 @@ rust-crypto = "^0.2.36" serde = { version = "^1", features = ["derive"] } serde_json = "^1" serde_derive = "^1" -base64 = "^0.13" +base64 = "^0.21.4" thiserror = "^1" safe-builder = { tag = "0.0.6", git = "https://github.com/raiden-rs/safe-builder.git" } again = "0.1"