From dde491de298a06ab33e30ab8e2c4e2c90d2fc4b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 08:49:10 +0100 Subject: [PATCH] Bump base64 from 0.21.5 to 0.22.0 (#1107) Bumps [base64](https://github.com/marshallpierce/rust-base64) from 0.21.5 to 0.22.0. - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/marshallpierce/rust-base64/compare/v0.21.5...v0.22.0) --- updated-dependencies: - dependency-name: base64 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 20 +++++++++++++------- examples/token-client/Cargo.toml | 2 +- examples/token-server/Cargo.toml | 2 +- northstar-nstar/Cargo.toml | 2 +- northstar-runtime/Cargo.toml | 2 +- 5 files changed, 17 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6136bbaa0..37c0991a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -196,9 +196,15 @@ dependencies = [ [[package]] name = "base64" -version = "0.21.5" +version = "0.21.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" +checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" + +[[package]] +name = "base64" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51" [[package]] name = "base64ct" @@ -1555,7 +1561,7 @@ name = "northstar-nstar" version = "0.9.2-pre" dependencies = [ "anyhow", - "base64", + "base64 0.22.0", "clap 4.2.7", "clap_complete", "futures", @@ -1580,7 +1586,7 @@ dependencies = [ "anyhow", "async-stream", "async-trait", - "base64", + "base64 0.22.0", "bincode", "bindgen", "bitflags 2.4.2", @@ -2279,7 +2285,7 @@ version = "3.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9f02d8aa6e3c385bf084924f660ce2a3a6bd333ba55b35e8590b321f35d88513" dependencies = [ - "base64", + "base64 0.21.7", "chrono", "hex", "indexmap 1.9.3", @@ -2609,7 +2615,7 @@ name = "token-client" version = "0.0.1" dependencies = [ "anyhow", - "base64", + "base64 0.22.0", "futures", "northstar-client", "tokio", @@ -2621,7 +2627,7 @@ name = "token-server" version = "0.0.1" dependencies = [ "anyhow", - "base64", + "base64 0.22.0", "northstar-client", "tokio", ] diff --git a/examples/token-client/Cargo.toml b/examples/token-client/Cargo.toml index 82f37d6bd..208334c8a 100644 --- a/examples/token-client/Cargo.toml +++ b/examples/token-client/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" [dependencies] anyhow = { version = "1.0.80", features = ["backtrace"] } -base64 = "0.21.5" +base64 = "0.22.0" futures = { version = "0.3.29", default-features = false } northstar-client= { path = "../../northstar-client" } tokio = { version = "1.32.0", features = ["macros", "rt", "net"] } diff --git a/examples/token-server/Cargo.toml b/examples/token-server/Cargo.toml index 4a00791e8..88fae4a63 100644 --- a/examples/token-server/Cargo.toml +++ b/examples/token-server/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" [dependencies] anyhow = { version = "1.0.80", features = ["backtrace"] } -base64 = "0.21.5" +base64 = "0.22.0" northstar-client = { path = "../../northstar-client" } tokio = { version = "1.32.0", features = ["macros", "rt", "net"] } diff --git a/northstar-nstar/Cargo.toml b/northstar-nstar/Cargo.toml index 01c4f9e39..01c8f2625 100644 --- a/northstar-nstar/Cargo.toml +++ b/northstar-nstar/Cargo.toml @@ -10,7 +10,7 @@ rust-version.workspace = true [dependencies] anyhow = { version = "1.0.80", features = ["backtrace"] } -base64 = "0.21.5" +base64 = "0.22.0" clap = { version = "4.2.7", features = ["derive"] } clap_complete = "4.3.2" futures = { version = "0.3.29", default-features = false } diff --git a/northstar-runtime/Cargo.toml b/northstar-runtime/Cargo.toml index 26dede74d..eb323c77c 100644 --- a/northstar-runtime/Cargo.toml +++ b/northstar-runtime/Cargo.toml @@ -13,7 +13,7 @@ rust-version.workspace = true anyhow = { version = "1.0.80", features = ["backtrace"] } async-stream = { version = "0.3.4", optional = true } async-trait = { version = "0.1.76", optional = true } -base64 = { version = "0.21.5", optional = true } +base64 = { version = "0.22.0", optional = true } bincode = { version = "1.3.3", optional = true } bitflags = "2.4.2" byteorder = { version = "1.5.0", optional = true }