It seems like support for u128 was forgotten, as u64 and i128 are supported. Is the fix as easy as adding from_sql_integral!(u128); to this file?
Edit: It's also missing for the ToSql trait.
I fixed it by following the compiler advice, but now I'll first check whether it actually works in my project. Then I'll submit a pull request.
It seems like support for
u128was forgotten, asu64andi128are supported. Is the fix as easy as addingfrom_sql_integral!(u128);to this file?Edit: It's also missing for the
ToSqltrait.I fixed it by following the compiler advice, but now I'll first check whether it actually works in my project. Then I'll submit a pull request.