From b56566ad781e0dd69f2a3eb6ac60cd489dcbcf23 Mon Sep 17 00:00:00 2001 From: Lifei Zhou Date: Thu, 16 Jul 2026 23:11:04 +1000 Subject: [PATCH] fix: enable indexmap serde support for musl builds (#10507) --- crates/goose/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/goose/Cargo.toml b/crates/goose/Cargo.toml index 79665e91a..ffff4c8fd 100644 --- a/crates/goose/Cargo.toml +++ b/crates/goose/Cargo.toml @@ -187,7 +187,7 @@ schemars = { workspace = true, features = [ "derive", ] } shellexpand = { workspace = true } -indexmap = { version = "2.9", default-features = false, features = ["std"] } +indexmap = { version = "2.9", default-features = false, features = ["serde", "std"] } ignore = { workspace = true } rayon = { workspace = true } tree-sitter = { workspace = true }