Repo of no-std crates for my personal embedded projects

Remove unused, README update

Changed files
+4 -10
sachy-fmt
src
+4
README.md
···
# Sachy's Embeddable Core crates
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.
+
+
## License
+
+
Code dual-licensed under Apache 2.0 or MIT.
-10
sachy-fmt/src/lib.rs
···
#![no_std]
-
#![allow(unused)]
#[macro_export]
macro_rules! assert {
···
#[inline]
fn into_result(self) -> Self {
self
-
}
-
}
-
-
pub(crate) struct Bytes<'a>(pub &'a [u8]);
-
-
#[cfg(feature = "defmt")]
-
impl defmt::Format for Bytes<'_> {
-
fn format(&self, fmt: defmt::Formatter) {
-
defmt::write!(fmt, "{:02x}", self.0)
}
}