From a7d4c6e4efa52e1abeba9584856e505240cb3591 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 May 2026 20:02:45 +0000 Subject: [PATCH] Update mupdf requirement from 0.6 to 0.7 in /ext/parsekit Updates the requirements on [mupdf](https://github.com/messense/mupdf-rs) to permit the latest version. - [Release notes](https://github.com/messense/mupdf-rs/releases) - [Commits](https://github.com/messense/mupdf-rs/compare/v0.6.0...v0.7.0) --- updated-dependencies: - dependency-name: mupdf dependency-version: 0.7.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- ext/parsekit/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/parsekit/Cargo.toml b/ext/parsekit/Cargo.toml index 742563f..a4bb356 100644 --- a/ext/parsekit/Cargo.toml +++ b/ext/parsekit/Cargo.toml @@ -14,7 +14,7 @@ name = "parsekit" magnus = { version = "0.8", features = ["rb-sys"] } # Document parsing - testing embedded C libraries # MuPDF builds from source and statically links -mupdf = { version = "0.6", default-features = false, features = [] } +mupdf = { version = "0.7", default-features = false, features = [] } # OCR - Using tesseract-rs for both system and bundled modes tesseract-rs = "0.2" # Tesseract with optional bundling image = "0.25" # Image processing library (match rusty-tesseract's version)