BigUint::from_str_radix("aa", 16)
results in
help: the following trait is implemented but not in scope; perhaps add a `use` for it:
|
1 + use num_traits::Num;
So I need to add another explicit dependency num_traits and worry about setting its version correctly.
It would be great UX if the crate re-exported it and I could do:
use num_bigint::num_traits::Num;
BigUint::from_str_radix("aa", 16)results in
So I need to add another explicit dependency
num_traitsand worry about setting its version correctly.It would be great UX if the crate re-exported it and I could do: