Releases: hashmismatch/packed_struct.rs
Releases · hashmismatch/packed_struct.rs
0.10.1
0.10.0
0.6.1
0.6.0
0.5.0
0.4.0
- Updated to "1.0" releases of
syn
andquote
packages (#53) - The
PackedStruct
trait is not generic anymore, the size of the array has been moved into an associated type. Thus a single struct can only be serialized into a particular output size - The main
pack()
trait method now returns aResult
type for potential failures in packing - Added support for tuple packing of slices, with support for a single dynamically sized packing type, like a vector of packable structs
- Added crate features for generating larger types for the built-in packing arrays,
byte_types_64
andbyte_types_256
- Moved serde support to an optional feature named
use_serde
- The
Integer
wrapper now implementsEq
andHash
traits (#55) - Migrated to Github Actions for CI