-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Run all tests in no_std environments if std feature is disabled #269
Merged
Commits on Jul 1, 2023
-
Support Error in no_std environments
The `Error` derive can be made to work well for the most part in `no_std` environments by enabling `#![feature(error_in_core)]`. This changes the `Error` derive slightly to import `Error` and related traits from core, when the `std` feature is disabled. Fixes #261
Configuration menu - View commit details
-
Copy full SHA for 053be64 - Browse repository at this point
Copy the full SHA 053be64View commit details
Commits on Jul 2, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 1934137 - Browse repository at this point
Copy the full SHA 1934137View commit details -
Configuration menu - View commit details
-
Copy full SHA for 575ac74 - Browse repository at this point
Copy the full SHA 575ac74View commit details -
Configuration menu - View commit details
-
Copy full SHA for d9d71b2 - Browse repository at this point
Copy the full SHA d9d71b2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 079cbb7 - Browse repository at this point
Copy the full SHA 079cbb7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8ce404c - Browse repository at this point
Copy the full SHA 8ce404cView commit details -
Configuration menu - View commit details
-
Copy full SHA for a38e5d5 - Browse repository at this point
Copy the full SHA a38e5d5View commit details
Commits on Jul 3, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 1965ae4 - Browse repository at this point
Copy the full SHA 1965ae4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 06cbb91 - Browse repository at this point
Copy the full SHA 06cbb91View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1a8d07a - Browse repository at this point
Copy the full SHA 1a8d07aView commit details -
Run all tests also in no_std environments
This adds the following line to all of our test files. ```rust #![cfg_attr(not(feature = "std"), no_std)] ``` This way we test that all our features also work in no_std environments.
Configuration menu - View commit details
-
Copy full SHA for 3818b20 - Browse repository at this point
Copy the full SHA 3818b20View commit details
Commits on Jul 5, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 980c8ab - Browse repository at this point
Copy the full SHA 980c8abView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5fdae05 - Browse repository at this point
Copy the full SHA 5fdae05View commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.