Open Evalir opened 1 month ago
I'm ok with bumping MSRV for this since it's in line with our policy. Do you want to do this in alloy-core too?
Yep, happy to do it on alloy core too. Sounds good!
@DaniPopes i've not removed any std
error feature gates where we reuse errors from alloy-rlp/const-hex/ruint. should we bump there too, or is leaving it like it OK for now?
Added a temporary blocked label as it relies on 1.83
being released: https://releases.rs/docs/1.83.0/
Motivation
For
no-std
compatible crates, we can usecore::error::Error
instead ofstd::error::Error
to avoid gating the Error impl understd
for the impl blocks.Solution
replace
std::error::Error
withcore::error::Error
on the impl blocks.PR Checklist