From efc277319935a16c9b617b3cb66d172a4f4a06da Mon Sep 17 00:00:00 2001 From: Froidefond Julien Date: Thu, 12 Mar 2026 23:30:14 +0100 Subject: [PATCH] =?UTF-8?q?chore(deps):=20mettre=20=C3=A0=20jour=20zip=202?= =?UTF-8?q?.4=E2=86=928.2,=20notify=206.1=E2=86=928.2,=20lopdf=200.35?= =?UTF-8?q?=E2=86=920.39?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - zip 8.x résout nativement les extra fields NTFS (source du bug EOCD) - notify 8.x améliore le support inotify Linux - lopdf 0.39 contient des correctifs de parsing PDF Co-Authored-By: Claude Sonnet 4.6 --- apps/api/Cargo.toml | 2 +- apps/indexer/Cargo.toml | 2 +- crates/parsers/Cargo.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/api/Cargo.toml b/apps/api/Cargo.toml index 28f42e9..410eeab 100644 --- a/apps/api/Cargo.toml +++ b/apps/api/Cargo.toml @@ -31,7 +31,7 @@ uuid.workspace = true natord.workspace = true pdfium-render.workspace = true unrar.workspace = true -zip = { version = "2.2", default-features = false, features = ["deflate"] } +zip = { version = "8", default-features = false, features = ["deflate"] } utoipa.workspace = true utoipa-swagger-ui = { workspace = true, features = ["axum"] } webp.workspace = true diff --git a/apps/indexer/Cargo.toml b/apps/indexer/Cargo.toml index a58ef1d..bce342a 100644 --- a/apps/indexer/Cargo.toml +++ b/apps/indexer/Cargo.toml @@ -12,7 +12,7 @@ axum.workspace = true chrono.workspace = true futures = "0.3" image.workspace = true -notify = "6.1" +notify = "8" num_cpus.workspace = true parsers = { path = "../../crates/parsers" } rand.workspace = true diff --git a/crates/parsers/Cargo.toml b/crates/parsers/Cargo.toml index 29a02f3..2642009 100644 --- a/crates/parsers/Cargo.toml +++ b/crates/parsers/Cargo.toml @@ -7,9 +7,9 @@ license.workspace = true [dependencies] anyhow.workspace = true image.workspace = true -lopdf = "0.35" +lopdf = "0.39" natord.workspace = true pdfium-render.workspace = true regex = "1" unrar.workspace = true -zip = { version = "2.2", default-features = false, features = ["deflate"] } +zip = { version = "8", default-features = false, features = ["deflate"] }