Interrupts aren't working anymore

This commit is contained in:
2026-03-15 10:48:41 +01:00
parent de6ef959ce
commit b1aac20b57
17 changed files with 455 additions and 89 deletions

View File

@@ -142,3 +142,10 @@ impl From<&str> for PathBuf {
}
}
}
#[cfg(feature = "alloc")]
impl From<String> for PathBuf {
fn from(val: String) -> Self {
PathBuf { inner: val }
}
}