You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 19, 2019. It is now read-only.
I ran cargo update on my project and it brought it a new version of uuint (0.6.1). When I tried to run my tests, I got this error:
U256::from_dec_str("10000000000000")?;
the trait `std::convert::From<uint::uint::FromDecStrErr>` is not implemented for `MyError`
I think the uint.rs in this repo should have something like pub use uint::FromDecStrErr so that my code could use the correct version without needing any pins in my Cargo.toml.
For now, I'm pinning uint to 0.4 in my Cargo.toml and my code is building.
The text was updated successfully, but these errors were encountered:
I ran
cargo update
on my project and it brought it a new version of uuint (0.6.1). When I tried to run my tests, I got this error:I think the uint.rs in this repo should have something like
pub use uint::FromDecStrErr
so that my code could use the correct version without needing any pins in my Cargo.toml.For now, I'm pinning uint to 0.4 in my Cargo.toml and my code is building.
The text was updated successfully, but these errors were encountered: