This is an automated email from the ASF dual-hosted git repository.
yihua pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/hudi-rs.git
The following commit(s) were added to refs/heads/main by this push:
new ed8146b8 build(deps): update base64 requirement from 0.22 to 0.23
(#744)
ed8146b8 is described below
commit ed8146b84fff45306c62c1d79be226d0c7a4adb1
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sat Sep 5 09:52:42 2026 -0700
build(deps): update base64 requirement from 0.22 to 0.23 (#744)
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.22.0...v0.23.1)
---
updated-dependencies:
- dependency-name: base64
dependency-version: 0.23.1
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Y Ethan Guo <[email protected]>
---
Cargo.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Cargo.toml b/Cargo.toml
index a59ff635..580e7793 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -95,7 +95,7 @@ tokio = { version = "1", features = ["rt-multi-thread",
"sync"] }
prost = { version = "0.14" }
# record positions: log blocks store them as a base64-encoded roaring bitmap
-base64 = { version = "0.22" }
+base64 = { version = "0.23" }
# Spill backend for the merge-on-read merge map, behind hudi-core's default-on
# `spill-rocksdb` feature: it bundles RocksDB 8.10 and needs libclang to build
# (bindgen), which every consumer would otherwise pay for — including the
Python