From 34df8b9eb55c67a1777f1e439847c84cc6b16284 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 14:08:03 +0000 Subject: [PATCH] Update base64 requirement from 0.21 to 0.22 Updates the requirements on [base64](https://github.com/marshallpierce/rust-base64) to permit the latest version. - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/marshallpierce/rust-base64/compare/v0.21.0...v0.22.0) --- updated-dependencies: - dependency-name: base64 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- arrow-cast/Cargo.toml | 2 +- arrow-flight/Cargo.toml | 2 +- parquet/Cargo.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/arrow-cast/Cargo.toml b/arrow-cast/Cargo.toml index 2d8a57aba5f5..791b129b2d1f 100644 --- a/arrow-cast/Cargo.toml +++ b/arrow-cast/Cargo.toml @@ -51,7 +51,7 @@ num = { version = "0.4", default-features = false, features = ["std"] } lexical-core = { version = "^0.8", default-features = false, features = ["write-integers", "write-floats", "parse-integers", "parse-floats"] } atoi = "2.0.0" comfy-table = { version = "7.0", optional = true, default-features = false } -base64 = "0.21" +base64 = "0.22" ryu = "1.0.16" [dev-dependencies] diff --git a/arrow-flight/Cargo.toml b/arrow-flight/Cargo.toml index 1e7255baa748..60ba3ae827de 100644 --- a/arrow-flight/Cargo.toml +++ b/arrow-flight/Cargo.toml @@ -39,7 +39,7 @@ arrow-row = { workspace = true, optional = true } arrow-select = { workspace = true, optional = true } arrow-schema = { workspace = true } arrow-string = { workspace = true, optional = true } -base64 = { version = "0.21", default-features = false, features = ["std"] } +base64 = { version = "0.22", default-features = false, features = ["std"] } bytes = { version = "1", default-features = false } futures = { version = "0.3", default-features = false, features = ["alloc"] } once_cell = { version = "1", optional = true } diff --git a/parquet/Cargo.toml b/parquet/Cargo.toml index 60160a8b3fc1..e6d612e0cc62 100644 --- a/parquet/Cargo.toml +++ b/parquet/Cargo.toml @@ -56,7 +56,7 @@ zstd = { version = "0.13.0", optional = true, default-features = false } chrono = { workspace = true } num = { version = "0.4", default-features = false } num-bigint = { version = "0.4", default-features = false } -base64 = { version = "0.21", default-features = false, features = ["std", ], optional = true } +base64 = { version = "0.22", default-features = false, features = ["std", ], optional = true } clap = { version = "4.1", default-features = false, features = ["std", "derive", "env", "help", "error-context", "usage"], optional = true } serde = { version = "1.0", default-features = false, features = ["derive"], optional = true } serde_json = { version = "1.0", default-features = false, features = ["std"], optional = true } @@ -69,7 +69,7 @@ paste = { version = "1.0" } half = { version = "2.1", default-features = false, features = ["num-traits"] } [dev-dependencies] -base64 = { version = "0.21", default-features = false, features = ["std"] } +base64 = { version = "0.22", default-features = false, features = ["std"] } criterion = { version = "0.5", default-features = false } snap = { version = "1.0", default-features = false } tempfile = { version = "3.0", default-features = false }