Build serde_json without the std feature when it is not enabled in this crate
Provide Display implementation for the Error enum in no_std builds
Some context for this: I am trying to get https://github.com/gakonst/ethers-rs/ (specifically the ethers-core) crate to work in a no_std build. ethabi is a dependency of it, and while iterating on it I ran into the issues this PR addresses.
std
feature when it is not enabled in this crateDisplay
implementation for theError
enum inno_std
buildsSome context for this: I am trying to get https://github.com/gakonst/ethers-rs/ (specifically the
ethers-core
) crate to work in ano_std
build.ethabi
is a dependency of it, and while iterating on it I ran into the issues this PR addresses.Thank you!