No worries. I did see the comment, but didn't mind it. Some of the tests were failing I've made a fix for it.
From 977cfc03c219094cec643e5768ba73d4f9ade739 Mon Sep 17 00:00:00 2001
From: pyrossh <pyrossh>
Date: Sun, 24 May 2026 14:47:34 +0530
Subject: [PATCH] Fix folder_path not being an Option
---
impl/src/lib.rs | 2 ++
1 file changed, 2 insertions(+)
diff --git a/impl/src/lib.rs b/impl/src/lib.rs
index 731e671..927e3ea 100644
--- a/impl/src/lib.rs
+++ b/impl/src/lib.rs
@@ -390,6 +390,8 @@ fn impl_rust_embed(ast: &syn::DeriveInput) -> syn::Result<TokenStream2> {
}?;
+ #[cfg(not(feature = "interpolate-folder-path"))]
+ let folder_path = Some(folder_path);
// Base relative paths on the Cargo.toml location
let (relative_path, absolute_folder_path) = if let Some(folder_path) = folder_path {
--
2.54.0