From 2d0888eeb8e5aa6ab31712169d4e61c198f3b44f Mon Sep 17 00:00:00 2001 From: dybucc <149513579+dybucc@users.noreply.github.com> Date: Mon, 13 Apr 2026 09:27:58 +0200 Subject: [PATCH] Patch pathfinder_simd while upstream updates While #583 in servo/pathfiner gets merged, and font-kit updates its patfinder_simd (and mupdf updates font-kit,) this should serve as a build fix. --- Cargo.lock | 3 +-- Cargo.toml | 3 +++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 971ac4f..c6f5204 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2078,8 +2078,7 @@ dependencies = [ [[package]] name = "pathfinder_simd" version = "0.5.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf9027960355bf3afff9841918474a81a5f972ac6d226d518060bba758b5ad57" +source = "git+https://github.com/itsjunetime/pathfinder.git?branch=fix_nightly_arm_simd#814671e162a1829e074521446317b915311d3d4d" dependencies = [ "rustc_version", ] diff --git a/Cargo.toml b/Cargo.toml index f127d53..c49bb31 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -53,6 +53,9 @@ flexi_logger = "0.31" # for tracing with tokio-console console-subscriber = { version = "0.5.0", optional = true } +[patch.crates-io] +pathfinder_simd = { git = "https://github.com/itsjunetime/pathfinder.git", branch = "fix_nightly_arm_simd" } + [profile.production] inherits = "release" lto = "fat"