We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a172793 commit af00163Copy full SHA for af00163
CHANGELOG.md
@@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
12
- Introduce `ark-ff-04` feature flag for conversion to `ark-ff@0.4` types.
13
- Support for [`alloy-rlp`](https://github.com/alloy-rs/rlp)
14
- MSRV (Minimum Supported Rust Version) is now set at 1.65.0, from previously undefined.
15
+- Implement `TryFrom<bool>` for `Uint`
16
17
### Changed
18
src/from.rs
@@ -382,6 +382,7 @@ macro_rules! impl_from_unsigned_int {
382
};
383
}
384
385
+impl_from_unsigned_int!(bool);
386
impl_from_unsigned_int!(u8);
387
impl_from_unsigned_int!(u16);
388
impl_from_unsigned_int!(u32);
0 commit comments