-
Notifications
You must be signed in to change notification settings - Fork 141
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
Protocols v2 no_std support #1394
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1394 +/- ##
==========================================
- Coverage 19.08% 19.08% -0.01%
==========================================
Files 166 166
Lines 11066 11068 +2
==========================================
Hits 2112 2112
- Misses 8954 8956 +2
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
thanks for this @Georges760 on the PR description you mention:
I was looking at the Rust Docs for the
while I don't really oppose this PR (as the changes are mostly harmless) I wonder if the initial assumptions are correct? |
To be accurate In embedded system the HW RNG can be (and should be) used to get random number. That's why in Trying to build the stm32_sv2 demo (in the context of embedded stm32 embassy project), the build fail on TLDR: you are right the inital assumption was incorrect, was just a shortcut of all above explanations. |
7f6ccdf
to
1694832
Compare
Code review ACK 1694832 Caveat: I'm not a Rust dev :-) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
hey @Georges760 we're ready to merge this unfortunately our magic |
I want to re-review this, can we defer merging till tomorrow? |
ping @Georges760 again, I guess now we're good to go |
Here are a couple of change to avoid
getrandom
which is not compatible withno_std
.