From 6277a310b93f2f07834e920baabe43409334c973 Mon Sep 17 00:00:00 2001 From: Nico Burns Date: Sun, 7 Dec 2025 08:33:51 +0000 Subject: [PATCH] Disable the Skrifa traversal feature (#7758) - Followup to https://github.com/emilk/egui/pull/7694 - Disables the `traversal` feature of `skrifa` which is not needed except internally by the fontations project - Should save a little compile time, and possibly some binary size. Signed-off-by: Nico Burns --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b1822d58a..5650152cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -124,7 +124,7 @@ ron = "0.11.0" self_cell = "1.2.1" serde = { version = "1.0.228", features = ["derive"] } similar-asserts = "1.7.0" -skrifa = "0.37.0" +skrifa = { version = "0.37.0", default-features = false, features = ["std", "autohint_shaping"] } smallvec = "1.15.1" smithay-clipboard = "0.7.2" static_assertions = "1.1.0"