Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion serac/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion serac/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ pub unsafe trait SerializeBuf<const N: usize, E: Encoding = Vanilla>:
/// 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<E = Vanilla> {
// 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;
}
Expand Down
Loading