From 15be75f955cdacbdf92415ff489fa4168b8946a7 Mon Sep 17 00:00:00 2001 From: Nico Burns Date: Sun, 27 Jul 2025 15:54:27 +0100 Subject: [PATCH] Disable serde feature of taffy dependency (#38303) Disables the serde of taffy. This feature doesn't seem to be actually being used. Testing: This would cause build errors if it was required. So if it builds it should be fine. Signed-off-by: Nico Burns --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d338a932b7b..699190c2b94 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -149,7 +149,7 @@ stylo_traits = { git = "https://github.com/servo/stylo", branch = "2025-07-01" } surfman = { git = "https://github.com/servo/surfman", rev = "f7688b4585f9e0b5d4bf8ee8e4a91e82349610b1", features = ["chains"] } syn = { version = "2", default-features = false, features = ["clone-impls", "derive", "parsing"] } synstructure = "0.13" -taffy = { version = "0.8.3", default-features = false, features = ["detailed_layout_info", "grid", "serde", "std"] } +taffy = { version = "0.8.3", default-features = false, features = ["detailed_layout_info", "grid", "std"] } tikv-jemalloc-sys = "0.6.0" tikv-jemallocator = "0.6.0" time = { package = "time", version = "0.3", features = ["large-dates", "local-offset", "serde"] }