Releases: kaidokert/fixed-bigint-rs
Releases · kaidokert/fixed-bigint-rs
v0.1.11
What's Changed
- Implement decimal string conversions, cleanup by @kaidokert in #40
- Add u64 word sizes
- Remove clunky to_ne_bytes implementation
- Add to_radix_str
- Fix to_radix_str to support any radix from 2 to 16
Full Changelog: v0.1.10...v0.1.11
v0.1.10
What's Changed
- Adds ToBytes implementation, optional zeroize support by @kaidokert in #37
- Implement FromBytes by @kaidokert in #39
- To/FromBytes implementations currently use unsafe, due to limited const generics ( needs
generic_const_exprs
)
Full Changelog: v0.1.9...v0.1.10
v0.1.8
v0.1.7
v0.1.6
v0.1.5
v0.1.4
v0.1.3
Implement AddAssign, MulAssign, DivAssign, and all arithmetic operands that take a reference, rather than value.
Also add num_traits::Unsigned trait tag, plus all of num_traits::{NumAssign, NumRef, NumAssignRef} as those are all now fully implemented.
More testing and making panic! behaviour more consistent.