Repo of no-std crates for my personal embedded projects

Remove unused, README update

+4 -10
+4
README.md
··· 1 1 # Sachy's Embeddable Core crates 2 2 3 3 This is a repo of various crates that I have written for myself for various embedded projects I do in my own time. Not really production ready or meant for outside use, but feel free to contribute if you do find use for them. Just no AI slop code whatsoever. 4 + 5 + ## License 6 + 7 + Code dual-licensed under Apache 2.0 or MIT.
-10
sachy-fmt/src/lib.rs
··· 1 1 #![no_std] 2 - #![allow(unused)] 3 2 4 3 #[macro_export] 5 4 macro_rules! assert { ··· 228 227 #[inline] 229 228 fn into_result(self) -> Self { 230 229 self 231 - } 232 - } 233 - 234 - pub(crate) struct Bytes<'a>(pub &'a [u8]); 235 - 236 - #[cfg(feature = "defmt")] 237 - impl defmt::Format for Bytes<'_> { 238 - fn format(&self, fmt: defmt::Formatter) { 239 - defmt::write!(fmt, "{:02x}", self.0) 240 230 } 241 231 } 242 232