diff options
author | iximeow <me@iximeow.net> | 2021-07-06 11:56:17 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2021-07-06 15:18:06 -0700 |
commit | ca5e4d5d2bdecaebc7da7657cbda2f70a57fdad0 (patch) | |
tree | 10d34571ec1416c7b951ae44cff40ce3084a54d2 /CHANGELOG | |
parent | 4755f79f91fa4ee27e2626c1202e0ff8fc66f323 (diff) |
add ReaderBuilder to generically construct arch-required Readers0.2.2
also revise an `unsafe` that might be unsafe un extremely unlikely
circumstances - no one should be passing yaxpeax a `&[u8]` larger than
`isize::MAX`, but on 32-bit architectures we can't necessarily guarantee
that it won't happen
Diffstat (limited to 'CHANGELOG')
-rw-r--r-- | CHANGELOG | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,11 @@ +## 0.2.2 + +added `ReaderBuilder` trait and impls for `U8Reader` on various address and word types. + +added documentation for `Reader`, `U8Reader`, and `ReaderBuilder`. + +avoid an unlikely violation of `core::ptr::offset` safety rules on 32-bit architectures. + ## 0.2.1 updated architecture matrix |