diff --git a/Cargo.lock b/Cargo.lock index be0c08d..09ae37b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -285,7 +285,7 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" [[package]] name = "serac" -version = "0.4.1" +version = "0.4.2" dependencies = [ "cortex-m", "cortex-m-rt", diff --git a/serac/Cargo.toml b/serac/Cargo.toml index a2ac23a..122c31c 100644 --- a/serac/Cargo.toml +++ b/serac/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serac" -version = "0.4.1" +version = "0.4.2" edition = "2024" description = "A static, modular, and light-weight serialization framework." license = "CC-BY-NC-SA-4.0" diff --git a/serac/src/lib.rs b/serac/src/lib.rs index 9200e91..15befca 100644 --- a/serac/src/lib.rs +++ b/serac/src/lib.rs @@ -115,7 +115,7 @@ pub unsafe trait SerializeBuf: /// The value of the associated `SIZE` constant is critical. An insufficient size /// *will* result in UB. Best to leave this implementation to the procedural macro. pub unsafe trait Size { - // The size of the implementor when serialized, according to the encoding + /// The size of the implementor when serialized, according to the encoding /// scheme. const SIZE: usize; }