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
Right now eyre does have support for no_std by virtue of the upstream support for no_std errors in anyhow. However anyhow never implemented support for testing no_std. It would be nice to update the tests to compile and pass when --no-default-features is used, however this will require adding #[cfg(feature = "std")] all over the test code, and to the doc tests.
The text was updated successfully, but these errors were encountered:
mattsse
added a commit
to mattsse/eyre
that referenced
this issue
May 29, 2020
Right now eyre does have support for
no_std
by virtue of the upstream support for no_std errors inanyhow
. However anyhow never implemented support for testingno_std
. It would be nice to update the tests to compile and pass when--no-default-features
is used, however this will require adding#[cfg(feature = "std")]
all over the test code, and to the doc tests.The text was updated successfully, but these errors were encountered: