From c041dd557a0ec2238db00920e09e47499e4157b8 Mon Sep 17 00:00:00 2001 From: Zimon Dai Date: Mon, 25 Sep 2023 21:39:27 +0800 Subject: [PATCH] feat: upgrade to a newer resvg fork --- Cargo.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2a07f26f..2259883d 100755 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,6 @@ pathfinder_geometry = "0.5.1" pathfinder_content = { version = "0.5.0", default-features = false } pathfinder_simd = { version = "0.5.1", features = ["pf-no-simd"] } futures = "0.3.21" -usvg-writer = { git = "https://github.com/zimond/resvg", rev = "6201182c" } woff2 = "0.3.0" [target.'cfg(all(not(all(target_os = "linux", target_arch = "aarch64", target_env = "musl")), not(all(target_os = "windows", target_arch = "aarch64")), not(target_arch = "wasm32")))'.dependencies] @@ -31,7 +30,6 @@ mimalloc-rust = { version = "0.2" } wasm-bindgen = "0.2.87" js-sys = "0.3.64" resvg = { version = "0.34.0", default-features = false, features = [ - "filter", "raster-images", "text", ] } @@ -56,5 +54,5 @@ opt-level = 3 codegen-units = 1 [patch.crates-io] -resvg = { git = "https://github.com/zimond/resvg", rev = "6201182c" } +resvg = { git = "https://github.com/zimond/resvg", rev = "3495d870" } woff2 = { git="https://github.com/yisibl/woff2-rs", branch="fix-total-compressed-size" }