From 77fa64b524a0002e5c299c58af8f3f706a2494e0 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Thu, 5 Jun 2025 06:29:32 -0700 Subject: [PATCH] Pin handlebars to 6.3.1 This is due to an issue in 6.3.2 that breaks the way our includes are being used. I'm not sure how to fix it at this point. --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 489905638..a4a501c8d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,7 +51,8 @@ git2-curl = "0.21.0" # When updating this, also see if `gix-transport` further down needs updating or some auth-related tests will fail. gix = { version = "0.72.0", default-features = false, features = ["blocking-http-transport-curl", "progress-tree", "parallel", "dirwalk"] } glob = "0.3.2" -handlebars = { version = "6.3.1", features = ["dir_source"] } +# Pinned due to https://github.com/sunng87/handlebars-rust/issues/711 +handlebars = { version = "=6.3.1", features = ["dir_source"] } hex = "0.4.3" hmac = "0.12.1" home = "0.5.11"